mirror of
https://github.com/inexorabletash/jsbasic.git
synced 2024-11-26 21:50:49 +00:00
179 lines
8.8 KiB
HTML
179 lines
8.8 KiB
HTML
<!DOCTYPE html>
|
|
<title>Applesoft BASIC in JavaScript</title>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Suppress browser compat button -->
|
|
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
<link rel="alternate" type="application/atom+xml" href="https://github.com/inexorabletash/jsbasic/commits/master.atom">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="stylesheet" href="display.css">
|
|
|
|
<script src="https://cdn.rawgit.com/inexorabletash/polyfill/v0.1.29/polyfill.min.js"></script>
|
|
<script src="https://cdn.rawgit.com/inexorabletash/polyfill/v0.1.29/keyboard.js"></script>
|
|
|
|
<!-- CodeMirror syntax highlighting - this is optional -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.33.0/codemirror.min.js"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.33.0/codemirror.css">
|
|
<script src="cm/basic.js"></script>
|
|
<link rel="stylesheet" href="cm/basic.css">
|
|
<style>
|
|
.CodeMirror { border: solid 1px black; width: 598px; height: 384px; background-color: white; }
|
|
.CodeMirror-scroll { height: 100%; }
|
|
</style>
|
|
|
|
<h1>Applesoft BASIC in Javascript</h1>
|
|
<p>
|
|
By <a target=_blank href="mailto:inexorabletash@gmail.com">Joshua Bell</a>
|
|
| <a target="_blank" href="https://github.com/inexorabletash/jsbasic/">Source</a>
|
|
| <a target="_blank" href="https://github.com/inexorabletash/jsbasic/blob/master/README.md">README</a>
|
|
— <a target="_blank" href="reference.html">Applesoft BASIC Quick Reference</a>
|
|
|
|
<p>Related projects:
|
|
<a href="../jslogo">Logo in Javascript</a>
|
|
| <a href="http://calormen.com/vnIIc">Streaming video to an Apple II - vnIIc</a>
|
|
</p>
|
|
|
|
<br style="clear: both;">
|
|
|
|
<!-- Screen -->
|
|
<div id="frame" class="jsb-frame" style="float: left; margin: 5px;" tabIndex="0">
|
|
<div id="screen-wrapper" class="jsb-wrapper">
|
|
<div id="lores" class="jsb-lores"></div>
|
|
<canvas id="hires" width="560" height="384" class="jsb-hires"></canvas>
|
|
<canvas id="hires2" width="560" height="384" class="jsb-hires"></canvas>
|
|
<div id="screen" class="jsb-tty"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Source -->
|
|
<div style="float: left; margin: 5px;">
|
|
Enter code:
|
|
<button id="btn_run">▶ Run</button>
|
|
<button id="btn_stop" disabled>◼ Stop</button>
|
|
|
|
<select id="lb_files">
|
|
<option disabled selected="selected">Select a sample...</option>
|
|
<option value="sample.basic">DEMOS</option>
|
|
|
|
<option disabled>____________________________________________</option>
|
|
<option disabled>Tests</option>
|
|
<option value="sample.unittests"> Unit Tests</option>
|
|
<option value="sample.keyboard"> Keyboard Test</option>
|
|
<option value="sample.charset"> Charset Test</option>
|
|
|
|
|
|
<option disabled>____________________________________________</option>
|
|
<option disabled>Games</option>
|
|
|
|
<option value="simple.pong"> SIMPLE.PONG</option>
|
|
<option value="sample.adventure"> Text Adventure (Floyd McWilliams)</option>
|
|
<option value="sample.pacman"> (Not Really) ASCII Pac-Man (Michael Kemp)</option>
|
|
<option value="sample.puzzler"> Puzzler (Gregg Buntin)</option>
|
|
<option value="sample.hangman"> Hangman (Mike Gleason)</option>
|
|
<option value="sample.raindrops"> Catch the Raindrop (Nicholas Merchant)</option>
|
|
<option value="sample.jot"> JOT (Mike Gleason)</option>
|
|
<option value="sample.miniindy"> Mini Indy (Gregg Buntin)</option>
|
|
<option value="sample.doordetector"> Door Detector (Jeff)</option>
|
|
<option value="sample.columns"> Columns (Arthur Allen)</option>
|
|
<option value="sample.tetris"> Tetris (Arthur Allen)</option>
|
|
|
|
<option disabled>____________________________________________</option>
|
|
<option disabled>Graphics</option>
|
|
|
|
<option value="sample.rodscolorpattern"> Rod's Color Pattern</option>
|
|
<option value="sample.hacker"> Hacker Logo (markwstock)</option>
|
|
<option value="sample.loreswalk"> Random LoRes (John Melesky)</option>
|
|
<option value="sample.hireswalk"> Random HiRes (John Melesky)</option>
|
|
<option value="sample.sierpinski"> Sierpinski Triangles (Kevin Miller)</option>
|
|
<option value="sample.stringart"> String Art (Chris Heric)</option>
|
|
<option value="sample.paint"> Drawing Program (Brian Broker)</option>
|
|
<option value="sample.scribble"> Scribble (William Simms)</option>
|
|
<option value="sample.connections"> Connections (Gregg Buntin)</option>
|
|
<option value="sample.squiggle"> Squiggle (Gregg Buntin)</option>
|
|
<option value="sample.boys_surface"> Boy's Surface (Lukas Innig)</option>
|
|
<option value="sample.gaussian"> Gaussian Distribution 2D (John Russ)</option>
|
|
<option value="sample.bitmaps"> Bitmap Images (Brian Broker)</option>
|
|
<option value="sample.mandelbrot"> Mandelbrot Set (c/o Gregory Lewis)</option>
|
|
<option value="sample.mandelbrot2"> Mandelbrot Set in Color</option>
|
|
<option value="sample.steve"> Steve (Nicola Foggi)</option>
|
|
<option value="sample.logo"> Apple Logo (Brendan Robert)</option>
|
|
<option value="sample.loresdrawing"> Graphics Drawing (Gregg Buntin)</option>
|
|
<option value="sample.calculatedimage"> Calculated Image (Gregg Buntin)</option>
|
|
<option value="sample.xmastree"> Christmas Tree (Gregg Buntin and Rich Orde)</option>
|
|
<option value="sample.snowflakes"> Snowflakes (Kevin Riordan)</option>
|
|
<option value="sample.ninjaturtle"> Ninja Turtle (Chris Whong)</option>
|
|
|
|
<option value="sample.3dhat"> 3D Hat (Micro, the 6502 magazine, may 1981 c/o Golden Child)</option>
|
|
<option value="sample.dbconverge"> Double-Buffered Value Convergence (Golden Child)</option>
|
|
<option value="sample.dbpendulum"> Double-Buffered Physics Pendulum Simulation (Golden Child)</option>
|
|
<option value="sample.dbvectorship"> Double-Buffered Asteroids Ship Demo (Golden Child)</option>
|
|
<option value="sample.dbvectortext"> Double-Buffered Vector Font (Golden Child)</option>
|
|
<option value="sample.stellar7"> STELLAR 7 Rotate 3d Objects (Golden Child)</option>
|
|
<option value="sample.functiongraphing"> Function Graphing (Golden Child)</option>
|
|
|
|
<option disabled>____________________________________________</option>
|
|
<option disabled>Other</option>
|
|
|
|
<option value="sample.primes"> Prime Sieve (Kevin Miller)</option>
|
|
<option value="sample.february"> February Surprise (Antti Pirskanen)</option>
|
|
<option value="sample.hellosine"> Hello World Sine Wave (Jamie Beu)</option>
|
|
<option value="sample.bodymass"> Body Mass Index Calculator (Tim Dwyer)</option>
|
|
|
|
<option disabled>____________________________________________</option>
|
|
<option disabled>Traveller RPG Utilities</option>
|
|
|
|
<option value="TRADER C"> TRADER</option>
|
|
<option value="sample.sectorgen"> Traveller Sector Generator</option>
|
|
<option value="sample.zhorelay"> Zhodani Relay Station Placement</option>
|
|
<option value="sample.readsector"> Read Sector File</option>
|
|
</select>
|
|
|
|
<!-- Source code editor inserted here -->
|
|
<div id="editorframe"></div>
|
|
|
|
<form id="submission" method="post" enctype="text/plain" action="mailto:inexorabletash@gmail.com?subject=Applesoft%20Sample%20Submission" target=_blank>
|
|
<textarea name="source" id="source" style="display: none;">
|
|
</textarea>
|
|
|
|
<button id="btn_save" title="Save as a file">💾 Save</button>
|
|
<button id="btn_load" title="Load a file">📂 Load</button>
|
|
<button id="btn_share" title="Share by email">📩 Share</button>
|
|
|
|
<button id="show_paper" title="Echo all output to a "print-out", so you can copy/paste">📃 Show output</button>
|
|
<button id="hide_paper" title="Hide the "print-out"">🚫 Hide output</button>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<br style="clear: both;">
|
|
|
|
<h3 id="links">Links</h3>
|
|
<ul>
|
|
<li>
|
|
Real emulators in JavaScript:
|
|
<a target="_blank" href="http://www.scullinsteel.com/apple2/">Apple IIjs</a>,
|
|
<a target="_blank" href="http://www.scullinsteel.com/apple//e">Apple //jse</a>,
|
|
<a target="_blank" href="http://www.megidish.net/apple2js/">Apple2JS</a>,
|
|
and
|
|
<a target="_blank" href="https://github.com/nicholasbs/appletoo">many</a>
|
|
<a target="_blank" href="http://porkrind.org/a2/">more</a>
|
|
|
|
|
|
<li><a target="_blank" href="http://www.6502asm.com/">6502asm.com</a> - a 6502 assembler/emulator in JavaScript
|
|
<li><a target="_blank" href="http://www.quitebasic.com/">Quite BASIC</a> - a similar project aimed at teaching programming
|
|
</ul>
|
|
|
|
<div id="paper-spacer"></div>
|
|
<div id="paper"></div>
|
|
|
|
|
|
<script src="basic.js?2012-02-08"></script>
|
|
<script src="bell.js"></script>
|
|
<script src="tty.js"></script>
|
|
<script src="lores.js"></script>
|
|
<script src="hires.js"></script>
|
|
<script src="dos.js"></script>
|
|
<script src="printer.js"></script>
|
|
<script src="index.js"></script>
|