commit - 86975f1ac4210c8398fab0752cc8aad0ba17f8f8
commit + fce97282e11e5ec4593910e87f40ad2ab0493e4b
blob - fea013ef4c4db5d60a71bfe5c8fbe051a0069d56
blob + 01c92cf4ece205767afc1e38df19ab966149f5a7
--- de/mud/terminal/vt320.java
+++ de/mud/terminal/vt320.java
/* This file is part of "The Java Telnet Application".
*
- * (c) Matthias L. Jugel, Marcus Mei\u00dfner 1996-2002. All Rights Reserved.
+ * (c) Matthias L. Jugel, Marcus Mei\u00dfner 1996-2004. All Rights Reserved.
*
* Please visit http://javatelnet.org/ for updates and contact.
*
FunctionKey[15] = "\u001b[a"; FunctionKey[16] = "\u001b[b";
FunctionKey[17] = "\u001b[c"; FunctionKey[18] = "\u001b[d";
FunctionKey[19] = "\u001b[e"; FunctionKey[20] = "\u001b[f";
+ PrevScn[0] = PrevScn[1] = PrevScn[2] = PrevScn[3] = "\u001b[I";
+ NextScn[0] = NextScn[1] = NextScn[2] = NextScn[3] = "\u001b[G";
// more theoretically.
}
}
{
int newcolor;
- System.out.print("ESC [ = "+DCEvars[0]+" F");
+ System.out.println("ESC [ = "+DCEvars[0]+" F");
attributes &= ~COLOR_FG;
newcolor = ((DCEvars[0] & 1) << 2) |
{
int newcolor;
- System.out.print("ESC [ = "+DCEvars[0]+" G");
+ System.out.println("ESC [ = "+DCEvars[0]+" G");
attributes &= ~COLOR_BG;
newcolor = ((DCEvars[0] & 1) << 2) |
default:
System.out.print("Unknown ESC [ = ");
- for (int i=0;i<DCEvar;i++)
+ for (int i=0;i<=DCEvar;i++)
System.out.print(DCEvars[i]+",");
System.out.println("" + c);
break;