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
package/src/scheduler.js
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
const MaxHeadroom = 0xffffffff;
|
|
2
|
+
|
|
3
|
+
export class Scheduler {
|
|
4
|
+
static get MaxHeadroom() {
|
|
5
|
+
return MaxHeadroom;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
constructor() {
|
|
9
|
+
/** @type {ScheduledTask|null} */
|
|
10
|
+
this.scheduled = null;
|
|
11
|
+
this.epoch = 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Schedule a task to run after a delay.
|
|
16
|
+
* @param {ScheduledTask} task
|
|
17
|
+
* @param {number} delay
|
|
18
|
+
*/
|
|
19
|
+
schedule(task, delay) {
|
|
20
|
+
if (task.scheduler !== this) {
|
|
21
|
+
throw new Error("Wrong scheduler for task, or non-task");
|
|
22
|
+
}
|
|
23
|
+
if (task.scheduled()) {
|
|
24
|
+
throw new Error("Task is already scheduled");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const expireEpoch = delay + this.epoch;
|
|
28
|
+
task.expireEpoch = expireEpoch;
|
|
29
|
+
task._scheduled = true;
|
|
30
|
+
|
|
31
|
+
let before = this.scheduled;
|
|
32
|
+
let prev = null;
|
|
33
|
+
while (before && before.expireEpoch <= expireEpoch) {
|
|
34
|
+
prev = before;
|
|
35
|
+
before = before.next;
|
|
36
|
+
}
|
|
37
|
+
task.next = before;
|
|
38
|
+
task.prev = prev;
|
|
39
|
+
if (task.next) task.next.prev = task;
|
|
40
|
+
if (task.prev) {
|
|
41
|
+
task.prev.next = task;
|
|
42
|
+
} else {
|
|
43
|
+
this.scheduled = task;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Cancel a task.
|
|
49
|
+
* @param {ScheduledTask} task
|
|
50
|
+
*/
|
|
51
|
+
cancel(task) {
|
|
52
|
+
if (!task.scheduled()) return;
|
|
53
|
+
if (!task.prev) {
|
|
54
|
+
// First element, we need to update the head element.
|
|
55
|
+
this.scheduled = task.next;
|
|
56
|
+
} else {
|
|
57
|
+
task.prev.next = task.next;
|
|
58
|
+
}
|
|
59
|
+
if (task.next) {
|
|
60
|
+
task.next.prev = task.prev;
|
|
61
|
+
}
|
|
62
|
+
task.next = task.prev = null;
|
|
63
|
+
task._scheduled = false;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Run all tasks that are due in the next ticks.
|
|
68
|
+
* @param {number} ticks number of cycles to run
|
|
69
|
+
*/
|
|
70
|
+
polltime(ticks) {
|
|
71
|
+
const targetEpoch = this.epoch + ticks;
|
|
72
|
+
while (this.scheduled && this.scheduled.expireEpoch <= targetEpoch) {
|
|
73
|
+
const head = this.scheduled;
|
|
74
|
+
this.epoch = head.expireEpoch;
|
|
75
|
+
head.cancel(); // cancel first
|
|
76
|
+
head.onExpire(); // expiry may reschedule
|
|
77
|
+
}
|
|
78
|
+
this.epoch = targetEpoch;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* The minimum number of cycles that can be run without needing to polltime.
|
|
83
|
+
* @returns {number} number of cycles
|
|
84
|
+
*/
|
|
85
|
+
headroom() {
|
|
86
|
+
if (this.scheduled === null) return MaxHeadroom;
|
|
87
|
+
return this.scheduled.expireEpoch - this.epoch;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Create a new task.
|
|
92
|
+
* @param {function(): void} onExpire function to call when the task expires
|
|
93
|
+
* @returns {ScheduledTask} a handle to the new task
|
|
94
|
+
*/
|
|
95
|
+
newTask(onExpire) {
|
|
96
|
+
return new ScheduledTask(this, onExpire);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
class ScheduledTask {
|
|
101
|
+
/**
|
|
102
|
+
* @param {Scheduler} scheduler
|
|
103
|
+
* @param {function(): void} onExpire
|
|
104
|
+
*/
|
|
105
|
+
constructor(scheduler, onExpire) {
|
|
106
|
+
this.scheduler = scheduler;
|
|
107
|
+
this.prev = null;
|
|
108
|
+
this.next = null;
|
|
109
|
+
this.expireEpoch = 0;
|
|
110
|
+
this.onExpire = onExpire;
|
|
111
|
+
this._scheduled = false;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
scheduled() {
|
|
115
|
+
return this._scheduled;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @param {number} delay
|
|
120
|
+
*/
|
|
121
|
+
schedule(delay) {
|
|
122
|
+
this.scheduler.schedule(this, delay);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @param {number} delay
|
|
127
|
+
*/
|
|
128
|
+
reschedule(delay) {
|
|
129
|
+
this.scheduler.cancel(this);
|
|
130
|
+
this.scheduler.schedule(this, delay);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
cancel() {
|
|
134
|
+
this.scheduler.cancel(this);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @param {boolean} state
|
|
139
|
+
* @param {number} delay
|
|
140
|
+
*/
|
|
141
|
+
ensureScheduled(state, delay) {
|
|
142
|
+
if (state) {
|
|
143
|
+
if (!this.scheduled()) this.schedule(delay);
|
|
144
|
+
} else {
|
|
145
|
+
this.cancel();
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
package/src/serial.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const table = [19200, 9600, 4800, 2400, 1200, 300, 150, 75];
|
|
4
|
+
|
|
5
|
+
export class Serial {
|
|
6
|
+
constructor(acia) {
|
|
7
|
+
this.acia = acia;
|
|
8
|
+
this.reset();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
reset() {
|
|
12
|
+
this.reg = 0;
|
|
13
|
+
this.transmitRate = 0;
|
|
14
|
+
this.receiveRate = 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
write(addr, val) {
|
|
18
|
+
val &= 0xff;
|
|
19
|
+
this.reg = val;
|
|
20
|
+
this.transmitRate = val & 0x07;
|
|
21
|
+
this.receiveRate = (val >>> 3) & 0x07;
|
|
22
|
+
this.acia.setSerialReceive(table[this.receiveRate]);
|
|
23
|
+
this.acia.setMotor(!!(val & 0x80));
|
|
24
|
+
this.acia.selectRs423(!!(val & 0x40));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
read() {
|
|
28
|
+
this.write(0, 0xfe);
|
|
29
|
+
return 0;
|
|
30
|
+
}
|
|
31
|
+
}
|
package/src/soundchip.js
ADDED
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
const volumeTable = new Float32Array(16);
|
|
2
|
+
(() => {
|
|
3
|
+
let f = 1.0;
|
|
4
|
+
for (let i = 0; i < 15; ++i) {
|
|
5
|
+
volumeTable[i] = f / 4; // Bakes in the per channel volume
|
|
6
|
+
f *= Math.pow(10, -0.1);
|
|
7
|
+
}
|
|
8
|
+
volumeTable[15] = 0;
|
|
9
|
+
})();
|
|
10
|
+
|
|
11
|
+
function makeSineTable(attenuation) {
|
|
12
|
+
const sineTable = new Float32Array(8192);
|
|
13
|
+
for (let i = 0; i < sineTable.length; ++i) {
|
|
14
|
+
sineTable[i] = Math.sin((2 * Math.PI * i) / sineTable.length) * attenuation;
|
|
15
|
+
}
|
|
16
|
+
return sineTable;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export class SoundChip {
|
|
20
|
+
constructor(onBuffer) {
|
|
21
|
+
this._onBuffer = onBuffer;
|
|
22
|
+
// 4MHz input signal. Internal divide-by-8
|
|
23
|
+
this.soundchipFreq = 4000000.0 / 8;
|
|
24
|
+
const sampleRate = this.soundchipFreq;
|
|
25
|
+
// Square wave changes every time a counter hits zero: A full wave needs to be 2x counter zeros.
|
|
26
|
+
this.waveDecrementPerSecond = this.soundchipFreq / 2;
|
|
27
|
+
// Each sample in the buffer represents (1/sampleRate) time, so each time
|
|
28
|
+
// we generate a sample, we need to decrement the counters by this amount:
|
|
29
|
+
this.sampleDecrement = this.waveDecrementPerSecond / sampleRate;
|
|
30
|
+
// How many samples are generated per CPU cycle.
|
|
31
|
+
this.samplesPerCycle = sampleRate / 2000000;
|
|
32
|
+
this.minCyclesWELow = 14; // Somewhat empirically derived; Repton 2 has only 14 cycles between WE low and WE high (@0x2caa)
|
|
33
|
+
|
|
34
|
+
this.registers = new Uint16Array(4);
|
|
35
|
+
this.counter = new Float32Array(4);
|
|
36
|
+
this.outputBit = [false, false, false, false];
|
|
37
|
+
this.volume = new Float32Array(4);
|
|
38
|
+
this.generators = [
|
|
39
|
+
this.toneChannel.bind(this),
|
|
40
|
+
this.toneChannel.bind(this),
|
|
41
|
+
this.toneChannel.bind(this),
|
|
42
|
+
this.noiseChannel.bind(this),
|
|
43
|
+
this.sineChannel.bind(this),
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
this.sineTable = makeSineTable(1 / this.generators.length);
|
|
47
|
+
this.sineStep = 0;
|
|
48
|
+
this.sineOn = false;
|
|
49
|
+
this.sineTime = 0;
|
|
50
|
+
|
|
51
|
+
this.lfsr = 0;
|
|
52
|
+
this.shiftLfsr = this.shiftLfsrWhiteNoise.bind(this);
|
|
53
|
+
|
|
54
|
+
this.enabled = true;
|
|
55
|
+
this.scheduler = { epoch: 0 };
|
|
56
|
+
this.lastRunEpoch = 0;
|
|
57
|
+
this.activeTask = null;
|
|
58
|
+
|
|
59
|
+
this.residual = 0;
|
|
60
|
+
this.position = 0;
|
|
61
|
+
this.buffer = new Float32Array(512);
|
|
62
|
+
|
|
63
|
+
this.latchedRegister = 0;
|
|
64
|
+
this.slowDataBus = 0;
|
|
65
|
+
this.active = false;
|
|
66
|
+
|
|
67
|
+
this.toneGenerator = {
|
|
68
|
+
mute: () => {
|
|
69
|
+
this.catchUp();
|
|
70
|
+
this.sineOn = false;
|
|
71
|
+
},
|
|
72
|
+
tone: (freq) => {
|
|
73
|
+
this.catchUp();
|
|
74
|
+
this.sineOn = true;
|
|
75
|
+
this.sineStep = (freq / sampleRate) * this.sineTable.length;
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
sineChannel(channel, out, offset, length) {
|
|
81
|
+
if (!this.sineOn) return;
|
|
82
|
+
|
|
83
|
+
for (let i = 0; i < length; ++i) {
|
|
84
|
+
out[i + offset] += this.sineTable[this.sineTime & (this.sineTable.length - 1)];
|
|
85
|
+
this.sineTime += this.sineStep;
|
|
86
|
+
}
|
|
87
|
+
while (this.sineTime > this.sineTable.length) this.sineTime -= this.sineTable.length;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
_doChannelStep(channel, addAmount) {
|
|
91
|
+
const newValue = this.counter[channel] - this.sampleDecrement;
|
|
92
|
+
if (newValue < 0) {
|
|
93
|
+
this.counter[channel] = Math.max(0, newValue + addAmount);
|
|
94
|
+
this.outputBit[channel] = !this.outputBit[channel];
|
|
95
|
+
return this.outputBit[channel];
|
|
96
|
+
} else {
|
|
97
|
+
this.counter[channel] = newValue;
|
|
98
|
+
return false;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
toneChannel(channel, out, offset, length) {
|
|
103
|
+
const reg = this.registers[channel] === 0 ? 1024 : this.registers[channel];
|
|
104
|
+
const vol = this.volume[channel];
|
|
105
|
+
for (let i = 0; i < length; ++i) {
|
|
106
|
+
this._doChannelStep(channel, reg);
|
|
107
|
+
out[i + offset] += this.outputBit[channel] * vol;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
shiftLfsrWhiteNoise() {
|
|
112
|
+
const bit = (this.lfsr & 1) ^ ((this.lfsr & (1 << 1)) >>> 1);
|
|
113
|
+
this.lfsr = (this.lfsr >>> 1) | (bit << 14);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
shiftLfsrPeriodicNoise() {
|
|
117
|
+
this.lfsr >>= 1;
|
|
118
|
+
if (this.lfsr === 0) this.lfsr = 1 << 14;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
noisePoked() {
|
|
122
|
+
this.shiftLfsr =
|
|
123
|
+
this.registers[3] & 4 ? this.shiftLfsrWhiteNoise.bind(this) : this.shiftLfsrPeriodicNoise.bind(this);
|
|
124
|
+
this.lfsr = 1 << 14;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
addFor(channel) {
|
|
128
|
+
channel = channel | 0;
|
|
129
|
+
switch (this.registers[channel] & 3) {
|
|
130
|
+
case 0:
|
|
131
|
+
return 0x10;
|
|
132
|
+
case 1:
|
|
133
|
+
return 0x20;
|
|
134
|
+
case 2:
|
|
135
|
+
return 0x40;
|
|
136
|
+
case 3:
|
|
137
|
+
return this.registers[channel - 1];
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
noiseChannel(channel, out, offset, length) {
|
|
142
|
+
const add = this.addFor(channel),
|
|
143
|
+
vol = this.volume[channel];
|
|
144
|
+
for (let i = 0; i < length; ++i) {
|
|
145
|
+
if (this._doChannelStep(channel, add)) this.shiftLfsr();
|
|
146
|
+
out[i + offset] += (this.lfsr & 1) * vol;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
debugPokeAll(c0, v0, c1, v1, c2, v2, c3, v3) {
|
|
151
|
+
this.catchUp();
|
|
152
|
+
this.registers[0] = c0 & 0xffffff;
|
|
153
|
+
this.registers[1] = c1 & 0xffffff;
|
|
154
|
+
this.registers[2] = c2 & 0xffffff;
|
|
155
|
+
this.registers[3] = c3 & 0xffffff;
|
|
156
|
+
this.volume[0] = volumeTable[v0];
|
|
157
|
+
this.volume[1] = volumeTable[v1];
|
|
158
|
+
this.volume[2] = volumeTable[v2];
|
|
159
|
+
this.volume[3] = volumeTable[v3];
|
|
160
|
+
this.noisePoked();
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
generate(out, offset, length) {
|
|
164
|
+
offset = offset | 0;
|
|
165
|
+
length = length | 0;
|
|
166
|
+
for (let i = 0; i < length; ++i) {
|
|
167
|
+
out[i + offset] = 0.0;
|
|
168
|
+
}
|
|
169
|
+
if (!this.enabled) return;
|
|
170
|
+
for (let i = 0; i < this.generators.length; ++i) {
|
|
171
|
+
this.generators[i](i, out, offset, length);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
catchUp() {
|
|
176
|
+
const cyclesPending = this.scheduler.epoch - this.lastRunEpoch;
|
|
177
|
+
if (cyclesPending > 0) this.advance(cyclesPending);
|
|
178
|
+
this.lastRunEpoch = this.scheduler.epoch;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
setScheduler(scheduler_) {
|
|
182
|
+
this.scheduler = scheduler_;
|
|
183
|
+
this.lastRunEpoch = this.scheduler.epoch;
|
|
184
|
+
this.activeTask = this.scheduler.newTask(() => {
|
|
185
|
+
if (this.active) this.poke(this.slowDataBus);
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
render(out, offset, length) {
|
|
190
|
+
this.catchUp();
|
|
191
|
+
const fromBuffer = this.position > length ? length : this.position;
|
|
192
|
+
for (let i = 0; i < fromBuffer; ++i) {
|
|
193
|
+
out[offset + i] = this.buffer[i];
|
|
194
|
+
}
|
|
195
|
+
offset += fromBuffer;
|
|
196
|
+
length -= fromBuffer;
|
|
197
|
+
for (let i = fromBuffer; i < this.position; ++i) {
|
|
198
|
+
this.buffer[i - fromBuffer] = this.buffer[i];
|
|
199
|
+
}
|
|
200
|
+
this.position -= fromBuffer;
|
|
201
|
+
if (length !== 0) {
|
|
202
|
+
this.generate(out, offset, length);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
advance(cycles) {
|
|
207
|
+
const num = cycles * this.samplesPerCycle + this.residual;
|
|
208
|
+
let rounded = num | 0;
|
|
209
|
+
this.residual = num - rounded;
|
|
210
|
+
const bufferLength = this.buffer.length;
|
|
211
|
+
while (rounded > 0) {
|
|
212
|
+
const leftInBuffer = bufferLength - this.position;
|
|
213
|
+
const numSamplesToGenerate = Math.min(rounded, leftInBuffer);
|
|
214
|
+
this.generate(this.buffer, this.position, numSamplesToGenerate);
|
|
215
|
+
this.position += numSamplesToGenerate;
|
|
216
|
+
rounded -= numSamplesToGenerate;
|
|
217
|
+
|
|
218
|
+
if (this.position === bufferLength) {
|
|
219
|
+
this._onBuffer(this.buffer);
|
|
220
|
+
this.buffer = new Float32Array(bufferLength);
|
|
221
|
+
this.position = 0;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
poke(value) {
|
|
227
|
+
this.catchUp();
|
|
228
|
+
|
|
229
|
+
let command;
|
|
230
|
+
if (value & 0x80) {
|
|
231
|
+
this.latchedRegister = value & 0x70;
|
|
232
|
+
command = value & 0xf0;
|
|
233
|
+
} else {
|
|
234
|
+
command = this.latchedRegister;
|
|
235
|
+
}
|
|
236
|
+
const channel = (command >> 5) & 0x03;
|
|
237
|
+
|
|
238
|
+
if (command & 0x10) {
|
|
239
|
+
// Volume setting
|
|
240
|
+
const newVolume = value & 0x0f;
|
|
241
|
+
this.volume[channel] = volumeTable[newVolume];
|
|
242
|
+
} else if (channel === 3) {
|
|
243
|
+
// For noise channel we always update the bottom bits.
|
|
244
|
+
this.registers[channel] = value & 0x0f;
|
|
245
|
+
this.noisePoked();
|
|
246
|
+
} else if (command & 0x80) {
|
|
247
|
+
// Low period bits.
|
|
248
|
+
this.registers[channel] = (this.registers[channel] & ~0x0f) | (value & 0x0f);
|
|
249
|
+
} else {
|
|
250
|
+
// High period bits.
|
|
251
|
+
this.registers[channel] = (this.registers[channel] & 0x0f) | ((value & 0x3f) << 4);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
updateSlowDataBus(slowDataBus, active) {
|
|
256
|
+
this.slowDataBus = slowDataBus;
|
|
257
|
+
this.active = active;
|
|
258
|
+
// TODO: this probably isn't modeled correctly. Currently the sound chip "notices" a new data bus value some
|
|
259
|
+
// fixed number of cycles after WE (write enable) is triggered. In reality, the sound chip likely pulls data off
|
|
260
|
+
// the bus at a fixed point in its cycle, iff WE is active.
|
|
261
|
+
if (active) {
|
|
262
|
+
this.activeTask.ensureScheduled(true, this.minCyclesWELow);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
reset(hard) {
|
|
267
|
+
if (!hard) return;
|
|
268
|
+
for (let i = 0; i < 4; ++i) {
|
|
269
|
+
this.counter[i] = 0;
|
|
270
|
+
this.registers[i] = 0;
|
|
271
|
+
// Real hardware would be volumeTable[0] but that's really quite loud and surprising...
|
|
272
|
+
this.volume[i] = volumeTable[8];
|
|
273
|
+
}
|
|
274
|
+
this.noisePoked();
|
|
275
|
+
this.lastRunEpoch = this.scheduler.epoch;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
enable(e) {
|
|
279
|
+
this.enabled = e;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
mute() {
|
|
283
|
+
this.enabled = false;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
unmute() {
|
|
287
|
+
this.enabled = true;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export class FakeSoundChip {
|
|
292
|
+
reset() {}
|
|
293
|
+
|
|
294
|
+
enable() {}
|
|
295
|
+
|
|
296
|
+
catchUp() {}
|
|
297
|
+
|
|
298
|
+
mute() {}
|
|
299
|
+
|
|
300
|
+
unmute() {}
|
|
301
|
+
|
|
302
|
+
render() {}
|
|
303
|
+
|
|
304
|
+
updateSlowDataBus() {}
|
|
305
|
+
|
|
306
|
+
setScheduler() {}
|
|
307
|
+
|
|
308
|
+
constructor() {
|
|
309
|
+
this.toneGenerator = {
|
|
310
|
+
mute: () => {},
|
|
311
|
+
tone: () => {},
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
}
|
package/src/sth.js
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import * as utils from "./utils.js";
|
|
4
|
+
|
|
5
|
+
const catalogUrl = "reclist.php?sort=name&filter=.zip";
|
|
6
|
+
const sthArchive = "www.stairwaytohell.com/bbc/archive";
|
|
7
|
+
|
|
8
|
+
async function _fetchAndParseCatalog(url) {
|
|
9
|
+
const response = await fetch(url);
|
|
10
|
+
if (!response.ok) {
|
|
11
|
+
throw new Error("Network response was not ok");
|
|
12
|
+
}
|
|
13
|
+
const parser = new DOMParser();
|
|
14
|
+
const doc = parser.parseFromString(await response.text(), "text/html");
|
|
15
|
+
const result = [];
|
|
16
|
+
doc.querySelectorAll("tr td:nth-child(3) a").forEach((link) => {
|
|
17
|
+
const href = link.getAttribute("href");
|
|
18
|
+
if (href.indexOf(".zip") > 0) result.push(href);
|
|
19
|
+
});
|
|
20
|
+
result.sort();
|
|
21
|
+
return result;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export class StairwayToHell {
|
|
25
|
+
constructor(onStart, onCat, onError, tape) {
|
|
26
|
+
this._baseUrl = `${document.location.protocol}//${sthArchive}/${tape ? "tape" : "disk"}images/`;
|
|
27
|
+
this._catalog = [];
|
|
28
|
+
this._onStart = onStart;
|
|
29
|
+
this._onCat = onCat;
|
|
30
|
+
this._onError = onError;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async populate() {
|
|
34
|
+
this._onStart();
|
|
35
|
+
if (this._catalog.length === 0) {
|
|
36
|
+
try {
|
|
37
|
+
this._catalog = await _fetchAndParseCatalog(this._baseUrl + catalogUrl);
|
|
38
|
+
} catch (error) {
|
|
39
|
+
console.error("Failed to fetch catalog:", error);
|
|
40
|
+
if (this._onError) this._onError();
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
if (this._onCat) this._onCat(this._catalog);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async fetch(file) {
|
|
48
|
+
const name = this._baseUrl + file;
|
|
49
|
+
console.log("Loading ZIP from " + name);
|
|
50
|
+
const response = await fetch(name);
|
|
51
|
+
if (!response.ok) throw new Error("Network response was not ok");
|
|
52
|
+
try {
|
|
53
|
+
return utils.unzipDiscImage(new Uint8Array(await response.arrayBuffer())).data;
|
|
54
|
+
} catch (error) {
|
|
55
|
+
console.error("Failed to fetch file:", error);
|
|
56
|
+
throw error;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|