mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
// A simplified version of the game of life as seen on http://dcode.io
|
|
|
|
let w: u32; // width
|
|
let h: u32; // height
|
|
let s: u32; // total size
|
|
|
|
/** Initializes width and height. */
|
|
export function init(w_: u32, h_: u32): void {
|
|
w = w_;
|
|
h = h_;
|
|
s = w * h;
|
|
}
|
|
|
|
/** Performs one step. */
|
|
export function step(): void {
|
|
let y: u32, ym1: u32, yp1: u32; // y, y-1 and y+1
|
|
let x: u32, xm1: u32, xp1: u32; // x, x-1 and x+1
|
|
let hm1: u32 = h - 1, wm1: u32 = w - 1;
|
|
let n: u32, v: u8, c: u32 = 0;
|
|
for (y = 0; y < h; ++y) {
|
|
ym1 = select<u32>(hm1, y - 1, y == 0);
|
|
yp1 = select<u32>(0, y + 1, y == hm1);
|
|
for (x = 0; x < w; ++x) {
|
|
xm1 = select<u32>(wm1, x - 1, x == 0);
|
|
xp1 = select<u32>(0, x + 1, x == wm1);
|
|
n = load<u8>(ym1 * w + xm1) + load<u8>(ym1 * w + x) + load<u8>(ym1 * w + xp1)
|
|
+ load<u8>(y * w + xm1) + load<u8>(y * w + xp1)
|
|
+ load<u8>(yp1 * w + xm1) + load<u8>(yp1 * w + x) + load<u8>(yp1 * w + xp1);
|
|
v = load<u8>(y * w + x);
|
|
if (v) {
|
|
if (n < 2 || n > 3)
|
|
store<u8>(s + y * w + x, 0);
|
|
} else if (n == 3)
|
|
store<u8>(s + y * w + x, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Performing a step uses bytes [0, s-1] as the input and writes the output to [s, 2*s-1].
|
|
// Note that the code above wastes a lot of space by using one byte per cell.
|