mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
fix colors
This commit is contained in:
parent
0d05b08489
commit
b24fd9f080
1 changed files with 30 additions and 40 deletions
|
@ -17,40 +17,25 @@ I64 TelnetOpen(U8 *host, U16 port) {
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: needed?
|
sock(CTCPSocket *)->timeout = TCP_TIMEOUT;
|
||||||
// sock(CTCPSocket *)->timeout = TCP_TIMEOUT;
|
|
||||||
// TCPSocketSendString(sock, 0);
|
|
||||||
|
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
// U0 GetColorString(I64 color_code, U8 *buf) {
|
|
||||||
// static U8 *color_strings[] = {
|
|
||||||
// "$$BLACK$$", "$$RED$$", "$$GREEN$$", "$$YELLOW$$",
|
|
||||||
// "$$BLUE$$", "$$MAGENTA$$", "$$CYAN$$", "$$WHITE$$"
|
|
||||||
// };
|
|
||||||
|
|
||||||
// if (color_code >= 0 && color_code < 8) {
|
|
||||||
// StrCopy(buf, color_strings[color_code]);
|
|
||||||
// } else {
|
|
||||||
// StrCopy(buf, ""); // Default to empty string if an invalid color code is given
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
U0 AppendColorString(I64 color_code, U8 *buf) {
|
U0 AppendColorString(I64 color_code, U8 *buf) {
|
||||||
SysLog("AppendColorString(%d, %p) - Before: %s\n", color_code, buf, buf);
|
U8 *color;
|
||||||
switch (color_code) {
|
switch (color_code) {
|
||||||
case 0: CatPrint(buf, "$$BLACK$$"); break;
|
case 0: color = "$$BLACK$$"; break;
|
||||||
case 1: CatPrint(buf, "$$RED$$"); break;
|
case 1: color = "$$RED$$"; break;
|
||||||
case 2: CatPrint(buf, "$$GREEN$$"); break;
|
case 2: color = "$$GREEN$$"; break;
|
||||||
case 3: CatPrint(buf, "$$BROWN$$"); break; // ANSI yellow is mapped to ZealOS brown
|
case 3: color = "$$YELLOW$$"; break;
|
||||||
case 4: CatPrint(buf, "$$BLUE$$"); break;
|
case 4: color = "$$BLUE$$"; break;
|
||||||
case 5: CatPrint(buf, "$$MAGENTA$$"); break;
|
case 5: color = "$$MAGENTA$$"; break;
|
||||||
case 6: CatPrint(buf, "$$CYAN$$"); break;
|
case 6: color = "$$CYAN$$"; break;
|
||||||
case 7: CatPrint(buf, "$$GREY$$"); break; // ANSI white is mapped to ZealOS grey
|
case 7: color = "$$WHITE$$"; break;
|
||||||
default: CatPrint(buf, ""); break; // Default to empty string if an invalid color code is given
|
default: color = ""; break;
|
||||||
}
|
}
|
||||||
SysLog("AppendColorString(%d, %p) - After: %s\n", color_code, buf, buf);
|
"%s%s$$FG$$", color, buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
U0 SendWindowSize(I64 sock, U16 rows, U16 cols) {
|
U0 SendWindowSize(I64 sock, U16 rows, U16 cols) {
|
||||||
|
@ -85,19 +70,18 @@ U0 SendTerminalType(I64 sock, U8 *terminal_type) {
|
||||||
TCPSocketSendString(sock, response);
|
TCPSocketSendString(sock, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
U0 TelnetClient(U8 *host, U16 port) {
|
U0 Telnet(U8 *host, U16 port=TELNET_PORT) {
|
||||||
I64 sock, bytes_received, input_len;
|
I64 sock, bytes_received, input_len;
|
||||||
U8 buffer[BUF_SIZE], input_buffer[BUF_SIZE], *ptr, ch;
|
U8 buffer[BUF_SIZE], input_buffer[BUF_SIZE], *ptr, ch;
|
||||||
Bool force_disconnect = FALSE;
|
Bool force_disconnect = FALSE;
|
||||||
|
// Bool negotiate = FALSE;
|
||||||
|
|
||||||
sock = TelnetOpen(host, port);
|
sock = TelnetOpen(host, port);
|
||||||
if (sock <= 0) {
|
if (sock <= 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
U8 test_color_string[BUF_SIZE] = "This is a $$RED$$test$$GREY$$ string with colors.";
|
|
||||||
"%s\n", test_color_string;
|
|
||||||
|
|
||||||
"Connected to %s:%d.\n", host, port;
|
"$$BG,RED$$$$WHITE$$Connected to %s:%d.$$FG$$$$BG$$\n", host, port;
|
||||||
|
|
||||||
while (!force_disconnect) {
|
while (!force_disconnect) {
|
||||||
bytes_received = TCPSocketReceive(sock, buffer, BUF_SIZE - 1);
|
bytes_received = TCPSocketReceive(sock, buffer, BUF_SIZE - 1);
|
||||||
|
@ -135,6 +119,7 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
response[3] = '\0';
|
response[3] = '\0';
|
||||||
TCPSocketSendString(sock, response);
|
TCPSocketSendString(sock, response);
|
||||||
SendTerminalType(sock, "ANSI");
|
SendTerminalType(sock, "ANSI");
|
||||||
|
SendWindowSize(sock, 40, 80);
|
||||||
ptr += 3;
|
ptr += 3;
|
||||||
} else {
|
} else {
|
||||||
response[1] = 0xFC; // WONT
|
response[1] = 0xFC; // WONT
|
||||||
|
@ -169,10 +154,10 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
ptr++;
|
ptr++;
|
||||||
if (ansi_code >= 30 && ansi_code <= 37) {
|
if (ansi_code >= 30 && ansi_code <= 37) {
|
||||||
// Set foreground color
|
// Set foreground color
|
||||||
AppendColorString(ansi_code - 30, buffer);
|
Print("%s", AppendColorString(ansi_code - 30, buffer));
|
||||||
} else if (ansi_code >= 40 && ansi_code <= 47) {
|
} else if (ansi_code >= 40 && ansi_code <= 47) {
|
||||||
// Set background color
|
// Set background color
|
||||||
AppendColorString(ansi_code - 40, buffer);
|
Print("%s", AppendColorString(ansi_code - 40, buffer));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
} else if (*ptr == 'H') {
|
} else if (*ptr == 'H') {
|
||||||
|
@ -181,6 +166,7 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
break;
|
break;
|
||||||
} else if (*ptr == 'J') {
|
} else if (*ptr == 'J') {
|
||||||
// TODO: Handle screen clearing
|
// TODO: Handle screen clearing
|
||||||
|
DocClear;
|
||||||
ptr++;
|
ptr++;
|
||||||
break;
|
break;
|
||||||
} else if (*ptr == 'K') {
|
} else if (*ptr == 'K') {
|
||||||
|
@ -210,10 +196,11 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
"\n";
|
// should have a timer that checks if data is being received
|
||||||
Sleep(500); // Add a 500 ms delay
|
// look at the Clocks graphics demo (count.jiffies) maybe
|
||||||
|
Sleep(1000);
|
||||||
// Prompt user for input and send it to the remote host
|
// Prompt user for input and send it to the remote host
|
||||||
"Enter your choice: ";
|
"\nEnter your choice: ";
|
||||||
|
|
||||||
U8 *line = input_buffer;
|
U8 *line = input_buffer;
|
||||||
while (1) {
|
while (1) {
|
||||||
|
@ -221,7 +208,7 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
if (ch == '\r' || ch == '\n') {
|
if (ch == '\r' || ch == '\n') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (ch == CH_ESC || ch == CH_SHIFT_ESC) { // ESC key
|
if (ch == CH_SHIFT_ESC) { // ESC key
|
||||||
force_disconnect = TRUE;
|
force_disconnect = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -256,6 +243,7 @@ U0 TelnetClient(U8 *host, U16 port) {
|
||||||
"Telnet connection closed.\n";
|
"Telnet connection closed.\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class CHostForm {
|
class CHostForm {
|
||||||
U8 host[256] format "$$DA-P,LEN=255,A=\"Host:%s\"$$";
|
U8 host[256] format "$$DA-P,LEN=255,A=\"Host:%s\"$$";
|
||||||
U16 port format "A=\"Port:%d\"";
|
U16 port format "A=\"Port:%d\"";
|
||||||
|
@ -267,9 +255,11 @@ U0 TelnetPrompt() {
|
||||||
form.host[0] = 0;
|
form.host[0] = 0;
|
||||||
form.port = TELNET_PORT;
|
form.port = TELNET_PORT;
|
||||||
if (PopUpForm(&form)) {
|
if (PopUpForm(&form)) {
|
||||||
TelnetClient(form.host, form.port);
|
Telnet(form.host, form.port);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dev auto-connect to test server
|
// Dev auto-connect to test server
|
||||||
TelnetClient("mbrserver.com", 23);
|
Telnet("mbrserver.com");
|
||||||
|
// Telnet("freechess.org");
|
||||||
|
// Telnet("dura-bbs.net", 6359);
|
Loading…
Reference in a new issue