]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - index.html.in
561821592b04b1eb0da99dc8e9aa49a0a508385a
[charm-bypass.git] / index.html.in
1 <!doctype html>
2 <html lang="en-US">
3 <head>
4 <meta name="viewport" content="width=device-width, initial-scale=1" />
5
6 <title>
7 CharmBypass: doing transit equity whether they like it or not
8 </title>
9
10 <style>
11 input[type=submit] {
12 margin-top: 1em;
13 margin-bottom: 1em;
14 }
15
16 svg {
17 /* Set the height to 100% of the screen, which we'll keep; and the
18 * initial position to (0,0), which we're going to change
19 * every time the window is resized, because the exact amount
20 * that we have to slide the SVG to the left to get the ticket
21 * into the center will change. */
22 position: fixed;
23 top: 0;
24 left: 0;
25 height: 100%;
26
27 /* Hide everything by default. We only show it once the user has
28 * submitted the menu form */
29 display: none;
30 }
31
32 /* The blinking fade in/out animation for the ticket date and time */
33 @keyframes blink {
34 25% {
35 opacity: 0.5;
36 }
37 50% {
38 opacity: 0;
39 }
40 75% {
41 opacity: 0.5;
42 }
43 }
44
45 #tickettime, #ticketdate {
46 /* 300 two-second blinks is ten minutes */
47 animation: blink 2s linear 300;
48 }
49
50 /* Define, load, and specify the custom font we use for the ticket
51 * date, time, and service name. */
52 @font-face {
53 font-family: "CharmBypass Regular";
54 src:
55 url("data:font/woff2;base64,@CBPREGULAR@") format("woff2")
56 }
57
58 #servicename, #tickettime, #ticketdate, #codetext {
59 font-family: "CharmBypass Regular", sans-serif;
60 }
61
62 @font-face {
63 font-family: "CharmBypass Bold";
64 src:
65 url("data:font/woff2;base64,@CBPBOLD@") format("woff2")
66 }
67
68 #serviceid {
69 font-family: "CharmBypass Bold", sans-serif;
70 }
71
72 /************************/
73 /* Scrolling animations */
74 /************************/
75
76 /* Bus */
77 @keyframes busroll {
78 from {
79 transform: translateX(0%);
80 }
81 to {
82 transform: translateX(-100%);
83 }
84 }
85
86 #bus {
87 animation: busroll 23s linear infinite;
88 }
89
90
91 /* Tram */
92 @keyframes tramroll {
93 from {
94 transform: translateX(0%);
95 }
96 to {
97 transform: translateX(100%);
98 }
99 }
100
101 #tram {
102 animation: tramroll 17s linear infinite;
103 }
104
105
106 /* Tram */
107 @keyframes trainroll {
108 from {
109 transform: translateX(0%);
110 }
111 to {
112 transform: translateX(100%);
113 }
114 }
115
116 #train {
117 animation: trainroll 11s linear infinite;
118 }
119
120
121 /* Clouds */
122 @keyframes cloudsfloat {
123 from {
124 transform: translateX(0%);
125 }
126 to {
127 transform: translateX(-50%);
128 }
129 }
130
131 #clouds {
132 animation: cloudsfloat 40s linear infinite;
133 }
134
135 @keyframes cloudscopyfloat {
136 from {
137 transform: translateX(0%);
138 }
139 to {
140 transform: translateX(-50%);
141 }
142 }
143
144 #cloudscopy {
145 animation: cloudscopyfloat 40s linear infinite;
146 }
147
148
149 /* Trees */
150 @keyframes treespass {
151 from {
152 transform: translateX(0%);
153 }
154 to {
155 transform: translateX(-50%);
156 }
157 }
158
159 #trees {
160 /* The trees move a little faster than the clouds */
161 animation: treespass 30s linear infinite;
162 }
163
164 @keyframes treescopypass {
165 from {
166 transform: translateX(0%);
167 }
168 to {
169 transform: translateX(-50%);
170 }
171 }
172
173 #treescopy {
174 /* The trees move a little faster than the clouds */
175 animation: treescopypass 30s linear infinite;
176 }
177
178
179 /* City skyline */
180 @keyframes cityscroll {
181 from {
182 transform: translateX(0%);
183 }
184 to {
185 transform: translateX(-50%);
186 }
187 }
188
189 #city {
190 /* The city moves faster than the clouds but slower
191 * than the trees */
192 animation: cityscroll 35s linear infinite;
193 }
194
195 @keyframes citycopyscroll {
196 from {
197 transform: translateX(0%);
198 }
199 to {
200 transform: translateX(-50%);
201 }
202 }
203
204 #citycopy {
205 /* The city moves faster than the clouds but slower
206 * than the trees */
207 animation: citycopyscroll 35s linear infinite;
208 }
209 </style>
210 </head>
211
212 <body>
213 <div id="menu">
214 <h1>CharmBypass</h1>
215 <h2>doing transit equity whether they like it or not</h2>
216
217 <p>
218 <em>Hint:</em> If you think the driver or fare inspector will
219 actually check it, the daily security code is the same on a
220 $2.00 BaltimoreLink ticket as it is on a $9.00 MARC Train
221 ticket. It's also the same on your friend's phone, or for
222 anyone else in Maryland that day.
223 </p>
224
225 <form>
226 <fieldset>
227 <legend>BaltimoreLink (Bus, Light Rail, Metro)</legend>
228 <div>
229 <label for="code1">
230 Daily security code (optional):
231 </label>
232 <input id="code1"
233 name="code"
234 type="text"
235 minlength="2"
236 maxlength="2"
237 pattern="[a-zA-Z0-9]*" />
238 </div>
239 <input type="hidden" name="servicename" value="BaltimoreLink" />
240 <input type="submit" name="go" value="Get Ticket" />
241 </fieldset>
242 </form>
243 <form>
244 <fieldset>
245 <legend>Commuter Bus</legend>
246 <input type="hidden" name="serviceid" value="R" />
247 <input type="hidden" name="servicename" value="Commuter Bus" />
248
249 <div>
250 <label for="code2">
251 Daily security code (optional):
252 </label>
253 <input id="code2"
254 name="code"
255 type="text"
256 minlength="2"
257 maxlength="2"
258 pattern="[a-zA-Z0-9]*" />
259 </div>
260
261 <h3>Zone</h3>
262 <div>
263 <input required type="radio" id="zone1" name="zone" value="Zone 1" />
264 <label for="zone1">Zone 1</label>
265 </div>
266 <div>
267 <input required type="radio" id="zone2" name="zone" value="Zone 2" />
268 <label for="zone2">Zone 2</label>
269 </div>
270 <div>
271 <input required type="radio" id="zone3" name="zone" value="Zone 3" />
272 <label for="zone3">Zone 3</label>
273 </div>
274 <div>
275 <input required type="radio" id="zone4" name="zone" value="Zone 4" />
276 <label for="zone4">Zone 4</label>
277 </div>
278 <div>
279 <input required type="radio" id="zone5" name="zone" value="Zone 5" />
280 <label for="zone5">Zone 5</label>
281 </div>
282
283 <input type="submit" name="go" value="Get Ticket" />
284 </fieldset>
285 </form>
286 <form>
287 <fieldset>
288 <legend>MARC Train</legend>
289
290 <div>
291 <label for="code3">
292 Daily security code (optional):
293 </label>
294 <input id="code3"
295 name="code"
296 type="text"
297 minlength="2"
298 maxlength="2"
299 pattern="[a-zA-Z0-9]*" />
300 </div>
301
302 <h3>Origin</h3>
303
304 <div>
305 <input required type="radio" id="origin1" name="origin" value="BAL" />
306 <label for="origin1">Baltimore/Penn (Penn Line)</label>
307 </div>
308 <div>
309 <input required type="radio" id="origin2" name="origin" value="BCA" />
310 <label for="origin2">Baltimore/Camden (Camden Line)</label>
311 </div>
312 <div>
313 <input required type="radio" id="origin3" name="origin" value="BWE" />
314 <label for="origin3">Bowie State (Penn Line)</label>
315 </div>
316 <div>
317 <input required type="radio" id="origin4" name="origin" value="BWI" />
318 <label for="origin4">BWI Airport (Penn Line)</label>
319 </div>
320 <div>
321 <input required type="radio" id="origin5" name="origin" value="CPK" />
322 <label for="origin5">College Park (Camden Line)</label>
323 </div>
324 <div>
325 <input required type="radio" id="origin6" name="origin" value="SEB" />
326 <label for="origin6">Seabrook (Penn Line)</label>
327 </div>
328 <div>
329 <input required type="radio" id="origin7" name="origin" value="WAS" />
330 <label for="origin7">Washington D.C.</label>
331 </div>
332 <div>
333 <input required type="radio" id="origin8" name="origin" value="WBL" />
334 <label for="origin8">West Baltimore (Penn Line)</label>
335 </div>
336
337 <h3>Destination</h3>
338 <div>
339 <input required type="radio" id="destination1" name="destination" value="BAL" />
340 <label for="destination1">Baltimore/Penn (Penn Line)</label>
341 </div>
342 <div>
343 <input required type="radio" id="destination2" name="destination" value="BCA" />
344 <label for="destination2">Baltimore/Camden (Camden Line)</label>
345 </div>
346 <div>
347 <input required type="radio" id="destination3" name="destination" value="BWE" />
348 <label for="destination3">Bowie State (Penn Line)</label>
349 </div>
350 <div>
351 <input required type="radio" id="destination4" name="destination" value="BWI" />
352 <label for="destination4">BWI Airport (Penn Line)</label>
353 </div>
354 <div>
355 <input required type="radio" id="destination5" name="destination" value="CPK" />
356 <label for="destination5">College Park (Camden Line)</label>
357 </div>
358 <div>
359 <input required type="radio" id="destination6" name="destination" value="SEB" />
360 <label for="destination6">Seabrook (Penn Line)</label>
361 </div>
362 <div>
363 <input required type="radio" id="destination7" name="destination" value="WAS" />
364 <label for="destination7">Washington D.C.</label>
365 </div>
366 <div>
367 <input required type="radio" id="destination8" name="destination" value="WBL" />
368 <label for="destination8">West Baltimore (Penn Line)</label>
369 </div>
370
371 <input type="hidden" name="serviceid" value="R" />
372 <input type="hidden" name="servicename" value="MARC Train" />
373 <input type="submit" name="go" value="Get Ticket" />
374 </fieldset>
375 </form>
376 </div>
377
378 @SVGDATA@
379
380 <script>
381
382 /***********************************************/
383 /* First, center the ticket within the browser */
384 /***********************************************/
385
386 function center_ticket() {
387 /* We're relying on the SVG being the full height of the
388 * viewport already, and on the aspect ratio being
389 * preserved. First, find the center of the ticket. */
390 const r = document.getElementById("ticket").getBoundingClientRect();
391 const c = r.left + (r.width / 2);
392
393 /* That's the center-line of the ticket. We want to move it to
394 * the center-line of the viewport. */
395 const vc = document.documentElement.clientWidth / 2;
396
397 /* This is how much we need to translate the SVG */
398 const hdelta = vc - c;
399
400 /* But before we can set the absolute left-coordinate of the
401 * SVG, we need to know where it is now. Note: without the
402 * "px" this doesn't default to pixels like CSS does. */
403 const svg = document.querySelector("svg");
404 svg.style.left = (svg.getBoundingClientRect().left + hdelta) + "px";
405 }
406
407
408 /******************************/
409 /* Set the service identifier */
410 /******************************/
411 function set_service_id() {
412 const sid = document.getElementById("serviceid");
413
414 /* Get the "serviceid" from the querystring if it's there */
415 const params = new URLSearchParams(document.location.search);
416 if (params.get("serviceid")) {
417 sid.textContent = params.get("serviceid");
418 }
419
420 /* Otherwise, leave it at "F" */
421 }
422
423 /******************************/
424 /* Set the service name */
425 /******************************/
426 function set_service_name() {
427 const sid = document.getElementById("servicename");
428
429 /* Get the "servicename" from the querystring if it's there */
430 const params = new URLSearchParams(document.location.search);
431 if (params.get("servicename")) {
432 sid.textContent = params.get("servicename");
433 }
434
435 /* Otherwise, leave it at "BaltimoreLink" */
436 }
437
438 /****************************************/
439 /* Set and reposition the security code */
440 /****************************************/
441
442 function set_code() {
443 const ct = document.getElementById("codetext");
444
445 /* Get the "code" from the querystring if it's there */
446 const params = new URLSearchParams(document.location.search);
447 if (params.get("code")) {
448 ct.textContent = params.get("code").toUpperCase();
449 }
450 else {
451 /* Otherwise, use a random code */
452 const bucket = ["0","1","2","3","4","5","6","7","8","9",
453 "A","B","C","D","E","F","G","H","I","J",
454 "K","L","M","N","O","P","Q","R","S","T",
455 "U","V","W","X","Y","Z"];
456
457 /* Two random ints between 0 and 35 */
458 const i1 = Math.floor(Math.random() * 36);
459 const i2 = Math.floor(Math.random() * 36);
460 const d1 = bucket[i1];
461 const d2 = bucket[i2];
462 ct.textContent = d1 + d2;
463 }
464 }
465
466
467 function center_code() {
468 /* Center the security code inside its red box */
469 const ct = document.getElementById("codetext");
470 const bg = document.getElementById("codebg");
471
472 /* First, find the center of the red box */
473 const r1 = bg.getBoundingClientRect();
474 const c1 = r1.left + (r1.width / 2);
475
476 /* Now the center of the code text */
477 const r2 = ct.getBoundingClientRect();
478 const c2 = r2.left + (r2.width / 2);
479
480 /* What do we add to c2 to make it equal to c1? */
481 const hdelta = c1 - c2;
482
483 /* We've measured everything so far in "client rect"
484 * coordinates, because that's the only available measurement
485 * we have for the width of the <text> element after futzing
486 * with its contents. But when we reposition that <text>
487 * element, it will be by adjusting its "x" attribute, and
488 * that attribute uses a different coordinate system than the
489 * client rect does. Specifically, "x" refers to an offset
490 * within the SVG's coordinate system, and the client rect
491 * coordinates are pixels on-screen. To convert between the
492 * two, we can take the "width" attribute of the background
493 * element and compare it to the width of the background
494 * element's client rect. Since the size of the background is
495 * fixed, this should give us a multiplier that turns client recr
496 * distances (what we have) into SVG distances (what we want) */
497 const client_to_svg = parseFloat(bg.getAttribute("width"))/r1.width;
498
499 /* Convert hdelta from client rect to SVG coordinates */
500 const svg_hdelta = hdelta * client_to_svg;
501
502 /* Since this <text> element has an "x" attribute it's easier for
503 * us to shift that than it is to mess with the "left" style. */
504 ct.setAttribute("x", parseFloat(ct.getAttribute("x")) + svg_hdelta);
505 }
506
507 /*****************************************/
508 /* Next, set up the ticket date and time */
509 /*****************************************/
510
511 function set_ticket_expiry() {
512 /* There are two parameters, time and date, that we store in one
513 * underlying "date" variable. Default both to an hour and a
514 * half from now. This is what the CharmPass app does for
515 * one-way tickets. */
516 const date = new Date();
517
518 /* BaltimoreLink and MARC Train are valid for an hour and a half */
519 let minutes = 90;
520 const params = new URLSearchParams(document.location.search);
521 if (params.get("servicename") == "Commuter Bus") {
522 /* But commuter bus tickets are only valid for ten minutes */
523 minutes = 10;
524 }
525
526 /* We use the low-level get/setTime to change the number of
527 * milliseconds since the epoch that this date represents
528 * Obviously correct, and avoids all suspicious corner cases
529 * for a few more decades. */
530 date.setTime(date.getTime() + (minutes*60*1000));
531
532 tt = document.getElementById("tickettime");
533 tt.textContent = date.toLocaleTimeString();
534
535 const td = document.getElementById("ticketdate");
536 const dateopts = {
537 day: "2-digit",
538 month: "2-digit",
539 year: "2-digit"
540 };
541 td.textContent = date.toLocaleDateString("en-US", dateopts);
542 }
543
544
545 /*********************************************************/
546 /* Finally, the onclick handler for the night/day switch */
547 /*********************************************************/
548
549 /* We always start in "day" mode */
550 is_day = true;
551
552 function set_day() {
553 sky.style.fill = "#efb02f";
554 }
555
556 function set_night() {
557 sky.style.fill = "#143b66";
558 }
559
560 function swap_colors() {
561 if (is_day) {
562 set_night();
563 is_day = false;
564 }
565 else {
566 set_day();
567 is_day = true;
568 }
569 }
570
571
572 /*******************************************************/
573 /* Compute the MARC "zone" from its origin/destination */
574 /*******************************************************/
575
576 /* Sorted on the first component, then the second */
577 const zone_map = {
578 BAL_BWE: 2,
579 BAL_BWI: 1,
580 BAL_SEB: 3,
581 BAL_WAS: 4,
582 BAL_WBL: 1,
583 BCA_CPK_: 3,
584 BCA_WAS_: 4,
585 BWI_BWE: 1,
586 BWI_WAS: 3,
587 BWI_WBL: 1
588 };
589
590 /* Compute the zone (string) for the given origin/destination pair.
591 * If we don't know it or if you chose in invalid pair (destination
592 * not on the same line as your origin?) then the empty string is
593 * returned. */
594 function compute_marc_zone(src, dest) {
595 /* Forward direction key for zone_map */
596 const fwd = src + "_" + dest;
597
598 /* Reverse direction key for zone_map. The zone_map only
599 * has them listed in one direction, so we check both
600 * directions here. */
601 const rev = dest + "_" + src;
602
603 /* The default. Obviously wrong for when we don't
604 * have the necessary data. */
605 let zone = -1;
606
607 if (zone_map[fwd]) {
608 zone = zone_map[fwd];
609 }
610 else if (zone_map[rev]) {
611 zone = zone_map[rev];
612 }
613
614 /* Convert the number to a string */
615 switch (zone) {
616 case 1:
617 return "One Zone";
618 case 2:
619 return "Two Zone";
620 case 3:
621 return "Three Zone";
622 case 4:
623 return "Four Zone";
624 default:
625 return "";
626 }
627 }
628
629 function set_marc_zone() {
630 const params = new URLSearchParams(document.location.search);
631 if (params.get("origin") && params.get("destination")) {
632 const src = params.get("origin");
633 const dest = params.get("destination");
634 const zone = compute_marc_zone(src, dest);
635
636 /* TODO: actually set the zone */
637 alert(zone);
638 }
639 }
640
641 /******************************************/
642 /* Display the ticket (and hide the menu) */
643 /******************************************/
644
645 function go() {
646 /* To create our "window" onto the scene, we're going to slide the
647 * SVG off the left-hand side of the screen, and we don't want
648 * scroll bars to appear. */
649 document.body.style.overflow = "hidden";
650 document.body.style.margin = "0";
651 document.body.style.padding = "0";
652
653 const svg = document.querySelector("svg");
654 const menu = document.getElementById("menu");
655 svg.style.display = "initial";
656 menu.style.display = "none";
657 }
658
659 /*****************************************************/
660 /* Add event handlers for all of the functions above */
661 /*****************************************************/
662
663 const params = new URLSearchParams(document.location.search);
664 if (params.get("go")) {
665 /* First unhide the SVG (swap it with the form) */
666 window.addEventListener("load", go);
667
668 /* Center the ticket once when the page has loaded */
669 window.addEventListener("load", center_ticket);
670
671 /* Re-center the ticket when the window is resized */
672 window.addEventListener("resize", center_ticket);
673
674 /* Set the service identifier when the page has loaded */
675 window.addEventListener("load", set_service_id);
676
677 /* Set the service name when the page has loaded */
678 window.addEventListener("load", set_service_name);
679
680 /* Set the security code text when the page has loaded */
681 window.addEventListener("load", set_code);
682
683 /* Center the security code text when the page has loaded; in
684 * particular, after we set the code. */
685 window.addEventListener("load", center_code);
686
687 /* Set the ticket expiration date/time upon page load */
688 window.addEventListener("load", set_ticket_expiry);
689
690 /* Set the MARC Train zone, if applicable */
691 window.addEventListener("load", set_marc_zone);
692
693 /* Swap colors when the screen is tapped */
694 document.body.addEventListener("click", swap_colors);
695 }
696
697 </script>
698 </body>
699 </html>