forked from movsim/traffic-simulation-de
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroutingGame_ger.html
230 lines (155 loc) · 6.04 KB
/
routingGame_ger.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link href="css/styleSlidersGame.css" rel="stylesheet" type="text/css" />
<link href="css/styleGame.css" rel="stylesheet" type="text/css"/>
<link rel="shortcut icon" type="image/jpg" href="./favicon.jpg">
<script type="text/javascript"
src="js/jquery-1.12.4.min.js">
</script>
<title> Microsimulation of Traffic Flow: Navigation</title>
</head>
<body>
<!-- ############################################## -->
<!-- outer container -->
<!-- ############################################## -->
<!-- ############################################## -->
<!-- Buttons -->
<!-- ############################################## -->
<div id="startStopDiv"><img id="startStop" width="100%"
src="figs/buttonStop3_small.png" onclick="myStartStopFunction()"/>
</div>
<div id="restartDiv"><img id="restart" width="100%"
src="figs/buttonRestart_small.png" onclick="myGameRestartFunction()"/>
</div>
<div id="gameRoutingDiv">
<button onclick='playRoutingGame("infotextGame")'>
Starte Navigationsspiel</button>
</div>
<!-- optionally now in extra file clearHighscores.html during LNDW -->
<!--
<div id="clearHighscoresDiv">
<button onclick='clearHighscores_routingGame();'>
Lösche Highscores</button>
</div>
-->
<div id="playlinksRoutingGame">
<button onclick='window.location.href = "./rampMeteringGame_ger.html";'>
Gehe zu Zufluss-dosierungs-Spiel</button>
</div>
<!-- redirects to other scenarios, defines myRedirectX -->
<script src="js/redirect_ger.js" type="text/javascript"></script>
<!-- ############################################## -->
<!-- the actual simulation canvas -->
<!-- ############################################## -->
<div id="contents">
<canvas id="canvas"
onmouseenter="handleMouseEnter(event)"
onmousemove="handleMouseMove(event)"
onmousedown="handleMouseDown(event)"
onmouseup="handleMouseUp(event)"
onclick="handleClick(event)"
onmouseout="cancelActivities(event)"
style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
</div>
<!-- ################################################# -->
<!-- SliderMain: Main deviation use control of the game
<!-- ################################################# -->
<div id="sliderMainRoutingGame">
<center>
<div id="gameSliderTitle">Anteil Umleitung</div>
<table id="mainTable" border="0" cellspacing="1" cellpadding="0" >
<tr>
<td> <input id="slider_fracOff" type="range"
style="width: 22vw; height: 2.8vmin;"
min="0" max="100" step="1"></td>
<td> <div id="slider_fracOffVal"></div> </td>
</tr>
</table>
</center>
</div>
<!-- ################################################# -->
<!-- Secondary sliders info inflow and timewarp
<!-- ################################################# -->
<div id="slidersRoutingGame">
<center>
<table id="mainTable" border="0" cellspacing="1" cellpadding="0" >
<tr>
<td>Hauptzufluss (Info)</td>
<td> <input id="slider_qIn" type="range"
min="0" max="3600" step="10"></td>
<td> <div id="slider_qInVal"></div> </td>
</tr>
<tr>
<td>Timelapse-Faktor</td>
<td> <input id="slider_timewarp" type="range"
min="0.2" max="20" step="0.1"></td>
<td> <div id="slider_timewarpVal"></div> </td>
</tr>
</table>
</center>
</div>
<!-- ############################################## -->
<!-- Info text including display of results (filled by showInfo())
<!-- ############################################## -->
<div id="infotextRoutingGame"> </div>
<!-- ################################################# -->
<!-- Copyright/impressum -->
<!-- ################################################# -->
<div id="impressum">
<table class="infoTable"> <TR>
<td> <a href="impressum.html"> © Martin Treiber</a></td>
</TR></table>
</div>
<!-- ############################################## -->
<!-- General link list
<!-- ############################################## -->
<div id="link1Div">
<table class="infoTable"> <TR>
<TD> <a href="routing_ger.html">
traffic-simulation.de</a></TD>
<TD> <a href="https://github.com/movsim/traffic-simulation-de">
Sources at GitHub</a></TD>
<!--<TD>
<a href="https://www.movsim.org"> MovSim </a> </TD>-->
<!--<TD> <a href = "https://www.verkehrsdynamik.de" >
Buch "Verkehrsdynamik"</a></TD>
<TD> <a href = "http://traffic-flow-dynamics.org/" >
Book "Traffic Flow Dynamics" </a></TD>-->
</TR></table>
</div>
<!-- ############################################## -->
<!-- language switching
<!-- ############################################## -->
<div id="infoFlags">
<a href = "routingGame.html">
<img src="figs/flagUSA.png" width="45%" />
</a>
<a href = "routingGame_ger.html">
<img src="figs/flagGerman.png" width="45%" />
</a>
</div>
<!-- ########################################################## -->
<!-- specific scripts; position below any simulation elements ! -->
<!-- ########################################################## -->
<script src="js/seedrandom.min.js"></script> <!-- random w seed debug -->
<script src="js/control_gui_ger.js"></script>
<script src="js/timeView_ger.js" type="text/javascript"></script>
<script src="js/media.js" type="text/javascript"></script>
<script src="js/canvas_gui.js"></script>
<script src="js/TrafficObjects.js"></script>
<script src="js/colormanip.js"></script>
<script src="js/models.js"></script>
<script src="js/vehicle.js"></script>
<!--<script src="js/myMath.js"></script> -->
<script src="js/paths.js"></script>
<script src="js/road.js"></script>
<script src="js/stationaryDetector_ger.js"></script>
<script src="js/TrafficLightControlEditor.js"></script>
<script src="js/routingGameInfo_ger.js"></script>
<!-- PROJ--> <script src="js/routingGame_ger.js"></script>
</body>
</html>