]> gitweb.michael.orlitzky.com - charm-bypass.git/blob - index.html.in
69d5d31491ed0bdd945342471a73769ea410c9e1
[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, #zone {
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 /************************/
440 /* Set the service zone */
441 /************************/
442 function set_service_zone() {
443 const z = document.getElementById("zone");
444
445 /* Get the "zone" from the querystring if it's there */
446 const params = new URLSearchParams(document.location.search);
447 if (params.get("zone")) {
448 z.textContent = params.get("zone");
449 z.style.display = "block"; /* It's hidden by default */
450 }
451
452 /* Otherwise, leave it blank (and hidden) */
453 }
454
455 /***********************************************************/
456 /* Resize the ticket background based on the service name */
457 /***********************************************************/
458
459 function resize_ticket() {
460 /* Get the "servicename" from the querystring if it's there */
461 const params = new URLSearchParams(document.location.search);
462 if (params.get("servicename") == "Commuter Bus") {
463 const tbg = document.getElementById("ticketbg");
464 const t = document.getElementById("ticket");
465 const sn = document.getElementById("servicename");
466
467 /* The top of the background is initially at y=246.859, and
468 * we scale it by a factor of 1.12 to y=276.482 for a change
469 * of 29.623. So after we scale it, we translate it upwards
470 * by that amount to put it back where it started. */
471 tbg.setAttribute("transform", "translate(0 -29.623) scale(1 1.12)");
472
473 /* Now translate the entire ticket up by the magic amount, 1/5
474 * of the size change we made to the background. */
475 t.setAttribute("transform", "translate(0 -9.33)");
476
477 /* More magic numbers discovered by comparing the two
478 * tickets overlayed in inkscape */
479 sn.setAttribute("transform", "translate(0 64.28)");
480 }
481 else if (params.get("servicename") == "MARC Train") {
482 /* hi */
483 }
484
485 /* Otherwise, leave it alone. The SVG was designed with the
486 * BaltimoreLink ticket in mind */
487 }
488
489 /****************************************/
490 /* Set and reposition the security code */
491 /****************************************/
492
493 function set_code() {
494 const ct = document.getElementById("codetext");
495
496 /* Get the "code" from the querystring if it's there */
497 const params = new URLSearchParams(document.location.search);
498 if (params.get("code")) {
499 ct.textContent = params.get("code").toUpperCase();
500 }
501 else {
502 /* Otherwise, use a random code */
503 const bucket = ["0","1","2","3","4","5","6","7","8","9",
504 "A","B","C","D","E","F","G","H","I","J",
505 "K","L","M","N","O","P","Q","R","S","T",
506 "U","V","W","X","Y","Z"];
507
508 /* Two random ints between 0 and 35 */
509 const i1 = Math.floor(Math.random() * 36);
510 const i2 = Math.floor(Math.random() * 36);
511 const d1 = bucket[i1];
512 const d2 = bucket[i2];
513 ct.textContent = d1 + d2;
514 }
515 }
516
517
518 function center_code() {
519 /* Center the security code inside its red box */
520 const ct = document.getElementById("codetext");
521 const bg = document.getElementById("codebg");
522
523 /* First, find the center of the red box */
524 const r1 = bg.getBoundingClientRect();
525 const c1 = r1.left + (r1.width / 2);
526
527 /* Now the center of the code text */
528 const r2 = ct.getBoundingClientRect();
529 const c2 = r2.left + (r2.width / 2);
530
531 /* What do we add to c2 to make it equal to c1? */
532 const hdelta = c1 - c2;
533
534 /* We've measured everything so far in "client rect"
535 * coordinates, because that's the only available measurement
536 * we have for the width of the <text> element after futzing
537 * with its contents. But when we reposition that <text>
538 * element, it will be by adjusting its "x" attribute, and
539 * that attribute uses a different coordinate system than the
540 * client rect does. Specifically, "x" refers to an offset
541 * within the SVG's coordinate system, and the client rect
542 * coordinates are pixels on-screen. To convert between the
543 * two, we can take the "width" attribute of the background
544 * element and compare it to the width of the background
545 * element's client rect. Since the size of the background is
546 * fixed, this should give us a multiplier that turns client recr
547 * distances (what we have) into SVG distances (what we want) */
548 const client_to_svg = parseFloat(bg.getAttribute("width"))/r1.width;
549
550 /* Convert hdelta from client rect to SVG coordinates */
551 const svg_hdelta = hdelta * client_to_svg;
552
553 /* Since this <text> element has an "x" attribute it's easier for
554 * us to shift that than it is to mess with the "left" style. */
555 ct.setAttribute("x", parseFloat(ct.getAttribute("x")) + svg_hdelta);
556 }
557
558 /*****************************************/
559 /* Next, set up the ticket date and time */
560 /*****************************************/
561
562 function set_ticket_expiry() {
563 /* There are two parameters, time and date, that we store in one
564 * underlying "date" variable. Default both to an hour and a
565 * half from now. This is what the CharmPass app does for
566 * one-way tickets. */
567 const date = new Date();
568
569 /* BaltimoreLink and MARC Train are valid for an hour and a half */
570 let minutes = 90;
571 const params = new URLSearchParams(document.location.search);
572 if (params.get("servicename") == "Commuter Bus") {
573 /* But commuter bus tickets are only valid for ten minutes */
574 minutes = 10;
575 }
576
577 /* We use the low-level get/setTime to change the number of
578 * milliseconds since the epoch that this date represents
579 * Obviously correct, and avoids all suspicious corner cases
580 * for a few more decades. */
581 date.setTime(date.getTime() + (minutes*60*1000));
582
583 tt = document.getElementById("tickettime");
584 tt.textContent = date.toLocaleTimeString();
585
586 const td = document.getElementById("ticketdate");
587 const dateopts = {
588 day: "2-digit",
589 month: "2-digit",
590 year: "2-digit"
591 };
592 td.textContent = date.toLocaleDateString("en-US", dateopts);
593 }
594
595
596 /*********************************************************/
597 /* Finally, the onclick handler for the night/day switch */
598 /*********************************************************/
599
600 /* We always start in "day" mode */
601 is_day = true;
602
603 function set_day() {
604 sky.style.fill = "#efb02f";
605 }
606
607 function set_night() {
608 sky.style.fill = "#143b66";
609 }
610
611 function swap_colors() {
612 if (is_day) {
613 set_night();
614 is_day = false;
615 }
616 else {
617 set_day();
618 is_day = true;
619 }
620 }
621
622
623 /*******************************************************/
624 /* Compute the MARC "zone" from its origin/destination */
625 /*******************************************************/
626
627 /* Sorted on the first component, then the second */
628 const zone_map = {
629 BAL_BWE: 2,
630 BAL_BWI: 1,
631 BAL_SEB: 3,
632 BAL_WAS: 4,
633 BAL_WBL: 1,
634 BCA_CPK_: 3,
635 BCA_WAS_: 4,
636 BWI_BWE: 1,
637 BWI_WAS: 3,
638 BWI_WBL: 1
639 };
640
641 /* Compute the zone (string) for the given origin/destination pair.
642 * If we don't know it or if you chose in invalid pair (destination
643 * not on the same line as your origin?) then the empty string is
644 * returned. */
645 function compute_marc_zone(src, dest) {
646 /* Forward direction key for zone_map */
647 const fwd = src + "_" + dest;
648
649 /* Reverse direction key for zone_map. The zone_map only
650 * has them listed in one direction, so we check both
651 * directions here. */
652 const rev = dest + "_" + src;
653
654 /* The default. Obviously wrong for when we don't
655 * have the necessary data. */
656 let zone = -1;
657
658 if (zone_map[fwd]) {
659 zone = zone_map[fwd];
660 }
661 else if (zone_map[rev]) {
662 zone = zone_map[rev];
663 }
664
665 /* Convert the number to a string */
666 switch (zone) {
667 case 1:
668 return "One Zone";
669 case 2:
670 return "Two Zone";
671 case 3:
672 return "Three Zone";
673 case 4:
674 return "Four Zone";
675 default:
676 return "";
677 }
678 }
679
680 function set_marc_zone() {
681 const params = new URLSearchParams(document.location.search);
682 if (params.get("origin") && params.get("destination")) {
683 const src = params.get("origin");
684 const dest = params.get("destination");
685 const zone = compute_marc_zone(src, dest);
686
687 /* TODO: actually set the zone */
688 alert(zone);
689 }
690 }
691
692 /******************************************/
693 /* Display the ticket (and hide the menu) */
694 /******************************************/
695
696 function go() {
697 /* To create our "window" onto the scene, we're going to slide the
698 * SVG off the left-hand side of the screen, and we don't want
699 * scroll bars to appear. */
700 document.body.style.overflow = "hidden";
701 document.body.style.margin = "0";
702 document.body.style.padding = "0";
703
704 const svg = document.querySelector("svg");
705 const menu = document.getElementById("menu");
706 svg.style.display = "initial";
707 menu.style.display = "none";
708 }
709
710 /*****************************************************/
711 /* Add event handlers for all of the functions above */
712 /*****************************************************/
713
714 const params = new URLSearchParams(document.location.search);
715 if (params.get("go")) {
716 /* First unhide the SVG (swap it with the form) */
717 window.addEventListener("load", go);
718
719 /* Center the ticket once when the page has loaded */
720 window.addEventListener("load", center_ticket);
721
722 /* Re-center the ticket when the window is resized */
723 window.addEventListener("resize", center_ticket);
724
725 /* Set the service identifier when the page has loaded */
726 window.addEventListener("load", set_service_id);
727
728 /* Set the service name when the page has loaded */
729 window.addEventListener("load", set_service_name);
730
731 /* Set the service zone when the page has loaded */
732 window.addEventListener("load", set_service_zone);
733
734 /* Resize the ticket background if necessary */
735 window.addEventListener("load", resize_ticket);
736
737 /* Set the security code text when the page has loaded */
738 window.addEventListener("load", set_code);
739
740 /* Center the security code text when the page has loaded; in
741 * particular, after we set the code. */
742 window.addEventListener("load", center_code);
743
744 /* Set the ticket expiration date/time upon page load */
745 window.addEventListener("load", set_ticket_expiry);
746
747 /* Set the MARC Train zone, if applicable */
748 window.addEventListener("load", set_marc_zone);
749
750 /* Swap colors when the screen is tapped */
751 document.body.addEventListener("click", swap_colors);
752 }
753
754 </script>
755 </body>
756 </html>