|
@@ -1,18 +1,17 @@
|
|
|
+#include "charman.h"
|
|
|
#include "images.h"
|
|
|
#include "lastseen.h"
|
|
|
#include "render.h"
|
|
|
#include "terminal.h"
|
|
|
#include "utils.h"
|
|
|
+#include "zf_log.h"
|
|
|
#include <iomanip>
|
|
|
-// #include <regex.h>
|
|
|
+#include <regex>
|
|
|
#include <sstream>
|
|
|
#include <string.h>
|
|
|
#include <string>
|
|
|
#include <vector>
|
|
|
|
|
|
-#include "charman.h"
|
|
|
-#include "zf_log.h"
|
|
|
-
|
|
|
#include <unistd.h> // write
|
|
|
|
|
|
extern struct console_details console;
|
|
@@ -48,8 +47,8 @@ void harry_idle_event(int fd) {
|
|
|
int color = randint(15) + 1;
|
|
|
// %02d = std::setfill('0') << std::setw(2) << (int)
|
|
|
|
|
|
- buffer << "^S2^C" << std::setfill('0') << std::setw(2) << color << phrases[r]
|
|
|
- << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
|
|
|
+ buffer << "^CS^S2^C" << std::setfill('0') << std::setw(2) << color
|
|
|
+ << phrases[r] << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
|
|
|
|
|
|
/*
|
|
|
slen = snprintf(buffer, sizeof(buffer), "^S2^C%02d%s^P2^CR^D%02d", color, cp,
|
|
@@ -84,12 +83,14 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
return 0;
|
|
|
|
|
|
if (ANSI_CLS_count > 1) {
|
|
|
+ /*
|
|
|
// get the restore color value
|
|
|
struct console_details temp_console;
|
|
|
memcpy(&temp_console, &console, sizeof(console));
|
|
|
console_receive(&temp_console, buffer.substr(0, pos));
|
|
|
std::string restore_color;
|
|
|
restore_color.assign(color_restore(&temp_console));
|
|
|
+ */
|
|
|
|
|
|
if (random_activate(3)) {
|
|
|
std::ostringstream display;
|
|
@@ -124,7 +125,7 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
x = randint(79 - images[r].width) + 1;
|
|
|
y = randint(24 - images[r].size) + 1;
|
|
|
|
|
|
- display << "^f" << std::setfill('0') << std::setw(2) << x
|
|
|
+ display << "^CS^f" << std::setfill('0') << std::setw(2) << x
|
|
|
<< std::setw(2) << y << "\x1b[1;1H";
|
|
|
fgoto = display.str();
|
|
|
// reset display
|
|
@@ -134,7 +135,7 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
// render image, home cursor
|
|
|
// slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d\x1b[1;1H", x, y);
|
|
|
} else {
|
|
|
- fgoto.assign("^F");
|
|
|
+ fgoto.assign("^CS^F");
|
|
|
}
|
|
|
|
|
|
needs_cls = images[r].cls;
|
|
@@ -150,8 +151,7 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
// Ok, yes, there's no filename being sent. :P
|
|
|
render_image(images[r].lines, images[r].size);
|
|
|
|
|
|
- display << (needs_cls ? "\x1b[2J" : "") << fgoto << restore_color
|
|
|
- << "^P3";
|
|
|
+ display << (needs_cls ? "\x1b[2J" : "") << fgoto << "^CR^P3";
|
|
|
|
|
|
// slen = snprintf(display, sizeof(display), "%s%s%s^P3",
|
|
|
// needs_cls ? "\x1b[2J" : "", fgoto, restore_color);
|
|
@@ -205,17 +205,15 @@ int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
|
|
|
*/
|
|
|
|
|
|
if (strncmp(phrasing[r], "^G", 2) == 0) {
|
|
|
- display << "^S3^P1" << phrasing[r] << "^S0^R0" << restore_color
|
|
|
- << "^P1^G0101";
|
|
|
+ display << "^CS^S3^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
|
|
|
// This starts with a GOTO, so don't use our random position
|
|
|
// slen = snprintf(display, sizeof(display),
|
|
|
// "^S3^P1%s^S0^R0%s^P1^G0101",
|
|
|
// phrasing[r], restore_color);
|
|
|
} else {
|
|
|
- display << "^G" << std::setw(2) << std::setfill('0') << x
|
|
|
+ display << "^CS^G" << std::setw(2) << std::setfill('0') << x
|
|
|
<< std::setw(2) << y << "^S3^C" << std::setw(2) << color
|
|
|
- << "^P1" << phrasing[r] << "^S0^R0" << restore_color
|
|
|
- << "^P1^G0101";
|
|
|
+ << "^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
|
|
|
// slen = snprintf(display, sizeof(display),
|
|
|
// "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
|
|
|
// color, phrasing[r], restore_color);
|
|
@@ -263,13 +261,84 @@ int mangle(int fd, std::string &buffer) {
|
|
|
work_size = work.capacity();
|
|
|
}
|
|
|
|
|
|
+ int level = harry_level();
|
|
|
+
|
|
|
+ if (level > 2) {
|
|
|
+ // Strings are good, but Regex is better
|
|
|
+ // Mystic BBS v1.12 A43 for Linux Node 1
|
|
|
+ static std::regex bbs("Mystic BBS v[0-9.]+ A[0-9]+ for Linux Node [0-9]+");
|
|
|
+ std::smatch match;
|
|
|
+
|
|
|
+ if (std::regex_search(buffer, match, bbs)) {
|
|
|
+ // We have a match
|
|
|
+ std::string old_string =
|
|
|
+ buffer.substr(match.position(0), match.length(0));
|
|
|
+
|
|
|
+ // Build a new and better string
|
|
|
+ std::ostringstream new_buffer;
|
|
|
+ std::string new_string;
|
|
|
+ const char *bbs_systems[] = {"Haunted BBS", "Harry's BBS",
|
|
|
+ "Scary Software BBS", "Screaming BBS"};
|
|
|
+ const char *operating_systems[] = {
|
|
|
+ "OS/360", "CP/M", "OS/9", "Xenix", "MS-DOS",
|
|
|
+ "PC-DOS", "DR-DOS", "QNX", "Novell Netware", "AmigaOS",
|
|
|
+ "Windows NT", "Windows CE", "AIX", "OS/2", "OS/400",
|
|
|
+ "NeXTSTEP", "MINIX", "Solaris", "Plan 9", "FreeBSD",
|
|
|
+ "Windows 95", "Palm OS", "Mac OS X", "Windows XP"};
|
|
|
+
|
|
|
+ int r = randint(sizeof(bbs_systems) / sizeof(char *));
|
|
|
+ new_buffer << bbs_systems[r] << " v" << randint(10) << "." << randint(80);
|
|
|
+ new_buffer << " for ";
|
|
|
+
|
|
|
+ r = randint(sizeof(operating_systems) / sizeof(char *));
|
|
|
+ new_buffer << operating_systems[r] << " Node " << randint(100 * level);
|
|
|
+ new_string = new_buffer.str();
|
|
|
+ // reset buffer
|
|
|
+ new_buffer.str(std::string());
|
|
|
+ new_buffer.clear();
|
|
|
+
|
|
|
+ replace(buffer, old_string, new_string);
|
|
|
+ replace(work, old_string, new_string);
|
|
|
+ level = 0; // turn off the manglers! ;)
|
|
|
+
|
|
|
+ static std::regex author("Copyright \\(C\\) [0-9-]+ By James Coyle");
|
|
|
+ std::smatch match;
|
|
|
+
|
|
|
+ if (std::regex_search(buffer, match, author)) {
|
|
|
+ // We have a match
|
|
|
+ std::string old_author =
|
|
|
+ buffer.substr(match.position(0), match.length(0));
|
|
|
+
|
|
|
+ // Build a new and better string
|
|
|
+ std::string new_author;
|
|
|
+ const char *coder_names[] = {"Horrible Harry", "Ghost Writer",
|
|
|
+ "Sands of Time", "Spector Software",
|
|
|
+ "Creepy Coder"};
|
|
|
+ if (randint(10) < 4)
|
|
|
+ new_buffer << "Copywrong ";
|
|
|
+ else
|
|
|
+ new_buffer << "Copyright ";
|
|
|
+ new_buffer << "(C) " << 1000 + randint(999) << "-" << randint(24000)
|
|
|
+ << " By ";
|
|
|
+ int r = randint(sizeof(coder_names) / sizeof(char *));
|
|
|
+ new_buffer << coder_names[r];
|
|
|
+ new_author = new_buffer.str();
|
|
|
+
|
|
|
+ replace(buffer, old_author, new_author);
|
|
|
+ replace(work, old_author, new_author);
|
|
|
+ level = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
const char *ANSI_CLS = "\x1b[2J";
|
|
|
size_t pos = buffer.find(ANSI_CLS);
|
|
|
|
|
|
if (pos != std::string::npos) {
|
|
|
- if (mangle_clrscr(buffer, work, pos)) {
|
|
|
- need_render = 1;
|
|
|
- }
|
|
|
+ if (level)
|
|
|
+ if (mangle_clrscr(buffer, work, pos)) {
|
|
|
+ need_render = 1;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// Ok, maybe the work string was a bad idea?
|
|
@@ -348,7 +417,6 @@ int mangle(int fd, std::string &buffer) {
|
|
|
oss.clear();
|
|
|
|
|
|
// Begin the mangle process 2.0
|
|
|
- int level = harry_level();
|
|
|
if (level) {
|
|
|
ZF_LOGD("CharMan");
|
|
|
CharMan cm(buffer, work, text, text_offsets);
|