wordplay.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. #include "charman.h"
  2. #include "images.h"
  3. #include "lastseen.h"
  4. #include "render.h"
  5. #include "terminal.h"
  6. #include "utils.h"
  7. #include "zf_log.h"
  8. #include <iomanip>
  9. #include <regex>
  10. #include <sstream>
  11. #include <string.h>
  12. #include <string>
  13. #include <vector>
  14. #include <unistd.h> // write
  15. extern struct console_details console;
  16. #define BSIZE 512
  17. /*
  18. * harry_idle_event(fd)
  19. *
  20. * User is idle, let's let them know we're here. HAHAHA!
  21. *
  22. */
  23. void harry_idle_event(int fd) {
  24. // Make something happen
  25. std::ostringstream buffer;
  26. int r;
  27. int level = harry_level();
  28. if (!level)
  29. return;
  30. // This is no where near finished, BUT!
  31. // Do not put any ^ codes in these -- the strlen() would be wrong.
  32. const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
  33. "MeOW", "I see U", "Arrooo!",
  34. "Ahh-wooo!", "Aaaooo!"};
  35. static LastSeen last_seen_harry_event(2);
  36. do {
  37. r = randint((sizeof(phrases) / sizeof(char *)));
  38. } while (last_seen_harry_event.seen_before(r));
  39. int color = randint(15) + 1;
  40. // %02d = std::setfill('0') << std::setw(2) << (int)
  41. buffer << "^CS^S2^C" << std::setfill('0') << std::setw(2) << color
  42. << phrases[r] << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
  43. /*
  44. slen = snprintf(buffer, sizeof(buffer), "^S2^C%02d%s^P2^CR^D%02d", color, cp,
  45. (int)strlen(cp));
  46. if (slen >= sizeof(buffer)) {
  47. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  48. buffer[0] = 0;
  49. }
  50. */
  51. std::string str = buffer.str();
  52. ZF_LOGD("harry_event: render(%d, \"%s\")", fd, str.c_str());
  53. render(fd, str);
  54. }
  55. void init_harry() {
  56. // init_have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS);
  57. // ZF_LOGD("init => %d %d", last_seen_harry_event[0],
  58. // last_seen_harry_event[1]);
  59. console_init(&console);
  60. }
  61. // char words[] = "[a-zA-Z]+( [a-zA-Z]+)+";
  62. int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
  63. static int ANSI_CLS_count = 0;
  64. ZF_LOGI("seen: ANSI_CLS");
  65. ANSI_CLS_count++;
  66. int level = harry_level();
  67. if (!level)
  68. return 0;
  69. if (ANSI_CLS_count > 1) {
  70. /*
  71. // get the restore color value
  72. struct console_details temp_console;
  73. memcpy(&temp_console, &console, sizeof(console));
  74. console_receive(&temp_console, buffer.substr(0, pos));
  75. std::string restore_color;
  76. restore_color.assign(color_restore(&temp_console));
  77. */
  78. if (random_activate(3)) {
  79. std::ostringstream display;
  80. int needs_cls = 0;
  81. struct image {
  82. const char **lines;
  83. int size;
  84. int cls;
  85. int width; // height = size
  86. } images[] = {{ghost, sizeof(ghost) / sizeof(char *), 1, 0},
  87. {ghead, sizeof(ghead) / sizeof(char *), 1, 0},
  88. {wolf, sizeof(wolf) / sizeof(char *), 1, 0},
  89. {panther, sizeof(panther) / sizeof(char *), 1, 0},
  90. {bat, sizeof(bat) / sizeof(char *), 1, 0},
  91. {icu, sizeof(icu) / sizeof(char *), 0, 20},
  92. {skull, sizeof(skull) / sizeof(char *), 0, 19},
  93. {skullblink, sizeof(skullblink) / sizeof(char *), 0, 19}};
  94. static LastSeen last_files(2);
  95. int r;
  96. do {
  97. r = randint((sizeof(images) / sizeof(image)));
  98. } while (last_files.seen_before(r));
  99. std::string fgoto;
  100. if (!images[r].cls) {
  101. int x = 0, y = 0;
  102. x = randint(79 - images[r].width) + 1;
  103. y = randint(24 - images[r].size) + 1;
  104. display << "^CS^f" << std::setfill('0') << std::setw(2) << x
  105. << std::setw(2) << y << "\x1b[1;1H";
  106. fgoto = display.str();
  107. // reset display
  108. display.str(std::string());
  109. display.clear();
  110. // render image, home cursor
  111. // slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d\x1b[1;1H", x, y);
  112. } else {
  113. fgoto.assign("^CS^F");
  114. }
  115. needs_cls = images[r].cls;
  116. // I get what's happening. Mystic moves cursor to home, CLS, cursor
  117. // home. When we get here, we're ALWAYS at the top of the screen...
  118. // Hence our bat isn't displayed at the end of the screen.
  119. // This is before the actual CLS, so we CLS before displaying our files.
  120. // I tried a ^P2 before doing this .. but I'd rather have the picture up
  121. // right away I think.
  122. // Ok, yes, there's no filename being sent. :P
  123. render_image(images[r].lines, images[r].size);
  124. display << (needs_cls ? "\x1b[2J" : "") << fgoto << "^CR^P3";
  125. // slen = snprintf(display, sizeof(display), "%s%s%s^P3",
  126. // needs_cls ? "\x1b[2J" : "", fgoto, restore_color);
  127. std::string display_output = display.str();
  128. ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r,
  129. repr(display_output.c_str()));
  130. // Move the buffer so there's room for the display string.
  131. buffer.insert(pos, display_output);
  132. work.insert(pos, std::string(display_output.size(), ' '));
  133. return 1; // need_render = 1;
  134. } else {
  135. if (random_activate(4)) {
  136. int r;
  137. std::ostringstream display;
  138. const char *phrasing[] = {
  139. "^R1Haha^P1ha^P1ha", "Poof!", "Got U", "Anyone there?",
  140. "^R1Knock, ^P1Knock",
  141. /*
  142. This picks random color and position -- then
  143. homes cursor and changes to another color. (This can be seen.)
  144. */
  145. "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
  146. static LastSeen last_phrasing(2);
  147. ZF_LOGI("mangle(ANSI_CLS)");
  148. do {
  149. r = randint(sizeof(phrasing) / sizeof(char *));
  150. } while (last_phrasing.seen_before(r));
  151. int color = randint(14) + 1;
  152. int x = randint(30) + 1;
  153. int y = randint(15) + 1;
  154. /*
  155. Don't have it pause there before moving the cursor.
  156. Move the cursor, get the color changed, THEN pause.
  157. Then act all crazy.
  158. NOTE: Make sure if you use any ^R Render effects, turn them off
  159. before trying to display the restore_color. :P ^R0 Also, make
  160. sure you re-home the cursor ^G0101 because that's where they are
  161. expecting the cursor to be! (At least it's how Mystic does it.)
  162. HOME, CLS, HOME, ... Not sure what others do there. We'll see.
  163. */
  164. if (strncmp(phrasing[r], "^G", 2) == 0) {
  165. display << "^CS^S3^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
  166. // This starts with a GOTO, so don't use our random position
  167. // slen = snprintf(display, sizeof(display),
  168. // "^S3^P1%s^S0^R0%s^P1^G0101",
  169. // phrasing[r], restore_color);
  170. } else {
  171. display << "^CS^G" << std::setw(2) << std::setfill('0') << x
  172. << std::setw(2) << y << "^S3^C" << std::setw(2) << color
  173. << "^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
  174. // slen = snprintf(display, sizeof(display),
  175. // "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
  176. // color, phrasing[r], restore_color);
  177. };
  178. std::string display_output = display.str();
  179. // sprintf(display, "^P1^S3^C%02d%s^S0^R0%s^P1", color, phrasing[r],
  180. // restore_color);
  181. // Added debug statement so we can identify what was sent... color,
  182. // number picked and what that is
  183. ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'", color,
  184. r, phrasing[r]);
  185. ZF_LOGI("mangle(ANSI_CLS): %d %s", r, repr(display_output.c_str()));
  186. // Move the buffer so there's room for the display string.
  187. buffer.insert(pos, display_output);
  188. work.insert(pos, std::string(display_output.size(), ' '));
  189. return 1; // need_render = 1;
  190. }
  191. }
  192. }
  193. return 0;
  194. }
  195. int mangle(int fd, std::string &buffer) {
  196. // a simple default for now.
  197. ZF_LOGV("mangle [%s]", logrepr(buffer.c_str()));
  198. /*
  199. ZF_LOGV_MEM(buffer.data(), buffer.size(), "mangle(%d): %lu bytes", fd,
  200. buffer.size());
  201. */
  202. int need_render = 0;
  203. int mangled = 0;
  204. int mangled_chars = 0;
  205. static std::string work;
  206. static size_t work_size = 0;
  207. work.assign(buffer);
  208. // This should allow us to monitor any memory allocations
  209. if (work.capacity() != work_size) {
  210. ZF_LOGD("work cap %lu -> %lu", work_size, work.capacity());
  211. work_size = work.capacity();
  212. }
  213. int level = harry_level();
  214. if (level > 2) {
  215. // Strings are good, but Regex is better
  216. // Mystic BBS v1.12 A43 for Linux Node 1
  217. static std::regex bbs("Mystic BBS v[0-9.]+ A[0-9]+ for Linux Node [0-9]+");
  218. std::smatch match;
  219. if (std::regex_search(buffer, match, bbs)) {
  220. // We have a match
  221. std::string old_string =
  222. buffer.substr(match.position(0), match.length(0));
  223. // Build a new and better string
  224. std::ostringstream new_buffer;
  225. std::string new_string;
  226. const char *bbs_systems[] = {"Haunted BBS", "Harry's BBS",
  227. "Scary BBS Software", "Screaming BBS"};
  228. const char *operating_systems[] = {
  229. "OS/360", "CP/M", "OS/9", "Xenix", "MS-DOS",
  230. "PC-DOS", "DR-DOS", "QNX", "Novell Netware", "AmigaOS",
  231. "Windows NT", "Windows CE", "AIX", "OS/2", "OS/400",
  232. "NeXTSTEP", "MINIX", "Solaris", "Plan 9", "FreeBSD",
  233. "Windows 95", "Palm OS", "Mac OS X", "Windows XP"};
  234. int r = randint(sizeof(bbs_systems) / sizeof(char *));
  235. new_buffer << bbs_systems[r] << " v" << randint(10) << "." << randint(80);
  236. new_buffer << " for ";
  237. r = randint(sizeof(operating_systems) / sizeof(char *));
  238. new_buffer << operating_systems[r] << " Node " << randint(100 * level);
  239. new_string = new_buffer.str();
  240. // reset buffer
  241. new_buffer.str(std::string());
  242. new_buffer.clear();
  243. replace(buffer, old_string, new_string);
  244. replace(work, old_string, new_string);
  245. level = 0; // turn off the manglers! ;)
  246. static std::regex author("Copyright \\(C\\) [0-9-]+ By James Coyle");
  247. std::smatch match;
  248. if (std::regex_search(buffer, match, author)) {
  249. // We have a match
  250. std::string old_author =
  251. buffer.substr(match.position(0), match.length(0));
  252. // Build a new and better string
  253. std::string new_author;
  254. const char *coder_names[] = {"Horrible Harry", "Ghost Writer",
  255. "Sands of Time", "Spector Software",
  256. "Creepy Coder"};
  257. if (randint(10) < 4)
  258. new_buffer << "Copywrong ";
  259. else
  260. new_buffer << "Copyright ";
  261. new_buffer << "(C) " << 1000 + randint(999) << "-" << randint(24000)
  262. << " By ";
  263. int r = randint(sizeof(coder_names) / sizeof(char *));
  264. new_buffer << coder_names[r];
  265. new_author = new_buffer.str();
  266. replace(buffer, old_author, new_author);
  267. replace(work, old_author, new_author);
  268. level = 0;
  269. }
  270. }
  271. }
  272. const char *ANSI_CLS = "\x1b[2J";
  273. size_t pos = buffer.find(ANSI_CLS);
  274. if (pos != std::string::npos) {
  275. if (level)
  276. if (mangle_clrscr(buffer, work, pos)) {
  277. need_render = 1;
  278. }
  279. }
  280. // Ok, maybe the work string was a bad idea?
  281. static std::string text;
  282. static std::vector<int> text_offsets;
  283. size_t stri;
  284. text.clear();
  285. text_offsets.clear();
  286. for (stri = 0; stri < buffer.size(); ++stri) {
  287. // why wasn't \x1b[?1000h handled by console_char?
  288. // what happened to \x0c ? It is there.
  289. termchar tc = console_char(&console, work[stri]);
  290. if (tc.in_ansi) {
  291. if (tc.ansi != START) {
  292. // Ok, this is something. What is it?
  293. // ZF_LOGV("ANSI type %d at %lu", tc.ansi, stri);
  294. switch (tc.ansi) {
  295. case CURSOR:
  296. case CLEAR:
  297. case OTHER:
  298. text.append(1, '.');
  299. text_offsets.push_back(-1);
  300. break;
  301. case START:
  302. case COLOR:
  303. // text.append(1, ' ');
  304. // text_offsets.push_back(-1);
  305. // color changes show as nothing in the text string.
  306. break;
  307. }
  308. }
  309. } else {
  310. // These should never get out of sync ...
  311. if (text.size() != text_offsets.size()) {
  312. ZF_LOGE("Error: text != text_offsets %lu != %lu", text.size(),
  313. text_offsets.size());
  314. }
  315. text.append(1, work[stri]);
  316. text_offsets.push_back(stri);
  317. }
  318. }
  319. ZF_LOGV("Buffer: %s", logrepr(buffer.c_str()));
  320. // ZF_LOGV_MEM(buffer.data(), buffer.size(), "Buffer:");
  321. // ZF_LOGV_MEM(work.data(), work.size(), "Work:");
  322. ZF_LOGV("Work: %s", logrepr(work.c_str()));
  323. // ZF_LOGV_MEM(text.data(), text.size(), "Text Buffer:");
  324. ZF_LOGV("Text: %s", logrepr(text.c_str()));
  325. // Output vector contents
  326. std::ostringstream oss;
  327. int comma = 0;
  328. for (auto it = std::begin(text_offsets); it != std::end(text_offsets); ++it) {
  329. if (comma) {
  330. oss << ", ";
  331. };
  332. comma++;
  333. oss << *it;
  334. if (comma == 30) {
  335. std::string temp_output = oss.str();
  336. ZF_LOGV("Vector: %s", temp_output.c_str());
  337. // reset ostringstream
  338. oss.str(std::string());
  339. oss.clear();
  340. comma = 0;
  341. }
  342. }
  343. std::string vector_output = oss.str();
  344. ZF_LOGV("Vector: %s", vector_output.c_str());
  345. // reset oss (if we need it)
  346. oss.str(std::string());
  347. oss.clear();
  348. // Begin the mangle process 2.0
  349. if (level) {
  350. ZF_LOGD("CharMan");
  351. CharMan cm(buffer, work, text, text_offsets);
  352. ZF_LOGD("CharMan %d, %d chars", cm.mangle_count, cm.mangle_chars);
  353. };
  354. if (need_render) {
  355. render(fd, buffer);
  356. } else {
  357. write(fd, buffer.data(), buffer.size());
  358. console_receive(&console, buffer);
  359. }
  360. return need_render;
  361. }