This commit is contained in:
Crispy 2024-05-02 13:27:53 +02:00
parent 46910fa0e7
commit a784f7bb98

View file

@ -4,22 +4,14 @@ import "core:fmt"
import "core:strings"
import "core:time"
WIDTH :: 128
HEIGHT :: 128
WIDTH :: 64
HEIGHT :: 64
AREA :: WIDTH * HEIGHT
main :: proc() {
board : [AREA]bool = ---
// board[0] = true
// board[1] = true
// board[WIDTH] = true
// for x in 4..<14 {
// board[x + WIDTH*8] = true
// }
fmt.print("\e[2J") // clear screen
for {
fmt.print("\e[u") // reset cursor
print_board(&board)
update_board(&board)
time.sleep(time.Millisecond * 50)
@ -27,6 +19,7 @@ main :: proc() {
}
print_board :: proc(state: ^[AREA]bool) {
fmt.print("\e[u") // reset cursor
for y := 0; y < HEIGHT; y += 2 {
line := strings.builder_make()
defer strings.builder_destroy(&line)
@ -57,9 +50,7 @@ update_board :: proc(state: ^[AREA]bool) {
px := (x + dx + WIDTH) % WIDTH
for dy in -1..=1 {
py := (y + dy + HEIGHT) % HEIGHT
if state[px + py * WIDTH]{
count += 1
}
if state[px + py * WIDTH] do count += 1
}
}
cell := state[x + y * WIDTH]