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