forked from movsim/traffic-simulation-de
-
Notifications
You must be signed in to change notification settings - Fork 3
/
intersectionDevelop.html
402 lines (297 loc) · 11.2 KB
/
intersectionDevelop.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html public>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link href="css/styleSliders.css" rel="stylesheet" type="text/css" />
<link href="css/styleTrafficSimulationDe.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>Intersection</title>
</head>
<body>
<!-- ############################################## -->
<!-- outer container -->
<!-- ############################################## -->
<!-- ############################################## -->
<!-- header: title image loaded as background image via css -->
<!-- ############################################## -->
<div id="header">
<!-- <img class="title" src="figs/title.png" width="100%"/> -->
</div>
<!-- ############################################## -->
<!-- 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="myRestartFunction()"/>
</div>
<div id="infoDiv"><img width="100%"
src="figs/infoBlue.png" onclick="showInfo()"/>
</div>
<!--
<div id="lanePlusDiv"><button onclick="addLane()">
Lane<br>++</button>
</div>
<div id="laneMinusDiv"><button onclick="subtractLane()">
Lane<br>--</button>
</div>
-->
<div id="roadIDDiv"><button id="buttonRoadID" onclick="toggleRoadID()"/>
Show road IDs</div>
<div id="vehIDDiv"><button id="buttonVehID" onclick="toggleVehID()"/>
Show vehicle IDs</div>
<!-- ############################################## -->
<!-- choice boxes -->
<!-- ############################################## -->
<!-- "title" text counts as index, so valid options start with 1-->
<div id="priorityDiv">
<select id="changePrioritySelect"
onchange="changeTrafficRules(this.selectedIndex-1)">
<option value="" selected disabled hidden>Traffic Rules</option>
<option> Horizontal Priority</option>
<option> Right Priority</option>
<option> Signalized</option>
</select>
</div>
<!-- "title" text counts as index, so valid options start with 1-->
<div id="ODDiv">
<select id="ODSelect"
< onchange="setTotalLaneNumber(this.selectedIndex)">
<option value="" selected disabled hidden>Number of Lanes</option>
<option> 1 main, 1 secondary lane </option>
<option> 2 main, 1 secondary lanes</option>
<option> 2 main, 2 secondary lanes</option>
<option> 3 main, 1 secondary lanes</option>
<option> 3 main, 2 secondary lanes</option>
<option> 3 main, 3 secondary lanes</option>
</select>
</div>
<!-- ############################################## -->
<!-- redirects to other scenarios, defines myRedirectX -->
<!-- ############################################## -->
<script src="js/redirect.js" type="text/javascript"></script>
<div id="scenarios">
<center>
<br>
<img width="17%" src="figs/iconRing_small.jpg"
onclick="myRedirectRing()"/>
<img width="19%" src="figs/iconOnrampFig_small.jpg"
onclick="myRedirectOnramp()"/>
<img width="19%" src="figs/iconOfframpFig_small.jpg"
onclick="myRedirectOfframp()"/>
<img width="19%" src="figs/iconRoadworksFig_small.jpg"
onclick="myRedirectRoadworks()"/>
<img width="19%" src="figs/iconUphillFig_small.jpg"
onclick="myRedirectUphill()"/>
<img width="20%" src="figs/iconRoutingFig_small.jpg"
onclick="myRedirectRouting()"/>
<img width="22%" src="figs/iconRoundabout_small.jpg"
onclick="myRedirectRoundabout()"/>
<img width="19%" src="figs/iconIntersection_small.jpg"
onclick="myRedirectIntersection()"/>
<img width="20%" src="figs/iconRampmeterFig_small.jpg"
onclick="myRedirectOnrampBaWue()"/>
<a href="intersectionDevelop.html"><b>Dev</b></a>
</center>
</div>
<!-- ############################################## -->
<!-- the actual simulation canvas -->
<!-- ############################################## -->
<!-- !!! NO comments inside canvas spec, leads to DOS!!! -->
<!-- no width, height spec in canvas; overridden anyway -->
<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>
<!-- ################################################# -->
<!-- Copyright/impressum -->
<!-- ################################################# -->
<!--<div id="impressum"> <a href="impressum.html">
© Martin Treiber</a></div>-->
<div id="impressum">
<table class="infoTable"> <TR>
<td> <a href="impressum.html"> © Martin Treiber</a></td>
<TD> <a href="https://github.com/movsim/traffic-simulation-de">
Offline: sources at GitHub</a></TD>
</TR></table>
</div>
<!-- ############################################## -->
<!-- General link list
<!-- ############################################## -->
<div id="link1Div">
<table class="infoTable">
<tr><td> <a href="https://www.movsim.org"> MovSim</a> </td></tr>
</table>
</div>
<div id="link2Div">
<table class="infoTable">
<tr><td><a href = "http://traffic-flow-dynamics.org">
Book "Traffic Flow Dynamics" </a></td></tr>
<tr><td> <a href = "https://www.verkehrsdynamik.de">
Buch "Verkehrsdynamik"</a></td></tr>
</table>
</div>
<!-- ################################################# -->
<!-- Sliders: The whole right-hand or bottom part
<!-- ################################################# -->
<div id="sliders">
<center>
<h3>Traffic Flow and General</h3>
<table id="mainTable" border="0" cellspacing="1" cellpadding="0" >
<tr>
<td>Main Inflow</td>
<td> <input id="slider_qIn" type="range"
min="0" max="2400" step="10"></td>
<td> <div id="slider_qInVal"></div> </td>
</tr>
<tr>
<td>Secondary Inflow</td>
<td> <input id="slider_q2" type="range"
min="0" max="1200" step="10"></td>
<td> <div id="slider_q2Val"></div> </td>
</tr>
<tr>
<td>Percentage Right</td>
<td> <input id="slider_fracRight" type="range"
min="0" max="100" step="1"></td>
<td> <div id="slider_fracRightVal"></div> </td>
</tr>
<tr>
<td>Percentage Left</td>
<td> <input id="slider_fracLeft" type="range"
min="0" max="100" step="1"></td>
<td> <div id="slider_fracLeftVal"></div> </td>
</tr>
<tr>
<td>Timelapse</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>
<h3>Car-Following Behavior</h3>
<table id="mainTable" border="0" cellspacing="1" cellpadding="0" >
<tr>
<td>Max Speed v</sub>0</td>
<td> <input id="slider_IDM_v0" type="range"
min="20" max="160" step="1"></td>
<td> <div id="slider_IDM_v0Val"></div> </td>
</tr>
<tr>
<td>Time Gap T</td>
<td> <input id="slider_IDM_T" type="range"
min="0.6" max="3" step="0.1"></td>
<td> <div id="slider_IDM_TVal"></div> </td>
</tr>
<tr>
<td class="important">Max Accel a</td>
<td> <input id="slider_IDM_a" type="range"
min="0.3" max="4" step="0.1"></td>
<td> <div id="slider_IDM_aVal"></div> </td>
</tr>
</table>
<!--
<h3>Lane-Changing Behavior</h3>
<table id="mainTable" border="0" cellspacing="1" cellpadding="0" >
<tr>
<td>Politeness</td>
<td> <input id="slider_MOBIL_p" type="range"
min="-0.2" max="1" step="0.1"></td>
<td> <div id="slider_MOBIL_pVal"></div> </td>
</tr>
<tr>
<td>LC Threshold</td>
<td> <input id="slider_MOBIL_bThr" type="range"
min="-0.1" max="1" step="0.1"></td>
<td> <div id="slider_MOBIL_bThrVal"></div> </td>
</tr>
<tr>
<td>Right Bias Cars</td>
<td> <input id="slider_MOBIL_bBiasRight_car" type="range"
min="-1" max="2" step="0.1"></td>
<td> <div id="slider_MOBIL_bBiasRight_carVal"></div> </td>
</tr>
<tr>
<td>Right Bias Trucks</td>
<td> <input id="slider_MOBIL_bBiasRight_truck" type="range"
min="-1" max="2" step="0.1"></td>
<td> <div id="slider_MOBIL_bBiasRight_truckVal"></div> </td>
</tr>
</table>
-->
<!-- ############################################## -->
<!-- info-text inside sliders-div (can be filled by showInfo())
<!-- ############################################## -->
<br>
<div id="infotext">
<h1>Intersection (Development Version)</h1>
<ul>
<li>Standard scenario: not signalized priority and secondary road,
only straight-ahead traffic</li>
<li>Change the traffic rules and the number of lanes with the pulldown
menus</li>
<li>Change the size of the intersecting roads with the second menu</li>
<li>Change the traffic and the origin-destination relations with
the sliders</li>
<li>Observe that, with Right Priority, traffic gets in a gridlock
unless demand is very light. Resolve it by changing the traffic
rules (right priority only makes sense for single-lane directional
roads)</li>
<li> In the mainroad and signalized scenarios, any remaining
ambiguities (left-turning mainroad vehicles encounter mainroad
vehicles in the
opposite drection, left turns if there are traffic lights) is
resolved by the Right Priority rule
</ul>
</div>
</center>
</div> <!-- id="sliders">-->
<!-- ############################################## -->
<!-- Download
<!-- ############################################## -->
<div id="downloadDiv">
<img id="download" src="figs/iconDownloadStart_small.png" width="100%"
onclick="downloadCallback()"/>
</div>
<!-- ############################################## -->
<!-- language switching
<!-- ############################################## -->
<div id="infoFlags">
<a href = "intersection.html">
<img src="figs/flagUSA.png" width="45%" />
</a>
<a href = "intersection_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/timeView.js" type="text/javascript"></script>
<script src="js/media.js" type="text/javascript"></script>
<script src="js/control_gui.js"></script>
<script src="js/canvas_gui.js"></script>
<script src="js/TrafficObjects.js"></script>
<script src="js/TrafficLightControlEditor.js"></script>
<script src="js/colormanip.js"></script>
<script src="js/models.js"></script>
<script src="js/vehicle.js"></script>
<script src="js/paths.js"></script>
<script src="js/road.js"></script>
<script src="js/stationaryDetector.js"></script>
<!-- PROJ--> <script src="js/intersectionDevelop.js"></script>
</body>
</html>