wordplay.cpp 15 KB

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