This repository was archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVT100Windows.c
346 lines (297 loc) · 10.1 KB
/
VT100Windows.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/* http://www.gnu.org/copyleft/gpl.html */
// Code by gynvael.coldwind//vx
// !!!Use at your own risk!!!
#include <windows.h>
#include <stdio.h>
BOOL WINAPI MyWriteConsoleW(
HANDLE hConsoleOutput,
const VOID* lpBuffer,
DWORD nNumberOfCharsToWrite,
LPDWORD lpNumberOfCharsWritten,
LPVOID lpReserved)
{
DWORD i;
const WORD *p = (const WORD*)lpBuffer;
DWORD from = 0;
BOOL SuspendOutput = FALSE;
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
for(i = 0; i < nNumberOfCharsToWrite; i++) {
if(p[i] == 27 && i + 2 < nNumberOfCharsToWrite && p[i+1] == '[') {
// Some Ansi Escape Code was detected...
// First, let's check if this is a valid opcode...
// It it is, then there should be an ansi opcode char after 0-7 chars
//
// Supported ansi opcodes:
// m - color
// H - gotoyx
// f - gotoyx
// A - up # lines
// B - down
// C - right
// D - left
// s - save for recall
// u - return to saved
// J - cls (2J)
// K - clear to end of line
//
// Gynvael's ansi extensions:
// X - push current color on stack
// x - pop color from stack
// Y - save current color at index
// y - retrive color from index
// t - start of title
// T - end of title
DWORD Start_i = i;
DWORD j;
BOOL SupportedOpcodeFound = FALSE;
WORD OpcodeFound = 0;
for(j = i + 2; j < nNumberOfCharsToWrite && j < i + 2 + 8; j++) {
switch(p[j]) {
case 'm':
case 'H':
case 'f':
case 'A':
case 'B':
case 'C':
case 'D':
case 's':
case 'u':
case 'J':
case 'K':
case 'x':
case 'X':
case 'y':
case 'Y':
case 't':
case 'T':
SupportedOpcodeFound = TRUE;
OpcodeFound = p[j];
break;
}
if(SupportedOpcodeFound)
break;
}
if(!SupportedOpcodeFound)
continue;
WORD ArgsStart = i + 2;
// Output stuff from buffer
if(!SuspendOutput)
WriteConsoleW(hConsoleOutput, &p[from], Start_i - from, lpNumberOfCharsWritten, lpReserved);
// Set iterators
from = j + 1;
i = j;
// Handle ansi codes
switch(OpcodeFound) {
case 't': // ESC[t TITLE ESC[T set console TITLE
case 'T': {
static DWORD Pos;
if(OpcodeFound == 't') {
Pos = from;
SuspendOutput = TRUE;
break;
}
SuspendOutput = FALSE;
DWORD Length = Start_i - Pos;
static WORD Buffer[1024];
if(Length > sizeof(Buffer) / sizeof(*Buffer))
Length = sizeof(Buffer) / sizeof(*Buffer) - 1;
Buffer[Length] = 0;
memcpy(Buffer, &p[Pos], Length * 2);
SetConsoleTitleW(Buffer);
break;
}
case 'Y': // ESC[Y save current color at index
case 'y': { // ESC[y retrive color from index
static WORD ColorArray[1024];
int Ret, Pos;
Ret = swscanf(&p[ArgsStart], L"%i", &Pos);
if(Ret != 1)
break;
if(Pos < 0 || Pos >= 1024)
break;
if(OpcodeFound == 'Y') {
// save
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
ColorArray[Pos] = info.wAttributes;
} else {
// get
SetConsoleTextAttribute(hConsoleOutput, ColorArray[Pos]);
}
}
break;
case 'X': // ESC[X push current color on stack
case 'x': { // ESC[x pop color from stack
static WORD ColorStack[1024];
static WORD ColorPtr = 0;
// Archive original setting
if(ColorPtr == 0) {
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
ColorStack[ColorPtr++] = info.wAttributes;
}
// Handle stack
if(OpcodeFound == 'x') {
// Pop
if(ColorPtr > 1)
SetConsoleTextAttribute(hConsoleOutput, ColorStack[--ColorPtr]);
else
SetConsoleTextAttribute(hConsoleOutput, ColorStack[0]);
} else if(ColorPtr < 1024) {
// Push
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
ColorStack[ColorPtr++] = info.wAttributes;
}
}
break;
case 'm': { // ESC[#(;#)m color and text formatting
static WORD FirstColor;
static BOOL FirstColorSet;
int Ret, arg[3];
Ret = swscanf(&p[ArgsStart], L"%i;%i;%i", &arg[0], &arg[1], &arg[2]);
// Archive original setting
if(!FirstColorSet) {
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
FirstColor = info.wAttributes;
FirstColorSet = TRUE;
}
// Setup colors
if(Ret == 0) {
SetConsoleTextAttribute(hConsoleOutput, FirstColor);
} else {
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
// Set new attributes
WORD NewAttr = info.wAttributes;
int k;
for(k = 0; k < Ret; k++) {
if(arg[k] >= 30 && arg[k] <= 37) {
NewAttr &= ~(FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED);
BYTE ByteArg = arg[k] - 30;
ByteArg = (ByteArg >> 2) | (ByteArg & 2) | ((ByteArg << 2) & 4); // Swap
NewAttr |= ByteArg;
} else if(arg[k] >= 40 && arg[k] <= 47) {
NewAttr &= ~(BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED);
BYTE ByteArg = arg[k] - 40;
ByteArg = (ByteArg >> 2) | (ByteArg & 2) | ((ByteArg << 2) & 4); // Swap
NewAttr |= ByteArg << 4;
} else if(arg[k] >= 0 && arg[k] <= 8) {
NewAttr &= ~(FOREGROUND_INTENSITY);
if(arg[k] == 1)
NewAttr |= FOREGROUND_INTENSITY;
}
}
SetConsoleTextAttribute(hConsoleOutput, NewAttr);
}
}
break;
case 'H': // ESC[#;#H or ESC[#;#f moves cursor to line #, column #
case 'f': {
int Ret, x, y;
Ret = swscanf(&p[ArgsStart], L"%i;%i", &y, &x);
if(Ret == 0) {
COORD c = { 0, 0 };
SetConsoleCursorPosition(hConsoleOutput, c);
break;
}
if(Ret != 2) break;
x--, y--;
COORD c = { x, y };
SetConsoleCursorPosition(hConsoleOutput, c);
}
break;
case 'A': // ESC[#A moves cursor up # lines
case 'B': // ESC[#B moves cursor down # lines
case 'C': // ESC[#C moves cursor right # spaces
case 'D': { // ESC[#D moves cursor left # spaces
int Ret, chg;
Ret = swscanf(&p[ArgsStart], L"%i", &chg);
if(Ret != 1) break;
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
switch(OpcodeFound) {
case 'A':
info.dwCursorPosition.Y -= chg;
break;
case 'B':
info.dwCursorPosition.Y += chg;
break;
case 'C':
info.dwCursorPosition.X += chg;
break;
case 'D':
info.dwCursorPosition.X -= chg;
break;
}
SetConsoleCursorPosition(hConsoleOutput, info.dwCursorPosition);
}
break;
case 's': // ESC[s save cursor position for recall later
case 'u': { // ESC[u Return to saved cursor position
static COORD CoordStack[1024];
static int CoordPtr = 0;
if(OpcodeFound == 's') {
// Push
if(CoordPtr < 1024) {
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
CoordStack[CoordPtr].X = info.dwCursorPosition.X;
CoordStack[CoordPtr].Y = info.dwCursorPosition.Y;
CoordPtr++;
}
} else {
// Pop
if(CoordPtr > 0) {
CoordPtr--;
SetConsoleCursorPosition(hConsoleOutput, CoordStack[CoordPtr]);
}
}
}
break;
case 'J': { // ESC[2J clear screen and home cursor
if(p[ArgsStart] != '2')
break;
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
DWORD Written;
DWORD Size = info.dwSize.X * info.dwSize.Y;
COORD c = { 0, 0 };
FillConsoleOutputAttribute(hConsoleOutput, info.wAttributes, Size, c, &Written);
FillConsoleOutputCharacter(hConsoleOutput, ' ', Size, c, &Written);
SetConsoleCursorPosition(hConsoleOutput, c);
}
break;
case 'K': { // ESC[K clear to end of line
COORD c;
DWORD Written;
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(hConsoleOutput, &info);
c.X = info.dwCursorPosition.X;
c.Y = info.dwCursorPosition.Y;
FillConsoleOutputCharacter(hConsoleOutput, ' ', info.dwSize.X - c.X, c, &Written);
SetConsoleCursorPosition(hConsoleOutput, c);
}
break;
}
}
}
// Flush rest of the text
if(from < i)
WriteConsoleW(hConsoleOutput, &p[from], i - from, lpNumberOfCharsWritten, lpReserved);
// Spoof version string ;>
static WORD HackMeStringXP[] = L"Microsoft Windows XP [";
static WORD HackMeStringVista[] = L"Microsoft Windows [";
if(memcmp(lpBuffer, HackMeStringXP, 22*2) == 0 ||
memcmp(lpBuffer, HackMeStringVista, 19*2) == 0) {
DWORD temp;
WriteConsoleW(hConsoleOutput,
L"\nAnsi hack ver 0.004b by gynvael.coldwind//vx",
45, &temp, NULL);
}
// Everything was OK...
*lpNumberOfCharsWritten = nNumberOfCharsToWrite;
return TRUE;
}