cleanup
This commit is contained in:
parent
46910fa0e7
commit
fac71e1b95
1 changed files with 8 additions and 17 deletions
11
main.odin
11
main.odin
|
@ -10,13 +10,6 @@ AREA :: WIDTH * HEIGHT
|
||||||
|
|
||||||
main :: proc() {
|
main :: proc() {
|
||||||
board : [AREA]bool = ---
|
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
|
fmt.print("\e[2J") // clear screen
|
||||||
for {
|
for {
|
||||||
fmt.print("\e[u") // reset cursor
|
fmt.print("\e[u") // reset cursor
|
||||||
|
@ -57,9 +50,7 @@ update_board :: proc(state: ^[AREA]bool) {
|
||||||
px := (x + dx + WIDTH) % WIDTH
|
px := (x + dx + WIDTH) % WIDTH
|
||||||
for dy in -1..=1 {
|
for dy in -1..=1 {
|
||||||
py := (y + dy + HEIGHT) % HEIGHT
|
py := (y + dy + HEIGHT) % HEIGHT
|
||||||
if state[px + py * WIDTH]{
|
if state[px + py * WIDTH] do count += 1
|
||||||
count += 1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cell := state[x + y * WIDTH]
|
cell := state[x + y * WIDTH]
|
||||||
|
|
Loading…
Reference in a new issue