-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.js
220 lines (187 loc) · 5.34 KB
/
terminal.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Phosphor - a browser-based microcomputer
// Copyright (c) 2017-2018 Marc Lepage
'use strict';
const TextEditor = require('./text-editor.js');
const BLACK = 0; // colors
const GREEN = 28;
const AMBER = 56;
const RED = 48;
const WHITE = 63;
/*
GENERAL NOTES
in unix a terminal is a file but here it's a process (that acts like a file)
if a read is active, then this.line will contain a line buffer and
onKeyDown will redirect to function edit which will either edit the line buffer
or resolve the read promise
r and c are positions on screen
l is line number (in buffer)
line is line string
triplet is three chars
c3 is c*3 (in row/line)
c1 and c2 are primary/secondary color
scroll position is line number at top of view
min scroll position is 0 (top of buffer at top of view)
max scroll position is max(buffer.length-H, 0) (bottom of buffer at bottom of view)
ESCAPE CODES
esc <n> U cursor up
esc <n> D cursor down
esc <n> L cursor left
esc <n> R cursor right
esc <l> <c> P cursor position
cursor save
cursor restore
esc <n> F foreground color (0-63)
esc <r>,<g>,<b> F foreground color (rgb)
esc <n> B background color (0-63)
esc <r>,<g>,<b> B background color (rgb)
esc <f> <b> C both colors
esc <r>,<g>,<b>,<r>,<g>,<b> C both colors (rgb)
erase in line (H) ErH ElH EbH
erase in screen (V) EdV EuV EbV EaV
reset (Z for now)
alternate mode enable/disable (a/o)
scroll up/down (s/t)
show/hide cursor (i/j)
cursor color, blink rate (or not), block/underline/caret, etc.
*/
function write1(text) {
const re = /([ -~\n\b]+)|(\x1b[A-Z])/g;
let m;
while (m = re.exec(text)) {
if (m[1] !== undefined) {
// printable text, newline, backspace
this.editor.edit(m[1]);
} else if (m[2] !== undefined) {
// escape sequence
switch (m[2][1]) {
case 'A': this.editor.setTextColor(WHITE, BLACK); break;
case 'B': this.editor.setTextColor(GREEN, BLACK); break;
case 'C': this.editor.setTextColor(AMBER, BLACK); break;
case 'D': this.editor.setTextColor(RED, BLACK); break;
case 'E': this.editor.setTextColor(BLACK, GREEN); break;
case 'F': this.editor.setTextColor(BLACK, AMBER); break;
case 'Z': this.reset(); break;
}
}
}
}
module.exports = class Terminal {
async main(...args) {
this.editor = new TextEditor('terminal');
if (args[1] == 'login') {
this.P.spawn('shell', 'login');
}
}
close() {
// TODO file op
}
cursorDown(n) {
}
cursorLeft(n) {
}
cursorRight(n) {
}
cursorUp(n) {
}
draw() {
const P = this.P;
P.clear(BLACK);
this.editor.draw(P);
}
onKeyDown(e) {
// TODO if there is any selection, any key entry will replace it and therefore
// line entry may become incorrect (can't assume only a single key)
if (e.key.length == 1) {
const code = e.key.charCodeAt();
if (32 <= code && code < 127) {
this.editor.edit(e.key);
if (this.line) {
const prefix = this.line.buffer.slice(0, this.line.pos);
const suffix = this.line.buffer.slice(this.line.pos);
this.line.buffer = prefix + e.key + suffix;
this.line.pos++;
}
}
} else {
switch (e.key) {
case 'ArrowDown':
if (!this.line)
this.editor.cursorDown(e.shiftKey);
break;
case 'ArrowLeft':
if (this.line) {
if (this.line.pos > 0) {
this.editor.cursorLeft(e.shiftKey);
this.line.pos--;
}
} else {
this.editor.cursorLeft(e.shiftKey);
}
break;
case 'ArrowRight':
if (this.line) {
if (this.line.pos < this.line.buffer.length) {
this.editor.cursorRight(e.shiftKey);
this.line.pos++;
}
} else {
this.editor.cursorRight(e.shiftKey);
}
break;
case 'ArrowUp':
if (!this.line)
this.editor.cursorUp(e.shiftKey);
break;
case 'Backspace':
if (this.line) {
if (this.line.pos > 0) {
this.editor.edit('\b');
const prefix = this.line.buffer.slice(0, this.line.pos-1);
const suffix = this.line.buffer.slice(this.line.pos);
this.line.buffer = prefix + suffix;
this.line.pos--;
}
} else {
this.editor.edit('\b');
}
break;
case 'Enter':
if (this.line) {
while (this.line.pos++ < this.line.buffer.length) {
console.log('cursorRight');
this.editor.cursorRight();
}
}
this.editor.edit('\n');
if (this.line) {
this.line.resolve(this.line.buffer);
delete this.line;
}
break;
}
}
}
async read() {
return new Promise(resolve => {
this.line = {
buffer: '',
pos: 0,
resolve: resolve
}
});
}
reset() {
this.editor.reset('');
}
scrollDown(n) {
}
scrollUp(n) {
}
seek() {
// TODO file op
}
write(...args) {
args.forEach(write1, this);
this.editor.scrollToCursor();
}
};