-
Notifications
You must be signed in to change notification settings - Fork 0
/
11.html
93 lines (90 loc) · 2.98 KB
/
11.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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/postscript.js"></script>
<script src="js/visualizer.js"></script>
<script type="text/javascript">
(function ($) {
$(function () {
var updater = function () {
var visualizer = new Visualizer($('#canvas')[0], "11", ["..#.#...#...#...2.#.","#.1#........#.##....","#...#4.......#.#..#.","#.....#.#0..#.......","....#.#..##2....#...","#..#.4....##...#.##.","7....#..#..###......","6.#.##...#.#.####.##","..###...#..8...#....",".#...##......#.#..##","#.#.#.#.#.....##5...","...#0....#6..##.#.##","#6..######6....##..#","##.#.#..#2.....##...","..#..#..#.#.........","##...2..##..........","..........#..#2...##",".#..#.0.#.#.###...#1",".......1.....1#.#.##","..#7..##.3#....##..#"], ["..#.#...#...#.....#.","#1.#........#.##....","#...#...4....#.#2.#.","#.....#0#.0.#.......","..7.#4#..##....2#...","#..#......##...#.##.",".....#..#.6###......",".6#.##...#.#.####.##","..###...#....6.#....",".#...##...2..#.#..##","#.#.#.#.#.....##..5.","...#.....#...##.#.##","#..6######.....##..#","##.#3#01#......##...","..#..#1.#2#.........","##....2.##..........","..........#..#....##",".#..#...#.#.###...#1","....7.........#.#.##","..#...##..#...8##..#"], [[11, 4, 2],[11, 10, 3],[12, 10, 3],[13, 9, 2],[2, 5, 1],[17, 6, 3],[7, 0, 2],[15, 5, 1],[19, 3, 2],[19, 5, 3],[19, 4, 3],[1, 2, 0],[12, 1, 2],[3, 9, 3],[4, 11, 3],[0, 9, 2],[0, 11, 1],[0, 10, 1],[18, 7, 3],[13, 6, 1],[18, 13, 0],[18, 6, 3],[18, 7, 3],[14, 7, 0],[7, 10, 1],[13, 14, 0],[13, 10, 3],[13, 11, 0],[13, 9, 1],[15, 5, 2],[15, 7, 1],[18, 7, 0],[13, 7, 1],[18, 5, 2],[18, 7, 3],[18, 6, 3],[4, 11, 2],[19, 9, 0],[19, 8, 3],[15, 6, 1],[18, 8, 0],[18, 6, 3],[18, 7, 0],[18, 4, 1],[18, 5, 0],[19, 4, 3],[18, 0, 2],[18, 3, 3],[14, 3, 2],[14, 4, 3],[8, 11, 1],[19, 11, 2],[5, 5, 0],[5, 4, 1],[6, 4, 0],[6, 1, 3],[2, 1, 2],[2, 3, 1],[10, 16, 2],[16, 14, 3],[12, 14, 0],[12, 10, 3],[8, 10, 2],[0, 16, 1],[7, 10, 1],[13, 10, 2],[6, 10, 1],[13, 14, 0],[13, 10, 3],[13, 11, 3],[8, 11, 2]]);
visualizer.doit();
};
updater();
});
})(jQuery);
</script>
<style type="text/css">
body {
font-family: Arial, Sans-Serif;
}
h3 {
font-size: 12pt;
padding-left: 0.5em;
}
#canvas {
border: 1px solid black;
}
/* td.properties {
padding-left: 1em;
} */
#coord {
position: fixed;
top: 2px;
left: 2px;
font-familiy: Helvetica;
font-size: 10pt;
background: #fef3a1;
border-style: solid;
border-width: 1px;
border-color: #bba824;
padding: 2px 2px 2px 2px;
z-index: 1;
opacity: 0.9;
}
#steps {
align: left;
}
</style>
</head>
<body>
<table>
<tr>
<td colspan="3">
<canvas id="canvas" width="960" height="960" sytle="align: center">
</canvas>
</td>
</tr>
<tr>
<td>
<h3>seed:</h3>
</td>
<td id="seed">
</td>
<td>
</td>
</tr>
<tr>
<td class="properties">
<h3>steps:</h3>
</td>
<td id="steps">
</td>
<td>
</td>
</tr>
<tr>
<td>
<h3>Score:</h3>
</td>
<td id="score">
</td>
<td>
</td>
</tr>
</table>
<div>
<strong id="coord"></strong>
</div>
</body>
</html>