apple2js/js/ui/printer.js
2019-02-28 21:21:18 -08:00

56 lines
1.6 KiB
JavaScript

/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation. No representations are made about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*/
export default function Printer(paper) {
var _lineBuffer;
var _line;
function newLine() {
_line = $('<div>').addClass('line').text(_lineBuffer);
paper.append(_line);
_lineBuffer = '';
}
newLine();
return {
putChar: function(val) {
var ascii = val & 0x7f;
var visible = val >= 0x20;
var c = String.fromCharCode(ascii);
if (c == '\r') {
newLine();
_lineBuffer = '';
} else if (c == '\t') {
_lineBuffer += ' ';
} else if (c == 0x04) {
_lineBuffer = _lineBuffer.slice(0, -1);
} else {
if (visible) {
_lineBuffer += c;
}
}
_line.text(_lineBuffer);
},
clear: function() {
_lineBuffer = '';
paper.empty();
newLine();
},
hasPrintout: function() {
return paper.text().length();
}
};
}