-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
165 lines (144 loc) · 3.07 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package main
import (
"log"
"math/rand"
"time"
"github.com/hajimehoshi/ebiten/v2"
)
func init() {
rand.NewSource(time.Now().UnixNano())
}
// World represents the game state.
type World struct {
area []bool
width int
height int
}
// NewWorld creates a new world.
func NewWorld(width, height int, maxInitLiveCells int) *World {
w := &World{
area: make([]bool, width*height),
width: width,
height: height,
}
w.init(maxInitLiveCells)
return w
}
// init inits world with a random state.
func (w *World) init(maxLiveCells int) {
for i := 0; i < maxLiveCells; i++ {
x := rand.Intn(w.width)
y := rand.Intn(w.height)
w.area[y*w.width+x] = true
}
}
// Update game state by one tick.
func (w *World) Update() {
width := w.width
height := w.height
next := make([]bool, width*height)
for y := 0; y < height; y++ {
for x := 0; x < width; x++ {
pop := neighbourCount(w.area, width, height, x, y)
switch {
case pop < 2:
// rule 1. Any live cell with fewer than two live neighbours
// dies, as if caused by under-population.
next[y*width+x] = false
case (pop == 2 || pop == 3) && w.area[y*width+x]:
// rule 2. Any live cell with two or three live neighbours
// lives on to the next generation.
next[y*width+x] = true
case pop > 3:
// rule 3. Any live cell with more than three live neighbours
// dies, as if by over-population.
next[y*width+x] = false
case pop == 3:
// rule 4. Any dead cell with exactly three live neighbours
// becomes a live cell, as if by reproduction.
next[y*width+x] = true
}
}
}
w.area = next
}
// Draw paints current game state.
func (w *World) Draw(pix []byte) {
for i, v := range w.area {
if v {
pix[4*i] = 0xff
pix[4*i+1] = 0xff
pix[4*i+2] = 0xff
pix[4*i+3] = 0xff
} else {
pix[4*i] = 0
pix[4*i+1] = 0
pix[4*i+2] = 0
pix[4*i+3] = 0
}
}
}
func max(a, b int) int {
if a < b {
return b
}
return a
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
// neighbourCount calculates the Moore neighborhood of (x, y).
func neighbourCount(a []bool, width, height, x, y int) int {
c := 0
for j := -1; j <= 1; j++ {
for i := -1; i <= 1; i++ {
if i == 0 && j == 0 {
continue
}
x2 := x + i
y2 := y + j
if x2 < 0 || y2 < 0 || width <= x2 || height <= y2 {
continue
}
if a[y2*width+x2] {
c++
}
}
}
return c
}
const (
screenWidth = 640
screenHeight = 480
)
type Game struct {
world *World
pixels []byte
}
func (g *Game) Update() error {
g.world.Update()
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
if g.pixels == nil {
g.pixels = make([]byte, screenWidth*screenHeight*4)
}
g.world.Draw(g.pixels)
screen.WritePixels(g.pixels)
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
}
func main() {
g := &Game{
world: NewWorld(screenWidth, screenHeight, int((screenWidth*screenHeight)/10)),
}
ebiten.SetWindowSize(screenWidth*2, screenHeight*2)
ebiten.SetWindowTitle("Game of Life")
if err := ebiten.RunGame(g); err != nil {
log.Fatal(err)
}
}