Teascade.net/src/resources/terminal/js/jash.js

300 lines
12 KiB
JavaScript

/**
* Copyright (c) 2016 Aleksi 'Allexit' Talarmo
*
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var Jash;
(function (Jash) {
class SH {
constructor() {
this.cursor = { x: 0, y: 0 };
this.scroll = 0;
this.messages = [];
this.defaultStyle = "";
this.currentPrintStyle = "";
this.listenerId = 0;
this.currentReadlines = [];
this.currentReadline = "";
}
/**
* Inherited from Program-interface. Not to be manually called.
*/
create(terminal, stdio, args) {
this.terminal = terminal;
this.stdio = stdio;
this.stdio.setOutput(this);
this.stdio.setInput(this);
this.stdio.addListener(this);
}
/**
* Inherited from Program-interface. Not to be manually called.
*/
enable() {
this.refresh();
if (this.listenerId < 0) {
this.stdio.addListener(this);
}
}
/**
* Inherited from Program-interface. Not to be manually called.
*/
disable() {
if (this.listenerId >= 0) {
this.stdio.removeListener(this.listenerId);
this.listenerId = -1;
}
}
/**
* Inherited from Program-interface. Not to be manually called.
*/
onClose() {
if (this.listenerId >= 0) {
this.stdio.removeListener(this.listenerId);
this.listenerId = -1;
}
return true;
}
/**
* Inherited from TerminalInput.KeyListener-interface. Not to be manually called.
*/
onListen(listenerId) {
this.listenerId = listenerId;
}
/**
* Inherited from TerminalInput.KeyListener-interface. Not to be manually called.
*/
handleKeypress(keypress) {
}
/**
* Inherited from TerminalInput.KeyListener-interface. Not to be manually called.
*/
handleKeydown(keydown) {
if (this.currentReadlines.length == 0) {
return;
}
let key = keydown.key;
if (key.length == 1) {
this.currentReadline += key;
if (this.currentReadlines[0].onChangeCallback !== undefined) {
this.currentReadlines[0].onChangeCallback(this.currentReadline);
}
if (key == "/") {
keydown.preventDefault();
}
}
else {
switch (keydown.keyCode) {
case (32): {
this.currentReadline += " ";
if (this.currentReadlines[0].onChangeCallback !== undefined) {
this.currentReadlines[0].onChangeCallback(this.currentReadline);
}
break;
}
case (8): {
this.currentReadline = this.currentReadline.substr(0, this.currentReadline.length - 1);
if (this.currentReadlines[0].onChangeCallback !== undefined) {
this.currentReadlines[0].onChangeCallback(this.currentReadline);
}
keydown.preventDefault();
break;
}
case (13): {
let currReadline = this.currentReadlines[0];
if (currReadline.printAfterDone) {
let text = currReadline.prefix + this.currentReadline;
this.print(text, currReadline.style);
}
this.currentReadlines.shift().callback(this.currentReadline);
this.currentReadline = "";
}
case (0): {
if (keydown.key == "Dead") {
this.currentReadline += "~";
if (this.currentReadlines[0].onChangeCallback !== undefined) {
this.currentReadlines[0].onChangeCallback(this.currentReadline);
}
}
}
}
}
this.refresh();
}
/**
* Inherited from TerminalInput.KeyListener-interface. Not to be manually called.
*/
handleKeyup(keyup) {
}
/**
* Inherited from Std.Input-interface. Not to be manually called.
*/
readline(readline) {
this.currentReadline = readline.default || "";
this.currentReadlines.push(readline);
this.refresh();
}
/**
* Inherited from Std.Output-interface. Not to be manually called.
*/
print(text, style) {
style = style || this.currentPrintStyle || this.defaultStyle;
let isAtEnd = (this.messages.length - this.terminal.height - this.scroll) <= 0;
for (let i = 0; i < text.length; i++) {
let char = text[i];
if (char == "\n") {
if (this.cursor.y != 0 || this.cursor.x != 0) {
this.moveCursorNewline();
}
continue;
}
this.putCharacter(new JSTerminal.Character(char, style));
}
if (this.messages.length > this.terminal.height) {
this.scroll = this.messages.length - this.terminal.height;
}
}
/**
* Inherited from Std.Output-interface. Not to be manually called.
*/
println(text, style) {
this.print("\n" + text, style || this.currentPrintStyle || this.defaultStyle);
}
/**
* Inherited from Std.Output-interface. Not to be manually called.
*/
clear(style) {
this.messages = [];
this.scroll = 0;
}
/**
* Inherited from Std.Output-interface. Not to be manually called.
*/
refresh(alsoRenderTerminal = true) {
this.terminal.clearScreen(this.defaultStyle);
let toDraw = [];
let messages = [];
for (let i in this.messages) {
messages.push(this.messages[i].slice());
}
if (this.currentReadlines.length > 0 && !this.currentReadlines[0].hidden) {
let readline = this.currentReadlines[0];
let readlinePart = (readline.prefix || "") + this.currentReadline;
let tempCursorPos = { x: this.cursor.x, y: this.cursor.y };
for (let i = 0; i < readlinePart.length; i++) {
let char = readlinePart[i];
if (char == "\n") {
this.moveCursorNewline();
continue;
}
this.putCharacterTo(new JSTerminal.Character(char, (readline.style || this.defaultStyle)), messages);
}
this.cursor = tempCursorPos;
}
let start = messages.length - 1;
for (let i = this.scroll; i < messages.length && toDraw.length < this.terminal.height; i++) {
if (i < 0 || messages[i].length == 0) {
toDraw.push([]);
continue;
}
let rows = Math.ceil(messages[i].length / this.terminal.width);
for (let r = 0; r < rows; r++) {
toDraw.push(messages[i].slice(r * this.terminal.width, (r + 1) * this.terminal.width));
}
}
toDraw = toDraw.slice(-this.terminal.height);
toDraw.forEach((row, y) => {
row.forEach((c, x) => {
this.terminal.putTrueChar(c, x, y);
});
});
if (!alsoRenderTerminal) {
return;
}
this.terminal.render();
}
/**
* Utility function for print. Prints out one character at cursor.
*/
putCharacter(character) {
this.putCharacterTo(character, this.messages);
}
putCharacterTo(character, charArray) {
while (this.cursor.y >= charArray.length) {
charArray.push([]);
}
if (this.cursor.x >= charArray[this.cursor.y].length) {
charArray[this.cursor.y].push(character);
this.moveCursor(1);
return;
}
charArray[this.cursor.y][this.cursor.x] = character;
this.moveCursor(1);
}
/**
* Removes a character and moves the cursor backwards.
*/
removeCharacter() {
if (this.messages[this.cursor.y] == []) {
let rowToRemove = this.cursor.y;
this.moveCursor(-1);
this.messages.splice(this.cursor.y, 1);
return;
}
let toRemove = { x: this.cursor.x, y: this.cursor.y };
this.moveCursor(-1);
this.messages[toRemove.y].splice(toRemove.x - 1, 1);
}
/**
* Set the default style to be used when printing and clearing the screen.
*/
setDefaultStyle(style) {
this.defaultStyle = style;
}
/**
* Set the current 'default' style for printing.
* This is only temporary and can be reversed with calling it with a null-parameter.
*/
setStyle(style) {
this.currentPrintStyle = style;
}
/**
* Moves the cursor by 'amount' forwards or backwards.
* Handles text wrapping.
*/
moveCursor(amount) {
this.cursor.x += amount;
this.cursor.y += Math.floor((this.cursor.x) / (this.terminal.width));
this.cursor.x = this.cursor.x % (this.terminal.width);
if (this.cursor.x < 0) {
this.cursor.x = this.messages[this.cursor.y].length - 1 - this.cursor.x;
}
}
/*
* Moves the cursor vertically by amount. Works weirdly if cursor.x not handled manually.
*/
moveCursorVertically(amount) {
this.cursor.y += amount;
}
/*
* Moves the cursor down to the next line and sets the x to 0.
*/
moveCursorNewline() {
this.moveCursorVertically(1);
this.cursor.x = 0;
}
/*
* Does the opposite as moveCursorNewline
*/
moveCursorPreviousLine() {
this.moveCursorVertically(-1);
this.cursor.x = this.terminal.width - 1;
}
}
Jash.SH = SH;
})(Jash || (Jash = {}));