cellular-automata/lib/src/Engine.dart

124 lines
3.1 KiB
Dart
Raw Normal View History

2018-07-05 15:59:11 +00:00
import 'dart:html' as html;
import 'package:rules_of_living/src/Grid.dart';
2018-07-05 15:59:11 +00:00
2018-07-09 13:16:28 +00:00
class Engine {
2018-07-05 15:59:11 +00:00
// Elapsed Time Counter - useful for Safety Timeout
Stopwatch _elapsed = new Stopwatch();
// Game Tick Rate - *does* impact game speed TODO add configurable option
2018-07-06 14:47:20 +00:00
int _MS_PER_STEP = 1000 ~/ 3;
2018-07-05 15:59:11 +00:00
// Max Frame (i.e. Rendering) rate - does *not* impact game speed
2018-07-06 14:47:20 +00:00
final int _MS_PER_FRAME = 1000 ~/ 30;
2018-07-05 15:59:11 +00:00
// ms stuck in updateloop after which game will declare itself unresponsive
2018-07-06 12:27:17 +00:00
final int SAFETY_TIMEOUT = 2000;
2018-07-05 15:59:11 +00:00
// Grid Size TODO add as configurable option
static final GRID_X = 100;
static final GRID_Y = 100;
2018-07-05 15:59:11 +00:00
num _updateLag = 0.0;
num _drawLag = 0.0;
/// The Canvas to Paint on
///
/// Manually define or change the canvas the engine should render to. Should
/// be used if no canvas was defined at engine creation and it should be
/// rendered later.
html.CanvasElement canvas;
Grid _grid = new Grid(GRID_X, GRID_Y);
bool running = false;
2018-07-05 15:59:11 +00:00
Engine([this.canvas]) {
2018-07-06 13:00:01 +00:00
_elapsed.start();
2018-07-09 15:31:46 +00:00
_grid.addPattern(amount: 15, dispersal: 5);
html.window.animationFrame.then(animFrame);
}
void animFrame(num now) {
process(now);
html.window.animationFrame.then(animFrame);
2018-07-06 12:27:17 +00:00
}
2018-07-05 15:59:11 +00:00
2018-07-07 18:49:02 +00:00
void reset() {
2018-07-09 15:31:46 +00:00
_grid.reset();
running = false;
2018-07-07 17:07:30 +00:00
}
2018-07-08 17:45:04 +00:00
void clear() {
_grid = new Grid(GRID_X, GRID_Y);
2018-07-08 17:45:04 +00:00
running = false;
}
2018-07-05 15:59:11 +00:00
void process(num now) {
2018-07-07 18:49:02 +00:00
_drawLag += _elapsed.elapsedMilliseconds;
2018-07-06 13:00:01 +00:00
_updateLag += _elapsed.elapsedMilliseconds;
2018-07-05 15:59:11 +00:00
_elapsed.reset();
while (_updateLag >= _MS_PER_STEP) {
if (_elapsed.elapsedMilliseconds > SAFETY_TIMEOUT) {
// TODO stub - give warning etc when this occurs
2018-07-06 12:27:17 +00:00
print("ERROR STUCK IN UPDATE LOOP");
2018-07-05 15:59:11 +00:00
break;
}
2018-07-07 17:07:30 +00:00
if (running == true) update();
2018-07-05 15:59:11 +00:00
_updateLag -= _MS_PER_STEP;
}
if (_drawLag >= _MS_PER_FRAME) {
render(_updateLag / _MS_PER_STEP);
_drawLag = 0;
}
}
/// Update Engine Logic
///
/// Updates the logic of the engine by one tick. Should usually not be called
/// directly, since it is automatically taken care of by the processing function.
/// If simulation should be advanced manually one time, prefer using step().
2018-07-05 15:59:11 +00:00
void update() {
2018-07-09 15:31:46 +00:00
if (!_grid.update()) running = false;
}
2018-07-09 15:27:56 +00:00
/// Advances Logic One Update
///
/// Moves logic of the engine one step forward and pauses the
/// simulation. Does not automatically re-render the new state
/// (though this should usually not pose a problem).
2018-07-09 15:27:56 +00:00
void step() {
running = false;
_grid.update();
2018-07-05 15:59:11 +00:00
}
/// Renders the Current Simulation State
///
/// Renders the simulation once. Will usually automatically be called by
/// the internal engine processing. Does not do anything if no canvas is
/// defined.
2018-07-05 15:59:11 +00:00
void render([num interp]) {
if(canvas != null) _grid.render(canvas, interp);
2018-07-09 15:31:46 +00:00
}
2018-07-09 15:32:35 +00:00
void addPattern(
2018-08-23 10:38:34 +00:00
{CellPattern pattern,
int x,
int y,
int amount,
int dispersal,
int seed}) {
2018-07-09 15:32:35 +00:00
_grid.addPattern(
pattern: pattern,
x: x,
y: y,
amount: amount,
dispersal: dispersal,
seed: seed);
}
void toggleEdgeRendering() {
_grid.renderEdges = !_grid.renderEdges;
2018-07-05 15:59:11 +00:00
}
2018-07-07 18:49:02 +00:00
}