ebiten/docs/examples/life.html

211 lines
6.8 KiB
HTML
Raw Normal View History

2016-09-02 19:44:29 +02:00
<!DOCTYPE html>
2017-08-18 16:26:17 +02:00
<meta charset="utf-8">
2017-08-18 16:43:08 +02:00
<meta property="og:image" itemprop="image primaryImageOfPage" content="https://hajimehoshi.github.io/ebiten/images/examples/life.png">
<meta name="description" content="Ebiten example - life">
2016-09-02 19:44:29 +02:00
<link rel="shortcut icon" href="../favicon.png" type="image/png" >
<link rel="icon" href="../favicon.png" type="image/png" >
<title>Ebiten example - life</title>
2017-08-18 16:26:17 +02:00
2016-09-02 19:44:29 +02:00
<link rel="stylesheet" href="../stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="../stylesheets/highlight-github.css">
<link rel="stylesheet" href="../stylesheets/ebiten.css">
<script src="../scripts/googleanalytics.js"></script>
2017-08-17 20:00:05 +02:00
<nav class="navbar"><div class="container">
2017-08-17 18:22:19 +02:00
<nav class="d-flex flex-row" style="width: 100%;">
2017-08-17 20:00:05 +02:00
<div class="nav mr-auto"><a class="navbar-brand" href="../"><img src="../images/logo_white.svg" alt="EBITEN"></a></div>
2017-08-17 18:22:19 +02:00
<ul class="nav">
<li class="nav-item"><a class="nav-link" href="https://github.com/hajimehoshi/ebiten">GitHub</a></li>
<li class="nav-item"><a class="nav-link" href="https://godoc.org/github.com/hajimehoshi/ebiten">GoDoc</a></li>
<li class="nav-item"><a class="nav-link" href="https://github.com/hajimehoshi/ebiten/wiki">Wiki</a>
<li class="nav-item"><a class="nav-link" href="https://ebiten-playground.github.io/">Playground</a>
2016-09-02 19:44:29 +02:00
</ul>
</nav>
2017-08-17 20:00:05 +02:00
</div></nav>
2016-09-02 19:44:29 +02:00
<main><div class="container">
<h2>Ebiten example - life</h2>
<iframe src="life.content.html" width="640" height="480"></iframe>
2017-08-18 16:26:17 +02:00
<div class="card"><pre class="card-body"><code class="language-go">// &#43;build example
2016-09-02 19:44:29 +02:00
package main
import (
&#34;log&#34;
&#34;math/rand&#34;
&#34;time&#34;
&#34;github.com/hajimehoshi/ebiten&#34;
)
2018-01-29 15:39:30 +01:00
// World represents the game state.
2016-09-02 19:44:29 +02:00
type World struct {
area [][]bool
}
2018-01-29 15:39:30 +01:00
func newArea(width, height int) [][]bool {
a := make([][]bool, height)
for i := 0; i &lt; height; i&#43;&#43; {
a[i] = make([]bool, width)
}
return a
}
// NewWorld creates a new world.
func NewWorld(width, height int, maxInitLiveCells int) *World {
w := &amp;World{
area: newArea(width, height),
2017-06-09 04:43:50 +02:00
}
2018-01-29 15:39:30 +01:00
w.init(maxInitLiveCells)
return w
}
func init() {
rand.Seed(time.Now().UnixNano())
2016-09-02 19:44:29 +02:00
}
2018-01-29 15:39:30 +01:00
// init inits world with a random state.
func (w *World) init(maxLiveCells int) {
2016-09-02 19:44:29 +02:00
height := len(w.area)
width := len(w.area[0])
2018-01-29 15:39:30 +01:00
for i := 0; i &lt; maxLiveCells; i&#43;&#43; {
x := rand.Intn(width)
y := rand.Intn(height)
2016-09-02 19:44:29 +02:00
w.area[y][x] = true
}
}
2018-01-29 15:39:30 +01:00
// Update game state by one tick.
func (w *World) Update() {
2016-09-02 19:44:29 +02:00
height := len(w.area)
width := len(w.area[0])
2018-01-29 15:39:30 +01:00
next := newArea(width, height)
2016-09-02 19:44:29 +02:00
for y := 0; y &lt; height; y&#43;&#43; {
for x := 0; x &lt; width; x&#43;&#43; {
pop := neighbourCount(w.area, x, y)
switch {
case pop &lt; 2:
// rule 1. Any live cell with fewer than two live neighbours
// dies, as if caused by under-population.
next[y][x] = false
case (pop == 2 || pop == 3) &amp;&amp; w.area[y][x]:
// rule 2. Any live cell with two or three live neighbours
// lives on to the next generation.
next[y][x] = true
case pop &gt; 3:
// rule 3. Any live cell with more than three live neighbours
// dies, as if by over-population.
next[y][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][x] = true
}
}
}
w.area = next
}
2018-01-29 15:39:30 +01:00
// Draw paints current game state.
func (w *World) Draw(pix []byte) {
2016-09-02 19:44:29 +02:00
height := len(w.area)
width := len(w.area[0])
for y := 0; y &lt; height; y&#43;&#43; {
for x := 0; x &lt; width; x&#43;&#43; {
2018-01-29 15:39:30 +01:00
idx := 4*y*width &#43; 4*x
2016-09-02 19:44:29 +02:00
if w.area[y][x] {
2018-01-29 15:39:30 +01:00
pix[idx] = 0xff
pix[idx&#43;1] = 0xff
pix[idx&#43;2] = 0xff
pix[idx&#43;3] = 0xff
2016-09-02 19:44:29 +02:00
} else {
2018-01-29 15:39:30 +01:00
pix[idx] = 0
pix[idx&#43;1] = 0
pix[idx&#43;2] = 0
pix[idx&#43;3] = 0
2016-09-02 19:44:29 +02:00
}
}
}
}
2018-01-29 15:39:30 +01:00
func max(a, b int) int {
if a &lt; b {
return b
2016-09-02 19:44:29 +02:00
}
2018-01-29 15:39:30 +01:00
return a
}
2016-09-02 19:44:29 +02:00
2018-01-29 15:39:30 +01:00
func min(a, b int) int {
if a &lt; b {
return a
}
return b
2016-09-02 19:44:29 +02:00
}
2018-01-29 15:39:30 +01:00
// neighbourCount calculates the Moore neighborhood of (x, y).
func neighbourCount(a [][]bool, x, y int) int {
w := len(a[0])
h := len(a)
minI := max(x-1, 0)
minJ := max(y-1, 0)
maxI := min(x&#43;1, w-1)
maxJ := min(y&#43;1, h-1)
c := 0
for j := minJ; j &lt;= maxJ; j&#43;&#43; {
for i := minI; i &lt;= maxI; i&#43;&#43; {
if i == x &amp;&amp; j == y {
continue
}
if a[j][i] {
c&#43;&#43;
}
}
2016-09-02 19:44:29 +02:00
}
2018-01-29 15:39:30 +01:00
return c
2016-09-02 19:44:29 +02:00
}
const (
screenWidth = 320
screenHeight = 240
)
var (
2018-01-29 15:39:30 +01:00
world = NewWorld(screenWidth, screenHeight, int((screenWidth*screenHeight)/10))
pixels = make([]byte, screenWidth*screenHeight*4)
2016-09-02 19:44:29 +02:00
)
func update(screen *ebiten.Image) error {
2018-01-29 15:39:30 +01:00
world.Update()
2017-05-16 03:38:34 +02:00
if ebiten.IsRunningSlowly() {
return nil
}
2018-01-29 15:39:30 +01:00
world.Draw(pixels)
2017-06-09 04:43:50 +02:00
screen.ReplacePixels(pixels)
2016-09-02 19:44:29 +02:00
return nil
}
func main() {
2018-01-29 15:39:30 +01:00
if err := ebiten.Run(update, screenWidth, screenHeight, 2, &#34;Game of Life (Ebiten Demo)&#34;); err != nil {
2016-09-02 19:44:29 +02:00
log.Fatal(err)
}
}
2017-08-18 16:26:17 +02:00
</code></pre></div>
2016-09-02 19:44:29 +02:00
</div></main>
<footer><div class="container">
<p>© 2013 Hajime Hoshi</p>
<p>Code is licensed under <a href="https://github.com/hajimehoshi/ebiten/blob/master/LICENSE">the Apache License 2.0</a>.</p>
<p>The content of this page is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">the Creative Commons Attribution 4.0 License</a>.</p>
</div></footer>
<script src="../scripts/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>