wordplay.cpp 14 KB

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