wordplay.cpp 16 KB

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