-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
87 lines (86 loc) · 4.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Picobot</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="StringStream.js"></script>
<script src="WorldState.js"></script>
<script src="Rule.js"></script>
<script src="State.js"></script>
<script src="Robot.js"></script>
<script src="Map.js"></script>
<script src="StateSelector.js"></script>
<script src="Code.js"></script>
<script src="WallState.js"></script>
<script src="World.js"></script>
<script src="Level.js"></script>
<script src="util.js"></script>
<script src="MapGenerator.js"></script>
<script src="Condition.js"></script>
<script src="Action.js"></script>
<script src="MemoryLabel.js"></script>
<script src="Run.js"></script>
<script src="StartRoom.js"></script>
<script src="StupidRoom.js"></script>
<script src="SquareRoom.js"></script>
<script src="DiamondRoom.js"></script>
<script src="Spiral.js"></script>
<script src="Snake.js"></script>
<script src="Maze.js"></script>
<script src="HardMaze.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="app.css" type="text/css" />
</head>
<body>
<div id="header"></div>
<div id="map">
<div id="mapcanvas"></div>
<div id="mapdata"></div>
</div>
<div id="maintabs">
<ul>
<li><a href="#gui">Editor</a></li>
<!--<li><a href="#code">Code</a></li>-->
<!--<li><a href="#help">Help</a></li>-->
<li><a href="#about">About</a></li>
</ul>
<div id="gui"></div>
<!--<div id="code">
</div>-->
<!--<div id="help">
<div></div>
</div>-->
<div id="about">
<div style="padding-left:20px">
<p>Made by Fabian Muehlboeck (<a href="https://www.cs.cornell.edu/~fabianm" target="_blank">www.cs.cornell.edu/~fabianm</a>) based on <a href="https://www.cs.hmc.edu/picobot" target="_blank">Picobot</a>.</p>
<p>
If you like these kinds of things, there are many professionally produced video games that use similar styles of thinking, among them:
<ul>
<li><a href="https://tomorrowcorporation.com/humanresourcemachine" target="_blank">Human Resource Machine</a> and <a href="https://tomorrowcorporation.com/7billionhumans" target="_blank">7 Billion Humans</a></li>
<li><a href="http://www.zachtronics.com/spacechem/" target="_blank">SpaceChem</a></li>
<li><a href="http://pleasingfungus.com/Manufactoria/" target="_blank">Manufactoria</a></li>
<li><a href="https://www.factorio.com" target="_blank">Factorio</a></li>
</ul>
Of course, there's also learning more formal programming itself, for which we recommend to have the support of teachers. If your teachers need a curriculum or materials, point them at <a href="http://www.bootstrapworld.org/">Bootstrap</a>.
</p>
<p>DISCLAIMER: We do not take responsibility for the content of external websites that we link to. This website is provide "AS IS", without warranty or any other kind of guarantees.</p>
</div>
</div>
</div>
<!--<div id="footer">Based on <a href="https://www.cs.hmc.edu/picobot" target="_blank">Picobot</a></div>-->
<script>
$("#maintabs").tabs();
$(document).tooltip();
$(document).ready(function () {
Pico.getInstance().init();
});
var clearbutton = document.createElement("button");
clearbutton.innerText = "clear";
clearbutton.onclick = function () { Pico.getInstance().clear(); }
$("#about")[0].appendChild(clearbutton);
</script>
</body>
</html>