|
@@ -2,7 +2,7 @@
|
|
Terminal tracking
|
|
Terminal tracking
|
|
|
|
|
|
Actually, I believe I only really need to track the color information.
|
|
Actually, I believe I only really need to track the color information.
|
|
-Everything else, I'm not sure I really care about.
|
|
|
|
|
|
+Everything else, I'm not sure I really care about. (NNY!)
|
|
|
|
|
|
*/
|
|
*/
|
|
|
|
|
|
@@ -15,6 +15,7 @@ Everything else, I'm not sure I really care about.
|
|
#include "utils.h"
|
|
#include "utils.h"
|
|
#include "zf_log.h"
|
|
#include "zf_log.h"
|
|
|
|
|
|
|
|
+
|
|
void console_init(struct console_details *cdp) {
|
|
void console_init(struct console_details *cdp) {
|
|
cdp->posx = 0;
|
|
cdp->posx = 0;
|
|
cdp->posy = 0;
|
|
cdp->posy = 0;
|
|
@@ -75,7 +76,7 @@ const char *color_restore(struct console_details *cdp) {
|
|
return buffer;
|
|
return buffer;
|
|
}
|
|
}
|
|
|
|
|
|
-void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
|
|
|
|
+ANSI_TYPE console_ansi(struct console_details *cdp, const char *ansi) {
|
|
int understood = 0;
|
|
int understood = 0;
|
|
const char *cp = ansi;
|
|
const char *cp = ansi;
|
|
const char *last = ansi + strlen(ansi) - 1;
|
|
const char *last = ansi + strlen(ansi) - 1;
|
|
@@ -110,7 +111,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
repr(ansi), number);
|
|
repr(ansi), number);
|
|
}
|
|
}
|
|
understood = 1;
|
|
understood = 1;
|
|
- return;
|
|
|
|
|
|
+ return CURSOR;
|
|
case 'B':
|
|
case 'B':
|
|
// cursor down
|
|
// cursor down
|
|
if (cp == last) {
|
|
if (cp == last) {
|
|
@@ -126,7 +127,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
cdp->posy += number;
|
|
cdp->posy += number;
|
|
// check range/"scroll"
|
|
// check range/"scroll"
|
|
understood = 1;
|
|
understood = 1;
|
|
- return;
|
|
|
|
|
|
+ return CURSOR;
|
|
|
|
|
|
case 'C':
|
|
case 'C':
|
|
// cursor forward
|
|
// cursor forward
|
|
@@ -152,7 +153,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
cdp->posx -= 79;
|
|
cdp->posx -= 79;
|
|
}
|
|
}
|
|
understood = 1;
|
|
understood = 1;
|
|
- return;
|
|
|
|
|
|
+ return CURSOR;
|
|
|
|
|
|
case 'D':
|
|
case 'D':
|
|
// cursor backwards
|
|
// cursor backwards
|
|
@@ -180,7 +181,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
cdp->posx += 79;
|
|
cdp->posx += 79;
|
|
}
|
|
}
|
|
understood = 1;
|
|
understood = 1;
|
|
- return;
|
|
|
|
|
|
+ return CURSOR;
|
|
|
|
|
|
case 'H':
|
|
case 'H':
|
|
// cursor position
|
|
// cursor position
|
|
@@ -219,7 +220,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
cdp->posy = number2 - 1;
|
|
cdp->posy = number2 - 1;
|
|
|
|
|
|
understood = 1;
|
|
understood = 1;
|
|
- break;
|
|
|
|
|
|
+ return CURSOR;
|
|
|
|
|
|
case 'J':
|
|
case 'J':
|
|
// clear
|
|
// clear
|
|
@@ -235,7 +236,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
cdp->posy = 0;
|
|
cdp->posy = 0;
|
|
};
|
|
};
|
|
understood = 1;
|
|
understood = 1;
|
|
- break;
|
|
|
|
|
|
+ return CLEAR;
|
|
|
|
|
|
case 'm':
|
|
case 'm':
|
|
// color
|
|
// color
|
|
@@ -261,7 +262,7 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
understood = 1;
|
|
understood = 1;
|
|
- break;
|
|
|
|
|
|
+ return COLOR;
|
|
|
|
|
|
case 't':
|
|
case 't':
|
|
case 'r':
|
|
case 'r':
|
|
@@ -270,18 +271,15 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
// These are ones that I don't care about.
|
|
// These are ones that I don't care about.
|
|
case 'n': // This is terminal detect -- give me cursor position
|
|
case 'n': // This is terminal detect -- give me cursor position
|
|
understood = 1;
|
|
understood = 1;
|
|
- break;
|
|
|
|
|
|
+ return OTHER;
|
|
|
|
|
|
default:
|
|
default:
|
|
// unsure -- possibly not important
|
|
// unsure -- possibly not important
|
|
ZF_LOGD("console_ansi( %s ): ???", repr(ansi));
|
|
ZF_LOGD("console_ansi( %s ): ???", repr(ansi));
|
|
understood = 0;
|
|
understood = 0;
|
|
|
|
+ return OTHER;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- };
|
|
|
|
-
|
|
|
|
- if (!understood) {
|
|
|
|
- ZF_LOGD("console_ansi( %s ): was not understood.", repr(ansi));
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -289,8 +287,9 @@ void console_ansi(struct console_details *cdp, const char *ansi) {
|
|
* console_char()
|
|
* console_char()
|
|
* return whether or not we are still in_ansi
|
|
* return whether or not we are still in_ansi
|
|
*/
|
|
*/
|
|
-int console_char(struct console_details *cdp, char ch) {
|
|
|
|
|
|
+termchar console_char(struct console_details *cdp, char ch) {
|
|
char *cp;
|
|
char *cp;
|
|
|
|
+ termchar tc;
|
|
|
|
|
|
if (cdp->in_ansi) {
|
|
if (cdp->in_ansi) {
|
|
// Ok, append this char
|
|
// Ok, append this char
|
|
@@ -300,44 +299,54 @@ int console_char(struct console_details *cdp, char ch) {
|
|
*cp = 0;
|
|
*cp = 0;
|
|
if (isalpha(ch)) {
|
|
if (isalpha(ch)) {
|
|
// Ok!
|
|
// Ok!
|
|
- console_ansi(cdp, cdp->ansi);
|
|
|
|
|
|
+ tc.ansi = console_ansi(cdp, cdp->ansi);
|
|
cdp->in_ansi = 0;
|
|
cdp->in_ansi = 0;
|
|
cdp->ansi[0] = 0;
|
|
cdp->ansi[0] = 0;
|
|
- return 1;
|
|
|
|
|
|
+ tc.in_ansi = 1;
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
- return 1;
|
|
|
|
|
|
+ tc.ansi = START;
|
|
|
|
+ tc.in_ansi = 1;
|
|
|
|
+ return tc;
|
|
} else {
|
|
} else {
|
|
|
|
+
|
|
|
|
+ tc.ansi = START;
|
|
|
|
+ tc.in_ansi = 0;
|
|
|
|
+
|
|
if (ch == '\x1b') {
|
|
if (ch == '\x1b') {
|
|
cp = cdp->ansi;
|
|
cp = cdp->ansi;
|
|
*cp = ch;
|
|
*cp = ch;
|
|
cp++;
|
|
cp++;
|
|
*cp = 0;
|
|
*cp = 0;
|
|
cdp->in_ansi = 1;
|
|
cdp->in_ansi = 1;
|
|
- return 1;
|
|
|
|
|
|
+ tc.in_ansi = 1;
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ // should I try reporting MOTION non-ANSI ?
|
|
if (ch == '\r') {
|
|
if (ch == '\r') {
|
|
// Carriage return
|
|
// Carriage return
|
|
cdp->posx = 0;
|
|
cdp->posx = 0;
|
|
- return 0;
|
|
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
if (ch == '\n') {
|
|
if (ch == '\n') {
|
|
cdp->posy++;
|
|
cdp->posy++;
|
|
// check range/"scroll"
|
|
// check range/"scroll"
|
|
- return 0;
|
|
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
if (ch == '\b') {
|
|
if (ch == '\b') {
|
|
// Backspace.
|
|
// Backspace.
|
|
if (cdp->posx > 0) {
|
|
if (cdp->posx > 0) {
|
|
cdp->posx--;
|
|
cdp->posx--;
|
|
}
|
|
}
|
|
- return 0;
|
|
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
if (ch == '\f') {
|
|
if (ch == '\f') {
|
|
// form feed
|
|
// form feed
|
|
// treat as clear screen
|
|
// treat as clear screen
|
|
cdp->posx = 0;
|
|
cdp->posx = 0;
|
|
cdp->posy = 0;
|
|
cdp->posy = 0;
|
|
- return 0;
|
|
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -352,7 +361,7 @@ int console_char(struct console_details *cdp, char ch) {
|
|
cdp->posy++;
|
|
cdp->posy++;
|
|
// check range/"scroll"
|
|
// check range/"scroll"
|
|
}
|
|
}
|
|
- return 0;
|
|
|
|
|
|
+ return tc;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|