jsbeeb 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +15 -0
- package/.git-blame-ignore-revs +3 -0
- package/.github/copilot-instructions.md +94 -0
- package/.github/workflows/claude-issue-triage.yml +105 -0
- package/.github/workflows/claude.yml +63 -0
- package/.github/workflows/release-please.yml +75 -0
- package/.github/workflows/test-and-deploy.yml +86 -0
- package/.gitmodules +6 -0
- package/.husky/pre-commit +1 -0
- package/.idea/codeStyleSettings.xml +9 -0
- package/.idea/codeStyles/Project.xml +62 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/compiler.xml +22 -0
- package/.idea/copyright/profiles_settings.xml +3 -0
- package/.idea/encodings.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/jsLibraryMappings.xml +6 -0
- package/.idea/jsLinters/jshint.xml +85 -0
- package/.idea/jsLinters/jslint.xml +15 -0
- package/.idea/jsbeeb.iml +11 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +7 -0
- package/.idea/runConfigurations/Debug.xml +5 -0
- package/.idea/scopes/scope_settings.xml +5 -0
- package/.idea/vcs.xml +8 -0
- package/.prettierignore +4 -0
- package/.prettierrc.json +1 -0
- package/.release-please-manifest.json +3 -0
- package/.vscode/launch.json +14 -0
- package/.vscode/settings.json +6 -0
- package/CHANGELOG.md +32 -0
- package/CLAUDE.md +136 -0
- package/COPYING +674 -0
- package/Dockerfile +22 -0
- package/Makefile +30 -0
- package/README.md +259 -0
- package/docker/nginx-default.conf +10 -0
- package/docs/pal-comb-filter-research.md +129 -0
- package/docs/pal-simulation-design.md +368 -0
- package/eslint.config.js +35 -0
- package/index.html +954 -0
- package/jsconfig.json +10 -0
- package/package.json +102 -0
- package/public/discs/README.Irq-Timing +3 -0
- package/public/discs/README.bcdtest +5 -0
- package/public/discs/README.elite +6 -0
- package/public/discs/README.eng_test +3 -0
- package/public/discs/README.protection +7 -0
- package/public/favicon.ico +0 -0
- package/public/images/botbar.png +0 -0
- package/public/images/cub-monitor.png +0 -0
- package/public/images/jsbeeb-example.png +0 -0
- package/public/images/placeholder.png +0 -0
- package/public/images/red-off-16.png +0 -0
- package/public/images/red-on-16.png +0 -0
- package/public/images/sb/CD-left.jpg +0 -0
- package/public/images/sb/CD-right.jpg +0 -0
- package/public/images/sidebar.png +0 -0
- package/public/images/tv.png +0 -0
- package/public/images/yellow-off-16.png +0 -0
- package/public/images/yellow-on-16.png +0 -0
- package/public/jsbeeb-icon.png +0 -0
- package/public/robots.txt +3 -0
- package/public/roms/ADFS1-53.rom +0 -0
- package/public/roms/BASIC.ROM +0 -0
- package/public/roms/README +4 -0
- package/public/roms/a01/BASIC1.rom +0 -0
- package/public/roms/ample.rom +0 -0
- package/public/roms/ats-3.0.rom +0 -0
- package/public/roms/b/DFS-0.9.rom +0 -0
- package/public/roms/b/DFS-1.2.rom +0 -0
- package/public/roms/b1770/dfs1770.rom +0 -0
- package/public/roms/b1770/zADFS.ROM +0 -0
- package/public/roms/bp/dfs.rom +0 -0
- package/public/roms/bp/zADFS.ROM +0 -0
- package/public/roms/bpos.rom +0 -0
- package/public/roms/compact/adfs210.rom +0 -0
- package/public/roms/compact/basic48.rom +0 -0
- package/public/roms/compact/basic486.rom +0 -0
- package/public/roms/compact/os51.rom +0 -0
- package/public/roms/compact/utils.rom +0 -0
- package/public/roms/deos.rom +0 -0
- package/public/roms/master/anfs-4.25.rom +0 -0
- package/public/roms/master/mos.txt +68819 -0
- package/public/roms/master/mos3.20 +0 -0
- package/public/roms/os.rom +0 -0
- package/public/roms/os01.rom +0 -0
- package/public/roms/tube/6502Tube.rom +0 -0
- package/public/roms/tube/ARMeval_100.rom +0 -0
- package/public/roms/tube/BIOS.ROM +0 -0
- package/public/roms/tube/ReCo6502ROM_816 +0 -0
- package/public/roms/tube/Z80_120.rom +0 -0
- package/public/roms/us/USBASIC.rom +0 -0
- package/public/roms/us/USDNFS.rom +0 -0
- package/public/roms/usmos.rom +0 -0
- package/public/sounds/disc525/motor.wav +0 -0
- package/public/sounds/disc525/motoroff.wav +0 -0
- package/public/sounds/disc525/motoron.wav +0 -0
- package/public/sounds/disc525/seek.wav +0 -0
- package/public/sounds/disc525/seek2.wav +0 -0
- package/public/sounds/disc525/seek3.wav +0 -0
- package/public/sounds/disc525/step.wav +0 -0
- package/public/teletext/txt0.dat +0 -0
- package/public/teletext/txt1.dat +0 -0
- package/public/teletext/txt2.dat +0 -0
- package/public/teletext/txt3.dat +0 -0
- package/release-please-config.json +13 -0
- package/run-container.sh +92 -0
- package/src/6502.js +1347 -0
- package/src/6502.opcodes.js +1411 -0
- package/src/acia.js +261 -0
- package/src/adc.js +149 -0
- package/src/analogue-source.js +21 -0
- package/src/app/app.js +175 -0
- package/src/app/electron.js +20 -0
- package/src/app/preload.js +8 -0
- package/src/app-bench.js +33 -0
- package/src/basic/multiline-tetris +9 -0
- package/src/basic-tokenise.js +104 -0
- package/src/canvas.js +177 -0
- package/src/cmos.js +141 -0
- package/src/config.js +165 -0
- package/src/ddnoise.js +138 -0
- package/src/disc-drive.js +371 -0
- package/src/disc-hfe.js +396 -0
- package/src/disc.js +997 -0
- package/src/econet/L3FS.dat +0 -0
- package/src/econet/scsi.dat +0 -0
- package/src/econet.js +714 -0
- package/src/fake6502.js +32 -0
- package/src/fdc.js +248 -0
- package/src/filestore.js +666 -0
- package/src/gamepad-source.js +59 -0
- package/src/gamepads.js +268 -0
- package/src/google-drive.js +160 -0
- package/src/intel-fdc.js +1717 -0
- package/src/jsbeeb.css +363 -0
- package/src/keyboard.js +411 -0
- package/src/lib/README +1 -0
- package/src/lib/webgl-debug.js +911 -0
- package/src/main.js +1759 -0
- package/src/microphone-input.js +149 -0
- package/src/models.js +200 -0
- package/src/mouse-joystick-source.js +107 -0
- package/src/music5000-worklet.js +43 -0
- package/src/music5000.js +207 -0
- package/src/scheduler.js +148 -0
- package/src/serial.js +31 -0
- package/src/soundchip.js +314 -0
- package/src/sth.js +59 -0
- package/src/tapes.js +265 -0
- package/src/teletext.js +348 -0
- package/src/teletext_adaptor.js +172 -0
- package/src/teletext_data.js +1064 -0
- package/src/touchscreen.js +86 -0
- package/src/tube.js +349 -0
- package/src/url-params.js +256 -0
- package/src/utils.js +1090 -0
- package/src/via.js +702 -0
- package/src/video-filters/pal-composite.js +94 -0
- package/src/video-filters/passthrough-filter.js +70 -0
- package/src/video-filters/shaders/pal-composite.frag.glsl +147 -0
- package/src/video-filters/shaders/pal-composite.vert.glsl +8 -0
- package/src/video-filters/shaders/passthrough.frag.glsl +6 -0
- package/src/video-filters/shaders/passthrough.vert.glsl +7 -0
- package/src/video.js +794 -0
- package/src/wd-fdc.js +1344 -0
- package/src/web/audio-handler.js +146 -0
- package/src/web/audio-renderer.js +115 -0
- package/src/web/debug.js +529 -0
- package/tests/integration/RmwX.asm +47 -0
- package/tests/integration/TestInstructionsSource +27 -0
- package/tests/integration/TestTimingsResults +27 -0
- package/tests/integration/TestTimingsSource +61 -0
- package/tests/integration/bcd.js +23 -0
- package/tests/integration/dormann.js +101 -0
- package/tests/integration/dp111timing.js +42 -0
- package/tests/integration/ensure-submodules.js +25 -0
- package/tests/integration/nops.bas +119 -0
- package/tests/integration/nops.js +24 -0
- package/tests/integration/protection.js +26 -0
- package/tests/integration/rmw.js +69 -0
- package/tests/integration/teletext/expected_bug_469.png +0 -0
- package/tests/integration/teletext/expected_flash_0.png +0 -0
- package/tests/integration/teletext/expected_flash_1.png +0 -0
- package/tests/integration/teletext/expected_hoglet_held_char.png +0 -0
- package/tests/integration/teletext/expected_reveal_flash_0.png +0 -0
- package/tests/integration/teletext/expected_reveal_flash_1.png +0 -0
- package/tests/integration/teletext.js +126 -0
- package/tests/integration/timings.js +56 -0
- package/tests/integration/via.js +1125 -0
- package/tests/suite/README.md +7 -0
- package/tests/suite/Test Suite 2.15.txt +373 -0
- package/tests/suite/bin/ start +0 -0
- package/tests/suite/bin/adca +0 -0
- package/tests/suite/bin/adcax +0 -0
- package/tests/suite/bin/adcay +0 -0
- package/tests/suite/bin/adcb +0 -0
- package/tests/suite/bin/adcix +0 -0
- package/tests/suite/bin/adciy +0 -0
- package/tests/suite/bin/adcz +0 -0
- package/tests/suite/bin/adczx +0 -0
- package/tests/suite/bin/alrb +0 -0
- package/tests/suite/bin/ancb +0 -0
- package/tests/suite/bin/anda +0 -0
- package/tests/suite/bin/andax +0 -0
- package/tests/suite/bin/anday +0 -0
- package/tests/suite/bin/andb +0 -0
- package/tests/suite/bin/andix +0 -0
- package/tests/suite/bin/andiy +0 -0
- package/tests/suite/bin/andz +0 -0
- package/tests/suite/bin/andzx +0 -0
- package/tests/suite/bin/aneb +0 -0
- package/tests/suite/bin/arrb +0 -0
- package/tests/suite/bin/asla +0 -0
- package/tests/suite/bin/aslax +0 -0
- package/tests/suite/bin/asln +0 -0
- package/tests/suite/bin/aslz +0 -0
- package/tests/suite/bin/aslzx +0 -0
- package/tests/suite/bin/asoa +0 -0
- package/tests/suite/bin/asoax +0 -0
- package/tests/suite/bin/asoay +0 -0
- package/tests/suite/bin/asoix +0 -0
- package/tests/suite/bin/asoiy +0 -0
- package/tests/suite/bin/asoz +0 -0
- package/tests/suite/bin/asozx +0 -0
- package/tests/suite/bin/axsa +0 -0
- package/tests/suite/bin/axsix +0 -0
- package/tests/suite/bin/axsz +0 -0
- package/tests/suite/bin/axszy +0 -0
- package/tests/suite/bin/bccr +0 -0
- package/tests/suite/bin/bcsr +0 -0
- package/tests/suite/bin/beqr +0 -0
- package/tests/suite/bin/bita +0 -0
- package/tests/suite/bin/bitz +0 -0
- package/tests/suite/bin/bmir +0 -0
- package/tests/suite/bin/bner +0 -0
- package/tests/suite/bin/bplr +0 -0
- package/tests/suite/bin/branchwrap +0 -0
- package/tests/suite/bin/brkn +0 -0
- package/tests/suite/bin/bvcr +0 -0
- package/tests/suite/bin/bvsr +0 -0
- package/tests/suite/bin/cia1pb6 +0 -0
- package/tests/suite/bin/cia1pb7 +0 -0
- package/tests/suite/bin/cia1ta +0 -0
- package/tests/suite/bin/cia1tab +0 -0
- package/tests/suite/bin/cia1tb +0 -0
- package/tests/suite/bin/cia1tb123 +0 -0
- package/tests/suite/bin/cia2pb6 +0 -0
- package/tests/suite/bin/cia2pb7 +0 -0
- package/tests/suite/bin/cia2ta +0 -0
- package/tests/suite/bin/cia2tb +0 -0
- package/tests/suite/bin/cia2tb123 +0 -0
- package/tests/suite/bin/clcn +0 -0
- package/tests/suite/bin/cldn +0 -0
- package/tests/suite/bin/clin +0 -0
- package/tests/suite/bin/clvn +0 -0
- package/tests/suite/bin/cmpa +0 -0
- package/tests/suite/bin/cmpax +0 -0
- package/tests/suite/bin/cmpay +0 -0
- package/tests/suite/bin/cmpb +0 -0
- package/tests/suite/bin/cmpix +0 -0
- package/tests/suite/bin/cmpiy +0 -0
- package/tests/suite/bin/cmpz +0 -0
- package/tests/suite/bin/cmpzx +0 -0
- package/tests/suite/bin/cntdef +0 -0
- package/tests/suite/bin/cnto2 +0 -0
- package/tests/suite/bin/cpuport +0 -0
- package/tests/suite/bin/cputiming +0 -0
- package/tests/suite/bin/cpxa +0 -0
- package/tests/suite/bin/cpxb +0 -0
- package/tests/suite/bin/cpxz +0 -0
- package/tests/suite/bin/cpya +0 -0
- package/tests/suite/bin/cpyb +0 -0
- package/tests/suite/bin/cpyz +0 -0
- package/tests/suite/bin/dcma +0 -0
- package/tests/suite/bin/dcmax +0 -0
- package/tests/suite/bin/dcmay +0 -0
- package/tests/suite/bin/dcmix +0 -0
- package/tests/suite/bin/dcmiy +0 -0
- package/tests/suite/bin/dcmz +0 -0
- package/tests/suite/bin/dcmzx +0 -0
- package/tests/suite/bin/deca +0 -0
- package/tests/suite/bin/decax +0 -0
- package/tests/suite/bin/decz +0 -0
- package/tests/suite/bin/deczx +0 -0
- package/tests/suite/bin/dexn +0 -0
- package/tests/suite/bin/deyn +0 -0
- package/tests/suite/bin/eora +0 -0
- package/tests/suite/bin/eorax +0 -0
- package/tests/suite/bin/eoray +0 -0
- package/tests/suite/bin/eorb +0 -0
- package/tests/suite/bin/eorix +0 -0
- package/tests/suite/bin/eoriy +0 -0
- package/tests/suite/bin/eorz +0 -0
- package/tests/suite/bin/eorzx +0 -0
- package/tests/suite/bin/finish +0 -0
- package/tests/suite/bin/flipos +0 -0
- package/tests/suite/bin/icr01 +0 -0
- package/tests/suite/bin/imr +0 -0
- package/tests/suite/bin/inca +0 -0
- package/tests/suite/bin/incax +0 -0
- package/tests/suite/bin/incz +0 -0
- package/tests/suite/bin/inczx +0 -0
- package/tests/suite/bin/insa +0 -0
- package/tests/suite/bin/insax +0 -0
- package/tests/suite/bin/insay +0 -0
- package/tests/suite/bin/insix +0 -0
- package/tests/suite/bin/insiy +0 -0
- package/tests/suite/bin/insz +0 -0
- package/tests/suite/bin/inszx +0 -0
- package/tests/suite/bin/inxn +0 -0
- package/tests/suite/bin/inyn +0 -0
- package/tests/suite/bin/irq +0 -0
- package/tests/suite/bin/jmpi +0 -0
- package/tests/suite/bin/jmpw +0 -0
- package/tests/suite/bin/jsrw +0 -0
- package/tests/suite/bin/lasay +0 -0
- package/tests/suite/bin/laxa +0 -0
- package/tests/suite/bin/laxay +0 -0
- package/tests/suite/bin/laxix +0 -0
- package/tests/suite/bin/laxiy +0 -0
- package/tests/suite/bin/laxz +0 -0
- package/tests/suite/bin/laxzy +0 -0
- package/tests/suite/bin/ldaa +0 -0
- package/tests/suite/bin/ldaax +0 -0
- package/tests/suite/bin/ldaay +0 -0
- package/tests/suite/bin/ldab +0 -0
- package/tests/suite/bin/ldaix +0 -0
- package/tests/suite/bin/ldaiy +0 -0
- package/tests/suite/bin/ldaz +0 -0
- package/tests/suite/bin/ldazx +0 -0
- package/tests/suite/bin/ldxa +0 -0
- package/tests/suite/bin/ldxay +0 -0
- package/tests/suite/bin/ldxb +0 -0
- package/tests/suite/bin/ldxz +0 -0
- package/tests/suite/bin/ldxzy +0 -0
- package/tests/suite/bin/ldya +0 -0
- package/tests/suite/bin/ldyax +0 -0
- package/tests/suite/bin/ldyb +0 -0
- package/tests/suite/bin/ldyz +0 -0
- package/tests/suite/bin/ldyzx +0 -0
- package/tests/suite/bin/loadth +0 -0
- package/tests/suite/bin/lsea +0 -0
- package/tests/suite/bin/lseax +0 -0
- package/tests/suite/bin/lseay +0 -0
- package/tests/suite/bin/lseix +0 -0
- package/tests/suite/bin/lseiy +0 -0
- package/tests/suite/bin/lsez +0 -0
- package/tests/suite/bin/lsezx +0 -0
- package/tests/suite/bin/lsra +0 -0
- package/tests/suite/bin/lsrax +0 -0
- package/tests/suite/bin/lsrn +0 -0
- package/tests/suite/bin/lsrz +0 -0
- package/tests/suite/bin/lsrzx +0 -0
- package/tests/suite/bin/lxab +0 -0
- package/tests/suite/bin/mmu +0 -0
- package/tests/suite/bin/mmufetch +0 -0
- package/tests/suite/bin/nmi +0 -0
- package/tests/suite/bin/nopa +0 -0
- package/tests/suite/bin/nopax +0 -0
- package/tests/suite/bin/nopb +0 -0
- package/tests/suite/bin/nopn +0 -0
- package/tests/suite/bin/nopz +0 -0
- package/tests/suite/bin/nopzx +0 -0
- package/tests/suite/bin/oneshot +0 -0
- package/tests/suite/bin/oraa +0 -0
- package/tests/suite/bin/oraax +0 -0
- package/tests/suite/bin/oraay +0 -0
- package/tests/suite/bin/orab +0 -0
- package/tests/suite/bin/oraix +0 -0
- package/tests/suite/bin/oraiy +0 -0
- package/tests/suite/bin/oraz +0 -0
- package/tests/suite/bin/orazx +0 -0
- package/tests/suite/bin/phan +0 -0
- package/tests/suite/bin/phpn +0 -0
- package/tests/suite/bin/plan +0 -0
- package/tests/suite/bin/plpn +0 -0
- package/tests/suite/bin/rlaa +0 -0
- package/tests/suite/bin/rlaax +0 -0
- package/tests/suite/bin/rlaay +0 -0
- package/tests/suite/bin/rlaix +0 -0
- package/tests/suite/bin/rlaiy +0 -0
- package/tests/suite/bin/rlaz +0 -0
- package/tests/suite/bin/rlazx +0 -0
- package/tests/suite/bin/rola +0 -0
- package/tests/suite/bin/rolax +0 -0
- package/tests/suite/bin/roln +0 -0
- package/tests/suite/bin/rolz +0 -0
- package/tests/suite/bin/rolzx +0 -0
- package/tests/suite/bin/rora +0 -0
- package/tests/suite/bin/rorax +0 -0
- package/tests/suite/bin/rorn +0 -0
- package/tests/suite/bin/rorz +0 -0
- package/tests/suite/bin/rorzx +0 -0
- package/tests/suite/bin/rraa +0 -0
- package/tests/suite/bin/rraax +0 -0
- package/tests/suite/bin/rraay +0 -0
- package/tests/suite/bin/rraix +0 -0
- package/tests/suite/bin/rraiy +0 -0
- package/tests/suite/bin/rraz +0 -0
- package/tests/suite/bin/rrazx +0 -0
- package/tests/suite/bin/rtin +0 -0
- package/tests/suite/bin/rtsn +0 -0
- package/tests/suite/bin/sbca +0 -0
- package/tests/suite/bin/sbcax +0 -0
- package/tests/suite/bin/sbcay +0 -0
- package/tests/suite/bin/sbcb +0 -0
- package/tests/suite/bin/sbcb(eb) +0 -0
- package/tests/suite/bin/sbcix +0 -0
- package/tests/suite/bin/sbciy +0 -0
- package/tests/suite/bin/sbcz +0 -0
- package/tests/suite/bin/sbczx +0 -0
- package/tests/suite/bin/sbxb +0 -0
- package/tests/suite/bin/secn +0 -0
- package/tests/suite/bin/sedn +0 -0
- package/tests/suite/bin/sein +0 -0
- package/tests/suite/bin/shaay +0 -0
- package/tests/suite/bin/shaiy +0 -0
- package/tests/suite/bin/shsay +0 -0
- package/tests/suite/bin/shxay +0 -0
- package/tests/suite/bin/shyax +0 -0
- package/tests/suite/bin/staa +0 -0
- package/tests/suite/bin/staax +0 -0
- package/tests/suite/bin/staay +0 -0
- package/tests/suite/bin/staix +0 -0
- package/tests/suite/bin/staiy +0 -0
- package/tests/suite/bin/staz +0 -0
- package/tests/suite/bin/stazx +0 -0
- package/tests/suite/bin/stxa +0 -0
- package/tests/suite/bin/stxz +0 -0
- package/tests/suite/bin/stxzy +0 -0
- package/tests/suite/bin/stya +0 -0
- package/tests/suite/bin/styz +0 -0
- package/tests/suite/bin/styzx +0 -0
- package/tests/suite/bin/taxn +0 -0
- package/tests/suite/bin/tayn +0 -0
- package/tests/suite/bin/trap1 +0 -0
- package/tests/suite/bin/trap10 +0 -0
- package/tests/suite/bin/trap11 +0 -0
- package/tests/suite/bin/trap12 +0 -0
- package/tests/suite/bin/trap13 +0 -0
- package/tests/suite/bin/trap14 +0 -0
- package/tests/suite/bin/trap15 +0 -0
- package/tests/suite/bin/trap16 +0 -0
- package/tests/suite/bin/trap17 +0 -0
- package/tests/suite/bin/trap2 +0 -0
- package/tests/suite/bin/trap3 +0 -0
- package/tests/suite/bin/trap4 +0 -0
- package/tests/suite/bin/trap5 +0 -0
- package/tests/suite/bin/trap6 +0 -0
- package/tests/suite/bin/trap7 +0 -0
- package/tests/suite/bin/trap8 +0 -0
- package/tests/suite/bin/trap9 +0 -0
- package/tests/suite/bin/tsxn +0 -0
- package/tests/suite/bin/txan +0 -0
- package/tests/suite/bin/txsn +0 -0
- package/tests/suite/bin/tyan +0 -0
- package/tests/suite/cbm-hackers-post.html +178 -0
- package/tests/suite/cbm-hackers-post.md +78 -0
- package/tests/test-machine.js +288 -0
- package/tests/test-suite.js +147 -0
- package/tests/test.css +7 -0
- package/tests/unit/gzip/test-1 +0 -0
- package/tests/unit/gzip/test-1.gz +0 -0
- package/tests/unit/gzip/test-2 +0 -0
- package/tests/unit/gzip/test-2.gz +0 -0
- package/tests/unit/gzip/test-3 +0 -0
- package/tests/unit/gzip/test-3.gz +0 -0
- package/tests/unit/gzip/test-4 +0 -0
- package/tests/unit/gzip/test-4.gz +0 -0
- package/tests/unit/test-adc.js +307 -0
- package/tests/unit/test-bcd.js +30 -0
- package/tests/unit/test-cmos.js +266 -0
- package/tests/unit/test-disc-drive.js +85 -0
- package/tests/unit/test-disc-hfe.js +347 -0
- package/tests/unit/test-disc.js +232 -0
- package/tests/unit/test-fifo.js +35 -0
- package/tests/unit/test-gamepad-source.js +67 -0
- package/tests/unit/test-gzip.js +22 -0
- package/tests/unit/test-intel-fdc.js +93 -0
- package/tests/unit/test-keyboard.js +410 -0
- package/tests/unit/test-mouse-joystick-source.js +128 -0
- package/tests/unit/test-scheduler.js +190 -0
- package/tests/unit/test-serial.js +154 -0
- package/tests/unit/test-teletext-adaptor.js +359 -0
- package/tests/unit/test-tokenise.js +65 -0
- package/tests/unit/test-url-params.js +398 -0
- package/tests/unit/test-utils.js +276 -0
- package/tests/unit/test-video.js +498 -0
- package/tests/unit/test-zip.js +56 -0
- package/tests/unit/zip/test-mixed.zip +0 -0
- package/tests/unit/zip/test-rom.zip +0 -0
- package/tests/unit/zip/test-ssd.zip +0 -0
- package/tools/fir-generator.js +80 -0
- package/tools/vite-plugin-fir-shader.js +131 -0
- package/vite.config.js +34 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { AnalogueSource } from "./analogue-source.js";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Gamepad implementation of AnalogueSource
|
|
5
|
+
* Maps gamepad axes to ADC channels
|
|
6
|
+
*/
|
|
7
|
+
export class GamepadSource extends AnalogueSource {
|
|
8
|
+
/**
|
|
9
|
+
* Create a new GamepadSource
|
|
10
|
+
* @param {Function} getGamepads - Function that returns gamepad array
|
|
11
|
+
*/
|
|
12
|
+
constructor(getGamepads) {
|
|
13
|
+
super();
|
|
14
|
+
this.getGamepads = getGamepads;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Get analog value from gamepad for the specified channel
|
|
19
|
+
* @param {number} channel - The ADC channel (0-3)
|
|
20
|
+
* @returns {number} A value between 0 and 0xffff
|
|
21
|
+
*/
|
|
22
|
+
getValue(channel) {
|
|
23
|
+
const pads = this.getGamepads();
|
|
24
|
+
if (!pads || !pads[0]) return 0x8000; // Default center value
|
|
25
|
+
|
|
26
|
+
const pad = pads[0];
|
|
27
|
+
const pad2 = pads[1];
|
|
28
|
+
|
|
29
|
+
let rawValue = 0;
|
|
30
|
+
|
|
31
|
+
switch (channel) {
|
|
32
|
+
case 0:
|
|
33
|
+
rawValue = pad.axes[0];
|
|
34
|
+
break;
|
|
35
|
+
case 1:
|
|
36
|
+
rawValue = pad.axes[1];
|
|
37
|
+
break;
|
|
38
|
+
case 2:
|
|
39
|
+
if (pad2) {
|
|
40
|
+
rawValue = pad2.axes[0];
|
|
41
|
+
} else {
|
|
42
|
+
rawValue = pad.axes[2];
|
|
43
|
+
}
|
|
44
|
+
break;
|
|
45
|
+
case 3:
|
|
46
|
+
if (pad2) {
|
|
47
|
+
rawValue = pad2.axes[1];
|
|
48
|
+
} else {
|
|
49
|
+
rawValue = pad.axes[3];
|
|
50
|
+
}
|
|
51
|
+
break;
|
|
52
|
+
default:
|
|
53
|
+
return 0x8000;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Scale from [-1, 1] to [0, 0xffff]
|
|
57
|
+
return Math.floor(((1 - rawValue) / 2) * 0xffff);
|
|
58
|
+
}
|
|
59
|
+
}
|
package/src/gamepads.js
ADDED
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
import * as utils from "./utils.js";
|
|
3
|
+
|
|
4
|
+
const BBC = utils.BBC;
|
|
5
|
+
|
|
6
|
+
export class GamePad {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.gamepad0 = null;
|
|
9
|
+
|
|
10
|
+
//this.gamepadMapping = [BBC.COLON_STAR, BBC.X, BBC.SLASH, BBC.Z,
|
|
11
|
+
// BBC.SPACE, BBC.SPACE, BBC.SPACE, BBC.SPACE,
|
|
12
|
+
// BBC.SPACE, BBC.SPACE, BBC.SPACE, BBC.SPACE,
|
|
13
|
+
// BBC.SPACE, BBC.SPACE, BBC.SPACE, BBC.SPACE];
|
|
14
|
+
|
|
15
|
+
this.gamepadMapping = [];
|
|
16
|
+
|
|
17
|
+
// default: "snapper" keys
|
|
18
|
+
this.gamepadMapping[14] = BBC.Z;
|
|
19
|
+
this.gamepadMapping[15] = BBC.X;
|
|
20
|
+
this.gamepadMapping[13] = BBC.SLASH;
|
|
21
|
+
this.gamepadMapping[12] = BBC.COLON_STAR;
|
|
22
|
+
|
|
23
|
+
// often <Return> = "Fire"
|
|
24
|
+
this.gamepadMapping[0] = BBC.RETURN;
|
|
25
|
+
// "start" (often <Space> to start game)
|
|
26
|
+
this.gamepadMapping[9] = BBC.SPACE;
|
|
27
|
+
|
|
28
|
+
// Gamepad joysticks
|
|
29
|
+
this.gamepadAxisMapping = [[], [], [], []];
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/*
|
|
33
|
+
this.gamepadAxisMapping[0][-1] = BBC.Z; // left
|
|
34
|
+
this.gamepadAxisMapping[0][1] = BBC.X; // right
|
|
35
|
+
this.gamepadAxisMapping[1][-1] = BBC.COLON_STAR; // up
|
|
36
|
+
this.gamepadAxisMapping[1][1] = BBC.SLASH; // down
|
|
37
|
+
this.gamepadAxisMapping[2][-1] = BBC.Z; // left
|
|
38
|
+
this.gamepadAxisMapping[2][1] = BBC.X; // right
|
|
39
|
+
this.gamepadAxisMapping[3][-1] = BBC.COLON_STAR; // up
|
|
40
|
+
this.gamepadAxisMapping[3][1] = BBC.SLASH; // down
|
|
41
|
+
*/
|
|
42
|
+
remap(gamepadKey, bbcKey) {
|
|
43
|
+
// convert "1" into "K1"
|
|
44
|
+
if ("0123456789".indexOf(bbcKey) > 0) {
|
|
45
|
+
bbcKey = "K" + bbcKey;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const mappedBbcKey = BBC[bbcKey];
|
|
49
|
+
if (!mappedBbcKey) {
|
|
50
|
+
console.log("unknown BBC key: " + bbcKey);
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
switch (gamepadKey) {
|
|
55
|
+
case "LEFT":
|
|
56
|
+
this.gamepadMapping[3] = mappedBbcKey;
|
|
57
|
+
this.gamepadAxisMapping[0][-1] = mappedBbcKey;
|
|
58
|
+
this.gamepadAxisMapping[2][-1] = mappedBbcKey;
|
|
59
|
+
break;
|
|
60
|
+
case "RIGHT":
|
|
61
|
+
this.gamepadMapping[1] = mappedBbcKey;
|
|
62
|
+
this.gamepadAxisMapping[0][1] = mappedBbcKey;
|
|
63
|
+
this.gamepadAxisMapping[2][1] = mappedBbcKey;
|
|
64
|
+
break;
|
|
65
|
+
case "UP":
|
|
66
|
+
this.gamepadMapping[0] = mappedBbcKey;
|
|
67
|
+
this.gamepadAxisMapping[1][-1] = mappedBbcKey;
|
|
68
|
+
this.gamepadAxisMapping[3][-1] = mappedBbcKey;
|
|
69
|
+
break;
|
|
70
|
+
case "DOWN":
|
|
71
|
+
this.gamepadMapping[2] = mappedBbcKey;
|
|
72
|
+
this.gamepadAxisMapping[1][1] = mappedBbcKey;
|
|
73
|
+
this.gamepadAxisMapping[3][1] = mappedBbcKey;
|
|
74
|
+
break;
|
|
75
|
+
case "FIRE":
|
|
76
|
+
for (let i = 0; i < 16; i++) {
|
|
77
|
+
this.gamepadMapping[i] = mappedBbcKey;
|
|
78
|
+
}
|
|
79
|
+
break;
|
|
80
|
+
|
|
81
|
+
// XBox 360 Controller names
|
|
82
|
+
case "UP2":
|
|
83
|
+
this.gamepadAxisMapping[3][-1] = mappedBbcKey;
|
|
84
|
+
break;
|
|
85
|
+
case "UP1":
|
|
86
|
+
this.gamepadAxisMapping[1][-1] = mappedBbcKey;
|
|
87
|
+
break;
|
|
88
|
+
case "UP3":
|
|
89
|
+
this.gamepadMapping[0] = mappedBbcKey;
|
|
90
|
+
break;
|
|
91
|
+
case "DOWN2":
|
|
92
|
+
this.gamepadAxisMapping[3][1] = mappedBbcKey;
|
|
93
|
+
break;
|
|
94
|
+
case "DOWN1":
|
|
95
|
+
this.gamepadAxisMapping[1][1] = mappedBbcKey;
|
|
96
|
+
break;
|
|
97
|
+
case "DOWN3":
|
|
98
|
+
this.gamepadMapping[2] = mappedBbcKey;
|
|
99
|
+
break;
|
|
100
|
+
case "LEFT2":
|
|
101
|
+
this.gamepadAxisMapping[2][-1] = mappedBbcKey;
|
|
102
|
+
break;
|
|
103
|
+
case "LEFT1":
|
|
104
|
+
this.gamepadAxisMapping[0][-1] = mappedBbcKey;
|
|
105
|
+
break;
|
|
106
|
+
case "LEFT3":
|
|
107
|
+
this.gamepadMapping[3] = mappedBbcKey;
|
|
108
|
+
break;
|
|
109
|
+
case "RIGHT2":
|
|
110
|
+
this.gamepadAxisMapping[2][1] = mappedBbcKey;
|
|
111
|
+
break;
|
|
112
|
+
case "RIGHT1":
|
|
113
|
+
this.gamepadAxisMapping[0][1] = mappedBbcKey;
|
|
114
|
+
break;
|
|
115
|
+
case "RIGHT3":
|
|
116
|
+
this.gamepadMapping[1] = mappedBbcKey;
|
|
117
|
+
break;
|
|
118
|
+
case "FIRE2":
|
|
119
|
+
this.gamepadMapping[11] = mappedBbcKey;
|
|
120
|
+
break;
|
|
121
|
+
case "FIRE1":
|
|
122
|
+
this.gamepadMapping[10] = mappedBbcKey;
|
|
123
|
+
break;
|
|
124
|
+
case "A":
|
|
125
|
+
this.gamepadMapping[0] = mappedBbcKey;
|
|
126
|
+
break;
|
|
127
|
+
case "B":
|
|
128
|
+
this.gamepadMapping[1] = mappedBbcKey;
|
|
129
|
+
break;
|
|
130
|
+
case "X":
|
|
131
|
+
this.gamepadMapping[2] = mappedBbcKey;
|
|
132
|
+
break;
|
|
133
|
+
case "Y":
|
|
134
|
+
this.gamepadMapping[3] = mappedBbcKey;
|
|
135
|
+
break;
|
|
136
|
+
case "START":
|
|
137
|
+
this.gamepadMapping[9] = mappedBbcKey;
|
|
138
|
+
break;
|
|
139
|
+
case "BACK":
|
|
140
|
+
this.gamepadMapping[8] = mappedBbcKey;
|
|
141
|
+
break;
|
|
142
|
+
case "RB":
|
|
143
|
+
this.gamepadMapping[5] = mappedBbcKey;
|
|
144
|
+
break;
|
|
145
|
+
case "RT":
|
|
146
|
+
this.gamepadMapping[7] = mappedBbcKey;
|
|
147
|
+
break;
|
|
148
|
+
case "LB":
|
|
149
|
+
this.gamepadMapping[4] = mappedBbcKey;
|
|
150
|
+
break;
|
|
151
|
+
case "LT":
|
|
152
|
+
this.gamepadMapping[6] = mappedBbcKey;
|
|
153
|
+
break;
|
|
154
|
+
default:
|
|
155
|
+
console.log("unknown gamepad key: " + gamepadKey);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
update(sysvia) {
|
|
160
|
+
// init gamepad
|
|
161
|
+
// gamepad not necessarily available until a button press
|
|
162
|
+
// so need to check gamepads[0] continuously
|
|
163
|
+
if (navigator.getGamepads && !this.gamepad0) {
|
|
164
|
+
const gamepads = navigator.getGamepads();
|
|
165
|
+
this.gamepad0 = gamepads[0];
|
|
166
|
+
|
|
167
|
+
if (this.gamepad0) {
|
|
168
|
+
console.log("initing gamepad");
|
|
169
|
+
// 16 buttons
|
|
170
|
+
this.gamepadButtons = [
|
|
171
|
+
false,
|
|
172
|
+
false,
|
|
173
|
+
false,
|
|
174
|
+
false,
|
|
175
|
+
false,
|
|
176
|
+
false,
|
|
177
|
+
false,
|
|
178
|
+
false,
|
|
179
|
+
false,
|
|
180
|
+
false,
|
|
181
|
+
false,
|
|
182
|
+
false,
|
|
183
|
+
false,
|
|
184
|
+
false,
|
|
185
|
+
false,
|
|
186
|
+
false,
|
|
187
|
+
];
|
|
188
|
+
|
|
189
|
+
// two joysticks (so 4 axes)
|
|
190
|
+
this.gamepadAxes = [0, 0, 0, 0];
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// process gamepad buttons
|
|
195
|
+
if (this.gamepad0) {
|
|
196
|
+
// these two lines needed in Chrome to update state, not Firefox
|
|
197
|
+
// TODO: what about IE? (can't get Gamepads to work in IE11/IE12. Mike)
|
|
198
|
+
if (!utils.isFirefox()) {
|
|
199
|
+
this.gamepad0 = navigator.getGamepads()[0];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
for (let i = 0; i < 4; i++) {
|
|
203
|
+
const axisRaw = this.gamepad0.axes[i];
|
|
204
|
+
|
|
205
|
+
// Mike's XBox 360 controller, zero positions
|
|
206
|
+
// console.log(i, axisRaw, axis);
|
|
207
|
+
//0 -0.03456169366836548 -1
|
|
208
|
+
//1 -0.037033677101135254 -1
|
|
209
|
+
//2 0.055374979972839355 1
|
|
210
|
+
//3 0.06575113534927368 1
|
|
211
|
+
const threshold = 0.15;
|
|
212
|
+
|
|
213
|
+
// normalize to -1, 0, 1
|
|
214
|
+
let axis;
|
|
215
|
+
if (axisRaw < -threshold) {
|
|
216
|
+
axis = -1;
|
|
217
|
+
} else if (axisRaw > threshold) {
|
|
218
|
+
axis = 1;
|
|
219
|
+
} else {
|
|
220
|
+
axis = 0;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (axis !== this.gamepadAxes[i]) {
|
|
224
|
+
// tricky because transition can be
|
|
225
|
+
// -1 to 0
|
|
226
|
+
// -1 to 1
|
|
227
|
+
// 0 to 1
|
|
228
|
+
// 0 to -1
|
|
229
|
+
// 1 to 0
|
|
230
|
+
// 1 to -1
|
|
231
|
+
const oldKey = this.gamepadAxisMapping[i][this.gamepadAxes[i]];
|
|
232
|
+
if (oldKey) {
|
|
233
|
+
sysvia.keyUpRaw(oldKey);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
const newKey = this.gamepadAxisMapping[i][axis];
|
|
237
|
+
if (newKey) {
|
|
238
|
+
sysvia.keyDownRaw(newKey);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// store new state
|
|
243
|
+
this.gamepadAxes[i] = axis;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
for (let i = 0; i < 16; i++) {
|
|
247
|
+
if (this.gamepad0.buttons[i]) {
|
|
248
|
+
const button = this.gamepad0.buttons[i];
|
|
249
|
+
|
|
250
|
+
if (button.pressed !== this.gamepadButtons[i]) {
|
|
251
|
+
// different to last time
|
|
252
|
+
|
|
253
|
+
if (this.gamepadMapping[i]) {
|
|
254
|
+
if (button.pressed) {
|
|
255
|
+
sysvia.keyDownRaw(this.gamepadMapping[i]);
|
|
256
|
+
} else {
|
|
257
|
+
sysvia.keyUpRaw(this.gamepadMapping[i]);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
// store new state
|
|
263
|
+
this.gamepadButtons[i] = button.pressed;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import _ from "underscore";
|
|
4
|
+
import * as utils from "./utils.js";
|
|
5
|
+
import { discFor } from "./fdc.js";
|
|
6
|
+
|
|
7
|
+
const MIME_TYPE = "application/vnd.jsbeeb.disc-image";
|
|
8
|
+
const CLIENT_ID = "356883185894-bhim19837nroivv18p0j25gecora60r5.apps.googleusercontent.com";
|
|
9
|
+
const SCOPES = "https://www.googleapis.com/auth/drive.file";
|
|
10
|
+
const DISCOVERY_DOC = "https://www.googleapis.com/discovery/v1/apis/drive/v3/rest";
|
|
11
|
+
const FILE_FIELDS = "id,name,capabilities";
|
|
12
|
+
const PARENT_FOLDER_NAME = "jsbeeb disc images";
|
|
13
|
+
|
|
14
|
+
const boundary = "-------314159265358979323846";
|
|
15
|
+
const delimiter = `\r\n--${boundary}\r\n`;
|
|
16
|
+
const close_delim = `\r\n--${boundary}--`;
|
|
17
|
+
|
|
18
|
+
const FOLDER_MIME_TYPE = "application/vnd.google-apps.folder";
|
|
19
|
+
|
|
20
|
+
export class GoogleDriveLoader {
|
|
21
|
+
constructor() {
|
|
22
|
+
this.authorized = false;
|
|
23
|
+
this.parentFolderId = undefined;
|
|
24
|
+
this.driveClient = undefined;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
async initialise() {
|
|
28
|
+
console.log("Creating GAPI");
|
|
29
|
+
await this._loadScript("https://apis.google.com/js/api.js");
|
|
30
|
+
console.log("Got GAPI, creating token client");
|
|
31
|
+
this.gapi = window.gapi;
|
|
32
|
+
await this._loadScript("https://accounts.google.com/gsi/client");
|
|
33
|
+
this.tokenClient = window.google.accounts.oauth2.initTokenClient({
|
|
34
|
+
client_id: CLIENT_ID,
|
|
35
|
+
scope: SCOPES,
|
|
36
|
+
error_callback: "", // defined later
|
|
37
|
+
callback: "", // defined later
|
|
38
|
+
});
|
|
39
|
+
console.log("Token client created, loading client");
|
|
40
|
+
|
|
41
|
+
await this.gapi.load("client", async () => {
|
|
42
|
+
console.log("Client loaded; initialising GAPI");
|
|
43
|
+
await this.gapi.client.init({ discoveryDocs: [DISCOVERY_DOC] });
|
|
44
|
+
console.log("GAPI initialised");
|
|
45
|
+
this.driveClient = this.gapi.client.drive;
|
|
46
|
+
});
|
|
47
|
+
console.log("Google Drive: available");
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
_loadScript(src) {
|
|
52
|
+
// https://github.com/google/google-api-javascript-client/issues/319
|
|
53
|
+
return new Promise((resolve) => {
|
|
54
|
+
const script = document.createElement("script");
|
|
55
|
+
script.src = src;
|
|
56
|
+
script.onload = resolve;
|
|
57
|
+
document.body.appendChild(script);
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
authorize(imm) {
|
|
62
|
+
if (this.authorized) return true;
|
|
63
|
+
if (imm) return false;
|
|
64
|
+
return new Promise((resolve, reject) => {
|
|
65
|
+
console.log("Authorizing...");
|
|
66
|
+
this.tokenClient.callback = (resp) => {
|
|
67
|
+
if (resp.error !== undefined) reject(resp);
|
|
68
|
+
console.log("Authorized OK");
|
|
69
|
+
this.authorized = true;
|
|
70
|
+
resolve(true);
|
|
71
|
+
};
|
|
72
|
+
this.tokenClient.error_callback = (resp) => {
|
|
73
|
+
console.log(`Token client failure: ${resp.type}; failed to authorize`);
|
|
74
|
+
reject(new Error(`Token client failure: ${resp.type}; failed to authorize`));
|
|
75
|
+
};
|
|
76
|
+
this.tokenClient.requestAccessToken({ select_account: false });
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
async listFiles() {
|
|
81
|
+
let response = await this.driveClient.files.list({ q: `mimeType = '${MIME_TYPE}' and trashed = false` });
|
|
82
|
+
let result = response.result.files;
|
|
83
|
+
while (response.result.nextPageToken) {
|
|
84
|
+
response = await this.driveClient.files.list({ pageToken: response.result.nextPageToken });
|
|
85
|
+
result = result.concat(response.result.files);
|
|
86
|
+
}
|
|
87
|
+
return result;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
async _findOrCreateParentFolder() {
|
|
91
|
+
const list = await this.driveClient.files.list({
|
|
92
|
+
q: `name = '${PARENT_FOLDER_NAME}' and mimeType = '${FOLDER_MIME_TYPE}' and trashed = false`,
|
|
93
|
+
corpora: "user",
|
|
94
|
+
});
|
|
95
|
+
if (list.result.files.length === 1) {
|
|
96
|
+
console.log("Found existing parent folder");
|
|
97
|
+
return list.result.files[0].id;
|
|
98
|
+
}
|
|
99
|
+
console.log(`Creating parent folder ${PARENT_FOLDER_NAME}`);
|
|
100
|
+
const file = await this.driveClient.files.create({
|
|
101
|
+
resource: { name: PARENT_FOLDER_NAME, mimeType: FOLDER_MIME_TYPE },
|
|
102
|
+
fields: "id",
|
|
103
|
+
});
|
|
104
|
+
console.log("Folder Id:", file.result.id);
|
|
105
|
+
return file.result.id;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
async saveFile(name, data, idOrNone) {
|
|
109
|
+
if (this.parentFolderId === undefined) {
|
|
110
|
+
this.parentFolderId = await this._findOrCreateParentFolder();
|
|
111
|
+
}
|
|
112
|
+
const metadata = { name, mimeType: MIME_TYPE };
|
|
113
|
+
if (!idOrNone) metadata.parents = [this.parentFolderId];
|
|
114
|
+
|
|
115
|
+
const base64Data = btoa(utils.uint8ArrayToString(data));
|
|
116
|
+
const multipartRequestBody =
|
|
117
|
+
`${delimiter}Content-Type: application/json\r\n\r\n` +
|
|
118
|
+
`${JSON.stringify(metadata)}${delimiter}` +
|
|
119
|
+
`Content-Type: ${MIME_TYPE}\r\nContent-Transfer-Encoding: base64\r\n\r\n` +
|
|
120
|
+
`${base64Data}${close_delim}`;
|
|
121
|
+
|
|
122
|
+
return this.gapi.client.request({
|
|
123
|
+
path: `/upload/drive/v3/files${idOrNone ? `/${idOrNone}` : ""}`,
|
|
124
|
+
method: idOrNone ? "PATCH" : "POST",
|
|
125
|
+
params: { uploadType: "multipart", newRevision: false, fields: FILE_FIELDS },
|
|
126
|
+
headers: { "Content-Type": `multipart/mixed; boundary="${boundary}"` },
|
|
127
|
+
body: multipartRequestBody,
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
async create(fdc, name, data) {
|
|
132
|
+
console.log(`Google Drive: creating disc image: '${name}'`);
|
|
133
|
+
const response = await this.saveFile(name, data);
|
|
134
|
+
const meta = response.result;
|
|
135
|
+
return { fileId: meta.id, disc: this.makeDisc(fdc, data, meta) };
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
makeDisc(fdc, data, meta) {
|
|
139
|
+
let flusher = null;
|
|
140
|
+
const name = meta.name;
|
|
141
|
+
const id = meta.id;
|
|
142
|
+
if (meta.capabilities.canEdit) {
|
|
143
|
+
console.log("Making editable disc");
|
|
144
|
+
flusher = _.debounce(async (changedData) => {
|
|
145
|
+
console.log("Data changed...");
|
|
146
|
+
await this.saveFile(name, changedData, id);
|
|
147
|
+
console.log("Saved ok");
|
|
148
|
+
}, 200);
|
|
149
|
+
} else {
|
|
150
|
+
console.log("Making read-only disc");
|
|
151
|
+
}
|
|
152
|
+
return discFor(fdc, name, data, flusher);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
async load(fdc, fileId) {
|
|
156
|
+
const meta = (await this.driveClient.files.get({ fileId, fields: FILE_FIELDS })).result;
|
|
157
|
+
const data = (await this.driveClient.files.get({ fileId, alt: "media" })).body;
|
|
158
|
+
return this.makeDisc(fdc, data, meta);
|
|
159
|
+
}
|
|
160
|
+
}
|