-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.html
69 lines (44 loc) · 1.2 KB
/
test.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
<canvas id="canvas" width="600" height="600"></canvas>
<script type="text/javascript" src="src/simulation/Drawing.js" ></script>
<script type="text/javascript" src="src/simulation/Environment.js" ></script>
<script type="text/javascript" src="src/simulation/Environment2.js" ></script>
<script>
window.onload = function{
var canvas = document.getElementById('canvas')
env = new Environment(canvas)
agent = new Agent(env)
//Initial script
for(let p = 0; p < 3; p++){
for(let j = 0; j < 4; j++){
agent.move(UP)
for(let k = 0; k < 6; k++){
agent.place(DOWN)
agent.move(FORWARD)
}
agent.turn(LEFT)
}
}
for(let p = 0; p < 3; p++){
for(let j = 0; j < 4; j++){
agent.move(UP)
for(let k = 0; k < 6; k++){
agent.place(DOWN)
agent.move(BACK)
}
agent.turn(RIGHT)
}
}
function draw(){
env.drawChanges()
}
function update(){
agent.processNextCommand()
}
function loop(){
update()
render()
window.requestAnimationFrame(loop)
}
window.requestAnimationFrame(loop)
}
</script>