1
0
mirror of https://github.com/pkimpel/retro-b5500.git synced 2026-02-13 11:44:33 +00:00
Files
pkimpel.retro-b5500/webUI/B5500DummyPrinter.js
paul.kimpel@digm.com 47e5d09ef7 1. Release emulator version 0.07.
2. Implement interrupt and device status latching in B5500CentralControl to support better UI display.
3. Implement B5500CardPunch device.
4. Implement preliminary and experimental B5500DummyPrinter device; correct printer I/O initiation in IOUnit.
5. Correct the way that Printer Finished interrupts are handled in IOUnit and CentralControl.
6. Implement Card Load Select in B5500Console and B5500SyllableDebugger.
7. Fix lack of presence-bit detection in return ops for returned values.
8. Redesign B5500CardReader UI to show last two cards read; change method of emptying the input hopper.
9. Set CHECK option and rework SYSTEM/LOG initialization in B5500ColdLoader.html.
10. Centralize system memory cycle time setting; change from 6us to 4us memory cycle time.
11. Increase Processor timeslice to 16ms and rework Processor.schedule() internals for more accurate performance throttling in browsers with poor setTimeout() granularity.
12. Reduce Processor syllable overhead from 2 cycles to 1.
13. Change B5500SPOUnit method of output to "paper" to work better in Google Chrome.
14. Make documentation and debugging enhancements in B5500IOUnit.
15. Release initial test website HTML and Unisys license PDF.
16. Commit Mark XVI DCMCP transcription as of 2013-06-21.
2013-06-24 05:04:15 +00:00

181 lines
7.1 KiB
JavaScript

/***********************************************************************
* retro-b5500/emulator B5500DummyPrinter.js
************************************************************************
* Copyright (c) 2013, Nigel Williams and Paul Kimpel.
* Licensed under the MIT License, see
* http://www.opensource.org/licenses/mit-license.php
************************************************************************
* B5500 (DUMMY) Line Printer Peripheral Unit module.
*
* Defines a Line Printer peripheral unit type. Journals all output to
* console.log() as well as the pritner window.
*
************************************************************************
* 2013-06-11 P.Kimpel
* Original version, from B5500SPOUnit.js.
***********************************************************************/
"use strict";
/**************************************/
function B5500DummyPrinter(mnemonic, unitIndex, designate, statusChange, signal) {
/* Constructor for the DummyPrinter object */
var that = this;
this.mnemonic = mnemonic; // Unit mnemonic
this.unitIndex = unitIndex; // Ready-mask bit number
this.designate = designate; // IOD unit designate number
this.statusChange = statusChange; // external function to call for ready-status change
this.signal = signal; // external function to call for special signals (e.g,. Printer Finished)
this.clear();
this.window = window.open("", mnemonic);
if (this.window) {
this.window.close(); // destroy the previously-existing window
this.window = null;
}
this.doc = null;
this.paper = null;
this.endOfPaper = null;
this.window = window.open("/B5500/webUI/B5500DummyPrinter.html", mnemonic,
"scrollbars,resizable,width=600,height=500");
this.window.addEventListener("load", function() {
that.printerOnload();
}, false);
}
B5500DummyPrinter.prototype.linesPerMinute = 800; // Printer speed
B5500DummyPrinter.maxScrollLines = 150000; // Maximum printer scrollback (about a box of paper)
/**************************************/
B5500DummyPrinter.prototype.$$ = function $$(e) {
return this.doc.getElementById(e);
};
/**************************************/
B5500DummyPrinter.prototype.clear = function clear() {
/* Initializes (and if necessary, creates) the printer unit state */
this.ready = false; // ready status
this.busy = false; // busy status
this.activeIOUnit = 0; // I/O unit currently using this device
this.errorMask = 0; // error mask for finish()
this.finish = null; // external function to call for I/O completion
};
/**************************************/
B5500DummyPrinter.prototype.printerOnload = function printerOnload() {
/* Initializes the line printer window and user interface */
var that = this;
this.doc = this.window.document;
this.doc.title = "retro-B5500 " + this.mnemonic;
this.paper = this.doc.createElement("pre");
this.doc.body.appendChild(this.paper);
this.endOfPaper = this.doc.createElement("div");
this.doc.body.appendChild(this.endOfPaper);
this.window.moveTo(40, 40);
this.window.resizeTo(1000, screen.availHeight*0.80);
this.statusChange(1);
};
/**************************************/
B5500DummyPrinter.prototype.appendLine = function appendLine(text) {
/* Removes excess lines already printed, then appends a new <pre> element
to the <iframe>, creating an empty text node inside the new element */
var count = this.paper.childNodes.length;
var line = this.doc.createTextNode(text || "");
while (count-- > this.maxScrollLines) {
this.paper.removeChild(this.paper.firstChild);
}
this.paper.appendChild(line);
};
/**************************************/
B5500DummyPrinter.prototype.read = function read(finish, buffer, length, mode, control) {
/* Initiates a read operation on the unit */
console.log("READ: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.space = function space(finish, length, control) {
/* Initiates a space operation on the unit */
console.log("SPACE: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.write = function write(finish, buffer, length, mode, control) {
/* Initiates a write operation on the unit */
var text;
var that = this;
this.errorMask = 0;
text = String.fromCharCode.apply(null, buffer.subarray(0, length));
//console.log("WRITE: L=" + length + ", M=" + mode + ", C=" + control + " : " + text);
this.appendLine(text + "\n");
if (control > 1) {
this.appendLine("\n");
} else if (control < 0) {
this.paper.appendChild(this.doc.createElement("hr"));
}
setTimeout(this.signal, 60000/this.linesPerMinute);
finish(0, 0);
this.endOfPaper.scrollIntoView();
};
/**************************************/
B5500DummyPrinter.prototype.erase = function erase(finish, length) {
/* Initiates an erase operation on the unit */
console.log("ERASE: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.rewind = function rewind(finish) {
/* Initiates a rewind operation on the unit */
console.log("REWIND: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.readCheck = function readCheck(finish, length, control) {
/* Initiates a read check operation on the unit */
console.log("READCK: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.readInterrogate = function readInterrogate(finish, control) {
/* Initiates a read interrogate operation on the unit */
console.log("READIG: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};
/**************************************/
B5500DummyPrinter.prototype.writeInterrogate = function writeInterrogate(finish, control) {
/* Initiates a write interrogate operation on the unit */
console.log("WRITEG: L=" + length + ", M=" + mode + ", C=" + control + " : " +
String.fromCharCode.apply(null, buffer.subarray(0, length)));
finish(0x04, 0);
};