4 | 4 |
<style>
|
5 | 5 |
#canvas { border: 1px solid blue; }
|
6 | 6 |
#canvas_viewport {
|
7 | |
width: 800px; height: 600px; overflow: scroll; border: 1px solid black;
|
|
7 |
width: 600px; height: 400px; overflow: scroll; border: 1px solid black;
|
8 | 8 |
}
|
9 | 9 |
#info { float: right; }
|
10 | 10 |
#program {
|
|
22 | 22 |
|
23 | 23 |
<h1>Wierd</h1>
|
24 | 24 |
|
25 | |
<button id="load">Load</button>
|
26 | |
<button id="edit">Edit</button>
|
27 | |
<button id="start">Start</button>
|
28 | |
<button id="stop">Stop</button>
|
29 | |
<button id="step">Step</button>
|
30 | |
Speed: <input id="speed" type="range" min="0" max="200" value="0" />
|
31 | |
|
32 | |
<div id="canvas_viewport">
|
33 | |
<canvas id="canvas" width="400" height="400">
|
34 | |
Your browser doesn't support displaying an HTML5 canvas.
|
35 | |
</canvas>
|
|
25 |
<div>
|
|
26 |
<button id="load">Load</button>
|
|
27 |
<button id="edit">Edit</button>
|
|
28 |
<button id="start">Start</button>
|
|
29 |
<button id="stop">Stop</button>
|
|
30 |
<button id="step">Step</button>
|
|
31 |
Speed: <input id="speed" type="range" min="0" max="200" value="0" />
|
36 | 32 |
</div>
|
37 | 33 |
|
38 | |
<pre id="output"></pre>
|
|
34 |
<div style="display: inline-block">
|
|
35 |
<div id="canvas_viewport">
|
|
36 |
<canvas id="canvas" width="400" height="400">
|
|
37 |
Your browser doesn't support displaying an HTML5 canvas.
|
|
38 |
</canvas>
|
|
39 |
</div>
|
|
40 |
|
|
41 |
<textarea id="program" rows="25" cols="40">
|
|
42 |
</textarea>
|
|
43 |
</div>
|
39 | 44 |
|
40 | |
<textarea id="program" rows="25" cols="40">
|
41 | |
</textarea>
|
|
45 |
<div style="display: inline-block">
|
|
46 |
Stack: <canvas id="stack_display" width="400" height="100"></canvas><br />
|
|
47 |
Input: <input id="input"></input><br />
|
|
48 |
Output: <div id="output"></div>
|
|
49 |
</div>
|
42 | 50 |
|
43 | 51 |
</body>
|
44 | 52 |
<script src="../src/yoob/controller.js"></script>
|
|
52 | 60 |
var v = new yoob.PlayfieldCanvasView;
|
53 | 61 |
v.init(null, document.getElementById('canvas'));
|
54 | 62 |
v.setCellDimensions(undefined, 6);
|
55 | |
c.init(v);
|
|
63 |
c.init({
|
|
64 |
playfieldView: v,
|
|
65 |
stackCanvas: document.getElementById('stack_display'),
|
|
66 |
inputElem: document.getElementById("input"),
|
|
67 |
outputElem: document.getElementById("output")
|
|
68 |
});
|
56 | 69 |
c.connect({
|
57 | 70 |
'start': 'start',
|
58 | 71 |
'stop': 'stop',
|