Skip to content
Snippets Groups Projects
Commit 388a2a7e authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Remove more ZuulTerm stuff.

parent ba061613
Branches
No related tags found
No related merge requests found
Pipeline #8805 passed
...@@ -605,9 +605,6 @@ bool sbbs_t::answer() ...@@ -605,9 +605,6 @@ bool sbbs_t::answer()
"\x1b[6n" /* Get cursor position */ "\x1b[6n" /* Get cursor position */
"\x1b[u" /* restore cursor position */ "\x1b[u" /* restore cursor position */
"\x1b[!_" /* RIP? */ "\x1b[!_" /* RIP? */
#ifdef SUPPORT_ZUULTERM
"\x1b[30;40m\xc2\x9f""Zuul.connection.write('\\x1b""Are you the gatekeeper?')\xc2\x9c" /* ZuulTerm? */
#endif
"\r" /* Move cursor left */ "\r" /* Move cursor left */
"\xef\xbb\xbf" // UTF-8 Zero-width non-breaking space "\xef\xbb\xbf" // UTF-8 Zero-width non-breaking space
"\x1b[6n" /* Get cursor position (again) */ "\x1b[6n" /* Get cursor position (again) */
...@@ -651,14 +648,6 @@ bool sbbs_t::answer() ...@@ -651,14 +648,6 @@ bool sbbs_t::answer()
logline("@R", strstr(str, "RIPSCRIP")); logline("@R", strstr(str, "RIPSCRIP"));
autoterm |= (RIP | COLOR | ANSI); autoterm |= (RIP | COLOR | ANSI);
} }
#ifdef SUPPORT_ZUULTERM
else if (strstr(str, "Are you the gatekeeper?")) {
if (terminal[0] == 0)
SAFECOPY(terminal, "HTML");
logline("@H", strstr(str, "Are you the gatekeeper?"));
autoterm |= HTML;
}
#endif
char* tokenizer = NULL; char* tokenizer = NULL;
char* p = strtok_r(str, "\x1b", &tokenizer); char* p = strtok_r(str, "\x1b", &tokenizer);
......
...@@ -680,7 +680,7 @@ typedef enum { /* Values for xtrn_t.event */ ...@@ -680,7 +680,7 @@ typedef enum { /* Values for xtrn_t.event */
#define P_NOATCODES (1 << 2) /* Don't allow @ codes */ #define P_NOATCODES (1 << 2) /* Don't allow @ codes */
#define P_OPENCLOSE (1 << 3) /* Open and close the file */ #define P_OPENCLOSE (1 << 3) /* Open and close the file */
#define P_NOPAUSE (1 << 4) /* Disable screen pause */ #define P_NOPAUSE (1 << 4) /* Disable screen pause */
#define P_HTML (1 << 5) /* Message is HTML */ #define P_HTML (1 << 5) /* Unused - Message is HTML */
#define P_NOCRLF (1 << 6) /* Don't prepend a CRLF in printfile() */ #define P_NOCRLF (1 << 6) /* Don't prepend a CRLF in printfile() */
#define P_WORDWRAP (1 << 7) /* Word-wrap long lines for user's terminal */ #define P_WORDWRAP (1 << 7) /* Word-wrap long lines for user's terminal */
#define P_CPM_EOF (1 << 8) /* Ignore Ctrl-Z chars (CPM End-of-File) */ #define P_CPM_EOF (1 << 8) /* Ignore Ctrl-Z chars (CPM End-of-File) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment