-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfire.html
98 lines (77 loc) · 2.87 KB
/
fire.html
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
<html>
<head>
<title>Fire Model</title>
<script src="../lib/agentbase.js"></script>
<script src="../tools/coffee-script.js"></script>
<script type="text/coffeescript">
# AgentBase is Free Software, available under GPL v3 or any later version.
# Original AgentScript code @ 2013, 2014 Owen Densmore and RedfishGroup LLC.
# AgentBase (c) 2014, Wybo Wiersma.
# Fire is a cellular automata model of fire spreading.
u = ABM.util
class ABM.FireModel extends ABM.Model
setup: ->
@agentBreeds ["embers", "fires"]
@agents.setDefault "shape", "square"
@agents.setDefault "color", u.color.red
@agents.setDefault "heading", 0 # override promotion to random angle
@refreshPatches = false
# No optimizations: 50-55fps
# @patches.usePixels() # 50-55fps .. not used, refresh off
# None of the optimizations particularly useful, other than refresh
# If refresh on, fastPatches is in the 50+fps range.
@density = 60 # percent
@burnedTrees = 0
@initialTrees = 0
# defaults
# @animator.setRate 10, true
@animator.setRate 60, false
for patch in @patches.create() when u.randomInt(100) < @density
patch.color = u.color.green # override default, set per patch color
for patch in @patches
if patch.position.x is @patches.min.x
@ignite patch
trees = []
for patch in @patches
if patch.color.equals [0, 255, 0]
trees.push patch
@initialTrees = trees.length
console.log "burnedTrees #{@burnedTrees}"
@burnedTrees = 0 # reset from initial ignites
ignite: (patch) ->
patch.sprout 1, @fires
# in original model but apparently not needed, refresh off?
patch.color = u.color.black
@burnedTrees++
fadeEmbers: ->
for ember in @embers by -1 # -1: allow die() in loop
ember.color = ember.color.fraction(0.8)
# or (Math.max a.color...) < 100 , needs parens
if 100 > Math.max ember.color...
ember.patch.color = ember.color
ember.patch.draw @contexts.patches
ember.die()
step: ->
if @animator.ticks % 100 is 0
console.log @animator.toString()
unless @agents.any()
console.log "..stopping, fire done at tick: #{@animator.ticks}"
@stop()
for fire in @fires by -1 # -1: allow changeBreed() in loop
for patch in fire.patch.neighbors(diamond: 1)
if patch.color.equals u.color.green
@ignite patch
@embers.reBreed fire
@fadeEmbers()
model = new ABM.FireModel {
div: "world",
patchSize: 2,
mapSize: 250
}
model.start()
</script>
</head>
<body>
<div id="world"></div>
</body>
</html>