Mercurial > 510Connectbot
annotate src/de/mud/terminal/vt320.java @ 60:d9b27288a9d2 tn5250
start tn5250 integration
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 11 Jun 2014 15:44:59 -0700 |
parents | 556c387889b9 |
children | 294435151b0c |
rev | line source |
---|---|
0 | 1 /* |
2 * This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform". | |
3 * | |
4 * (c) Matthias L. Jugel, Marcus Meiner 1996-2005. All Rights Reserved. | |
5 * | |
6 * Please visit http://javatelnet.org/ for updates and contact. | |
7 * | |
8 * --LICENSE NOTICE-- | |
9 * This program is free software; you can redistribute it and/or | |
10 * modify it under the terms of the GNU General Public License | |
11 * as published by the Free Software Foundation; either version 2 | |
12 * of the License, or (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 * --LICENSE NOTICE-- | |
23 * | |
24 */ | |
25 | |
26 package de.mud.terminal; | |
27 | |
28 import android.text.AndroidCharacter; | |
29 | |
30 import java.util.Properties; | |
31 | |
32 /** | |
33 * Implementation of a VT terminal emulation plus ANSI compatible. | |
34 * <P> | |
35 * <B>Maintainer:</B> Marcus Meißner | |
36 * | |
37 * @version $Id: vt320.java 507 2005-10-25 10:14:52Z marcus $ | |
38 * @author Matthias L. Jugel, Marcus Meißner | |
39 */ | |
40 public abstract class vt320 extends VDUBuffer implements VDUInput { | |
41 | |
42 /** the debug level */ | |
43 private final static int debug = 0; | |
44 private StringBuilder debugStr; | |
45 public abstract void debug(String notice); | |
46 | |
47 /** | |
48 * Write an answer back to the remote host. This is needed to be able to | |
49 * send terminal answers requests like status and type information. | |
50 * @param b the array of bytes to be sent | |
51 */ | |
52 public abstract void write(byte[] b); | |
53 | |
54 /** | |
55 * Write an answer back to the remote host. This is needed to be able to | |
56 * send terminal answers requests like status and type information. | |
57 * @param b the byte to be sent | |
58 */ | |
59 public abstract void write(int b); | |
60 | |
61 /** | |
62 * No more bytes to read from the transport, hook here to test screen changes | |
63 */ | |
64 public void testChanged() { | |
65 /* do nothing by default */ | |
66 } | |
67 | |
68 /** | |
69 * Play the beep sound ... | |
70 */ | |
71 public void beep() { | |
72 /* do nothing by default */ | |
73 } | |
74 | |
41
9621ac4dd5eb
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
75 public void redrawPassthru() { |
9621ac4dd5eb
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
76 redraw(); // VDUBuffer.redraw is protected |
9621ac4dd5eb
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
77 } |
9621ac4dd5eb
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
78 |
0 | 79 /** |
80 * Convenience function for putString(char[], int, int) | |
81 */ | |
82 public void putString(String s) { | |
83 int len = s.length(); | |
84 char[] tmp = new char[len]; | |
85 s.getChars(0, len, tmp, 0); | |
86 putString(tmp, null, 0, len); | |
87 } | |
88 | |
89 /** | |
90 * Put string at current cursor position. Moves cursor | |
91 * according to the String. Does NOT wrap. | |
92 * @param s character array | |
93 * @param start place to start in array | |
94 * @param len number of characters to process | |
95 */ | |
96 public void putString(char[] s, byte[] fullwidths, int start, int len) { | |
97 if (len > 0) { | |
98 //markLine(R, 1); | |
99 int lastChar = -1; | |
100 char c; | |
101 boolean isWide = false; | |
102 | |
103 for (int i = 0; i < len; i++) { | |
104 c = s[start + i]; | |
105 | |
106 // Shortcut for my favorite ASCII | |
107 if (c <= 0x7F) { | |
108 if (lastChar != -1) | |
109 putChar((char) lastChar, isWide, false); | |
110 | |
111 lastChar = c; | |
112 isWide = false; | |
113 } | |
114 else if (!Character.isLowSurrogate(c) && !Character.isHighSurrogate(c)) { | |
115 if (Character.getType(c) == Character.NON_SPACING_MARK) { | |
116 if (lastChar != -1) { | |
117 char nc = Precomposer.precompose((char) lastChar, c); | |
118 putChar(nc, isWide, false); | |
119 lastChar = -1; | |
120 } | |
121 } | |
122 else { | |
123 if (lastChar != -1) | |
124 putChar((char) lastChar, isWide, false); | |
125 | |
126 lastChar = c; | |
127 | |
128 if (fullwidths != null) { | |
129 final byte width = fullwidths[i]; | |
130 isWide = (width == AndroidCharacter.EAST_ASIAN_WIDTH_WIDE) | |
131 || (width == AndroidCharacter.EAST_ASIAN_WIDTH_FULL_WIDTH); | |
132 } | |
133 } | |
134 } | |
135 } | |
136 | |
137 if (lastChar != -1) | |
138 putChar((char) lastChar, isWide, false); | |
139 | |
140 setCursorPosition(C, R); | |
141 redraw(); | |
142 } | |
143 } | |
144 | |
145 protected void sendTelnetCommand(byte cmd) { | |
146 /* do nothing by default */ | |
147 } | |
148 | |
149 /** | |
150 * Sent the changed window size from the terminal to all listeners. | |
151 */ | |
152 protected void setWindowSize(int c, int r) { | |
153 /* To be overridden by Terminal.java */ | |
154 } | |
155 | |
156 @Override | |
157 public void setScreenSize(int c, int r, boolean broadcast) { | |
158 int oldrows = height; | |
159 | |
160 if (debug > 2) { | |
161 if (debugStr == null) | |
162 debugStr = new StringBuilder(); | |
163 | |
164 debugStr.append("setscreensize (") | |
165 .append(c) | |
166 .append(',') | |
167 .append(r) | |
168 .append(',') | |
169 .append(broadcast) | |
170 .append(')'); | |
171 debug(debugStr.toString()); | |
172 debugStr.setLength(0); | |
173 } | |
174 | |
175 super.setScreenSize(c, r, false); | |
176 boolean cursorChanged = false; | |
177 | |
178 // Don't let the cursor go off the screen. | |
179 if (C >= c) { | |
180 C = c - 1; | |
181 cursorChanged = true; | |
182 } | |
183 | |
184 if (R >= r) { | |
185 R = r - 1; | |
186 cursorChanged = true; | |
187 } | |
188 | |
189 if (cursorChanged) { | |
190 setCursorPosition(C, R); | |
191 redraw(); | |
192 } | |
193 | |
194 if (broadcast) { | |
195 setWindowSize(c, r); /* broadcast up */ | |
196 } | |
197 } | |
198 | |
199 | |
200 /** | |
201 * Create a new vt320 terminal and intialize it with useful settings. | |
202 */ | |
203 public vt320(int width, int height) { | |
204 super(width, height); | |
205 debugStr = new StringBuilder(); | |
206 setVMS(false); | |
207 setIBMCharset(false); | |
208 setTerminalID("vt320"); | |
209 setBufferSize(100); | |
210 //setBorder(2, false); | |
211 gx = new char[4]; | |
212 reset(); | |
213 /* top row of numpad */ | |
214 PF1 = "\u001bOP"; | |
215 PF2 = "\u001bOQ"; | |
216 PF3 = "\u001bOR"; | |
217 PF4 = "\u001bOS"; | |
218 /* the 3x2 keyblock on PC keyboards */ | |
219 Insert = new String[4]; | |
220 Remove = new String[4]; | |
221 KeyHome = new String[4]; | |
222 KeyEnd = new String[4]; | |
223 NextScn = new String[4]; | |
224 PrevScn = new String[4]; | |
225 Escape = new String[4]; | |
226 BackSpace = new String[4]; | |
227 TabKey = new String[4]; | |
228 Insert[0] = Insert[1] = Insert[2] = Insert[3] = "\u001b[2~"; | |
229 Remove[0] = Remove[1] = Remove[2] = Remove[3] = "\u001b[3~"; | |
230 PrevScn[0] = PrevScn[1] = PrevScn[2] = PrevScn[3] = "\u001b[5~"; | |
231 NextScn[0] = NextScn[1] = NextScn[2] = NextScn[3] = "\u001b[6~"; | |
232 KeyHome[0] = KeyHome[1] = KeyHome[2] = KeyHome[3] = "\u001b[H"; | |
233 KeyEnd[0] = KeyEnd[1] = KeyEnd[2] = KeyEnd[3] = "\u001b[F"; | |
234 Escape[0] = Escape[1] = Escape[2] = Escape[3] = "\u001b"; | |
235 | |
236 if (vms) { | |
237 BackSpace[1] = "" + (char) 10; // VMS shift deletes word back | |
238 BackSpace[2] = "\u0018"; // VMS control deletes line back | |
239 BackSpace[0] = BackSpace[3] = "\u007f"; // VMS other is delete | |
240 } | |
241 else { | |
242 //BackSpace[0] = BackSpace[1] = BackSpace[2] = BackSpace[3] = "\b"; | |
243 // ConnectBot modifications. | |
244 BackSpace[0] = "\b"; | |
245 BackSpace[1] = "\u007f"; | |
246 BackSpace[2] = "\u001b[3~"; | |
247 BackSpace[3] = "\u001b[2~"; | |
248 } | |
249 | |
250 /* some more VT100 keys */ | |
251 Find = "\u001b[1~"; | |
252 Select = "\u001b[4~"; | |
253 Help = "\u001b[28~"; | |
254 Do = "\u001b[29~"; | |
255 FunctionKey = new String[21]; | |
256 FunctionKey[0] = ""; | |
257 FunctionKey[1] = PF1; | |
258 FunctionKey[2] = PF2; | |
259 FunctionKey[3] = PF3; | |
260 FunctionKey[4] = PF4; | |
261 /* following are defined differently for vt220 / vt132 ... */ | |
262 FunctionKey[5] = "\u001b[15~"; | |
263 FunctionKey[6] = "\u001b[17~"; | |
264 FunctionKey[7] = "\u001b[18~"; | |
265 FunctionKey[8] = "\u001b[19~"; | |
266 FunctionKey[9] = "\u001b[20~"; | |
267 FunctionKey[10] = "\u001b[21~"; | |
268 FunctionKey[11] = "\u001b[23~"; | |
269 FunctionKey[12] = "\u001b[24~"; | |
270 FunctionKey[13] = "\u001b[25~"; | |
271 FunctionKey[14] = "\u001b[26~"; | |
272 FunctionKey[15] = Help; | |
273 FunctionKey[16] = Do; | |
274 FunctionKey[17] = "\u001b[31~"; | |
275 FunctionKey[18] = "\u001b[32~"; | |
276 FunctionKey[19] = "\u001b[33~"; | |
277 FunctionKey[20] = "\u001b[34~"; | |
278 FunctionKeyShift = new String[21]; | |
279 FunctionKeyAlt = new String[21]; | |
280 FunctionKeyCtrl = new String[21]; | |
281 | |
282 for (int i = 0; i < 20; i++) { | |
283 FunctionKeyShift[i] = ""; | |
284 FunctionKeyAlt[i] = ""; | |
285 FunctionKeyCtrl[i] = ""; | |
286 } | |
287 | |
288 FunctionKeyShift[15] = Find; | |
289 FunctionKeyShift[16] = Select; | |
290 TabKey[0] = "\u0009"; | |
291 TabKey[1] = "\u001bOP\u0009"; | |
292 TabKey[2] = TabKey[3] = ""; | |
293 KeyUp = new String[4]; | |
294 KeyUp[0] = "\u001b[A"; | |
295 KeyDown = new String[4]; | |
296 KeyDown[0] = "\u001b[B"; | |
297 KeyRight = new String[4]; | |
298 KeyRight[0] = "\u001b[C"; | |
299 KeyLeft = new String[4]; | |
300 KeyLeft[0] = "\u001b[D"; | |
301 Numpad = new String[10]; | |
302 Numpad[0] = "\u001bOp"; | |
303 Numpad[1] = "\u001bOq"; | |
304 Numpad[2] = "\u001bOr"; | |
305 Numpad[3] = "\u001bOs"; | |
306 Numpad[4] = "\u001bOt"; | |
307 Numpad[5] = "\u001bOu"; | |
308 Numpad[6] = "\u001bOv"; | |
309 Numpad[7] = "\u001bOw"; | |
310 Numpad[8] = "\u001bOx"; | |
311 Numpad[9] = "\u001bOy"; | |
312 KPMinus = PF4; | |
313 KPComma = "\u001bOl"; | |
314 KPPeriod = "\u001bOn"; | |
315 KPEnter = "\u001bOM"; | |
316 NUMPlus = new String[4]; | |
317 NUMPlus[0] = "+"; | |
318 NUMDot = new String[4]; | |
319 NUMDot[0] = "."; | |
320 } | |
321 | |
322 public void setBackspace(int type) { | |
323 switch (type) { | |
324 case DELETE_IS_DEL: | |
325 BackSpace[0] = "\u007f"; | |
326 BackSpace[1] = "\b"; | |
327 break; | |
328 | |
329 case DELETE_IS_BACKSPACE: | |
330 BackSpace[0] = "\b"; | |
331 BackSpace[1] = "\u007f"; | |
332 break; | |
333 } | |
334 } | |
335 | |
336 /** | |
337 * Create a default vt320 terminal with 80 columns and 24 lines. | |
338 */ | |
339 public vt320() { | |
340 this(80, 24); | |
341 } | |
342 | |
343 /** | |
344 * Terminal is mouse-aware and requires (x,y) coordinates of | |
345 * on the terminal (character coordinates) and the button clicked. | |
346 * @param x | |
347 * @param y | |
348 * @param modifiers | |
349 */ | |
350 public void mousePressed(int x, int y, int modifiers) { | |
351 if (mouserpt == 0) | |
352 return; | |
353 | |
354 int mods = modifiers; | |
355 mousebut = 3; | |
356 | |
357 if ((mods & 16) == 16) mousebut = 0; | |
358 | |
359 if ((mods & 8) == 8) mousebut = 1; | |
360 | |
361 if ((mods & 4) == 4) mousebut = 2; | |
362 | |
363 int mousecode; | |
364 | |
365 if (mouserpt == 9) /* X10 Mouse */ | |
366 mousecode = 0x20 | mousebut; | |
367 else /* normal xterm mouse reporting */ | |
368 mousecode = mousebut | 0x20 | ((mods & 7) << 2); | |
369 | |
370 byte b[] = new byte[6]; | |
371 b[0] = 27; | |
372 b[1] = (byte) '['; | |
373 b[2] = (byte) 'M'; | |
374 b[3] = (byte) mousecode; | |
375 b[4] = (byte)(0x20 + x + 1); | |
376 b[5] = (byte)(0x20 + y + 1); | |
377 write(b); // FIXME: writeSpecial here | |
378 } | |
379 | |
380 /** | |
381 * Terminal is mouse-aware and requires the coordinates and button | |
382 * of the release. | |
383 * @param x | |
384 * @param y | |
385 * @param modifiers | |
386 */ | |
387 public void mouseReleased(int x, int y, int modifiers) { | |
388 if (mouserpt == 0) | |
389 return; | |
390 | |
391 /* problem is tht modifiers still have the released button set in them. | |
392 int mods = modifiers; | |
393 mousebut = 3; | |
394 if ((mods & 16)==16) mousebut=0; | |
395 if ((mods & 8)==8 ) mousebut=1; | |
396 if ((mods & 4)==4 ) mousebut=2; | |
397 */ | |
398 int mousecode; | |
399 | |
400 if (mouserpt == 9) | |
401 mousecode = 0x20 + mousebut; /* same as press? appears so. */ | |
402 else | |
403 mousecode = '#'; | |
404 | |
405 byte b[] = new byte[6]; | |
406 b[0] = 27; | |
407 b[1] = (byte) '['; | |
408 b[2] = (byte) 'M'; | |
409 b[3] = (byte) mousecode; | |
410 b[4] = (byte)(0x20 + x + 1); | |
411 b[5] = (byte)(0x20 + y + 1); | |
412 write(b); // FIXME: writeSpecial here | |
413 mousebut = 0; | |
414 } | |
415 | |
416 | |
417 /** we should do localecho (passed from other modules). false is default */ | |
418 private boolean localecho = false; | |
419 | |
420 /** | |
421 * Enable or disable the local echo property of the terminal. | |
422 * @param echo true if the terminal should echo locally | |
423 */ | |
424 public void setLocalEcho(boolean echo) { | |
425 localecho = echo; | |
426 } | |
427 | |
428 /** | |
429 * Enable the VMS mode of the terminal to handle some things differently | |
430 * for VMS hosts. | |
431 * @param vms true for vms mode, false for normal mode | |
432 */ | |
433 public void setVMS(boolean vms) { | |
434 this.vms = vms; | |
435 } | |
436 | |
437 /** | |
438 * Enable the usage of the IBM character set used by some BBS's. Special | |
439 * graphical character are available in this mode. | |
440 * @param ibm true to use the ibm character set | |
441 */ | |
442 public void setIBMCharset(boolean ibm) { | |
443 useibmcharset = ibm; | |
444 } | |
445 | |
446 /** | |
447 * Override the standard key codes used by the terminal emulation. | |
448 * @param codes a properties object containing key code definitions | |
449 */ | |
450 public void setKeyCodes(Properties codes) { | |
451 String res, prefixes[] = {"", "S", "C", "A"}; | |
452 int i; | |
453 | |
454 for (i = 0; i < 10; i++) { | |
455 res = codes.getProperty("NUMPAD" + i); | |
456 | |
457 if (res != null) Numpad[i] = unEscape(res); | |
458 } | |
459 | |
460 for (i = 1; i < 20; i++) { | |
461 res = codes.getProperty("F" + i); | |
462 | |
463 if (res != null) FunctionKey[i] = unEscape(res); | |
464 | |
465 res = codes.getProperty("SF" + i); | |
466 | |
467 if (res != null) FunctionKeyShift[i] = unEscape(res); | |
468 | |
469 res = codes.getProperty("CF" + i); | |
470 | |
471 if (res != null) FunctionKeyCtrl[i] = unEscape(res); | |
472 | |
473 res = codes.getProperty("AF" + i); | |
474 | |
475 if (res != null) FunctionKeyAlt[i] = unEscape(res); | |
476 } | |
477 | |
478 for (i = 0; i < 4; i++) { | |
479 res = codes.getProperty(prefixes[i] + "PGUP"); | |
480 | |
481 if (res != null) PrevScn[i] = unEscape(res); | |
482 | |
483 res = codes.getProperty(prefixes[i] + "PGDOWN"); | |
484 | |
485 if (res != null) NextScn[i] = unEscape(res); | |
486 | |
487 res = codes.getProperty(prefixes[i] + "END"); | |
488 | |
489 if (res != null) KeyEnd[i] = unEscape(res); | |
490 | |
491 res = codes.getProperty(prefixes[i] + "HOME"); | |
492 | |
493 if (res != null) KeyHome[i] = unEscape(res); | |
494 | |
495 res = codes.getProperty(prefixes[i] + "INSERT"); | |
496 | |
497 if (res != null) Insert[i] = unEscape(res); | |
498 | |
499 res = codes.getProperty(prefixes[i] + "REMOVE"); | |
500 | |
501 if (res != null) Remove[i] = unEscape(res); | |
502 | |
503 res = codes.getProperty(prefixes[i] + "UP"); | |
504 | |
505 if (res != null) KeyUp[i] = unEscape(res); | |
506 | |
507 res = codes.getProperty(prefixes[i] + "DOWN"); | |
508 | |
509 if (res != null) KeyDown[i] = unEscape(res); | |
510 | |
511 res = codes.getProperty(prefixes[i] + "LEFT"); | |
512 | |
513 if (res != null) KeyLeft[i] = unEscape(res); | |
514 | |
515 res = codes.getProperty(prefixes[i] + "RIGHT"); | |
516 | |
517 if (res != null) KeyRight[i] = unEscape(res); | |
518 | |
519 res = codes.getProperty(prefixes[i] + "ESCAPE"); | |
520 | |
521 if (res != null) Escape[i] = unEscape(res); | |
522 | |
523 res = codes.getProperty(prefixes[i] + "BACKSPACE"); | |
524 | |
525 if (res != null) BackSpace[i] = unEscape(res); | |
526 | |
527 res = codes.getProperty(prefixes[i] + "TAB"); | |
528 | |
529 if (res != null) TabKey[i] = unEscape(res); | |
530 | |
531 res = codes.getProperty(prefixes[i] + "NUMPLUS"); | |
532 | |
533 if (res != null) NUMPlus[i] = unEscape(res); | |
534 | |
535 res = codes.getProperty(prefixes[i] + "NUMDECIMAL"); | |
536 | |
537 if (res != null) NUMDot[i] = unEscape(res); | |
538 } | |
539 } | |
540 | |
541 /** | |
542 * Set the terminal id used to identify this terminal. | |
543 * @param terminalID the id string | |
544 */ | |
545 public void setTerminalID(String terminalID) { | |
546 this.terminalID = terminalID; | |
547 | |
548 if (terminalID.equals("scoansi")) { | |
549 FunctionKey[1] = "\u001b[M"; FunctionKey[2] = "\u001b[N"; | |
550 FunctionKey[3] = "\u001b[O"; FunctionKey[4] = "\u001b[P"; | |
551 FunctionKey[5] = "\u001b[Q"; FunctionKey[6] = "\u001b[R"; | |
552 FunctionKey[7] = "\u001b[S"; FunctionKey[8] = "\u001b[T"; | |
553 FunctionKey[9] = "\u001b[U"; FunctionKey[10] = "\u001b[V"; | |
554 FunctionKey[11] = "\u001b[W"; FunctionKey[12] = "\u001b[X"; | |
555 FunctionKey[13] = "\u001b[Y"; FunctionKey[14] = "?"; | |
556 FunctionKey[15] = "\u001b[a"; FunctionKey[16] = "\u001b[b"; | |
557 FunctionKey[17] = "\u001b[c"; FunctionKey[18] = "\u001b[d"; | |
558 FunctionKey[19] = "\u001b[e"; FunctionKey[20] = "\u001b[f"; | |
559 PrevScn[0] = PrevScn[1] = PrevScn[2] = PrevScn[3] = "\u001b[I"; | |
560 NextScn[0] = NextScn[1] = NextScn[2] = NextScn[3] = "\u001b[G"; | |
561 // more theoretically. | |
562 } | |
563 } | |
564 | |
565 public void setAnswerBack(String ab) { | |
566 this.answerBack = unEscape(ab); | |
567 } | |
568 | |
569 /** | |
570 * Get the terminal id used to identify this terminal. | |
571 */ | |
572 public String getTerminalID() { | |
573 return terminalID; | |
574 } | |
575 | |
576 /** | |
577 * A small conveniance method thar converts the string to a byte array | |
578 * for sending. | |
579 * @param s the string to be sent | |
580 */ | |
581 private boolean write(String s, boolean doecho) { | |
582 if (debug > 2) { | |
583 debugStr.append("write(|") | |
584 .append(s) | |
585 .append("|,") | |
586 .append(doecho); | |
587 debug(debugStr.toString()); | |
588 debugStr.setLength(0); | |
589 } | |
590 | |
591 if (s == null) // aka the empty string. | |
592 return true; | |
593 | |
594 /* NOTE: getBytes() honours some locale, it *CONVERTS* the string. | |
595 * However, we output only 7bit stuff towards the target, and *some* | |
596 * 8 bit control codes. We must not mess up the latter, so we do hand | |
597 * by hand copy. | |
598 */ | |
599 byte arr[] = new byte[s.length()]; | |
600 | |
601 for (int i = 0; i < s.length(); i++) { | |
602 arr[i] = (byte) s.charAt(i); | |
603 } | |
604 | |
605 write(arr); | |
606 | |
607 if (doecho) | |
608 putString(s); | |
609 | |
610 return true; | |
611 } | |
612 | |
613 private boolean write(int s, boolean doecho) { | |
614 if (debug > 2) { | |
615 debugStr.append("write(|") | |
616 .append(s) | |
617 .append("|,") | |
618 .append(doecho); | |
619 debug(debugStr.toString()); | |
620 debugStr.setLength(0); | |
621 } | |
622 | |
623 write(s); | |
624 | |
625 // TODO check if character is wide | |
626 if (doecho) | |
627 putChar((char)s, false, false); | |
628 | |
629 return true; | |
630 } | |
631 | |
632 private boolean write(String s) { | |
633 return write(s, localecho); | |
634 } | |
635 | |
636 // =================================================================== | |
637 // the actual terminal emulation code comes here: | |
638 // =================================================================== | |
639 | |
640 private String terminalID = "vt320"; | |
641 private String answerBack = "Use Terminal.answerback to set ...\n"; | |
642 | |
643 // X - COLUMNS, Y - ROWS | |
644 int R, C; | |
645 int attributes = 0; | |
646 | |
647 int Sc, Sr, Sa, Stm, Sbm; | |
648 char Sgr, Sgl; | |
649 char Sgx[]; | |
650 | |
651 int insertmode = 0; | |
652 int statusmode = 0; | |
653 boolean vt52mode = false; | |
654 boolean keypadmode = false; /* false - numeric, true - application */ | |
655 boolean output8bit = false; | |
656 int normalcursor = 0; | |
657 boolean moveoutsidemargins = true; | |
658 boolean wraparound = true; | |
659 boolean sendcrlf = true; | |
660 boolean capslock = false; | |
661 boolean numlock = false; | |
662 int mouserpt = 0; | |
663 byte mousebut = 0; | |
664 | |
665 boolean useibmcharset = false; | |
666 | |
667 int lastwaslf = 0; | |
668 boolean usedcharsets = false; | |
669 | |
670 private final static char ESC = 27; | |
671 private final static char IND = 132; | |
672 private final static char NEL = 133; | |
673 private final static char RI = 141; | |
674 private final static char SS2 = 142; | |
675 private final static char SS3 = 143; | |
676 private final static char DCS = 144; | |
677 private final static char HTS = 136; | |
678 private final static char CSI = 155; | |
679 private final static char OSC = 157; | |
680 private final static int TSTATE_DATA = 0; | |
681 private final static int TSTATE_ESC = 1; /* ESC */ | |
682 private final static int TSTATE_CSI = 2; /* ESC [ */ | |
683 private final static int TSTATE_DCS = 3; /* ESC P */ | |
684 private final static int TSTATE_DCEQ = 4; /* ESC [? */ | |
685 private final static int TSTATE_ESCSQUARE = 5; /* ESC # */ | |
686 private final static int TSTATE_OSC = 6; /* ESC ] */ | |
687 private final static int TSTATE_SETG0 = 7; /* ESC (? */ | |
688 private final static int TSTATE_SETG1 = 8; /* ESC )? */ | |
689 private final static int TSTATE_SETG2 = 9; /* ESC *? */ | |
690 private final static int TSTATE_SETG3 = 10; /* ESC +? */ | |
691 private final static int TSTATE_CSI_DOLLAR = 11; /* ESC [ Pn $ */ | |
692 private final static int TSTATE_CSI_EX = 12; /* ESC [ ! */ | |
693 private final static int TSTATE_ESCSPACE = 13; /* ESC <space> */ | |
694 private final static int TSTATE_VT52X = 14; | |
695 private final static int TSTATE_VT52Y = 15; | |
696 private final static int TSTATE_CSI_TICKS = 16; | |
697 private final static int TSTATE_CSI_EQUAL = 17; /* ESC [ = */ | |
698 private final static int TSTATE_TITLE = 18; /* xterm title */ | |
699 | |
700 /* Keys we support */ | |
701 public final static int KEY_PAUSE = 1; | |
702 public final static int KEY_F1 = 2; | |
703 public final static int KEY_F2 = 3; | |
704 public final static int KEY_F3 = 4; | |
705 public final static int KEY_F4 = 5; | |
706 public final static int KEY_F5 = 6; | |
707 public final static int KEY_F6 = 7; | |
708 public final static int KEY_F7 = 8; | |
709 public final static int KEY_F8 = 9; | |
710 public final static int KEY_F9 = 10; | |
711 public final static int KEY_F10 = 11; | |
712 public final static int KEY_F11 = 12; | |
713 public final static int KEY_F12 = 13; | |
714 public final static int KEY_UP = 14; | |
715 public final static int KEY_DOWN = 15 ; | |
716 public final static int KEY_LEFT = 16; | |
717 public final static int KEY_RIGHT = 17; | |
718 public final static int KEY_PAGE_DOWN = 18; | |
719 public final static int KEY_PAGE_UP = 19; | |
720 public final static int KEY_INSERT = 20; | |
721 public final static int KEY_DELETE = 21; | |
722 public final static int KEY_BACK_SPACE = 22; | |
723 public final static int KEY_HOME = 23; | |
724 public final static int KEY_END = 24; | |
725 public final static int KEY_NUM_LOCK = 25; | |
726 public final static int KEY_CAPS_LOCK = 26; | |
727 public final static int KEY_SHIFT = 27; | |
728 public final static int KEY_CONTROL = 28; | |
729 public final static int KEY_ALT = 29; | |
730 public final static int KEY_ENTER = 30; | |
731 public final static int KEY_NUMPAD0 = 31; | |
732 public final static int KEY_NUMPAD1 = 32; | |
733 public final static int KEY_NUMPAD2 = 33; | |
734 public final static int KEY_NUMPAD3 = 34; | |
735 public final static int KEY_NUMPAD4 = 35; | |
736 public final static int KEY_NUMPAD5 = 36; | |
737 public final static int KEY_NUMPAD6 = 37; | |
738 public final static int KEY_NUMPAD7 = 38; | |
739 public final static int KEY_NUMPAD8 = 39; | |
740 public final static int KEY_NUMPAD9 = 40; | |
741 public final static int KEY_DECIMAL = 41; | |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
742 public final static int KEY_ADD = 42; |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
743 public final static int KEY_ESCAPE = 43; |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
744 public final static int KEY_TAB = 44; |
0 | 745 |
746 public final static int DELETE_IS_DEL = 0; | |
747 public final static int DELETE_IS_BACKSPACE = 1; | |
748 | |
749 /* The graphics charsets | |
750 * B - default ASCII | |
751 * A - ISO Latin 1 | |
752 * 0 - DEC SPECIAL | |
753 * < - User defined | |
754 * .... | |
755 */ | |
756 char gx[]; | |
757 char gl; // GL (left charset) | |
758 char gr; // GR (right charset) | |
759 int onegl; // single shift override for GL. | |
760 | |
761 // Map from scoansi linedrawing to DEC _and_ unicode (for the stuff which | |
762 // is not in linedrawing). Got from experimenting with scoadmin. | |
763 private final static String scoansi_acs = "Tm7k3x4u?kZl@mYjEnB\u2566DqCtAvM\u2550:\u2551N\u2557I\u2554;\u2557H\u255a0a<\u255d"; | |
764 // array to store DEC Special -> Unicode mapping | |
765 // Unicode DEC Unicode name (DEC name) | |
766 private static char DECSPECIAL[] = { | |
767 '\u0040', //5f blank | |
768 '\u2666', //60 black diamond | |
769 '\u2592', //61 grey square | |
770 '\u2409', //62 Horizontal tab (ht) pict. for control | |
771 '\u240c', //63 Form Feed (ff) pict. for control | |
772 '\u240d', //64 Carriage Return (cr) pict. for control | |
773 '\u240a', //65 Line Feed (lf) pict. for control | |
774 '\u00ba', //66 Masculine ordinal indicator | |
775 '\u00b1', //67 Plus or minus sign | |
776 '\u2424', //68 New Line (nl) pict. for control | |
777 '\u240b', //69 Vertical Tab (vt) pict. for control | |
778 '\u2518', //6a Forms light up and left | |
779 '\u2510', //6b Forms light down and left | |
780 '\u250c', //6c Forms light down and right | |
781 '\u2514', //6d Forms light up and right | |
782 '\u253c', //6e Forms light vertical and horizontal | |
783 '\u2594', //6f Upper 1/8 block (Scan 1) | |
784 '\u2580', //70 Upper 1/2 block (Scan 3) | |
785 '\u2500', //71 Forms light horizontal or ?em dash? (Scan 5) | |
786 '\u25ac', //72 \u25ac black rect. or \u2582 lower 1/4 (Scan 7) | |
787 '\u005f', //73 \u005f underscore or \u2581 lower 1/8 (Scan 9) | |
788 '\u251c', //74 Forms light vertical and right | |
789 '\u2524', //75 Forms light vertical and left | |
790 '\u2534', //76 Forms light up and horizontal | |
791 '\u252c', //77 Forms light down and horizontal | |
792 '\u2502', //78 vertical bar | |
793 '\u2264', //79 less than or equal | |
794 '\u2265', //7a greater than or equal | |
795 '\u00b6', //7b paragraph | |
796 '\u2260', //7c not equal | |
797 '\u00a3', //7d Pound Sign (british) | |
798 '\u00b7' //7e Middle Dot | |
799 }; | |
800 | |
801 /** Strings to send on function key pressing */ | |
802 private String Numpad[]; | |
803 private String FunctionKey[]; | |
804 private String FunctionKeyShift[]; | |
805 private String FunctionKeyCtrl[]; | |
806 private String FunctionKeyAlt[]; | |
807 private String TabKey[]; | |
808 private String KeyUp[], KeyDown[], KeyLeft[], KeyRight[]; | |
809 private String KPMinus, KPComma, KPPeriod, KPEnter; | |
810 private String PF1, PF2, PF3, PF4; | |
811 private String Help, Do, Find, Select; | |
812 | |
813 private String KeyHome[], KeyEnd[], Insert[], Remove[], PrevScn[], NextScn[]; | |
814 private String Escape[], BackSpace[], NUMDot[], NUMPlus[]; | |
815 | |
816 private String osc, dcs; /* to memorize OSC & DCS control sequence */ | |
817 | |
818 /** vt320 state variable (internal) */ | |
819 private int term_state = TSTATE_DATA; | |
820 /** in vms mode, set by Terminal.VMS property */ | |
821 private boolean vms = false; | |
822 /** Tabulators */ | |
823 private byte[] Tabs; | |
824 /** The list of integers as used by CSI */ | |
825 private int[] DCEvars = new int[30]; | |
826 private int DCEvar; | |
827 | |
828 /** | |
829 * Replace escape code characters (backslash + identifier) with their | |
830 * respective codes. | |
831 * @param tmp the string to be parsed | |
832 * @return a unescaped string | |
833 */ | |
834 static String unEscape(String tmp) { | |
835 int idx = 0, oldidx = 0; | |
836 String cmd; | |
837 // f.println("unescape("+tmp+")"); | |
838 cmd = ""; | |
839 | |
840 while ((idx = tmp.indexOf('\\', oldidx)) >= 0 && | |
841 ++idx <= tmp.length()) { | |
842 cmd += tmp.substring(oldidx, idx - 1); | |
843 | |
844 if (idx == tmp.length()) return cmd; | |
845 | |
846 switch (tmp.charAt(idx)) { | |
847 case 'b': | |
848 cmd += "\b"; | |
849 break; | |
850 | |
851 case 'e': | |
852 cmd += "\u001b"; | |
853 break; | |
854 | |
855 case 'n': | |
856 cmd += "\n"; | |
857 break; | |
858 | |
859 case 'r': | |
860 cmd += "\r"; | |
861 break; | |
862 | |
863 case 't': | |
864 cmd += "\t"; | |
865 break; | |
866 | |
867 case 'v': | |
868 cmd += "\u000b"; | |
869 break; | |
870 | |
871 case 'a': | |
872 cmd += "\u0012"; | |
873 break; | |
874 | |
875 default : | |
876 if ((tmp.charAt(idx) >= '0') && (tmp.charAt(idx) <= '9')) { | |
877 int i; | |
878 | |
879 for (i = idx; i < tmp.length(); i++) | |
880 if ((tmp.charAt(i) < '0') || (tmp.charAt(i) > '9')) | |
881 break; | |
882 | |
883 cmd += (char) Integer.parseInt(tmp.substring(idx, i)); | |
884 idx = i - 1; | |
885 } | |
886 else | |
887 cmd += tmp.substring(idx, ++idx); | |
888 | |
889 break; | |
890 } | |
891 | |
892 oldidx = ++idx; | |
893 } | |
894 | |
895 if (oldidx <= tmp.length()) cmd += tmp.substring(oldidx); | |
896 | |
897 return cmd; | |
898 } | |
899 | |
900 /** | |
901 * A small conveniance method thar converts a 7bit string to the 8bit | |
902 * version depending on VT52/Output8Bit mode. | |
903 * | |
904 * @param s the string to be sent | |
905 */ | |
906 private boolean writeSpecial(String s) { | |
907 if (s == null) | |
908 return true; | |
909 | |
910 if (((s.length() >= 3) && (s.charAt(0) == 27) && (s.charAt(1) == 'O'))) { | |
911 if (vt52mode) { | |
912 if ((s.charAt(2) >= 'P') && (s.charAt(2) <= 'S')) { | |
913 s = "\u001b" + s.substring(2); /* ESC x */ | |
914 } | |
915 else { | |
916 s = "\u001b?" + s.substring(2); /* ESC ? x */ | |
917 } | |
918 } | |
919 else { | |
920 if (output8bit) { | |
921 s = "\u008f" + s.substring(2); /* SS3 x */ | |
922 } /* else keep string as it is */ | |
923 } | |
924 } | |
925 | |
926 if (((s.length() >= 3) && (s.charAt(0) == 27) && (s.charAt(1) == '['))) { | |
927 if (output8bit) { | |
928 s = "\u009b" + s.substring(2); /* CSI ... */ | |
929 } /* else keep */ | |
930 } | |
931 | |
932 return write(s, false); | |
933 } | |
934 | |
935 /** | |
936 * main keytyping event handler... | |
937 */ | |
938 public void keyPressed(int keyCode, char keyChar, int modifiers) { | |
939 boolean control = (modifiers & VDUInput.KEY_CONTROL) != 0; | |
940 boolean shift = (modifiers & VDUInput.KEY_SHIFT) != 0; | |
941 boolean alt = (modifiers & VDUInput.KEY_ALT) != 0; | |
942 | |
943 if (debug > 1) { | |
944 debugStr.append("keyPressed(") | |
945 .append(keyCode) | |
946 .append(", ") | |
947 .append((int)keyChar) | |
948 .append(", ") | |
949 .append(modifiers) | |
950 .append(')'); | |
951 debug(debugStr.toString()); | |
952 debugStr.setLength(0); | |
953 } | |
954 | |
955 int xind; | |
956 String fmap[]; | |
957 xind = 0; | |
958 fmap = FunctionKey; | |
959 | |
960 if (shift) { | |
961 fmap = FunctionKeyShift; | |
962 xind = 1; | |
963 } | |
964 | |
965 if (control) { | |
966 fmap = FunctionKeyCtrl; | |
967 xind = 2; | |
968 } | |
969 | |
970 if (alt) { | |
971 fmap = FunctionKeyAlt; | |
972 xind = 3; | |
973 } | |
974 | |
975 switch (keyCode) { | |
976 case KEY_PAUSE: | |
977 if (shift || control) | |
978 sendTelnetCommand((byte) 243); // BREAK | |
979 | |
980 break; | |
981 | |
982 case KEY_F1: | |
983 writeSpecial(fmap[1]); | |
984 break; | |
985 | |
986 case KEY_F2: | |
987 writeSpecial(fmap[2]); | |
988 break; | |
989 | |
990 case KEY_F3: | |
991 writeSpecial(fmap[3]); | |
992 break; | |
993 | |
994 case KEY_F4: | |
995 writeSpecial(fmap[4]); | |
996 break; | |
997 | |
998 case KEY_F5: | |
999 writeSpecial(fmap[5]); | |
1000 break; | |
1001 | |
1002 case KEY_F6: | |
1003 writeSpecial(fmap[6]); | |
1004 break; | |
1005 | |
1006 case KEY_F7: | |
1007 writeSpecial(fmap[7]); | |
1008 break; | |
1009 | |
1010 case KEY_F8: | |
1011 writeSpecial(fmap[8]); | |
1012 break; | |
1013 | |
1014 case KEY_F9: | |
1015 writeSpecial(fmap[9]); | |
1016 break; | |
1017 | |
1018 case KEY_F10: | |
1019 writeSpecial(fmap[10]); | |
1020 break; | |
1021 | |
1022 case KEY_F11: | |
1023 writeSpecial(fmap[11]); | |
1024 break; | |
1025 | |
1026 case KEY_F12: | |
1027 writeSpecial(fmap[12]); | |
1028 break; | |
1029 | |
1030 case KEY_UP: | |
1031 writeSpecial(KeyUp[xind]); | |
1032 break; | |
1033 | |
1034 case KEY_DOWN: | |
1035 writeSpecial(KeyDown[xind]); | |
1036 break; | |
1037 | |
1038 case KEY_LEFT: | |
1039 writeSpecial(KeyLeft[xind]); | |
1040 break; | |
1041 | |
1042 case KEY_RIGHT: | |
1043 writeSpecial(KeyRight[xind]); | |
1044 break; | |
1045 | |
1046 case KEY_PAGE_DOWN: | |
1047 writeSpecial(NextScn[xind]); | |
1048 break; | |
1049 | |
1050 case KEY_PAGE_UP: | |
1051 writeSpecial(PrevScn[xind]); | |
1052 break; | |
1053 | |
1054 case KEY_INSERT: | |
1055 writeSpecial(Insert[xind]); | |
1056 break; | |
1057 | |
1058 case KEY_DELETE: | |
1059 writeSpecial(Remove[xind]); | |
1060 break; | |
1061 | |
1062 case KEY_BACK_SPACE: | |
1063 writeSpecial(BackSpace[xind]); | |
1064 | |
1065 if (localecho) { | |
1066 if (BackSpace[xind] == "\b") { | |
1067 putString("\b \b"); // make the last char 'deleted' | |
1068 } | |
1069 else { | |
1070 putString(BackSpace[xind]); // echo it | |
1071 } | |
1072 } | |
1073 | |
1074 break; | |
1075 | |
1076 case KEY_HOME: | |
1077 writeSpecial(KeyHome[xind]); | |
1078 break; | |
1079 | |
1080 case KEY_END: | |
1081 writeSpecial(KeyEnd[xind]); | |
1082 break; | |
1083 | |
1084 case KEY_NUM_LOCK: | |
1085 if (vms && control) { | |
1086 writeSpecial(PF1); | |
1087 } | |
1088 | |
1089 if (!control) | |
1090 numlock = !numlock; | |
1091 | |
1092 break; | |
1093 | |
1094 case KEY_CAPS_LOCK: | |
1095 capslock = !capslock; | |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1096 break; |
0 | 1097 |
1098 case KEY_SHIFT: | |
1099 case KEY_CONTROL: | |
1100 case KEY_ALT: | |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1101 break; |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1102 |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1103 case KEY_ESCAPE: |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1104 write(0x1b); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1105 break; |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1106 |
56
556c387889b9
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
1107 case KEY_ENTER: |
556c387889b9
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
1108 write(0x0d); |
556c387889b9
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
1109 break; |
556c387889b9
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
1110 |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1111 case KEY_TAB: |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1112 write(0x09); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
45
diff
changeset
|
1113 break; |
0 | 1114 |
1115 default: | |
1116 break; | |
1117 } | |
1118 } | |
1119 /* | |
1120 public void keyReleased(KeyEvent evt) { | |
1121 if (debug > 1) debug("keyReleased("+evt+")"); | |
1122 // ignore | |
1123 } | |
1124 */ | |
1125 /** | |
1126 * Handle key Typed events for the terminal, this will get | |
1127 * all normal key types, but no shift/alt/control/numlock. | |
1128 */ | |
1129 public void keyTyped(int keyCode, char keyChar, int modifiers) { | |
1130 boolean control = (modifiers & VDUInput.KEY_CONTROL) != 0; | |
1131 boolean shift = (modifiers & VDUInput.KEY_SHIFT) != 0; | |
1132 boolean alt = (modifiers & VDUInput.KEY_ALT) != 0; | |
1133 | |
1134 if (debug > 1) debug("keyTyped(" + keyCode + ", " + (int)keyChar + ", " + modifiers + ")"); | |
1135 | |
1136 if (keyChar == '\t') { | |
1137 if (shift) { | |
1138 write(TabKey[1], false); | |
1139 } | |
1140 else { | |
1141 if (control) { | |
1142 write(TabKey[2], false); | |
1143 } | |
1144 else { | |
1145 if (alt) { | |
1146 write(TabKey[3], false); | |
1147 } | |
1148 else { | |
1149 write(TabKey[0], false); | |
1150 } | |
1151 } | |
1152 } | |
1153 | |
1154 return; | |
1155 } | |
1156 | |
1157 if (alt) { | |
1158 write(((char)(keyChar | 0x80))); | |
1159 return; | |
1160 } | |
1161 | |
1162 if (((keyCode == KEY_ENTER) || (keyChar == 10)) | |
1163 && !control) { | |
1164 write('\r'); | |
1165 | |
1166 if (localecho) putString("\r\n"); // bad hack | |
1167 | |
1168 return; | |
1169 } | |
1170 | |
1171 if ((keyCode == 10) && !control) { | |
1172 debug("Sending \\r"); | |
1173 write('\r'); | |
1174 return; | |
1175 } | |
1176 | |
1177 // FIXME: on german PC keyboards you have to use Alt-Ctrl-q to get an @, | |
1178 // so we can't just use it here... will probably break some other VMS | |
1179 // codes. -Marcus | |
1180 // if(((!vms && keyChar == '2') || keyChar == '@' || keyChar == ' ') | |
1181 // && control) | |
1182 if (((!vms && keyChar == '2') || keyChar == ' ') && control) | |
1183 write(0); | |
1184 | |
1185 if (vms) { | |
1186 if (keyChar == 127 && !control) { | |
1187 if (shift) | |
1188 writeSpecial(Insert[0]); // VMS shift delete = insert | |
1189 else | |
1190 writeSpecial(Remove[0]); // VMS delete = remove | |
1191 | |
1192 return; | |
1193 } | |
1194 else if (control) | |
1195 switch (keyChar) { | |
1196 case '0': | |
1197 writeSpecial(Numpad[0]); | |
1198 return; | |
1199 | |
1200 case '1': | |
1201 writeSpecial(Numpad[1]); | |
1202 return; | |
1203 | |
1204 case '2': | |
1205 writeSpecial(Numpad[2]); | |
1206 return; | |
1207 | |
1208 case '3': | |
1209 writeSpecial(Numpad[3]); | |
1210 return; | |
1211 | |
1212 case '4': | |
1213 writeSpecial(Numpad[4]); | |
1214 return; | |
1215 | |
1216 case '5': | |
1217 writeSpecial(Numpad[5]); | |
1218 return; | |
1219 | |
1220 case '6': | |
1221 writeSpecial(Numpad[6]); | |
1222 return; | |
1223 | |
1224 case '7': | |
1225 writeSpecial(Numpad[7]); | |
1226 return; | |
1227 | |
1228 case '8': | |
1229 writeSpecial(Numpad[8]); | |
1230 return; | |
1231 | |
1232 case '9': | |
1233 writeSpecial(Numpad[9]); | |
1234 return; | |
1235 | |
1236 case '.': | |
1237 writeSpecial(KPPeriod); | |
1238 return; | |
1239 | |
1240 case '-': | |
1241 case 31: | |
1242 writeSpecial(KPMinus); | |
1243 return; | |
1244 | |
1245 case '+': | |
1246 writeSpecial(KPComma); | |
1247 return; | |
1248 | |
1249 case 10: | |
1250 writeSpecial(KPEnter); | |
1251 return; | |
1252 | |
1253 case '/': | |
1254 writeSpecial(PF2); | |
1255 return; | |
1256 | |
1257 case '*': | |
1258 writeSpecial(PF3); | |
1259 return; | |
1260 | |
1261 /* NUMLOCK handled in keyPressed */ | |
1262 default: | |
1263 break; | |
1264 } | |
1265 | |
1266 /* Now what does this do and how did it get here. -Marcus | |
1267 if (shift && keyChar < 32) { | |
1268 write(PF1+(char)(keyChar + 64)); | |
1269 return; | |
1270 } | |
1271 */ | |
1272 } | |
1273 | |
1274 // FIXME: not used? | |
1275 //String fmap[]; | |
1276 int xind; | |
1277 xind = 0; | |
1278 | |
1279 //fmap = FunctionKey; | |
1280 if (shift) { | |
1281 //fmap = FunctionKeyShift; | |
1282 xind = 1; | |
1283 } | |
1284 | |
1285 if (control) { | |
1286 //fmap = FunctionKeyCtrl; | |
1287 xind = 2; | |
1288 } | |
1289 | |
1290 if (alt) { | |
1291 //fmap = FunctionKeyAlt; | |
1292 xind = 3; | |
1293 } | |
1294 | |
1295 if (keyCode == KEY_ESCAPE) { | |
1296 writeSpecial(Escape[xind]); | |
1297 return; | |
1298 } | |
1299 | |
1300 if ((modifiers & VDUInput.KEY_ACTION) != 0) | |
1301 switch (keyCode) { | |
1302 case KEY_NUMPAD0: | |
1303 writeSpecial(Numpad[0]); | |
1304 return; | |
1305 | |
1306 case KEY_NUMPAD1: | |
1307 writeSpecial(Numpad[1]); | |
1308 return; | |
1309 | |
1310 case KEY_NUMPAD2: | |
1311 writeSpecial(Numpad[2]); | |
1312 return; | |
1313 | |
1314 case KEY_NUMPAD3: | |
1315 writeSpecial(Numpad[3]); | |
1316 return; | |
1317 | |
1318 case KEY_NUMPAD4: | |
1319 writeSpecial(Numpad[4]); | |
1320 return; | |
1321 | |
1322 case KEY_NUMPAD5: | |
1323 writeSpecial(Numpad[5]); | |
1324 return; | |
1325 | |
1326 case KEY_NUMPAD6: | |
1327 writeSpecial(Numpad[6]); | |
1328 return; | |
1329 | |
1330 case KEY_NUMPAD7: | |
1331 writeSpecial(Numpad[7]); | |
1332 return; | |
1333 | |
1334 case KEY_NUMPAD8: | |
1335 writeSpecial(Numpad[8]); | |
1336 return; | |
1337 | |
1338 case KEY_NUMPAD9: | |
1339 writeSpecial(Numpad[9]); | |
1340 return; | |
1341 | |
1342 case KEY_DECIMAL: | |
1343 writeSpecial(NUMDot[xind]); | |
1344 return; | |
1345 | |
1346 case KEY_ADD: | |
1347 writeSpecial(NUMPlus[xind]); | |
1348 return; | |
1349 } | |
1350 | |
1351 if (!((keyChar == 8) || (keyChar == 127) || (keyChar == '\r') || (keyChar == '\n'))) { | |
1352 write(keyChar); | |
1353 return; | |
1354 } | |
1355 } | |
1356 | |
1357 private void handle_dcs(String dcs) { | |
1358 debugStr.append("DCS: ") | |
1359 .append(dcs); | |
1360 debug(debugStr.toString()); | |
1361 debugStr.setLength(0); | |
1362 } | |
1363 | |
1364 private void handle_osc(String osc) { | |
1365 if (osc.length() > 2 && osc.substring(0, 2).equals("4;")) { | |
1366 // Define color palette | |
1367 String[] colorData = osc.split(";"); | |
1368 | |
1369 try { | |
1370 int colorIndex = Integer.parseInt(colorData[1]); | |
1371 | |
1372 if ("rgb:".equals(colorData[2].substring(0, 4))) { | |
1373 String[] rgb = colorData[2].substring(4).split("/"); | |
1374 int red = Integer.parseInt(rgb[0].substring(0, 2), 16) & 0xFF; | |
1375 int green = Integer.parseInt(rgb[1].substring(0, 2), 16) & 0xFF; | |
1376 int blue = Integer.parseInt(rgb[2].substring(0, 2), 16) & 0xFF; | |
1377 display.setColor(colorIndex, red, green, blue); | |
1378 } | |
1379 } | |
1380 catch (Exception e) { | |
1381 debugStr.append("OSC: invalid color sequence encountered: ") | |
1382 .append(osc); | |
1383 debug(debugStr.toString()); | |
1384 debugStr.setLength(0); | |
1385 } | |
1386 } | |
1387 else | |
1388 debug("OSC: " + osc); | |
1389 } | |
1390 | |
1391 private final static char unimap[] = { | |
1392 //# | |
1393 //# Name: cp437_DOSLatinUS to Unicode table | |
1394 //# Unicode version: 1.1 | |
1395 //# Table version: 1.1 | |
1396 //# Table format: Format A | |
1397 //# Date: 03/31/95 | |
1398 //# Authors: Michel Suignard <michelsu@microsoft.com> | |
1399 //# Lori Hoerth <lorih@microsoft.com> | |
1400 //# General notes: none | |
1401 //# | |
1402 //# Format: Three tab-separated columns | |
1403 //# Column #1 is the cp1255_WinHebrew code (in hex) | |
1404 //# Column #2 is the Unicode (in hex as 0xXXXX) | |
1405 //# Column #3 is the Unicode name (follows a comment sign, '#') | |
1406 //# | |
1407 //# The entries are in cp437_DOSLatinUS order | |
1408 //# | |
1409 | |
1410 0x0000, // #NULL | |
1411 0x0001, // #START OF HEADING | |
1412 0x0002, // #START OF TEXT | |
1413 0x0003, // #END OF TEXT | |
1414 0x0004, // #END OF TRANSMISSION | |
1415 0x0005, // #ENQUIRY | |
1416 0x0006, // #ACKNOWLEDGE | |
1417 0x0007, // #BELL | |
1418 0x0008, // #BACKSPACE | |
1419 0x0009, // #HORIZONTAL TABULATION | |
1420 0x000a, // #LINE FEED | |
1421 0x000b, // #VERTICAL TABULATION | |
1422 0x000c, // #FORM FEED | |
1423 0x000d, // #CARRIAGE RETURN | |
1424 0x000e, // #SHIFT OUT | |
1425 0x000f, // #SHIFT IN | |
1426 0x0010, // #DATA LINK ESCAPE | |
1427 0x0011, // #DEVICE CONTROL ONE | |
1428 0x0012, // #DEVICE CONTROL TWO | |
1429 0x0013, // #DEVICE CONTROL THREE | |
1430 0x0014, // #DEVICE CONTROL FOUR | |
1431 0x0015, // #NEGATIVE ACKNOWLEDGE | |
1432 0x0016, // #SYNCHRONOUS IDLE | |
1433 0x0017, // #END OF TRANSMISSION BLOCK | |
1434 0x0018, // #CANCEL | |
1435 0x0019, // #END OF MEDIUM | |
1436 0x001a, // #SUBSTITUTE | |
1437 0x001b, // #ESCAPE | |
1438 0x001c, // #FILE SEPARATOR | |
1439 0x001d, // #GROUP SEPARATOR | |
1440 0x001e, // #RECORD SEPARATOR | |
1441 0x001f, // #UNIT SEPARATOR | |
1442 0x0020, // #SPACE | |
1443 0x0021, // #EXCLAMATION MARK | |
1444 0x0022, // #QUOTATION MARK | |
1445 0x0023, // #NUMBER SIGN | |
1446 0x0024, // #DOLLAR SIGN | |
1447 0x0025, // #PERCENT SIGN | |
1448 0x0026, // #AMPERSAND | |
1449 0x0027, // #APOSTROPHE | |
1450 0x0028, // #LEFT PARENTHESIS | |
1451 0x0029, // #RIGHT PARENTHESIS | |
1452 0x002a, // #ASTERISK | |
1453 0x002b, // #PLUS SIGN | |
1454 0x002c, // #COMMA | |
1455 0x002d, // #HYPHEN-MINUS | |
1456 0x002e, // #FULL STOP | |
1457 0x002f, // #SOLIDUS | |
1458 0x0030, // #DIGIT ZERO | |
1459 0x0031, // #DIGIT ONE | |
1460 0x0032, // #DIGIT TWO | |
1461 0x0033, // #DIGIT THREE | |
1462 0x0034, // #DIGIT FOUR | |
1463 0x0035, // #DIGIT FIVE | |
1464 0x0036, // #DIGIT SIX | |
1465 0x0037, // #DIGIT SEVEN | |
1466 0x0038, // #DIGIT EIGHT | |
1467 0x0039, // #DIGIT NINE | |
1468 0x003a, // #COLON | |
1469 0x003b, // #SEMICOLON | |
1470 0x003c, // #LESS-THAN SIGN | |
1471 0x003d, // #EQUALS SIGN | |
1472 0x003e, // #GREATER-THAN SIGN | |
1473 0x003f, // #QUESTION MARK | |
1474 0x0040, // #COMMERCIAL AT | |
1475 0x0041, // #LATIN CAPITAL LETTER A | |
1476 0x0042, // #LATIN CAPITAL LETTER B | |
1477 0x0043, // #LATIN CAPITAL LETTER C | |
1478 0x0044, // #LATIN CAPITAL LETTER D | |
1479 0x0045, // #LATIN CAPITAL LETTER E | |
1480 0x0046, // #LATIN CAPITAL LETTER F | |
1481 0x0047, // #LATIN CAPITAL LETTER G | |
1482 0x0048, // #LATIN CAPITAL LETTER H | |
1483 0x0049, // #LATIN CAPITAL LETTER I | |
1484 0x004a, // #LATIN CAPITAL LETTER J | |
1485 0x004b, // #LATIN CAPITAL LETTER K | |
1486 0x004c, // #LATIN CAPITAL LETTER L | |
1487 0x004d, // #LATIN CAPITAL LETTER M | |
1488 0x004e, // #LATIN CAPITAL LETTER N | |
1489 0x004f, // #LATIN CAPITAL LETTER O | |
1490 0x0050, // #LATIN CAPITAL LETTER P | |
1491 0x0051, // #LATIN CAPITAL LETTER Q | |
1492 0x0052, // #LATIN CAPITAL LETTER R | |
1493 0x0053, // #LATIN CAPITAL LETTER S | |
1494 0x0054, // #LATIN CAPITAL LETTER T | |
1495 0x0055, // #LATIN CAPITAL LETTER U | |
1496 0x0056, // #LATIN CAPITAL LETTER V | |
1497 0x0057, // #LATIN CAPITAL LETTER W | |
1498 0x0058, // #LATIN CAPITAL LETTER X | |
1499 0x0059, // #LATIN CAPITAL LETTER Y | |
1500 0x005a, // #LATIN CAPITAL LETTER Z | |
1501 0x005b, // #LEFT SQUARE BRACKET | |
1502 0x005c, // #REVERSE SOLIDUS | |
1503 0x005d, // #RIGHT SQUARE BRACKET | |
1504 0x005e, // #CIRCUMFLEX ACCENT | |
1505 0x005f, // #LOW LINE | |
1506 0x0060, // #GRAVE ACCENT | |
1507 0x0061, // #LATIN SMALL LETTER A | |
1508 0x0062, // #LATIN SMALL LETTER B | |
1509 0x0063, // #LATIN SMALL LETTER C | |
1510 0x0064, // #LATIN SMALL LETTER D | |
1511 0x0065, // #LATIN SMALL LETTER E | |
1512 0x0066, // #LATIN SMALL LETTER F | |
1513 0x0067, // #LATIN SMALL LETTER G | |
1514 0x0068, // #LATIN SMALL LETTER H | |
1515 0x0069, // #LATIN SMALL LETTER I | |
1516 0x006a, // #LATIN SMALL LETTER J | |
1517 0x006b, // #LATIN SMALL LETTER K | |
1518 0x006c, // #LATIN SMALL LETTER L | |
1519 0x006d, // #LATIN SMALL LETTER M | |
1520 0x006e, // #LATIN SMALL LETTER N | |
1521 0x006f, // #LATIN SMALL LETTER O | |
1522 0x0070, // #LATIN SMALL LETTER P | |
1523 0x0071, // #LATIN SMALL LETTER Q | |
1524 0x0072, // #LATIN SMALL LETTER R | |
1525 0x0073, // #LATIN SMALL LETTER S | |
1526 0x0074, // #LATIN SMALL LETTER T | |
1527 0x0075, // #LATIN SMALL LETTER U | |
1528 0x0076, // #LATIN SMALL LETTER V | |
1529 0x0077, // #LATIN SMALL LETTER W | |
1530 0x0078, // #LATIN SMALL LETTER X | |
1531 0x0079, // #LATIN SMALL LETTER Y | |
1532 0x007a, // #LATIN SMALL LETTER Z | |
1533 0x007b, // #LEFT CURLY BRACKET | |
1534 0x007c, // #VERTICAL LINE | |
1535 0x007d, // #RIGHT CURLY BRACKET | |
1536 0x007e, // #TILDE | |
1537 0x007f, // #DELETE | |
1538 0x00c7, // #LATIN CAPITAL LETTER C WITH CEDILLA | |
1539 0x00fc, // #LATIN SMALL LETTER U WITH DIAERESIS | |
1540 0x00e9, // #LATIN SMALL LETTER E WITH ACUTE | |
1541 0x00e2, // #LATIN SMALL LETTER A WITH CIRCUMFLEX | |
1542 0x00e4, // #LATIN SMALL LETTER A WITH DIAERESIS | |
1543 0x00e0, // #LATIN SMALL LETTER A WITH GRAVE | |
1544 0x00e5, // #LATIN SMALL LETTER A WITH RING ABOVE | |
1545 0x00e7, // #LATIN SMALL LETTER C WITH CEDILLA | |
1546 0x00ea, // #LATIN SMALL LETTER E WITH CIRCUMFLEX | |
1547 0x00eb, // #LATIN SMALL LETTER E WITH DIAERESIS | |
1548 0x00e8, // #LATIN SMALL LETTER E WITH GRAVE | |
1549 0x00ef, // #LATIN SMALL LETTER I WITH DIAERESIS | |
1550 0x00ee, // #LATIN SMALL LETTER I WITH CIRCUMFLEX | |
1551 0x00ec, // #LATIN SMALL LETTER I WITH GRAVE | |
1552 0x00c4, // #LATIN CAPITAL LETTER A WITH DIAERESIS | |
1553 0x00c5, // #LATIN CAPITAL LETTER A WITH RING ABOVE | |
1554 0x00c9, // #LATIN CAPITAL LETTER E WITH ACUTE | |
1555 0x00e6, // #LATIN SMALL LIGATURE AE | |
1556 0x00c6, // #LATIN CAPITAL LIGATURE AE | |
1557 0x00f4, // #LATIN SMALL LETTER O WITH CIRCUMFLEX | |
1558 0x00f6, // #LATIN SMALL LETTER O WITH DIAERESIS | |
1559 0x00f2, // #LATIN SMALL LETTER O WITH GRAVE | |
1560 0x00fb, // #LATIN SMALL LETTER U WITH CIRCUMFLEX | |
1561 0x00f9, // #LATIN SMALL LETTER U WITH GRAVE | |
1562 0x00ff, // #LATIN SMALL LETTER Y WITH DIAERESIS | |
1563 0x00d6, // #LATIN CAPITAL LETTER O WITH DIAERESIS | |
1564 0x00dc, // #LATIN CAPITAL LETTER U WITH DIAERESIS | |
1565 0x00a2, // #CENT SIGN | |
1566 0x00a3, // #POUND SIGN | |
1567 0x00a5, // #YEN SIGN | |
1568 0x20a7, // #PESETA SIGN | |
1569 0x0192, // #LATIN SMALL LETTER F WITH HOOK | |
1570 0x00e1, // #LATIN SMALL LETTER A WITH ACUTE | |
1571 0x00ed, // #LATIN SMALL LETTER I WITH ACUTE | |
1572 0x00f3, // #LATIN SMALL LETTER O WITH ACUTE | |
1573 0x00fa, // #LATIN SMALL LETTER U WITH ACUTE | |
1574 0x00f1, // #LATIN SMALL LETTER N WITH TILDE | |
1575 0x00d1, // #LATIN CAPITAL LETTER N WITH TILDE | |
1576 0x00aa, // #FEMININE ORDINAL INDICATOR | |
1577 0x00ba, // #MASCULINE ORDINAL INDICATOR | |
1578 0x00bf, // #INVERTED QUESTION MARK | |
1579 0x2310, // #REVERSED NOT SIGN | |
1580 0x00ac, // #NOT SIGN | |
1581 0x00bd, // #VULGAR FRACTION ONE HALF | |
1582 0x00bc, // #VULGAR FRACTION ONE QUARTER | |
1583 0x00a1, // #INVERTED EXCLAMATION MARK | |
1584 0x00ab, // #LEFT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1585 0x00bb, // #RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1586 0x2591, // #LIGHT SHADE | |
1587 0x2592, // #MEDIUM SHADE | |
1588 0x2593, // #DARK SHADE | |
1589 0x2502, // #BOX DRAWINGS LIGHT VERTICAL | |
1590 0x2524, // #BOX DRAWINGS LIGHT VERTICAL AND LEFT | |
1591 0x2561, // #BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE | |
1592 0x2562, // #BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE | |
1593 0x2556, // #BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE | |
1594 0x2555, // #BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE | |
1595 0x2563, // #BOX DRAWINGS DOUBLE VERTICAL AND LEFT | |
1596 0x2551, // #BOX DRAWINGS DOUBLE VERTICAL | |
1597 0x2557, // #BOX DRAWINGS DOUBLE DOWN AND LEFT | |
1598 0x255d, // #BOX DRAWINGS DOUBLE UP AND LEFT | |
1599 0x255c, // #BOX DRAWINGS UP DOUBLE AND LEFT SINGLE | |
1600 0x255b, // #BOX DRAWINGS UP SINGLE AND LEFT DOUBLE | |
1601 0x2510, // #BOX DRAWINGS LIGHT DOWN AND LEFT | |
1602 0x2514, // #BOX DRAWINGS LIGHT UP AND RIGHT | |
1603 0x2534, // #BOX DRAWINGS LIGHT UP AND HORIZONTAL | |
1604 0x252c, // #BOX DRAWINGS LIGHT DOWN AND HORIZONTAL | |
1605 0x251c, // #BOX DRAWINGS LIGHT VERTICAL AND RIGHT | |
1606 0x2500, // #BOX DRAWINGS LIGHT HORIZONTAL | |
1607 0x253c, // #BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL | |
1608 0x255e, // #BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE | |
1609 0x255f, // #BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE | |
1610 0x255a, // #BOX DRAWINGS DOUBLE UP AND RIGHT | |
1611 0x2554, // #BOX DRAWINGS DOUBLE DOWN AND RIGHT | |
1612 0x2569, // #BOX DRAWINGS DOUBLE UP AND HORIZONTAL | |
1613 0x2566, // #BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL | |
1614 0x2560, // #BOX DRAWINGS DOUBLE VERTICAL AND RIGHT | |
1615 0x2550, // #BOX DRAWINGS DOUBLE HORIZONTAL | |
1616 0x256c, // #BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL | |
1617 0x2567, // #BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE | |
1618 0x2568, // #BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE | |
1619 0x2564, // #BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE | |
1620 0x2565, // #BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE | |
1621 0x2559, // #BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE | |
1622 0x2558, // #BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE | |
1623 0x2552, // #BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE | |
1624 0x2553, // #BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE | |
1625 0x256b, // #BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE | |
1626 0x256a, // #BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE | |
1627 0x2518, // #BOX DRAWINGS LIGHT UP AND LEFT | |
1628 0x250c, // #BOX DRAWINGS LIGHT DOWN AND RIGHT | |
1629 0x2588, // #FULL BLOCK | |
1630 0x2584, // #LOWER HALF BLOCK | |
1631 0x258c, // #LEFT HALF BLOCK | |
1632 0x2590, // #RIGHT HALF BLOCK | |
1633 0x2580, // #UPPER HALF BLOCK | |
1634 0x03b1, // #GREEK SMALL LETTER ALPHA | |
1635 0x00df, // #LATIN SMALL LETTER SHARP S | |
1636 0x0393, // #GREEK CAPITAL LETTER GAMMA | |
1637 0x03c0, // #GREEK SMALL LETTER PI | |
1638 0x03a3, // #GREEK CAPITAL LETTER SIGMA | |
1639 0x03c3, // #GREEK SMALL LETTER SIGMA | |
1640 0x00b5, // #MICRO SIGN | |
1641 0x03c4, // #GREEK SMALL LETTER TAU | |
1642 0x03a6, // #GREEK CAPITAL LETTER PHI | |
1643 0x0398, // #GREEK CAPITAL LETTER THETA | |
1644 0x03a9, // #GREEK CAPITAL LETTER OMEGA | |
1645 0x03b4, // #GREEK SMALL LETTER DELTA | |
1646 0x221e, // #INFINITY | |
1647 0x03c6, // #GREEK SMALL LETTER PHI | |
1648 0x03b5, // #GREEK SMALL LETTER EPSILON | |
1649 0x2229, // #INTERSECTION | |
1650 0x2261, // #IDENTICAL TO | |
1651 0x00b1, // #PLUS-MINUS SIGN | |
1652 0x2265, // #GREATER-THAN OR EQUAL TO | |
1653 0x2264, // #LESS-THAN OR EQUAL TO | |
1654 0x2320, // #TOP HALF INTEGRAL | |
1655 0x2321, // #BOTTOM HALF INTEGRAL | |
1656 0x00f7, // #DIVISION SIGN | |
1657 0x2248, // #ALMOST EQUAL TO | |
1658 0x00b0, // #DEGREE SIGN | |
1659 0x2219, // #BULLET OPERATOR | |
1660 0x00b7, // #MIDDLE DOT | |
1661 0x221a, // #SQUARE ROOT | |
1662 0x207f, // #SUPERSCRIPT LATIN SMALL LETTER N | |
1663 0x00b2, // #SUPERSCRIPT TWO | |
1664 0x25a0, // #BLACK SQUARE | |
1665 0x00a0, // #NO-BREAK SPACE | |
1666 }; | |
1667 | |
1668 public char map_cp850_unicode(char x) { | |
1669 if (x >= 0x100) | |
1670 return x; | |
1671 | |
1672 return unimap[x]; | |
1673 } | |
1674 | |
1675 private void _SetCursor(int row, int col) { | |
1676 int maxr = height - 1; | |
1677 int tm = getTopMargin(); | |
1678 R = (row < 0) ? 0 : row; | |
1679 C = (col < 0) ? 0 : (col >= width) ? width - 1 : col; | |
1680 | |
1681 if (!moveoutsidemargins) { | |
1682 R += tm; | |
1683 maxr = getBottomMargin(); | |
1684 } | |
1685 | |
1686 if (R > maxr) R = maxr; | |
1687 } | |
1688 | |
1689 private void putChar(char c, boolean isWide, boolean doshowcursor) { | |
1690 int rows = this.height; //statusline | |
1691 int columns = this.width; | |
1692 | |
1693 // byte msg[]; | |
1694 // if (debug > 4) { | |
1695 // debugStr.append("putChar(") | |
1696 // .append(c) | |
1697 // .append(" [") | |
1698 // .append((int) c) | |
1699 // .append("]) at R=") | |
1700 // .append(R) | |
1701 // .append(" , C=") | |
1702 // .append(C) | |
1703 // .append(", columns=") | |
1704 // .append(columns) | |
1705 // .append(", rows=") | |
1706 // .append(rows); | |
1707 // debug(debugStr.toString()); | |
1708 // debugStr.setLength(0); | |
1709 // } | |
1710 // markLine(R, 1); | |
1711 // if (c > 255) { | |
1712 // if (debug > 0) | |
1713 // debug("char > 255:" + (int) c); | |
1714 // //return; | |
1715 // } | |
1716 switch (term_state) { | |
1717 case TSTATE_DATA: | |
1718 | |
1719 /* FIXME: we shouldn't use chars with bit 8 set if ibmcharset. | |
1720 * probably... but some BBS do anyway... | |
1721 */ | |
1722 if (!useibmcharset) { | |
1723 boolean doneflag = true; | |
1724 | |
1725 switch (c) { | |
1726 case OSC: | |
1727 osc = ""; | |
1728 term_state = TSTATE_OSC; | |
1729 break; | |
1730 | |
1731 case RI: | |
1732 if (R > getTopMargin()) | |
1733 R--; | |
1734 else | |
1735 insertLine(R, 1, SCROLL_DOWN); | |
1736 | |
1737 if (debug > 1) | |
1738 debug("RI"); | |
1739 | |
1740 break; | |
1741 | |
1742 case IND: | |
1743 if (debug > 2) { | |
1744 debugStr.append("IND at ") | |
1745 .append(R) | |
1746 .append(", tm is ") | |
1747 .append(getTopMargin()) | |
1748 .append(", bm is ") | |
1749 .append(getBottomMargin()); | |
1750 debug(debugStr.toString()); | |
1751 debugStr.setLength(0); | |
1752 } | |
1753 | |
1754 if (R == getBottomMargin() || R == rows - 1) | |
1755 insertLine(R, 1, SCROLL_UP); | |
1756 else | |
1757 R++; | |
1758 | |
1759 if (debug > 1) | |
1760 debug("IND (at " + R + " )"); | |
1761 | |
1762 break; | |
1763 | |
1764 case NEL: | |
1765 if (R == getBottomMargin() || R == rows - 1) | |
1766 insertLine(R, 1, SCROLL_UP); | |
1767 else | |
1768 R++; | |
1769 | |
1770 C = 0; | |
1771 | |
1772 if (debug > 1) | |
1773 debug("NEL (at " + R + " )"); | |
1774 | |
1775 break; | |
1776 | |
1777 case HTS: | |
1778 Tabs[C] = 1; | |
1779 | |
1780 if (debug > 1) | |
1781 debug("HTS"); | |
1782 | |
1783 break; | |
1784 | |
1785 case DCS: | |
1786 dcs = ""; | |
1787 term_state = TSTATE_DCS; | |
1788 break; | |
1789 | |
1790 default: | |
1791 doneflag = false; | |
1792 break; | |
1793 } | |
1794 | |
1795 if (doneflag) break; | |
1796 } | |
1797 | |
1798 switch (c) { | |
1799 case SS3: | |
1800 onegl = 3; | |
1801 break; | |
1802 | |
1803 case SS2: | |
1804 onegl = 2; | |
1805 break; | |
1806 | |
1807 case CSI: // should be in the 8bit section, but some BBS use this | |
1808 DCEvar = 0; | |
1809 DCEvars[0] = 0; | |
1810 DCEvars[1] = 0; | |
1811 DCEvars[2] = 0; | |
1812 DCEvars[3] = 0; | |
1813 term_state = TSTATE_CSI; | |
1814 break; | |
1815 | |
1816 case ESC: | |
1817 term_state = TSTATE_ESC; | |
1818 lastwaslf = 0; | |
1819 break; | |
1820 | |
1821 case 5: /* ENQ */ | |
1822 write(answerBack, false); | |
1823 break; | |
1824 | |
1825 case 12: | |
1826 /* FormFeed, Home for the BBS world */ | |
1827 deleteArea(0, 0, columns, rows, attributes); | |
1828 C = R = 0; | |
1829 break; | |
1830 | |
1831 case '\b': /* 8 */ | |
1832 C--; | |
1833 | |
1834 if (C < 0) | |
1835 C = 0; | |
1836 | |
1837 lastwaslf = 0; | |
1838 break; | |
1839 | |
1840 case '\t': | |
1841 do { | |
1842 // Don't overwrite or insert! TABS are not destructive, but movement! | |
1843 C++; | |
1844 } | |
1845 while (C < columns && (Tabs[C] == 0)); | |
1846 | |
1847 lastwaslf = 0; | |
1848 break; | |
1849 | |
1850 case '\r': // 13 CR | |
1851 C = 0; | |
1852 break; | |
1853 | |
1854 case '\n': // 10 LF | |
1855 if (debug > 3) | |
1856 debug("R= " + R + ", bm " + getBottomMargin() + ", tm=" + getTopMargin() + ", rows=" + rows); | |
1857 | |
1858 if (!vms) { | |
1859 if (lastwaslf != 0 && lastwaslf != c) // Ray: I do not understand this logic. | |
1860 break; | |
1861 | |
1862 lastwaslf = c; | |
1863 /*C = 0;*/ | |
1864 } | |
1865 | |
1866 if (R == getBottomMargin() || R >= rows - 1) | |
1867 insertLine(R, 1, SCROLL_UP); | |
1868 else | |
1869 R++; | |
1870 | |
1871 break; | |
1872 | |
1873 case 7: | |
1874 beep(); | |
1875 break; | |
1876 | |
1877 case '\016': /* SMACS , as */ | |
1878 /* ^N, Shift out - Put G1 into GL */ | |
1879 gl = 1; | |
1880 usedcharsets = true; | |
1881 break; | |
1882 | |
1883 case '\017': /* RMACS , ae */ | |
1884 /* ^O, Shift in - Put G0 into GL */ | |
1885 gl = 0; | |
1886 usedcharsets = true; | |
1887 break; | |
1888 | |
1889 default: { | |
1890 int thisgl = gl; | |
1891 | |
1892 if (onegl >= 0) { | |
1893 thisgl = onegl; | |
1894 onegl = -1; | |
1895 } | |
1896 | |
1897 lastwaslf = 0; | |
1898 | |
1899 if (c < 32) { | |
1900 if (c != 0) | |
1901 if (debug > 0) | |
1902 debug("TSTATE_DATA char: " + ((int) c)); | |
1903 | |
1904 /*break; some BBS really want those characters, like hearst etc. */ | |
1905 if (c == 0) /* print 0 ... you bet */ | |
1906 break; | |
1907 } | |
1908 | |
1909 if (C >= columns) { | |
1910 if (wraparound) { | |
1911 int bot = rows; | |
1912 | |
1913 // If we're in the scroll region, check against the bottom margin | |
1914 if (R <= getBottomMargin() && R >= getTopMargin()) | |
1915 bot = getBottomMargin() + 1; | |
1916 | |
1917 if (R < bot - 1) | |
1918 R++; | |
1919 else { | |
1920 if (debug > 3) debug("scrolling due to wrap at " + R); | |
1921 | |
1922 insertLine(R, 1, SCROLL_UP); | |
1923 } | |
1924 | |
1925 C = 0; | |
1926 } | |
1927 else { | |
1928 // cursor stays on last character. | |
1929 C = columns - 1; | |
1930 } | |
1931 } | |
1932 | |
1933 boolean mapped = false; | |
1934 | |
1935 // Mapping if DEC Special is chosen charset | |
1936 if (usedcharsets) { | |
1937 if (c >= '\u0020' && c <= '\u007f') { | |
1938 switch (gx[thisgl]) { | |
1939 case '0': | |
1940 | |
1941 // Remap SCOANSI line drawing to VT100 line drawing chars | |
1942 // for our SCO using customers. | |
1943 if (terminalID.equals("scoansi") || terminalID.equals("ansi")) { | |
1944 for (int i = 0; i < scoansi_acs.length(); i += 2) { | |
1945 if (c == scoansi_acs.charAt(i)) { | |
1946 c = scoansi_acs.charAt(i + 1); | |
1947 break; | |
1948 } | |
1949 } | |
1950 } | |
1951 | |
1952 if (c >= '\u005f' && c <= '\u007e') { | |
1953 c = DECSPECIAL[(short) c - 0x5f]; | |
1954 mapped = true; | |
1955 } | |
1956 | |
1957 break; | |
1958 | |
1959 case '<': // 'user preferred' is currently 'ISO Latin-1 suppl | |
1960 c = (char)((c & 0x7f) | 0x80); | |
1961 mapped = true; | |
1962 break; | |
1963 | |
1964 case 'A': | |
1965 case 'B': // Latin-1 , ASCII -> fall through | |
1966 mapped = true; | |
1967 break; | |
1968 | |
1969 default: | |
1970 debug("Unsupported GL mapping: " + gx[thisgl]); | |
1971 break; | |
1972 } | |
1973 } | |
1974 | |
1975 if (!mapped && (c >= '\u0080' && c <= '\u00ff')) { | |
1976 switch (gx[gr]) { | |
1977 case '0': | |
1978 if (c >= '\u00df' && c <= '\u00fe') { | |
1979 c = DECSPECIAL[c - '\u00df']; | |
1980 mapped = true; | |
1981 } | |
1982 | |
1983 break; | |
1984 | |
1985 case '<': | |
1986 case 'A': | |
1987 case 'B': | |
1988 mapped = true; | |
1989 break; | |
1990 | |
1991 default: | |
1992 debug("Unsupported GR mapping: " + gx[gr]); | |
1993 break; | |
1994 } | |
1995 } | |
1996 } | |
1997 | |
1998 if (!mapped && useibmcharset) | |
1999 c = map_cp850_unicode(c); | |
2000 | |
2001 /*if(true || (statusmode == 0)) { */ | |
2002 if (isWide) { | |
2003 if (C >= columns - 1) { | |
2004 if (wraparound) { | |
2005 int bot = rows; | |
2006 | |
2007 // If we're in the scroll region, check against the bottom margin | |
2008 if (R <= getBottomMargin() && R >= getTopMargin()) | |
2009 bot = getBottomMargin() + 1; | |
2010 | |
2011 if (R < bot - 1) | |
2012 R++; | |
2013 else { | |
2014 if (debug > 3) debug("scrolling due to wrap at " + R); | |
2015 | |
2016 insertLine(R, 1, SCROLL_UP); | |
2017 } | |
2018 | |
2019 C = 0; | |
2020 } | |
2021 else { | |
2022 // cursor stays on last wide character. | |
2023 C = columns - 2; | |
2024 } | |
2025 } | |
2026 } | |
2027 | |
2028 if (insertmode == 1) { | |
2029 if (isWide) { | |
2030 insertChar(C++, R, c, attributes | FULLWIDTH); | |
2031 insertChar(C, R, ' ', attributes | FULLWIDTH); | |
2032 } | |
2033 else | |
2034 insertChar(C, R, c, attributes); | |
2035 } | |
2036 else { | |
2037 if (isWide) { | |
2038 putChar(C++, R, c, attributes | FULLWIDTH); | |
2039 putChar(C, R, ' ', attributes | FULLWIDTH); | |
2040 } | |
2041 else | |
2042 putChar(C, R, c, attributes); | |
2043 } | |
2044 | |
2045 /* | |
2046 } else { | |
2047 if (insertmode==1) { | |
2048 insertChar(C, rows, c, attributes); | |
2049 } else { | |
2050 putChar(C, rows, c, attributes); | |
2051 } | |
2052 } | |
2053 */ | |
2054 C++; | |
2055 break; | |
2056 } | |
2057 } /* switch(c) */ | |
2058 | |
2059 break; | |
2060 | |
2061 case TSTATE_OSC: | |
2062 if ((c < 0x20) && (c != ESC)) {// NP - No printing character | |
2063 handle_osc(osc); | |
2064 term_state = TSTATE_DATA; | |
2065 break; | |
2066 } | |
2067 | |
2068 //but check for vt102 ESC \ | |
2069 if (c == '\\' && osc.charAt(osc.length() - 1) == ESC) { | |
2070 handle_osc(osc); | |
2071 term_state = TSTATE_DATA; | |
2072 break; | |
2073 } | |
2074 | |
2075 osc = osc + c; | |
2076 break; | |
2077 | |
2078 case TSTATE_ESCSPACE: | |
2079 term_state = TSTATE_DATA; | |
2080 | |
2081 switch (c) { | |
2082 case 'F': /* S7C1T, Disable output of 8-bit controls, use 7-bit */ | |
2083 output8bit = false; | |
2084 break; | |
2085 | |
2086 case 'G': /* S8C1T, Enable output of 8-bit control codes*/ | |
2087 output8bit = true; | |
2088 break; | |
2089 | |
2090 default: | |
2091 debug("ESC <space> " + c + " unhandled."); | |
2092 } | |
2093 | |
2094 break; | |
2095 | |
2096 case TSTATE_ESC: | |
2097 term_state = TSTATE_DATA; | |
2098 | |
2099 switch (c) { | |
2100 case ' ': | |
2101 term_state = TSTATE_ESCSPACE; | |
2102 break; | |
2103 | |
2104 case '#': | |
2105 term_state = TSTATE_ESCSQUARE; | |
2106 break; | |
2107 | |
2108 case 'c': | |
2109 /* Hard terminal reset */ | |
2110 reset(); | |
2111 break; | |
2112 | |
2113 case '[': | |
2114 DCEvar = 0; | |
2115 DCEvars[0] = 0; | |
2116 DCEvars[1] = 0; | |
2117 DCEvars[2] = 0; | |
2118 DCEvars[3] = 0; | |
2119 term_state = TSTATE_CSI; | |
2120 break; | |
2121 | |
2122 case ']': | |
2123 osc = ""; | |
2124 term_state = TSTATE_OSC; | |
2125 break; | |
2126 | |
2127 case 'P': | |
2128 dcs = ""; | |
2129 term_state = TSTATE_DCS; | |
2130 break; | |
2131 | |
2132 case 'A': /* CUU */ | |
2133 R--; | |
2134 | |
2135 if (R < 0) R = 0; | |
2136 | |
2137 break; | |
2138 | |
2139 case 'B': /* CUD */ | |
2140 R++; | |
2141 | |
2142 if (R >= rows) R = rows - 1; | |
2143 | |
2144 break; | |
2145 | |
2146 case 'C': | |
2147 C++; | |
2148 | |
2149 if (C >= columns) C = columns - 1; | |
2150 | |
2151 break; | |
2152 | |
2153 case 'I': // RI | |
2154 insertLine(R, 1, SCROLL_DOWN); | |
2155 break; | |
2156 | |
2157 case 'E': /* NEL */ | |
2158 if (R == getBottomMargin() || R == rows - 1) | |
2159 insertLine(R, 1, SCROLL_UP); | |
2160 else | |
2161 R++; | |
2162 | |
2163 C = 0; | |
2164 | |
2165 if (debug > 1) | |
2166 debug("ESC E (at " + R + ")"); | |
2167 | |
2168 break; | |
2169 | |
2170 case 'D': /* IND */ | |
2171 if (R == getBottomMargin() || R == rows - 1) | |
2172 insertLine(R, 1, SCROLL_UP); | |
2173 else | |
2174 R++; | |
2175 | |
2176 if (debug > 1) | |
2177 debug("ESC D (at " + R + " )"); | |
2178 | |
2179 break; | |
2180 | |
2181 case 'J': /* erase to end of screen */ | |
2182 if (R < rows - 1) | |
2183 deleteArea(0, R + 1, columns, rows - R - 1, attributes); | |
2184 | |
2185 if (C < columns - 1) | |
2186 deleteArea(C, R, columns - C, 1, attributes); | |
2187 | |
2188 break; | |
2189 | |
2190 case 'K': | |
2191 if (C < columns - 1) | |
2192 deleteArea(C, R, columns - C, 1, attributes); | |
2193 | |
2194 break; | |
2195 | |
2196 case 'M': // RI | |
2197 debug("ESC M : R is " + R + ", tm is " + getTopMargin() + ", bm is " + getBottomMargin()); | |
2198 | |
2199 if (R > getTopMargin()) { // just go up 1 line. | |
2200 R--; | |
2201 } | |
2202 else { // scroll down | |
2203 insertLine(R, 1, SCROLL_DOWN); | |
2204 } | |
2205 | |
2206 /* else do nothing ; */ | |
2207 if (debug > 2) | |
2208 debug("ESC M "); | |
2209 | |
2210 break; | |
2211 | |
2212 case 'H': | |
2213 if (debug > 1) | |
2214 debug("ESC H at " + C); | |
2215 | |
2216 /* right border probably ...*/ | |
2217 if (C >= columns) | |
2218 C = columns - 1; | |
2219 | |
2220 Tabs[C] = 1; | |
2221 break; | |
2222 | |
2223 case 'N': // SS2 | |
2224 onegl = 2; | |
2225 break; | |
2226 | |
2227 case 'O': // SS3 | |
2228 onegl = 3; | |
2229 break; | |
2230 | |
2231 case '=': | |
2232 | |
2233 /*application keypad*/ | |
2234 if (debug > 0) | |
2235 debug("ESC ="); | |
2236 | |
2237 keypadmode = true; | |
2238 break; | |
2239 | |
2240 case '<': /* vt52 mode off */ | |
2241 vt52mode = false; | |
2242 break; | |
2243 | |
2244 case '>': /*normal keypad*/ | |
2245 if (debug > 0) | |
2246 debug("ESC >"); | |
2247 | |
2248 keypadmode = false; | |
2249 break; | |
2250 | |
2251 case '7': /* DECSC: save cursor, attributes */ | |
2252 Sc = C; | |
2253 Sr = R; | |
2254 Sgl = gl; | |
2255 Sgr = gr; | |
2256 Sa = attributes; | |
2257 Sgx = new char[4]; | |
2258 | |
2259 for (int i = 0; i < 4; i++) Sgx[i] = gx[i]; | |
2260 | |
2261 if (debug > 1) | |
2262 debug("ESC 7"); | |
2263 | |
2264 break; | |
2265 | |
2266 case '8': /* DECRC: restore cursor, attributes */ | |
2267 C = Sc; | |
2268 R = Sr; | |
2269 gl = Sgl; | |
2270 gr = Sgr; | |
2271 | |
2272 if (Sgx != null) | |
2273 for (int i = 0; i < 4; i++) gx[i] = Sgx[i]; | |
2274 | |
2275 attributes = Sa; | |
2276 | |
2277 if (debug > 1) | |
2278 debug("ESC 8"); | |
2279 | |
2280 break; | |
2281 | |
2282 case '(': /* Designate G0 Character set (ISO 2022) */ | |
2283 term_state = TSTATE_SETG0; | |
2284 usedcharsets = true; | |
2285 break; | |
2286 | |
2287 case ')': /* Designate G1 character set (ISO 2022) */ | |
2288 term_state = TSTATE_SETG1; | |
2289 usedcharsets = true; | |
2290 break; | |
2291 | |
2292 case '*': /* Designate G2 Character set (ISO 2022) */ | |
2293 term_state = TSTATE_SETG2; | |
2294 usedcharsets = true; | |
2295 break; | |
2296 | |
2297 case '+': /* Designate G3 Character set (ISO 2022) */ | |
2298 term_state = TSTATE_SETG3; | |
2299 usedcharsets = true; | |
2300 break; | |
2301 | |
2302 case '~': /* Locking Shift 1, right */ | |
2303 gr = 1; | |
2304 usedcharsets = true; | |
2305 break; | |
2306 | |
2307 case 'n': /* Locking Shift 2 */ | |
2308 gl = 2; | |
2309 usedcharsets = true; | |
2310 break; | |
2311 | |
2312 case '}': /* Locking Shift 2, right */ | |
2313 gr = 2; | |
2314 usedcharsets = true; | |
2315 break; | |
2316 | |
2317 case 'o': /* Locking Shift 3 */ | |
2318 gl = 3; | |
2319 usedcharsets = true; | |
2320 break; | |
2321 | |
2322 case '|': /* Locking Shift 3, right */ | |
2323 gr = 3; | |
2324 usedcharsets = true; | |
2325 break; | |
2326 | |
2327 case 'Y': /* vt52 cursor address mode , next chars are x,y */ | |
2328 term_state = TSTATE_VT52Y; | |
2329 break; | |
2330 | |
2331 case '_': | |
2332 term_state = TSTATE_TITLE; | |
2333 break; | |
2334 | |
2335 case '\\': | |
2336 // TODO save title | |
2337 term_state = TSTATE_DATA; | |
2338 break; | |
2339 | |
2340 default: | |
2341 debug("ESC unknown letter: " + c + " (" + ((int) c) + ")"); | |
2342 break; | |
2343 } | |
2344 | |
2345 break; | |
2346 | |
2347 case TSTATE_VT52X: | |
2348 C = c - 37; | |
2349 | |
2350 if (C < 0) | |
2351 C = 0; | |
2352 else if (C >= width) | |
2353 C = width - 1; | |
2354 | |
2355 term_state = TSTATE_VT52Y; | |
2356 break; | |
2357 | |
2358 case TSTATE_VT52Y: | |
2359 R = c - 37; | |
2360 | |
2361 if (R < 0) | |
2362 R = 0; | |
2363 else if (R >= height) | |
2364 R = height - 1; | |
2365 | |
2366 term_state = TSTATE_DATA; | |
2367 break; | |
2368 | |
2369 case TSTATE_SETG0: | |
2370 if (c != '0' && c != 'A' && c != 'B' && c != '<') | |
2371 debug("ESC ( " + c + ": G0 char set? (" + ((int) c) + ")"); | |
2372 else { | |
2373 if (debug > 2) debug("ESC ( : G0 char set (" + c + " " + ((int) c) + ")"); | |
2374 | |
2375 gx[0] = c; | |
2376 } | |
2377 | |
2378 term_state = TSTATE_DATA; | |
2379 break; | |
2380 | |
2381 case TSTATE_SETG1: | |
2382 if (c != '0' && c != 'A' && c != 'B' && c != '<') { | |
2383 debug("ESC ) " + c + " (" + ((int) c) + ") :G1 char set?"); | |
2384 } | |
2385 else { | |
2386 if (debug > 2) debug("ESC ) :G1 char set (" + c + " " + ((int) c) + ")"); | |
2387 | |
2388 gx[1] = c; | |
2389 } | |
2390 | |
2391 term_state = TSTATE_DATA; | |
2392 break; | |
2393 | |
2394 case TSTATE_SETG2: | |
2395 if (c != '0' && c != 'A' && c != 'B' && c != '<') | |
2396 debug("ESC*:G2 char set? (" + ((int) c) + ")"); | |
2397 else { | |
2398 if (debug > 2) debug("ESC*:G2 char set (" + c + " " + ((int) c) + ")"); | |
2399 | |
2400 gx[2] = c; | |
2401 } | |
2402 | |
2403 term_state = TSTATE_DATA; | |
2404 break; | |
2405 | |
2406 case TSTATE_SETG3: | |
2407 if (c != '0' && c != 'A' && c != 'B' && c != '<') | |
2408 debug("ESC+:G3 char set? (" + ((int) c) + ")"); | |
2409 else { | |
2410 if (debug > 2) debug("ESC+:G3 char set (" + c + " " + ((int) c) + ")"); | |
2411 | |
2412 gx[3] = c; | |
2413 } | |
2414 | |
2415 term_state = TSTATE_DATA; | |
2416 break; | |
2417 | |
2418 case TSTATE_ESCSQUARE: | |
2419 switch (c) { | |
2420 case '8': | |
2421 for (int i = 0; i < columns; i++) | |
2422 for (int j = 0; j < rows; j++) | |
2423 putChar(i, j, 'E', 0); | |
2424 | |
2425 break; | |
2426 | |
2427 default: | |
2428 debug("ESC # " + c + " not supported."); | |
2429 break; | |
2430 } | |
2431 | |
2432 term_state = TSTATE_DATA; | |
2433 break; | |
2434 | |
2435 case TSTATE_DCS: | |
2436 if (c == '\\' && dcs.charAt(dcs.length() - 1) == ESC) { | |
2437 handle_dcs(dcs); | |
2438 term_state = TSTATE_DATA; | |
2439 break; | |
2440 } | |
2441 | |
2442 dcs = dcs + c; | |
2443 break; | |
2444 | |
2445 case TSTATE_DCEQ: | |
2446 term_state = TSTATE_DATA; | |
2447 | |
2448 switch (c) { | |
2449 case '0': | |
2450 case '1': | |
2451 case '2': | |
2452 case '3': | |
2453 case '4': | |
2454 case '5': | |
2455 case '6': | |
2456 case '7': | |
2457 case '8': | |
2458 case '9': | |
2459 DCEvars[DCEvar] = DCEvars[DCEvar] * 10 + (c) - 48; | |
2460 term_state = TSTATE_DCEQ; | |
2461 break; | |
2462 | |
2463 case ';': | |
2464 DCEvar++; | |
2465 DCEvars[DCEvar] = 0; | |
2466 term_state = TSTATE_DCEQ; | |
2467 break; | |
2468 | |
2469 case 's': // XTERM_SAVE missing! | |
2470 if (true || debug > 1) | |
2471 debug("ESC [ ? " + DCEvars[0] + " s unimplemented!"); | |
2472 | |
2473 break; | |
2474 | |
2475 case 'r': // XTERM_RESTORE | |
2476 if (true || debug > 1) | |
2477 debug("ESC [ ? " + DCEvars[0] + " r"); | |
2478 | |
2479 /* DEC Mode reset */ | |
2480 for (int i = 0; i <= DCEvar; i++) { | |
2481 switch (DCEvars[i]) { | |
2482 case 3: /* 80 columns*/ | |
2483 setScreenSize(80, height, true); | |
2484 break; | |
2485 | |
2486 case 4: /* scrolling mode, smooth */ | |
2487 break; | |
2488 | |
2489 case 5: /* light background */ | |
2490 break; | |
2491 | |
2492 case 6: /* DECOM (Origin Mode) move inside margins. */ | |
2493 moveoutsidemargins = true; | |
2494 break; | |
2495 | |
2496 case 7: /* DECAWM: Autowrap Mode */ | |
2497 wraparound = false; | |
2498 break; | |
2499 | |
2500 case 12:/* local echo off */ | |
2501 break; | |
2502 | |
2503 case 9: /* X10 mouse */ | |
2504 case 1000: /* xterm style mouse report on */ | |
2505 case 1001: | |
2506 case 1002: | |
2507 case 1003: | |
2508 mouserpt = DCEvars[i]; | |
2509 break; | |
2510 | |
2511 default: | |
2512 debug("ESC [ ? " + DCEvars[0] + " r, unimplemented!"); | |
2513 } | |
2514 } | |
2515 | |
2516 break; | |
2517 | |
2518 case 'h': // DECSET | |
2519 if (debug > 0) | |
2520 debug("ESC [ ? " + DCEvars[0] + " h"); | |
2521 | |
2522 /* DEC Mode set */ | |
2523 for (int i = 0; i <= DCEvar; i++) { | |
2524 switch (DCEvars[i]) { | |
2525 case 1: /* Application cursor keys */ | |
2526 KeyUp[0] = "\u001bOA"; | |
2527 KeyDown[0] = "\u001bOB"; | |
2528 KeyRight[0] = "\u001bOC"; | |
2529 KeyLeft[0] = "\u001bOD"; | |
2530 break; | |
2531 | |
2532 case 2: /* DECANM */ | |
2533 vt52mode = false; | |
2534 break; | |
2535 | |
2536 case 3: /* 132 columns*/ | |
2537 setScreenSize(132, height, true); | |
2538 break; | |
2539 | |
2540 case 6: /* DECOM: move inside margins. */ | |
2541 moveoutsidemargins = false; | |
2542 break; | |
2543 | |
2544 case 7: /* DECAWM: Autowrap Mode */ | |
2545 wraparound = true; | |
2546 break; | |
2547 | |
2548 case 25: /* turn cursor on */ | |
2549 showCursor(true); | |
2550 break; | |
2551 | |
2552 case 9: /* X10 mouse */ | |
2553 case 1000: /* xterm style mouse report on */ | |
2554 case 1001: | |
2555 case 1002: | |
2556 case 1003: | |
2557 mouserpt = DCEvars[i]; | |
2558 break; | |
2559 | |
2560 /* unimplemented stuff, fall through */ | |
2561 /* 4 - scrolling mode, smooth */ | |
2562 /* 5 - light background */ | |
2563 /* 12 - local echo off */ | |
2564 /* 18 - DECPFF - Printer Form Feed Mode -> On */ | |
2565 /* 19 - DECPEX - Printer Extent Mode -> Screen */ | |
2566 default: | |
2567 debug("ESC [ ? " + DCEvars[0] + " h, unsupported."); | |
2568 break; | |
2569 } | |
2570 } | |
2571 | |
2572 break; | |
2573 | |
2574 case 'i': // DEC Printer Control, autoprint, echo screenchars to printer | |
2575 | |
2576 // This is different to CSI i! | |
2577 // Also: "Autoprint prints a final display line only when the | |
2578 // cursor is moved off the line by an autowrap or LF, FF, or | |
2579 // VT (otherwise do not print the line)." | |
2580 switch (DCEvars[0]) { | |
2581 case 1: | |
2582 if (debug > 1) | |
2583 debug("CSI ? 1 i : Print line containing cursor"); | |
2584 | |
2585 break; | |
2586 | |
2587 case 4: | |
2588 if (debug > 1) | |
2589 debug("CSI ? 4 i : Start passthrough printing"); | |
2590 | |
2591 break; | |
2592 | |
2593 case 5: | |
2594 if (debug > 1) | |
2595 debug("CSI ? 4 i : Stop passthrough printing"); | |
2596 | |
2597 break; | |
2598 } | |
2599 | |
2600 break; | |
2601 | |
2602 case 'l': //DECRST | |
2603 | |
2604 /* DEC Mode reset */ | |
2605 if (debug > 0) | |
2606 debug("ESC [ ? " + DCEvars[0] + " l"); | |
2607 | |
2608 for (int i = 0; i <= DCEvar; i++) { | |
2609 switch (DCEvars[i]) { | |
2610 case 1: /* Application cursor keys */ | |
2611 KeyUp[0] = "\u001b[A"; | |
2612 KeyDown[0] = "\u001b[B"; | |
2613 KeyRight[0] = "\u001b[C"; | |
2614 KeyLeft[0] = "\u001b[D"; | |
2615 break; | |
2616 | |
2617 case 2: /* DECANM */ | |
2618 vt52mode = true; | |
2619 break; | |
2620 | |
2621 case 3: /* 80 columns*/ | |
2622 setScreenSize(80, height, true); | |
2623 break; | |
2624 | |
2625 case 6: /* DECOM: move outside margins. */ | |
2626 moveoutsidemargins = true; | |
2627 break; | |
2628 | |
2629 case 7: /* DECAWM: Autowrap Mode OFF */ | |
2630 wraparound = false; | |
2631 break; | |
2632 | |
2633 case 25: /* turn cursor off */ | |
2634 showCursor(false); | |
2635 break; | |
2636 | |
2637 /* Unimplemented stuff: */ | |
2638 /* 4 - scrolling mode, jump */ | |
2639 /* 5 - dark background */ | |
2640 /* 7 - DECAWM - no wrap around mode */ | |
2641 /* 12 - local echo on */ | |
2642 /* 18 - DECPFF - Printer Form Feed Mode -> Off*/ | |
2643 /* 19 - DECPEX - Printer Extent Mode -> Scrolling Region */ | |
2644 case 9: /* X10 mouse */ | |
2645 case 1000: /* xterm style mouse report OFF */ | |
2646 case 1001: | |
2647 case 1002: | |
2648 case 1003: | |
2649 mouserpt = 0; | |
2650 break; | |
2651 | |
2652 default: | |
2653 debug("ESC [ ? " + DCEvars[0] + " l, unsupported."); | |
2654 break; | |
2655 } | |
2656 } | |
2657 | |
2658 break; | |
2659 | |
2660 case 'n': | |
2661 if (debug > 0) | |
2662 debug("ESC [ ? " + DCEvars[0] + " n"); | |
2663 | |
2664 switch (DCEvars[0]) { | |
2665 case 15: | |
2666 /* printer? no printer. */ | |
2667 write((ESC) + "[?13n", false); | |
2668 debug("ESC[5n"); | |
2669 break; | |
2670 | |
2671 default: | |
2672 debug("ESC [ ? " + DCEvars[0] + " n, unsupported."); | |
2673 break; | |
2674 } | |
2675 | |
2676 break; | |
2677 | |
2678 default: | |
2679 debug("ESC [ ? " + DCEvars[0] + " " + c + ", unsupported."); | |
2680 break; | |
2681 } | |
2682 | |
2683 break; | |
2684 | |
2685 case TSTATE_CSI_EX: | |
2686 term_state = TSTATE_DATA; | |
2687 | |
2688 switch (c) { | |
2689 case ESC: | |
2690 term_state = TSTATE_ESC; | |
2691 break; | |
2692 | |
2693 default: | |
2694 debug("Unknown character ESC[! character is " + (int) c); | |
2695 break; | |
2696 } | |
2697 | |
2698 break; | |
2699 | |
2700 case TSTATE_CSI_TICKS: | |
2701 term_state = TSTATE_DATA; | |
2702 | |
2703 switch (c) { | |
2704 case 'p': | |
2705 debug("Conformance level: " + DCEvars[0] + " (unsupported)," + DCEvars[1]); | |
2706 | |
2707 if (DCEvars[0] == 61) { | |
2708 output8bit = false; | |
2709 break; | |
2710 } | |
2711 | |
2712 if (DCEvars[1] == 1) { | |
2713 output8bit = false; | |
2714 } | |
2715 else { | |
2716 output8bit = true; /* 0 or 2 */ | |
2717 } | |
2718 | |
2719 break; | |
2720 | |
2721 default: | |
2722 debug("Unknown ESC [... \"" + c); | |
2723 break; | |
2724 } | |
2725 | |
2726 break; | |
2727 | |
2728 case TSTATE_CSI_EQUAL: | |
2729 term_state = TSTATE_DATA; | |
2730 | |
2731 switch (c) { | |
2732 case '0': | |
2733 case '1': | |
2734 case '2': | |
2735 case '3': | |
2736 case '4': | |
2737 case '5': | |
2738 case '6': | |
2739 case '7': | |
2740 case '8': | |
2741 case '9': | |
2742 DCEvars[DCEvar] = DCEvars[DCEvar] * 10 + (c) - 48; | |
2743 term_state = TSTATE_CSI_EQUAL; | |
2744 break; | |
2745 | |
2746 case ';': | |
2747 DCEvar++; | |
2748 DCEvars[DCEvar] = 0; | |
2749 term_state = TSTATE_CSI_EQUAL; | |
2750 break; | |
2751 | |
2752 case 'F': { /* SCO ANSI foreground */ | |
2753 int newcolor; | |
2754 debug("ESC [ = " + DCEvars[0] + " F"); | |
2755 attributes &= ~COLOR_FG; | |
2756 newcolor = ((DCEvars[0] & 1) << 2) | | |
2757 (DCEvars[0] & 2) | | |
2758 ((DCEvars[0] & 4) >> 2) ; | |
2759 attributes |= (newcolor + 1) << COLOR_FG_SHIFT; | |
2760 break; | |
2761 } | |
2762 | |
2763 case 'G': { /* SCO ANSI background */ | |
2764 int newcolor; | |
2765 debug("ESC [ = " + DCEvars[0] + " G"); | |
2766 attributes &= ~COLOR_BG; | |
2767 newcolor = ((DCEvars[0] & 1) << 2) | | |
2768 (DCEvars[0] & 2) | | |
2769 ((DCEvars[0] & 4) >> 2) ; | |
2770 attributes |= (newcolor + 1) << COLOR_BG_SHIFT; | |
2771 break; | |
2772 } | |
2773 | |
2774 default: | |
2775 debugStr.append("Unknown ESC [ = "); | |
2776 | |
2777 for (int i = 0; i <= DCEvar; i++) { | |
2778 debugStr.append(DCEvars[i]) | |
2779 .append(','); | |
2780 } | |
2781 | |
2782 debugStr.append(c); | |
2783 debug(debugStr.toString()); | |
2784 debugStr.setLength(0); | |
2785 break; | |
2786 } | |
2787 | |
2788 break; | |
2789 | |
2790 case TSTATE_CSI_DOLLAR: | |
2791 term_state = TSTATE_DATA; | |
2792 | |
2793 switch (c) { | |
2794 case '}': | |
2795 debug("Active Status Display now " + DCEvars[0]); | |
2796 statusmode = DCEvars[0]; | |
2797 break; | |
2798 | |
2799 /* bad documentation? | |
2800 case '-': | |
2801 debug("Set Status Display now "+DCEvars[0]); | |
2802 break; | |
2803 */ | |
2804 case '~': | |
2805 debug("Status Line mode now " + DCEvars[0]); | |
2806 break; | |
2807 | |
2808 default: | |
2809 debug("UNKNOWN Status Display code " + c + ", with Pn=" + DCEvars[0]); | |
2810 break; | |
2811 } | |
2812 | |
2813 break; | |
2814 | |
2815 case TSTATE_CSI: | |
2816 term_state = TSTATE_DATA; | |
2817 | |
2818 switch (c) { | |
2819 case '"': | |
2820 term_state = TSTATE_CSI_TICKS; | |
2821 break; | |
2822 | |
2823 case '$': | |
2824 term_state = TSTATE_CSI_DOLLAR; | |
2825 break; | |
2826 | |
2827 case '=': | |
2828 term_state = TSTATE_CSI_EQUAL; | |
2829 break; | |
2830 | |
2831 case '!': | |
2832 term_state = TSTATE_CSI_EX; | |
2833 break; | |
2834 | |
2835 case '?': | |
2836 DCEvar = 0; | |
2837 DCEvars[0] = 0; | |
2838 term_state = TSTATE_DCEQ; | |
2839 break; | |
2840 | |
2841 case '0': | |
2842 case '1': | |
2843 case '2': | |
2844 case '3': | |
2845 case '4': | |
2846 case '5': | |
2847 case '6': | |
2848 case '7': | |
2849 case '8': | |
2850 case '9': | |
2851 DCEvars[DCEvar] = DCEvars[DCEvar] * 10 + (c) - 48; | |
2852 term_state = TSTATE_CSI; | |
2853 break; | |
2854 | |
2855 case ';': | |
2856 DCEvar++; | |
2857 DCEvars[DCEvar] = 0; | |
2858 term_state = TSTATE_CSI; | |
2859 break; | |
2860 | |
2861 case 'c':/* send primary device attributes */ | |
2862 /* send (ESC[?61c) */ | |
2863 String subcode = ""; | |
2864 | |
2865 if (terminalID.equals("vt320")) subcode = "63;"; | |
2866 | |
2867 if (terminalID.equals("vt220")) subcode = "62;"; | |
2868 | |
2869 if (terminalID.equals("vt100")) subcode = "61;"; | |
2870 | |
2871 write((ESC) + "[?" + subcode + "1;2c", false); | |
2872 | |
2873 if (debug > 1) | |
2874 debug("ESC [ " + DCEvars[0] + " c"); | |
2875 | |
2876 break; | |
2877 | |
2878 case 'q': | |
2879 if (debug > 1) | |
2880 debug("ESC [ " + DCEvars[0] + " q"); | |
2881 | |
2882 break; | |
2883 | |
2884 case 'g': | |
2885 | |
2886 /* used for tabsets */ | |
2887 switch (DCEvars[0]) { | |
2888 case 3:/* clear them */ | |
2889 Tabs = new byte[width]; | |
2890 break; | |
2891 | |
2892 case 0: | |
2893 Tabs[C] = 0; | |
2894 break; | |
2895 } | |
2896 | |
2897 if (debug > 1) | |
2898 debug("ESC [ " + DCEvars[0] + " g"); | |
2899 | |
2900 break; | |
2901 | |
2902 case 'h': | |
2903 switch (DCEvars[0]) { | |
2904 case 4: | |
2905 insertmode = 1; | |
2906 break; | |
2907 | |
2908 case 20: | |
2909 debug("Setting CRLF to TRUE"); | |
2910 sendcrlf = true; | |
2911 break; | |
2912 | |
2913 default: | |
2914 debug("unsupported: ESC [ " + DCEvars[0] + " h"); | |
2915 break; | |
2916 } | |
2917 | |
2918 if (debug > 1) | |
2919 debug("ESC [ " + DCEvars[0] + " h"); | |
2920 | |
2921 break; | |
2922 | |
2923 case 'i': // Printer Controller mode. | |
2924 | |
2925 // "Transparent printing sends all output, except the CSI 4 i | |
2926 // termination string, to the printer and not the screen, | |
2927 // uses an 8-bit channel if no parity so NUL and DEL will be | |
2928 // seen by the printer and by the termination recognizer code, | |
2929 // and all translation and character set selections are | |
2930 // bypassed." | |
2931 switch (DCEvars[0]) { | |
2932 case 0: | |
2933 if (debug > 1) | |
2934 debug("CSI 0 i: Print Screen, not implemented."); | |
2935 | |
2936 break; | |
2937 | |
2938 case 4: | |
2939 if (debug > 1) | |
2940 debug("CSI 4 i: Enable Transparent Printing, not implemented."); | |
2941 | |
2942 break; | |
2943 | |
2944 case 5: | |
2945 if (debug > 1) | |
2946 debug("CSI 4/5 i: Disable Transparent Printing, not implemented."); | |
2947 | |
2948 break; | |
2949 | |
2950 default: | |
2951 debug("ESC [ " + DCEvars[0] + " i, unimplemented!"); | |
2952 } | |
2953 | |
2954 break; | |
2955 | |
2956 case 'l': | |
2957 switch (DCEvars[0]) { | |
2958 case 4: | |
2959 insertmode = 0; | |
2960 break; | |
2961 | |
2962 case 20: | |
2963 debug("Setting CRLF to FALSE"); | |
2964 sendcrlf = false; | |
2965 break; | |
2966 | |
2967 default: | |
2968 debug("ESC [ " + DCEvars[0] + " l, unimplemented!"); | |
2969 break; | |
2970 } | |
2971 | |
2972 break; | |
2973 | |
2974 case 'A': { // CUU | |
2975 int limit; | |
2976 | |
2977 /* FIXME: xterm only cares about 0 and topmargin */ | |
2978 if (R >= getTopMargin()) { | |
2979 limit = getTopMargin(); | |
2980 } | |
2981 else | |
2982 limit = 0; | |
2983 | |
2984 if (DCEvars[0] == 0) | |
2985 R--; | |
2986 else | |
2987 R -= DCEvars[0]; | |
2988 | |
2989 if (R < limit) | |
2990 R = limit; | |
2991 | |
2992 if (debug > 1) | |
2993 debug("ESC [ " + DCEvars[0] + " A"); | |
2994 | |
2995 break; | |
2996 } | |
2997 | |
2998 case 'B': // CUD | |
2999 /* cursor down n (1) times */ | |
3000 { | |
3001 int limit; | |
3002 | |
3003 if (R <= getBottomMargin()) { | |
3004 limit = getBottomMargin(); | |
3005 } | |
3006 else | |
3007 limit = rows - 1; | |
3008 | |
3009 if (DCEvars[0] == 0) | |
3010 R++; | |
3011 else | |
3012 R += DCEvars[0]; | |
3013 | |
3014 if (R > limit) | |
3015 R = limit; | |
3016 else { | |
3017 if (debug > 2) debug("Not limited."); | |
3018 } | |
3019 | |
3020 if (debug > 2) debug("to: " + R); | |
3021 | |
3022 if (debug > 1) | |
3023 debug("ESC [ " + DCEvars[0] + " B (at C=" + C + ")"); | |
3024 | |
3025 break; | |
3026 } | |
3027 | |
3028 case 'C': | |
3029 if (DCEvars[0] == 0) | |
3030 DCEvars[0] = 1; | |
3031 | |
3032 while (DCEvars[0]-- > 0) { | |
3033 C++; | |
3034 } | |
3035 | |
3036 if (C >= columns) | |
3037 C = columns - 1; | |
3038 | |
3039 if (debug > 1) | |
3040 debug("ESC [ " + DCEvars[0] + " C"); | |
3041 | |
3042 break; | |
3043 | |
3044 case 'd': // CVA | |
3045 R = DCEvars[0] - 1; | |
3046 | |
3047 if (R < 0) | |
3048 R = 0; | |
3049 else if (R >= height) | |
3050 R = height - 1; | |
3051 | |
3052 if (debug > 1) | |
3053 debug("ESC [ " + DCEvars[0] + " d"); | |
3054 | |
3055 break; | |
3056 | |
3057 case 'D': | |
3058 if (DCEvars[0] == 0) | |
3059 DCEvars[0] = 1; | |
3060 | |
3061 while (DCEvars[0]-- > 0) { | |
3062 C--; | |
3063 } | |
3064 | |
3065 if (C < 0) C = 0; | |
3066 | |
3067 if (debug > 1) | |
3068 debug("ESC [ " + DCEvars[0] + " D"); | |
3069 | |
3070 break; | |
3071 | |
3072 case 'r': // DECSTBM | |
3073 if (DCEvar > 0) { // Ray: Any argument is optional | |
3074 R = DCEvars[1] - 1; | |
3075 | |
3076 if (R < 0) | |
3077 R = rows - 1; | |
3078 else if (R >= rows) { | |
3079 R = rows - 1; | |
3080 } | |
3081 } | |
3082 else | |
3083 R = rows - 1; | |
3084 | |
3085 int bot = R; | |
3086 | |
3087 if (R >= DCEvars[0]) { | |
3088 R = DCEvars[0] - 1; | |
3089 | |
3090 if (R < 0) | |
3091 R = 0; | |
3092 } | |
3093 | |
3094 setMargins(R, bot); | |
3095 _SetCursor(0, 0); | |
3096 | |
3097 if (debug > 1) | |
3098 debug("ESC [" + DCEvars[0] + " ; " + DCEvars[1] + " r"); | |
3099 | |
3100 break; | |
3101 | |
3102 case 'G': /* CUP / cursor absolute column */ | |
3103 C = DCEvars[0]; | |
3104 | |
3105 if (C < 0) | |
3106 C = 0; | |
3107 else if (C >= width) | |
3108 C = width - 1; | |
3109 | |
3110 if (debug > 1) debug("ESC [ " + DCEvars[0] + " G"); | |
3111 | |
3112 break; | |
3113 | |
3114 case 'H': /* CUP / cursor position */ | |
3115 /* gets 2 arguments */ | |
3116 _SetCursor(DCEvars[0] - 1, DCEvars[1] - 1); | |
3117 | |
3118 if (debug > 2) { | |
3119 debug("ESC [ " + DCEvars[0] + ";" + DCEvars[1] + " H, moveoutsidemargins " + moveoutsidemargins); | |
3120 debug(" -> R now " + R + ", C now " + C); | |
3121 } | |
3122 | |
3123 break; | |
3124 | |
3125 case 'f': /* move cursor 2 */ | |
3126 /* gets 2 arguments */ | |
3127 R = DCEvars[0] - 1; | |
3128 C = DCEvars[1] - 1; | |
3129 | |
3130 if (C < 0) | |
3131 C = 0; | |
3132 else if (C >= width) | |
3133 C = width - 1; | |
3134 | |
3135 if (R < 0) | |
3136 R = 0; | |
3137 else if (R >= height) | |
3138 R = height - 1; | |
3139 | |
3140 if (debug > 2) | |
3141 debug("ESC [ " + DCEvars[0] + ";" + DCEvars[1] + " f"); | |
3142 | |
3143 break; | |
3144 | |
3145 case 'S': /* ind aka 'scroll forward' */ | |
3146 if (DCEvars[0] == 0) | |
3147 insertLine(getBottomMargin(), SCROLL_UP); | |
3148 else | |
3149 insertLine(getBottomMargin(), DCEvars[0], SCROLL_UP); | |
3150 | |
3151 break; | |
3152 | |
3153 case 'L': | |
3154 | |
3155 /* insert n lines */ | |
3156 if (DCEvars[0] == 0) | |
3157 insertLine(R, SCROLL_DOWN); | |
3158 else | |
3159 insertLine(R, DCEvars[0], SCROLL_DOWN); | |
3160 | |
3161 if (debug > 1) | |
3162 debug("ESC [ " + DCEvars[0] + "" + (c) + " (at R " + R + ")"); | |
3163 | |
3164 break; | |
3165 | |
3166 case 'T': /* 'ri' aka scroll backward */ | |
3167 if (DCEvars[0] == 0) | |
3168 insertLine(getTopMargin(), SCROLL_DOWN); | |
3169 else | |
3170 insertLine(getTopMargin(), DCEvars[0], SCROLL_DOWN); | |
3171 | |
3172 break; | |
3173 | |
3174 case 'M': | |
3175 if (debug > 1) | |
3176 debug("ESC [ " + DCEvars[0] + "" + (c) + " at R=" + R); | |
3177 | |
3178 if (DCEvars[0] == 0) | |
3179 deleteLine(R); | |
3180 else | |
3181 for (int i = 0; i < DCEvars[0]; i++) | |
3182 deleteLine(R); | |
3183 | |
3184 break; | |
3185 | |
3186 case 'K': | |
3187 if (debug > 1) | |
3188 debug("ESC [ " + DCEvars[0] + " K"); | |
3189 | |
3190 /* clear in line */ | |
3191 switch (DCEvars[0]) { | |
3192 case 6: /* 97801 uses ESC[6K for delete to end of line */ | |
3193 case 0:/*clear to right*/ | |
3194 if (C < columns - 1) | |
3195 deleteArea(C, R, columns - C, 1, attributes); | |
3196 | |
3197 break; | |
3198 | |
3199 case 1:/*clear to the left, including this */ | |
3200 if (C > 0) | |
3201 deleteArea(0, R, C + 1, 1, attributes); | |
3202 | |
3203 break; | |
3204 | |
3205 case 2:/*clear whole line */ | |
3206 deleteArea(0, R, columns, 1, attributes); | |
3207 break; | |
3208 } | |
3209 | |
3210 break; | |
3211 | |
3212 case 'J': | |
3213 | |
3214 /* clear below current line */ | |
3215 switch (DCEvars[0]) { | |
3216 case 0: | |
3217 if (R < rows - 1) | |
3218 deleteArea(0, R + 1, columns, rows - R - 1, attributes); | |
3219 | |
3220 if (C < columns - 1) | |
3221 deleteArea(C, R, columns - C, 1, attributes); | |
3222 | |
3223 break; | |
3224 | |
3225 case 1: | |
3226 if (R > 0) | |
3227 deleteArea(0, 0, columns, R, attributes); | |
3228 | |
3229 if (C > 0) | |
3230 deleteArea(0, R, C + 1, 1, attributes); // include up to and including current | |
3231 | |
3232 break; | |
3233 | |
3234 case 2: | |
3235 deleteArea(0, 0, columns, rows, attributes); | |
3236 break; | |
3237 } | |
3238 | |
3239 if (debug > 1) | |
3240 debug("ESC [ " + DCEvars[0] + " J"); | |
3241 | |
3242 break; | |
3243 | |
3244 case '@': | |
3245 if (DCEvars[0] == 0) DCEvars[0] = 1; | |
3246 | |
3247 if (debug > 1) | |
3248 debug("ESC [ " + DCEvars[0] + " @"); | |
3249 | |
3250 for (int i = 0; i < DCEvars[0]; i++) | |
3251 insertChar(C, R, ' ', attributes); | |
3252 | |
3253 break; | |
3254 | |
3255 case 'X': { | |
3256 int toerase = DCEvars[0]; | |
3257 | |
3258 if (debug > 1) | |
3259 debug("ESC [ " + DCEvars[0] + " X, C=" + C + ",R=" + R); | |
3260 | |
3261 if (toerase == 0) | |
3262 toerase = 1; | |
3263 | |
3264 if (toerase + C > columns) | |
3265 toerase = columns - C; | |
3266 | |
3267 deleteArea(C, R, toerase, 1, attributes); | |
3268 // does not change cursor position | |
3269 break; | |
3270 } | |
3271 | |
3272 case 'P': | |
3273 if (debug > 1) | |
3274 debug("ESC [ " + DCEvars[0] + " P, C=" + C + ",R=" + R); | |
3275 | |
3276 if (DCEvars[0] == 0) DCEvars[0] = 1; | |
3277 | |
3278 for (int i = 0; i < DCEvars[0]; i++) | |
3279 deleteChar(C, R); | |
3280 | |
3281 break; | |
3282 | |
3283 case 'n': | |
3284 switch (DCEvars[0]) { | |
3285 case 5: /* malfunction? No malfunction. */ | |
3286 writeSpecial((ESC) + "[0n"); | |
3287 | |
3288 if (debug > 1) | |
3289 debug("ESC[5n"); | |
3290 | |
3291 break; | |
3292 | |
3293 case 6: | |
3294 // DO NOT offset R and C by 1! (checked against /usr/X11R6/bin/resize | |
3295 // FIXME check again. | |
3296 // FIXME: but vttest thinks different??? | |
3297 writeSpecial((ESC) + "[" + R + ";" + C + "R"); | |
3298 | |
3299 if (debug > 1) | |
3300 debug("ESC[6n"); | |
3301 | |
3302 break; | |
3303 | |
3304 default: | |
3305 if (debug > 0) | |
3306 debug("ESC [ " + DCEvars[0] + " n??"); | |
3307 | |
3308 break; | |
3309 } | |
3310 | |
3311 break; | |
3312 | |
3313 case 's': /* DECSC - save cursor */ | |
3314 Sc = C; | |
3315 Sr = R; | |
3316 Sa = attributes; | |
3317 | |
3318 if (debug > 3) | |
3319 debug("ESC[s"); | |
3320 | |
3321 break; | |
3322 | |
3323 case 'u': /* DECRC - restore cursor */ | |
3324 C = Sc; | |
3325 R = Sr; | |
3326 attributes = Sa; | |
3327 | |
3328 if (debug > 3) | |
3329 debug("ESC[u"); | |
3330 | |
3331 break; | |
3332 | |
3333 case 'm': /* attributes as color, bold , blink,*/ | |
3334 if (debug > 3) | |
3335 debug("ESC [ "); | |
3336 | |
3337 if (DCEvar == 0 && DCEvars[0] == 0) | |
3338 attributes = 0; | |
3339 | |
3340 for (int i = 0; i <= DCEvar; i++) { | |
3341 switch (DCEvars[i]) { | |
3342 case 0: | |
3343 if (DCEvar > 0) { | |
3344 if (terminalID.equals("scoansi")) { | |
3345 attributes &= COLOR; /* Keeps color. Strange but true. */ | |
3346 } | |
3347 else { | |
3348 attributes = 0; | |
3349 } | |
3350 } | |
3351 | |
3352 break; | |
3353 | |
3354 case 1: | |
3355 attributes |= BOLD; | |
3356 attributes &= ~LOW; | |
3357 break; | |
3358 | |
3359 case 2: | |
3360 | |
3361 /* SCO color hack mode */ | |
3362 if (terminalID.equals("scoansi") && ((DCEvar - i) >= 2)) { | |
3363 int ncolor; | |
3364 attributes &= ~(COLOR | BOLD); | |
3365 ncolor = DCEvars[i + 1]; | |
3366 | |
3367 if ((ncolor & 8) == 8) | |
3368 attributes |= BOLD; | |
3369 | |
3370 ncolor = ((ncolor & 1) << 2) | (ncolor & 2) | ((ncolor & 4) >> 2); | |
3371 attributes |= ((ncolor) + 1) << COLOR_FG_SHIFT; | |
3372 ncolor = DCEvars[i + 2]; | |
3373 ncolor = ((ncolor & 1) << 2) | (ncolor & 2) | ((ncolor & 4) >> 2); | |
3374 attributes |= ((ncolor) + 1) << COLOR_BG_SHIFT; | |
3375 i += 2; | |
3376 } | |
3377 else { | |
3378 attributes |= LOW; | |
3379 } | |
3380 | |
3381 break; | |
3382 | |
3383 case 3: /* italics */ | |
3384 attributes |= INVERT; | |
3385 break; | |
3386 | |
3387 case 4: | |
3388 attributes |= UNDERLINE; | |
3389 break; | |
3390 | |
3391 case 7: | |
3392 attributes |= INVERT; | |
3393 break; | |
3394 | |
3395 case 8: | |
3396 attributes |= INVISIBLE; | |
3397 break; | |
3398 | |
3399 case 5: /* blink on */ | |
3400 break; | |
3401 | |
3402 /* 10 - ANSI X3.64-1979, select primary font, don't display control | |
3403 * chars, don't set bit 8 on output */ | |
3404 case 10: | |
3405 gl = 0; | |
3406 usedcharsets = true; | |
3407 break; | |
3408 | |
3409 /* 11 - ANSI X3.64-1979, select second alt. font, display control | |
3410 * chars, set bit 8 on output */ | |
3411 case 11: /* SMACS , as */ | |
3412 case 12: | |
3413 gl = 1; | |
3414 usedcharsets = true; | |
3415 break; | |
3416 | |
3417 case 21: /* normal intensity */ | |
3418 attributes &= ~(LOW | BOLD); | |
3419 break; | |
3420 | |
3421 case 23: /* italics off */ | |
3422 attributes &= ~INVERT; | |
3423 break; | |
3424 | |
3425 case 25: /* blinking off */ | |
3426 break; | |
3427 | |
3428 case 27: | |
3429 attributes &= ~INVERT; | |
3430 break; | |
3431 | |
3432 case 28: | |
3433 attributes &= ~INVISIBLE; | |
3434 break; | |
3435 | |
3436 case 24: | |
3437 attributes &= ~UNDERLINE; | |
3438 break; | |
3439 | |
3440 case 22: | |
3441 attributes &= ~BOLD; | |
3442 break; | |
3443 | |
3444 case 30: | |
3445 case 31: | |
3446 case 32: | |
3447 case 33: | |
3448 case 34: | |
3449 case 35: | |
3450 case 36: | |
3451 case 37: | |
3452 attributes &= ~COLOR_FG; | |
3453 attributes |= ((DCEvars[i] - 30) + 1) << COLOR_FG_SHIFT; | |
3454 break; | |
3455 | |
3456 case 38: | |
3457 if (DCEvars[i + 1] == 5) { | |
3458 attributes &= ~COLOR_FG; | |
3459 attributes |= ((DCEvars[i + 2]) + 1) << COLOR_FG_SHIFT; | |
3460 i += 2; | |
3461 } | |
3462 | |
3463 break; | |
3464 | |
3465 case 39: | |
3466 attributes &= ~COLOR_FG; | |
3467 break; | |
3468 | |
3469 case 40: | |
3470 case 41: | |
3471 case 42: | |
3472 case 43: | |
3473 case 44: | |
3474 case 45: | |
3475 case 46: | |
3476 case 47: | |
3477 attributes &= ~COLOR_BG; | |
3478 attributes |= ((DCEvars[i] - 40) + 1) << COLOR_BG_SHIFT; | |
3479 break; | |
3480 | |
3481 case 48: | |
3482 if (DCEvars[i + 1] == 5) { | |
3483 attributes &= ~COLOR_BG; | |
3484 attributes |= (DCEvars[i + 2] + 1) << COLOR_BG_SHIFT; | |
3485 i += 2; | |
3486 } | |
3487 | |
3488 break; | |
3489 | |
3490 case 49: | |
3491 attributes &= ~COLOR_BG; | |
3492 break; | |
3493 | |
3494 case 90: | |
3495 case 91: | |
3496 case 92: | |
3497 case 93: | |
3498 case 94: | |
3499 case 95: | |
3500 case 96: | |
3501 case 97: | |
3502 attributes &= ~COLOR_FG; | |
3503 attributes |= ((DCEvars[i] - 82) + 1) << COLOR_FG_SHIFT; | |
3504 break; | |
3505 | |
3506 case 100: | |
3507 case 101: | |
3508 case 102: | |
3509 case 103: | |
3510 case 104: | |
3511 case 105: | |
3512 case 106: | |
3513 case 107: | |
3514 attributes &= ~COLOR_BG; | |
3515 attributes |= ((DCEvars[i] - 92) + 1) << COLOR_BG_SHIFT; | |
3516 break; | |
3517 | |
3518 default: | |
3519 debugStr.append("ESC [ ") | |
3520 .append(DCEvars[i]) | |
3521 .append(" m unknown..."); | |
3522 debug(debugStr.toString()); | |
3523 debugStr.setLength(0); | |
3524 break; | |
3525 } | |
3526 | |
3527 if (debug > 3) { | |
3528 debugStr.append(DCEvars[i]) | |
3529 .append(';'); | |
3530 debug(debugStr.toString()); | |
3531 debugStr.setLength(0); | |
3532 } | |
3533 } | |
3534 | |
3535 if (debug > 3) { | |
3536 debugStr.append(" (attributes = ") | |
3537 .append(attributes) | |
3538 .append(")m"); | |
3539 debug(debugStr.toString()); | |
3540 debugStr.setLength(0); | |
3541 } | |
3542 | |
3543 break; | |
3544 | |
3545 default: | |
3546 debugStr.append("ESC [ unknown letter: ") | |
3547 .append(c) | |
3548 .append(" (") | |
3549 .append((int)c) | |
3550 .append(')'); | |
3551 debug(debugStr.toString()); | |
3552 debugStr.setLength(0); | |
3553 break; | |
3554 } | |
3555 | |
3556 break; | |
3557 | |
3558 case TSTATE_TITLE: | |
3559 switch (c) { | |
3560 case ESC: | |
3561 term_state = TSTATE_ESC; | |
3562 break; | |
3563 | |
3564 default: | |
3565 // TODO save title | |
3566 break; | |
3567 } | |
3568 | |
3569 break; | |
3570 | |
3571 default: | |
3572 term_state = TSTATE_DATA; | |
3573 break; | |
3574 } | |
3575 | |
3576 setCursorPosition(C, R); | |
3577 } | |
3578 | |
3579 /* hard reset the terminal */ | |
3580 public void reset() { | |
3581 gx[0] = 'B'; | |
3582 gx[1] = 'B'; | |
3583 gx[2] = 'B'; | |
3584 gx[3] = 'B'; | |
3585 gl = 0; // default GL to G0 | |
3586 gr = 2; // default GR to G2 | |
3587 onegl = -1; // Single shift override | |
3588 /* reset tabs */ | |
3589 int nw = width; | |
3590 | |
3591 if (nw < 132) nw = 132; | |
3592 | |
3593 Tabs = new byte[nw]; | |
3594 | |
3595 for (int i = 0; i < nw; i += 8) { | |
3596 Tabs[i] = 1; | |
3597 } | |
3598 | |
3599 deleteArea(0, 0, width, height, attributes); | |
3600 setMargins(0, height); | |
3601 C = R = 0; | |
3602 _SetCursor(0, 0); | |
3603 | |
3604 if (display != null) | |
3605 display.resetColors(); | |
3606 | |
3607 showCursor(true); | |
3608 /*FIXME:*/ | |
3609 term_state = TSTATE_DATA; | |
3610 } | |
3611 } |