Files
nand2tetris/projects/12/Keyboard.jack
2021-04-21 17:01:42 +03:00

93 lines
2.6 KiB
Plaintext

// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/12/Keyboard.jack
/**
* A library for handling user input from the keyboard.
*/
class Keyboard {
static Array kbd;
/** Initializes the keyboard. */
function void init() {
let kbd = 24576;
return;
}
/**
* Returns the character of the currently pressed key on the keyboard;
* if no key is currently pressed, returns 0.
*
* Recognizes all ASCII characters, as well as the following keys:
* new line = 128 = String.newline()
* backspace = 129 = String.backspace()
* left arrow = 130
* up arrow = 131
* right arrow = 132
* down arrow = 133
* home = 134
* End = 135
* page up = 136
* page down = 137
* insert = 138
* delete = 139
* ESC = 140
* F1 - F12 = 141 - 152
*/
function char keyPressed() {
return kbd[0];
}
/**
* Waits until a key is pressed on the keyboard and released,
* then echoes the key to the screen, and returns the character
* of the pressed key.
*/
function char readChar() {
var char key;
while(kbd[0] = 0) {}
let key = kbd[0];
do Output.printChar(key);
while(kbd[0] = key) {}
return key;
}
/**
* Displays the message on the screen, reads from the keyboard the entered
* text until a newline character is detected, echoes the text to the screen,
* and returns its value. Also handles user backspaces.
*/
function String readLine(String message) {
var String str;
var char chr;
let str = String.new(32);
do Output.printString(message);
while (true) {
let chr = Keyboard.readChar();
if(chr = 128) {
return str;
}
if(chr = 129) {
do str.eraseLastChar();
} else {
let str = str.appendChar(chr);
}
}
return str;
}
/**
* Displays the message on the screen, reads from the keyboard the entered
* text until a newline character is detected, echoes the text to the screen,
* and returns its integer value (until the first non-digit character in the
* entered text is detected). Also handles user backspaces.
*/
function int readInt(String message) {
var String str;
let str = Keyboard.readLine(message);
return str.intValue();
}
}