An Apple II emulator originally written in Javascript, now being converted to TypeScript
Go to file
Ian Flanigan 910238bf63
Convert cards/disk2.js to Typescript (#54)
* Convert `cards/disk2.js` to Typescript

This is mostly a straightforward conversion of `cards/disk2.js` to
Typescript, with the following exceptions:

*   `setState()` did not restore the drive light state correctly
    because the callback was called with the old `on` value.

*   `setPhase()` did not work for WOZ images.

*   `getBinary()` did not work for `nib` files.

*   `getBase64()` did not work for `nib` files and maybe didn't work
    right at all.

Even with these fixes, local storage still doesn't work correctly.

I have also added several TODOs where methods don't support WOZ disks.

* Convert most uses of `memory` to `Uint8Array`

There are many places in the existing code where we use `Uint8Array`
directly. This change merely makes the `memory` type equivalent to
`Uint8Array`.

This change also changes most ROM data to be read-only in Typescript
to ensure that it is not modified by mistake. This can't be done just
by applying `as const` to the declaration because `Uint8Array`s are
can not be expressed as literals. Instead, we create a new type,
`ReadonlyUint8Array` that drops the mutation methods and makes indexed
access read-only.

See
https://www.growingwiththeweb.com/2020/10/typescript-readonly-typed-arrays.html
for details.

* Tighten types and document `disk2.ts`

While trying to understand the Disk ][ emulation, I tighted the types
and documented the parts that I could, including references to other
sources, like _Understanding the Apple //e_ by Jim Sather.

The one functional change is the addition of the P6 ROM of DOS 3.2 and
earlier. This is automatically selected if the card is initialized for
13 sector disks.
2021-02-07 20:50:50 -08:00
.github/workflows Add node CI 2019-11-23 18:46:11 -08:00
asm Simple Smartport (#31) 2020-09-12 19:42:18 -07:00
bin Lint more 2020-04-23 20:57:59 -07:00
css Fix Firefox key borders 2020-09-07 16:55:10 -07:00
img True up with website. 2019-02-18 20:42:50 -08:00
js Convert cards/disk2.js to Typescript (#54) 2021-02-07 20:50:50 -08:00
json/disks Port tools to node. 2019-03-02 22:46:37 -08:00
test DOS 13-sector tests and fixes (#53) 2021-01-03 15:01:30 -08:00
.editorconfig Simple Smartport (#31) 2020-09-12 19:42:18 -07:00
.eslintignore Lint more 2020-04-23 20:57:59 -07:00
.eslintrc.json enforce indent case like vscode prefers 2020-11-25 17:28:37 -08:00
.gitignore Ignore .DS_Store. 2019-12-21 18:47:56 -08:00
apple2js.html Track raw parallel port output and allow it to be downloaded (#36) 2020-10-17 16:53:13 -07:00
apple2jse.html Track raw parallel port output and allow it to be downloaded (#36) 2020-10-17 16:53:13 -07:00
babel.config.js Add a real test harness. 2019-03-26 21:02:27 -07:00
jest.config.js Use class fields instead of binding (#40) 2020-11-07 08:54:49 -08:00
LICENSE Crude native woz support. (#13) 2019-10-01 19:56:10 -07:00
package-lock.json Bump ini from 1.3.5 to 1.3.7 (#48) 2020-12-10 18:54:52 -08:00
package.json typescript linting 2020-11-07 16:46:27 -08:00
README.md Various fixes (#23) 2020-04-23 19:47:44 -07:00
tsconfig.json Make Typescript a bit more strict (#45) 2020-11-15 17:54:37 -08:00
webpack.config.js Add configuration and dependencies to support Typescript (#37) 2020-10-17 16:53:33 -07:00

apple2js

What is this?

Apple ][js and Apple //jse are Apple ][ and Apple //e emulators written entirely in JavaScript and HTML5.

Things are still a little rough around the edges right now, hopefully I will have more time to clean things up.

First

npm install

To run a development server

npm start

The open either http://localhost:8080/apple2js.html or http://localhost:8080/apple2jse.html

To build a static distribution into dist

npm run build

To add additional disk images, use

./bin/dsk2json -c Category -n Name path/to/image.dsk > json/disks/image.json

then

./bin/index

Updates

2019-03-02

  • Behind the scenes

    A lot of not so visible changes behind the scenes. The website now runs directly off of github, and has a more modern toolchain (Goodbye make, Perl and closure compiler, hello Webpack!) to facilitate development.

  • Performance

    In particular, the screen no longer redraws as quickly as possible.

  • Drag and Drop

    Disk images can be dragged into the window to load them.

  • Contributions

    Thanks to Ian Flanigan for additions to improve ChromeBook behavior.

2017-10-08

  • Better iOS support

    Bluetooth keyboards now work better. Reset is Ctrl-Shift-Delete. iOS now allows loading disks from iCloud and services like Drop Box. Saving locally is still not supported by iOS. I now understand why sound doesn't work, and I'm working on a work-around.

  • Source Maps

    Although the source code has always been available, by default I serve up minified Javascript for performance reasons. But now you can poke around more easily.

Updates (2017-08-31)

(It's been a long time since I updated, so this is a rough list)

  • Videx Videoterm Emulation (][js)

    PR#3 now does something on the Apple ][!.

  • AppleColor RGB Card Emulation (//jse)

    Now supports a bunch of the mostly non-standard video formats found on the AppleColor RGB card, including 16 color text, 16 color hires mode, and mixed black and white and color double hires

  • Machine selection

    You can now select between original, autostart and plus Apple ][s, and unenhanced and enhanced //es.

Updates (2013-07-04)

  • RAMFactor Emulation (//jse)

    I now simulate having a 1 Megabyte RAMFactor card in slot 2.

  • Thunderclock Emulation

    There is cursory emulation of the Thunderclock card, enough to keep ProDOS applications from asking you to enter the date all the time. ProDOS attempts to guess the year from the month, the day and the day of the week, something that needs to be patched every 6 years. This means newer versions think it's 1996, older versions are stuck in the 80s.

  • Firefox Nightly Joystick Support

    Joystick support has yet to officially land, but the latest nightlies support the gamepad API.

Updates (2013-03-20)

  • Animation Frames

    I've switched from using setInterval() to requestAnimationFrame() where supported. This, in conjunction with the graphics re-write, seems to smooth performance and provide a more stable CPU speed.

  • Graphics Re-Write

    This (third) re-write of the graphics system should improve performance with graphics intensive programs. Rather than rendering each graphics update as it happens, updates are rendered each animation frame.

Updates (2013-03-12)

  • Apple //e

    After much flailing, and much staring at MMU emulation code in despair, I've finally published my Apple //e emulator. It's probably a little more rough than I'd hoped, but it has a lot of features that I really wanted to get into it, like basic double hires support, and it uses the enhanced Apple //e ROMs.

Updates (2013-02-25)

  • Joystick Support

    Chrome only so far, the nascent gamepad API has finally allowed me to add basic joystick support. I can now re-live my glory days of Skyfox.

  • Re-written CPU emulator

    I finally got around to applying some of the many lessons I learned along the way writing my first CPU emulator in Javascript. The last re-working gave me about a 100% performance gain.

  • Finally Fixed Oregon Trail

    This seems to have been a major disappointment for many people. I was able to make it as a banker, but I'm embarassed to reveal my score.

  • Competition

    Now in addition to Gil Megidish's Apple2JS, there's a couple of new kids on the block, including David Caldwell's Apple II+ emulator where he's put a lot more thought into the graphics rendering than I have, and appletoo, which I just stumbled across while looking for David's emulator and haven't had much time to look at.

Requirements

  • A Browser with HTML5 Support

    The most recent versions of Google Chrome, Safari, Firefox, and Opera all seem to work reasonably well these days,although variations in HTML5 support pop up, and occasionally a major release will move things around out from under me. IE prior to 9 lacks canvas tag support and is unsupported. IE 9+ renders nicely on a modern machine.

  • Basic Knowledge of the Apple ][

    If you don't know how to use an Apple ][, this won't be much fun for you.

Acknowledgements