summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* web: add exit dialogue while match is activeDavid Vazgenovich Shakaryan2022-05-104-0/+22
|
* web: ui improvements, mainly for mobileDavid Vazgenovich Shakaryan2022-05-103-9/+22
| | | | | | | | Using a `100vh' height results in the bottom bit of the UI being cropped until scrolling down, while using `100%' results in the address bar always wasting space. By combining these with a fixed-position element, we're able to have the UI grow and shrink as the address bar visibility changes.
* web: give keypad list keys a max heightDavid Vazgenovich Shakaryan2022-05-101-1/+29
| | | | Bonus CSS shenanigans to create key gaps that behave.
* web: display who throws first in visit logDavid Vazgenovich Shakaryan2022-05-102-0/+6
|
* web: fix post-match undo when bot is throwing secondDavid Vazgenovich Shakaryan2022-05-101-1/+5
|
* web: allow selection of starting points and user to throw firstDavid Vazgenovich Shakaryan2022-05-097-23/+184
| | | | | | | This new option selection code is a bit messy for now. It requires the options and their order to be in sync between the prompt functions and the corresponding submit functions. There's also a bit too much repetition of generic code that's applicable to all options.
* web: fix CSS media queryDavid Vazgenovich Shakaryan2022-05-091-1/+1
|
* web: add support for child DOM elements and text nodesDavid Vazgenovich Shakaryan2022-05-094-23/+88
|
* web: dynamically generate (list-mode) keypad keysDavid Vazgenovich Shakaryan2022-05-095-22/+61
| | | | | This is currently only for match mode selection, but we'll reuse it to implement more menus.
* web: fix memory bugsDavid Vazgenovich Shakaryan2022-05-092-2/+2
|
* web: dynamically generate SVG and groupsDavid Vazgenovich Shakaryan2022-05-094-14/+49
|
* web: fix ui bugDavid Vazgenovich Shakaryan2022-05-071-5/+7
|
* web: stylesheet cleanupDavid Vazgenovich Shakaryan2022-05-073-247/+262
|
* web: make bot darts less prominentDavid Vazgenovich Shakaryan2022-05-071-4/+2
|
* web: remember layout settingDavid Vazgenovich Shakaryan2022-05-072-3/+7
|
* web: minor ui/colour tweaksDavid Vazgenovich Shakaryan2022-05-071-8/+6
|
* web: landscape css should be defaultDavid Vazgenovich Shakaryan2022-05-071-45/+38
|
* web: minor stylingDavid Vazgenovich Shakaryan2022-05-071-4/+9
|
* web: allow controls side to be chosen by userDavid Vazgenovich Shakaryan2022-05-073-9/+30
|
* web: flip landscape layoutDavid Vazgenovich Shakaryan2022-05-071-3/+3
|
* web: add landscape layoutDavid Vazgenovich Shakaryan2022-05-073-10/+44
|
* web: move scroll ellipses to CSS where they belongDavid Vazgenovich Shakaryan2022-05-062-8/+9
|
* web: simplify buffering of display dataDavid Vazgenovich Shakaryan2022-05-064-96/+74
|
* web: allocate space for header elemsDavid Vazgenovich Shakaryan2022-05-051-1/+1
|
* web: free elem namespaceDavid Vazgenovich Shakaryan2022-05-051-3/+4
|
* web: clean up scoreboard and dom functionsDavid Vazgenovich Shakaryan2022-05-057-160/+164
|
* web: increase visits final column widthDavid Vazgenovich Shakaryan2022-05-041-1/+1
|
* web: abstract away most EM_ASM calls to dom fileDavid Vazgenovich Shakaryan2022-05-049-52/+105
|
* web: fix averages after undoDavid Vazgenovich Shakaryan2022-05-041-2/+2
|
* formattingDavid Vazgenovich Shakaryan2022-05-049-63/+102
|
* web: move opt logic to cDavid Vazgenovich Shakaryan2022-05-043-24/+74
|
* web: oi from cDavid Vazgenovich Shakaryan2022-05-035-22/+30
|
* web: use generic JS function for updating opt elemsDavid Vazgenovich Shakaryan2022-05-032-16/+27
|
* web: move elem construction to shared dom fileDavid Vazgenovich Shakaryan2022-05-034-80/+90
|
* web: reuse elem array appending for drawing visitsDavid Vazgenovich Shakaryan2022-05-033-66/+99
|
* web: bloody JS scopeā€¦David Vazgenovich Shakaryan2022-05-031-1/+1
|
* web: more use of generic JS functionsDavid Vazgenovich Shakaryan2022-05-037-33/+54
|
* web: use generic JS functions for manipulating DOMDavid Vazgenovich Shakaryan2022-05-036-97/+91
|
* web: buffer and flush promptDavid Vazgenovich Shakaryan2022-05-034-26/+95
|
* web: move reading opts to opts fileDavid Vazgenovich Shakaryan2022-05-033-4/+10
|
* web: more renamingDavid Vazgenovich Shakaryan2022-05-027-37/+37
|
* web: move some stuff aroundDavid Vazgenovich Shakaryan2022-05-024-61/+56
|
* web: buffer player info and flush on state changeDavid Vazgenovich Shakaryan2022-05-024-18/+113
| | | | | Constant calls from Wasm to JS to replace unchanged elements in the DOM is not very efficient.
* web: minor cleanup of prompt codeDavid Vazgenovich Shakaryan2022-05-025-18/+23
|
* web: generate all required files in new dirDavid Vazgenovich Shakaryan2022-05-023-3/+6
|
* web: move control logic to separate fileDavid Vazgenovich Shakaryan2022-05-025-309/+329
|
* web: add MakefileDavid Vazgenovich Shakaryan2022-05-021-0/+21
|
* web: split opts and prompt handlers into separate filesDavid Vazgenovich Shakaryan2022-05-025-185/+238
| | | | | Currently using a bunch of forward declarations in prompt.c that should be cleaned up later.
* web: split code into more filesDavid Vazgenovich Shakaryan2022-05-017-157/+208
| | | | | | This is currently very messy with all the files interdependent on one another and a lot of the logic still in the main file. It will take some time to refactor and clean up.
* move valid points check to match fileDavid Vazgenovich Shakaryan2022-05-013-8/+26
|