browserloops-examples/lib/game/Game.dart

101 lines
2.6 KiB
Dart
Raw Normal View History

2018-07-20 09:58:11 +00:00
import 'dart:html';
2018-07-20 12:36:32 +00:00
import 'dart:math';
2018-07-20 12:05:48 +00:00
typedef void gridIterator(int x, int y);
2018-07-20 09:58:11 +00:00
class Game {
List<List<Color>> grid;
CanvasElement canvas;
2018-07-20 12:36:32 +00:00
Random rng = new Random();
2018-07-20 09:58:11 +00:00
2018-07-20 12:36:32 +00:00
double _oscill = 0.1;
bool _oscillDir = true; // oscillate upwards (true) or downwards (false)
double _OSCILLSPEED = 1.0;
2018-07-20 09:58:11 +00:00
bool _fwd = true;
Game(CanvasElement this.canvas) {
grid = _buildGrid(5, new Color(255, 255, 255));
2018-07-20 09:58:11 +00:00
}
2018-07-20 14:28:12 +00:00
// In-World Logic Updates
2018-07-20 12:36:32 +00:00
void update([num dt]) {
int ry = rng.nextInt(grid.length);
grid[ry][rng.nextInt(grid[ry].length)] = new Color(rng.nextInt(255), rng.nextInt(255), rng.nextInt(255));
}
2018-07-20 09:58:11 +00:00
2018-07-20 14:28:12 +00:00
// Render Pipeline
2018-07-20 09:58:11 +00:00
void draw([num interp]) {
2018-07-20 15:47:11 +00:00
CanvasRenderingContext2D ctx = this.canvas.context2D;
2018-07-20 09:58:11 +00:00
int brickW = (canvas.width ~/ grid[0].length);
int brickH = (canvas.height ~/ grid.length);
ctx.clearRect(0, 0, canvas.width, canvas.height);
2018-07-20 14:28:12 +00:00
_grid_foreach((x, y) {
Color col = _getOscillatedCol(grid[y][x]);
2018-07-20 12:36:32 +00:00
ctx.setFillColorRgb(col.r, col.g, col.b);
2018-07-20 09:58:11 +00:00
ctx.fillRect(x*brickW, y*brickH, brickW, brickH);
2018-07-20 12:05:48 +00:00
});
// This should usually be place in update()
// Placed here to highlight render speed changes for some examples
// See dirty flag Loop for details
_oscillate();
2018-07-20 09:58:11 +00:00
}
2018-07-20 14:28:12 +00:00
// Slightly oscillating colors to highlight rendering updates
void _oscillate() {
2018-07-20 12:36:32 +00:00
if(_oscill >= 50.0 || _oscill <= -50.0) {
_oscillDir = !_oscillDir;
_oscill = max( min(_oscill, 49.0), -49.0);
}
else _oscillDir == true ? _oscill += _OSCILLSPEED : _oscill -= _OSCILLSPEED;
}
2018-07-20 12:36:32 +00:00
Color _getOscillatedCol(Color col) {
2018-07-20 12:36:32 +00:00
int o = _oscill.toInt();
return new Color(col.r + o, col.g + o, col.b + o);
}
2018-07-20 09:58:11 +00:00
2018-07-20 14:28:12 +00:00
void _grid_foreach(gridIterator fun) {
2018-07-20 12:05:48 +00:00
for (int y = 0; y < grid.length; y++) {
for (int x = 0; x < grid[y].length; x++) {
fun(x, y);
}
}
2018-07-20 09:58:11 +00:00
}
List<List<Color>> _buildGrid(int size, Color col) {
List<List<Color>> grid = new List(size);
for (int y = 0; y < size; y++) {
grid[y] = new List(size);
for (int x = 0; x < size; x++) {
2018-07-20 09:58:11 +00:00
grid[y][x] = col;
}
}
return grid;
}
// Grid Size Button Implementation
// true makes squares larger
// false makes squares smaller
void changeGridSize(bool larger) {
if(larger) {
if(grid.length <= 5) return;
this.grid = _buildGrid(grid.length - 5, Color(255, 255, 255));
} else {
if(grid.length >= 60) return;
this.grid = _buildGrid(grid.length + 5, Color(255, 255, 255));
}
}
2018-07-20 09:58:11 +00:00
}
class Color {
final int r;
final int g;
final int b;
const Color(this.r, this.g, this.b);
}