wordplay.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  1. #include "images.h"
  2. #include "lastseen.h"
  3. #include "render.h"
  4. #include "terminal.h"
  5. #include "utils.h"
  6. #include <iomanip>
  7. #include <regex.h>
  8. #include <sstream>
  9. #include <string.h>
  10. #include <string>
  11. #include <vector>
  12. #include "zf_log.h"
  13. #include <unistd.h> // write
  14. extern struct console_details console;
  15. #define BSIZE 512
  16. /*
  17. * harry_idle_event(fd)
  18. *
  19. * User is idle, let's let them know we're here. HAHAHA!
  20. *
  21. */
  22. void harry_idle_event(int fd) {
  23. // Make something happen
  24. std::ostringstream buffer;
  25. int r;
  26. // This is no where near finished, BUT!
  27. // Do not put any ^ codes in these -- the strlen() would be wrong.
  28. const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
  29. "MeOW", "I see U", "Arrooo!",
  30. "Ahh-wooo!", "Aaaooo!"};
  31. static LastSeen last_seen_harry_event(2);
  32. do {
  33. r = randint((sizeof(phrases) / sizeof(char *)));
  34. } while (last_seen_harry_event.seen_before(r));
  35. int color = random() % 15 + 1;
  36. // %02d = std::setfill('0') << std::setw(2) << (int)
  37. buffer << "^S2^C" << std::setfill('0') << std::setw(2) << color << phrases[r]
  38. << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
  39. /*
  40. slen = snprintf(buffer, sizeof(buffer), "^S2^C%02d%s^P2^CR^D%02d", color, cp,
  41. (int)strlen(cp));
  42. if (slen >= sizeof(buffer)) {
  43. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
  44. buffer[0] = 0;
  45. }
  46. */
  47. std::string str = buffer.str();
  48. ZF_LOGD("harry_event: render(%d, \"%s\")", fd, str.c_str());
  49. render(fd, str);
  50. }
  51. void init_harry() {
  52. // init_have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS);
  53. // ZF_LOGD("init => %d %d", last_seen_harry_event[0],
  54. // last_seen_harry_event[1]);
  55. console_init(&console);
  56. }
  57. regex_t ANSI;
  58. regex_t WORDS;
  59. regex_t WORD;
  60. int init_regex(void) {
  61. int ret;
  62. char ansi[] = "\x1b\[[0-9]+(;[0-9]+)*?[a-zA-Z]";
  63. char words[] = "[a-zA-Z]+( [a-zA-Z]+)+";
  64. char word[] = "[a-zA-Z]+";
  65. char errorbuf[100];
  66. if (ret = regcomp(&ANSI, ansi, REG_EXTENDED | REG_NEWLINE)) {
  67. regerror(ret, &ANSI, errorbuf, sizeof(errorbuf));
  68. ZF_LOGW("Regex %s failed to compile: %s", ansi, errorbuf);
  69. return 0;
  70. };
  71. if (ret = regcomp(&WORDS, words, REG_EXTENDED | REG_NEWLINE)) {
  72. regerror(ret, &WORDS, errorbuf, sizeof(errorbuf));
  73. ZF_LOGW("Regex %s failed to compile: %s", words, errorbuf);
  74. return 0;
  75. };
  76. if (ret = regcomp(&WORD, word, REG_EXTENDED | REG_NEWLINE)) {
  77. regerror(ret, &WORD, errorbuf, sizeof(errorbuf));
  78. ZF_LOGW("Regex %s failed to compile: %s", word, errorbuf);
  79. return 0;
  80. };
  81. return 1;
  82. }
  83. int regmatch(regex_t *preg, const char *string, size_t nmatch,
  84. regmatch_t pmatch[], int eflags) {
  85. // returns number of matches found. (Max nmatch)
  86. int matches = 0;
  87. int offset = 0;
  88. while (matches < nmatch) {
  89. int ret = regexec(preg, string + offset, nmatch - matches, pmatch + matches,
  90. eflags);
  91. if (!ret) {
  92. int current = offset;
  93. offset += pmatch[matches].rm_eo;
  94. pmatch[matches].rm_so += current;
  95. pmatch[matches].rm_eo += current;
  96. matches++;
  97. } else if (ret == REG_NOMATCH) {
  98. break;
  99. } else {
  100. break;
  101. }
  102. }
  103. return matches;
  104. }
  105. #define MAX_MATCH 32
  106. regmatch_t rxmatch[MAX_MATCH];
  107. int rx_match(regex_t *regex, const char *buffer) {
  108. int ret;
  109. ret = regmatch(regex, buffer, MAX_MATCH, rxmatch, 0);
  110. if (0) {
  111. for (int i = 0; i < ret; i++) {
  112. ZF_LOGI("%d : (%d-%d)", i, rxmatch[i].rm_so, rxmatch[i].rm_eo);
  113. }
  114. }
  115. return ret;
  116. }
  117. /**
  118. * random_activate()
  119. *
  120. * Is a weight (1-10),
  121. * tests if random number is < weight * 10.
  122. *
  123. * So random_activate(9) happens more frequently
  124. * then random_activate(8) or lower.
  125. *
  126. * This probably needs to be fixed.
  127. * We need a better randint(RANGE) code.
  128. */
  129. int random_activate(int w) {
  130. int r = randint(100);
  131. if (r <= (w * 10)) {
  132. return 1;
  133. };
  134. return 0;
  135. }
  136. /*
  137. word_state(): // deprecated
  138. -1 only lower
  139. +1 only upper
  140. 0 mixed
  141. */
  142. int word_state(const char *buffer, int len) {
  143. int p;
  144. int upper = 0;
  145. int lower = 0;
  146. int ret;
  147. float pct;
  148. for (p = 0; p < len; p++) {
  149. char c = buffer[p];
  150. if (isalpha(c)) {
  151. if (isupper(c)) {
  152. upper++;
  153. };
  154. if (islower(c)) {
  155. lower++;
  156. };
  157. }
  158. }
  159. if (upper == lower) {
  160. return 0;
  161. }
  162. if (upper > lower) {
  163. ret = 1;
  164. pct = ((float)lower / (float)upper) * 100.0;
  165. } else {
  166. ret = -1;
  167. pct = ((float)upper / (float)lower) * 100.0;
  168. }
  169. // ZF_LOGD("So far %d with %f %%", ret, pct);
  170. if (pct < 40.0) {
  171. return ret;
  172. }
  173. return 0;
  174. }
  175. /*
  176. Given a buffer and length, mangle away.
  177. toupper, tolower, flipper
  178. */
  179. int word_mangler(char *buffer, int len) {
  180. int p;
  181. int count = 0;
  182. int state;
  183. // state = word_state(buffer, len);
  184. // ZF_LOGD("word_state(%.*s) %d", len, buffer, state);
  185. state = randrange(-1, 1);
  186. // TODO: Transposer
  187. for (p = 0; p < len; p++) {
  188. char c = buffer[p];
  189. if (randint(len) == p) {
  190. break;
  191. }
  192. switch (state) {
  193. case -1:
  194. // upper
  195. if (islower(c)) {
  196. count++;
  197. buffer[p] = toupper(c);
  198. }
  199. break;
  200. case 1:
  201. // lower
  202. if (isupper(c)) {
  203. count++;
  204. buffer[p] = tolower(c);
  205. }
  206. break;
  207. case 0:
  208. // flipper
  209. if (islower(c)) {
  210. count++;
  211. buffer[p] = toupper(c);
  212. } else {
  213. if (isupper(c)) {
  214. count++;
  215. buffer[p] = tolower(c);
  216. }
  217. }
  218. break;
  219. }
  220. }
  221. return count;
  222. }
  223. int word_wrangler(char *buffer, int len) {
  224. int p;
  225. int count;
  226. int state;
  227. // state = word_state(buffer, len);
  228. // ZF_LOGD("word_state(%.*s) %d", len, buffer, state);
  229. if (len < 5) {
  230. return 0;
  231. }
  232. p = randint(len - 4) + 2;
  233. for (count = 0; count < 4; count++) {
  234. if (!isalpha(buffer[p + count]))
  235. break;
  236. }
  237. ZF_LOGV_MEM(buffer, len, "wrangler %d len %d:", p, count);
  238. if (count >= 2) {
  239. for (int x = 0; x < count / 2; x++) {
  240. char ch = buffer[p + x];
  241. buffer[p + x] = buffer[p + count - 1 - x];
  242. buffer[p + count - 1 - x] = ch;
  243. }
  244. ZF_LOGV_MEM(buffer, len, "word now:");
  245. return 1;
  246. } else
  247. return 0;
  248. }
  249. int buffer_insert(char *buffer, int len, int max_length, int pos,
  250. const char *insert) {
  251. if (len + strlen(insert) > max_length) {
  252. ZF_LOGD("buffer_insert failed [%s]", repr(insert));
  253. return 0;
  254. }
  255. memmove(buffer + pos + strlen(insert), buffer + pos, len - pos);
  256. strncpy(buffer + pos, insert, strlen(insert));
  257. return 1;
  258. }
  259. #ifdef UNWANTED
  260. /*
  261. * The buffer that we've been given is much larger now.
  262. *
  263. * We can no longer mangle or insert into the given buffer.
  264. * Why? Because we don't know what is behind it now!
  265. */
  266. int mangle(int fd, const char *buffer, int len) {
  267. int x, i;
  268. int need_render = 0; // changing word case around doesn't need the render
  269. int mangled = 0;
  270. int mangled_chars = 0;
  271. char play[BSIZE * 2]; // The main buffer to send.
  272. const char *cp;
  273. // Make a copy of buffer, since it can no longer be changed
  274. // inserted into.
  275. memcpy(play, buffer, len);
  276. // NEVER reference buffer from this point on!
  277. char work[BSIZE * 2]; // The mess with buffer.
  278. /*
  279. We use the work buffer to blank out the ANSI
  280. before trying to locate words. (So we don't
  281. grab part of the ANSI codes and mangle those!)
  282. */
  283. // Use terminal - clean out ANSI
  284. // ZF_LOGI("mangle:");
  285. ZF_LOGI_MEM(play, len, "Mangle (%u bytes):", len);
  286. // strcpy(work, buffer);
  287. /*
  288. NOTE: We copy the buffer, so we can clear out ANSI codes, etc.
  289. Otherwise we might mess some ANSI up in the manglying
  290. process.
  291. */
  292. /*
  293. Is there a way to track -- what I've inserted, and make it exempt from
  294. other modifications / mangler, wrangler?
  295. */
  296. /*
  297. (random) Look for ANSI CLS and:
  298. display random spooky texts around, with delays ... then CLS.
  299. display ANSI graphic file, with delays ... then CLS
  300. */
  301. const char *ANSI_CLS = "\x1b[2J";
  302. cp = strnstr(play, len, ANSI_CLS); // strstr(buffer, ANSI_CLS);
  303. if (cp != NULL) {
  304. static int ANSI_CLS_count = 0; // count the number we've seen
  305. ZF_LOGI("seen: ANSI_CLS");
  306. ANSI_CLS_count++;
  307. // Don't activate on the very first CLS. Too soon, don't screw up the ANSI
  308. // detection.
  309. if (ANSI_CLS_count > 1) {
  310. // Ok, figure out the restore color, just in case
  311. struct console_details temp_console;
  312. // Make exact copy of our current console state.
  313. memcpy(&temp_console, &console, sizeof(console));
  314. // Play the buffer into the console
  315. console_receive(&temp_console, play, cp - play);
  316. char restore_color[30]; // ansi color
  317. strcpy(restore_color, color_restore(&temp_console));
  318. if (random_activate(3)) {
  319. char display[100] = "";
  320. int slen;
  321. int needs_cls = 0;
  322. struct image {
  323. const char **lines;
  324. int size;
  325. int cls;
  326. int width; // height = size
  327. } images[] = {{ghost, sizeof(ghost) / sizeof(char *), 1, 0},
  328. {ghead, sizeof(ghead) / sizeof(char *), 1, 0},
  329. {wolf, sizeof(wolf) / sizeof(char *), 1, 0},
  330. {panther, sizeof(panther) / sizeof(char *), 1, 0},
  331. {bat, sizeof(bat) / sizeof(char *), 1, 0},
  332. {icu, sizeof(icu) / sizeof(char *), 0, 20},
  333. {skull, sizeof(skull) / sizeof(char *), 0, 19},
  334. {skullblink, sizeof(skullblink) / sizeof(char *), 0, 19}};
  335. static LastSeen last_files(2);
  336. int r;
  337. do {
  338. r = randint((sizeof(images) / sizeof(image)));
  339. } while (last_files.seen_before(r));
  340. char fgoto[32];
  341. if (!images[r].cls) {
  342. int x = 0, y = 0;
  343. x = randint(79 - images[r].width) + 1;
  344. y = randint(24 - images[r].size) + 1;
  345. int slen;
  346. // render image, home cursor
  347. slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d\x1b[1;1H", x, y);
  348. if (slen >= sizeof(fgoto)) {
  349. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(fgoto));
  350. fgoto[0] = 0;
  351. }
  352. } else {
  353. strcpy(fgoto, "^F");
  354. }
  355. // (2); // (sizeof(possibles) / sizeof(file_need)) - 1);
  356. needs_cls = images[r].cls;
  357. // I get what's happening. Mystic moves cursor to home, CLS, cursor
  358. // home. When we get here, we're ALWAYS at the top of the screen...
  359. // Hence our bat isn't displayed at the end of the screen.
  360. // This is before the actual CLS, so we CLS before displaying our files.
  361. // I tried a ^P2 before doing this .. but I'd rather have the picture up
  362. // right away I think.
  363. // Ok, yes, there's no filename being sent. :P
  364. render_image(images[r].lines, images[r].size);
  365. slen = snprintf(display, sizeof(display), "%s%s%s^P3",
  366. needs_cls ? "\x1b[2J" : "", fgoto, restore_color);
  367. if (slen >= sizeof(display)) {
  368. ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(display));
  369. display[0] = 0;
  370. }
  371. ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r, repr(display));
  372. // Move the buffer so there's room for the display string.
  373. if (buffer_insert(play, len, sizeof(play), cp - play, display)) {
  374. len += strlen(display);
  375. // if (string_insert(buffer, 1024, cp - buffer, display)) {
  376. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) (%u bytes):", len);
  377. // ZF_LOGI("mangle(ANSI_CLS):");
  378. // ZF_LOGI_REPR(buffer);
  379. // ZF_LOGI("mangle(ANSI_CLS): [%s]", repr(buffer));
  380. need_render = 1;
  381. /*
  382. Copy the new buffer over, but hide our "render" code
  383. from the remaining mangler steps.
  384. */
  385. memcpy(work, play, len);
  386. // strcpy(work, buffer);
  387. i = cp - play;
  388. // find offset into "buffer"
  389. // apply to work.
  390. memset(work + i, ' ', strlen(display));
  391. } else {
  392. ZF_LOGD("insert failed [%s].", repr(display));
  393. }
  394. } else {
  395. if (random_activate(4)) {
  396. int r;
  397. char display[100] = "";
  398. int slen;
  399. /*
  400. Interesting note here:
  401. "Anyone there" qualifies as a valid WORDS regex match.
  402. It is possible that it can get mangled/wrangled!
  403. */
  404. const char *phrasing[] = {
  405. "^R1Haha^P1ha^P1ha", "Poof!", "Got U", "Anyone there?",
  406. "^R1Knock, ^P1Knock",
  407. /*
  408. This picks random color and position -- then
  409. homes cursor and changes to another color. (This can be seen.)
  410. */
  411. "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
  412. static LastSeen last_phrasing(2);
  413. ZF_LOGI("mangle(ANSI_CLS)");
  414. // sprintf( display, "^P2...");
  415. // This string actually screws up ANSI detection (takes too long)
  416. // strcpy(display, "^P2^S501234567890^P1abcdef^P2g^P3h^P4i^S0^P2");
  417. // strcpy(display, "^P2^S301234^P15^S0^P2");
  418. // Add in random text, plus color!
  419. do {
  420. r = randint(sizeof(phrasing) / sizeof(char *));
  421. } while (last_phrasing.seen_before(r));
  422. int color = random() % 15 + 1;
  423. int x = random() % 30 + 1;
  424. int y = random() % 15 + 1;
  425. /*
  426. Don't have it pause there before moving the cursor.
  427. Move the cursor, get the color changed, THEN pause.
  428. Then act all crazy.
  429. NOTE: Make sure if you use any ^R Render effects, turn them off
  430. before trying to display the restore_color. :P ^R0 Also, make
  431. sure you re-home the cursor ^G0101 because that's where they are
  432. expecting the cursor to be! (At least it's how Mystic does it.)
  433. HOME, CLS, HOME, ... Not sure what others do there. We'll see.
  434. */
  435. slen = snprintf(display, sizeof(display),
  436. "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
  437. color, phrasing[r], restore_color);
  438. if (slen >= sizeof(display)) {
  439. ZF_LOGE("snprintf %d > size %d (Phrase: %d, %s)", slen,
  440. (int)sizeof(display), r, phrasing[r]);
  441. display[0] = 0;
  442. }
  443. // sprintf(display, "^P1^S3^C%02d%s^S0^R0%s^P1", color, phrasing[r],
  444. // restore_color);
  445. // Added debug statement so we can identify what was sent... color,
  446. // number picked and what that is
  447. ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'",
  448. color, r, phrasing[r]);
  449. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) :");
  450. // Move the buffer so there's room for the display string.
  451. if (buffer_insert(play, len, sizeof(play), cp - play, display)) {
  452. len += strlen(display);
  453. // if (string_insert(buffer, BSIZE * 4, cp - buffer, display)) {
  454. ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) + :");
  455. // ZF_LOGI("mangle(ANSI_CLS):");
  456. // ZF_LOGI_REPR(buffer);
  457. need_render = 1;
  458. /*
  459. Copy the new buffer over, but hide our "render" code
  460. from the remaining mangler steps.
  461. */
  462. memcpy(work, play, len);
  463. // strcpy(work, buffer);
  464. i = cp - play;
  465. // find offset into "buffer"
  466. // apply to work.
  467. memset(work + i, ' ', strlen(display));
  468. } else {
  469. ZF_LOGD("insert failed [%s].", repr(display));
  470. }
  471. }
  472. }
  473. }
  474. }
  475. memcpy(work, play, len);
  476. // strcpy(work, buffer); // sure.
  477. // NOTE: This is NOT aware of my ^TRIGGERS, so they will show up
  478. // as valid things to mangle in work. (Keep this in mind).
  479. const char replace_with = ' ';
  480. for (x = 0; x < len; x++) {
  481. termchar tc = console_char(&console, play[x]);
  482. int ansi = tc.in_ansi;
  483. if (ansi) {
  484. work[x] = replace_with;
  485. if (tc.ansi != START) {
  486. ZF_LOGD("ANSI type %d at %d", tc.ansi, x);
  487. }
  488. }
  489. // fixup "work" so it's a valid C string
  490. if (buffer[x] == 0) {
  491. work[x] = replace_with;
  492. }
  493. }
  494. // fixup "work" buffer so it's a valid c string
  495. // (required for regex to work.)
  496. work[len] = 0;
  497. ZF_LOGV_MEM(work, len, "Work now:");
  498. /*
  499. (random) Locate words (in work), and possibly flip them around.
  500. Transpose words. Transpose case. Transpose letters.
  501. Ok, what would be interesting, is if we could find
  502. W\x1[0;34mORDS with color changes in them, and work with them.
  503. without screwing up the color changes, of course. :P
  504. Example:
  505. Y\x1b[0;1mes \x1b[0;1;34m\x1b[0;1;34;44m N\x1b[0;1;44mo
  506. Yes No
  507. ^ This would be a job for a crazy regex.
  508. I'd have to map the characters to positions in the buffer. :S
  509. I'd want mangle and wrangle to work.
  510. The Message menu -- doesn't hardly get mangled at all (at least on
  511. my test site). Because all of the color changes break up the
  512. words in the menu.
  513. */
  514. x = rx_match(&WORDS, work);
  515. ZF_LOGD("found %d word groups", x);
  516. if (x > 0) {
  517. for (i = 0; i < x; i++) {
  518. // Yes! Be random!
  519. if (random_activate(8)) {
  520. int c = word_mangler(play + rxmatch[i].rm_so,
  521. rxmatch[i].rm_eo - rxmatch[i].rm_so);
  522. if (c) {
  523. mangled++;
  524. mangled_chars += c;
  525. }
  526. }
  527. if (random_activate(4)) {
  528. word_wrangler(play + rxmatch[i].rm_so,
  529. rxmatch[i].rm_eo - rxmatch[i].rm_so);
  530. }
  531. }
  532. }
  533. /*
  534. (random) Locate single words, and transpose words.
  535. Transpose letters.
  536. */
  537. /*
  538. (random) Display up to certain point. Delay.
  539. Print some characters slowly. Delay.
  540. */
  541. if (mangled)
  542. ZF_LOGI("Mangled %d word, %d chars (render %d)", mangled, mangled_chars,
  543. need_render);
  544. if (need_render) {
  545. ZF_LOGD_MEM(play, len, "Ready to render:");
  546. // ZF_LOGD("HH %d : (%d) %s", need_render, (int)strlen(buffer),
  547. // repr(buffer));
  548. }
  549. if (need_render) {
  550. render(fd, play, len);
  551. } else {
  552. write(fd, play, len);
  553. };
  554. return need_render && mangled;
  555. }
  556. int harry_happens(time_t *last_event, int wakeup) {
  557. time_t now = time(NULL);
  558. int elapsed = now - *last_event;
  559. if (elapsed > wakeup) {
  560. // Ok! It's been too long since we've done something.
  561. *last_event = now;
  562. return 1;
  563. }
  564. return 0;
  565. }
  566. #endif // UNWANTED
  567. int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
  568. static int ANSI_CLS_count = 0;
  569. ZF_LOGI("seen: ANSI_CLS");
  570. ANSI_CLS_count++;
  571. if (ANSI_CLS_count > 1) {
  572. // get the restore color value
  573. struct console_details temp_console;
  574. memcpy(&temp_console, &console, sizeof(console));
  575. console_receive(&temp_console, buffer.substr(0, pos));
  576. std::string restore_color;
  577. restore_color.assign(color_restore(&temp_console));
  578. if (random_activate(3)) {
  579. std::ostringstream display;
  580. int needs_cls = 0;
  581. struct image {
  582. const char **lines;
  583. int size;
  584. int cls;
  585. int width; // height = size
  586. } images[] = {{ghost, sizeof(ghost) / sizeof(char *), 1, 0},
  587. {ghead, sizeof(ghead) / sizeof(char *), 1, 0},
  588. {wolf, sizeof(wolf) / sizeof(char *), 1, 0},
  589. {panther, sizeof(panther) / sizeof(char *), 1, 0},
  590. {bat, sizeof(bat) / sizeof(char *), 1, 0},
  591. {icu, sizeof(icu) / sizeof(char *), 0, 20},
  592. {skull, sizeof(skull) / sizeof(char *), 0, 19},
  593. {skullblink, sizeof(skullblink) / sizeof(char *), 0, 19}};
  594. static LastSeen last_files(2);
  595. int r;
  596. do {
  597. r = randint((sizeof(images) / sizeof(image)));
  598. } while (last_files.seen_before(r));
  599. std::string fgoto;
  600. if (!images[r].cls) {
  601. int x = 0, y = 0;
  602. x = randint(79 - images[r].width) + 1;
  603. y = randint(24 - images[r].size) + 1;
  604. display << "^f" << std::setfill('0') << std::setw(2) << x
  605. << std::setw(2) << y << "\x1b[1;1H";
  606. fgoto = display.str();
  607. // reset display
  608. display.str(std::string());
  609. display.clear();
  610. // render image, home cursor
  611. // slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d\x1b[1;1H", x, y);
  612. } else {
  613. fgoto.assign("^F");
  614. }
  615. needs_cls = images[r].cls;
  616. // I get what's happening. Mystic moves cursor to home, CLS, cursor
  617. // home. When we get here, we're ALWAYS at the top of the screen...
  618. // Hence our bat isn't displayed at the end of the screen.
  619. // This is before the actual CLS, so we CLS before displaying our files.
  620. // I tried a ^P2 before doing this .. but I'd rather have the picture up
  621. // right away I think.
  622. // Ok, yes, there's no filename being sent. :P
  623. render_image(images[r].lines, images[r].size);
  624. display << (needs_cls ? "\x1b[2J" : "") << fgoto << restore_color
  625. << "^P3";
  626. // slen = snprintf(display, sizeof(display), "%s%s%s^P3",
  627. // needs_cls ? "\x1b[2J" : "", fgoto, restore_color);
  628. std::string display_output = display.str();
  629. ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r,
  630. repr(display_output.c_str()));
  631. // Move the buffer so there's room for the display string.
  632. buffer.insert(pos, display_output);
  633. work.insert(pos, std::string(display_output.size(), ' '));
  634. return 1; // need_render = 1;
  635. } else {
  636. if (random_activate(4)) {
  637. int r;
  638. std::ostringstream display;
  639. const char *phrasing[] = {
  640. "^R1Haha^P1ha^P1ha", "Poof!", "Got U", "Anyone there?",
  641. "^R1Knock, ^P1Knock",
  642. /*
  643. This picks random color and position -- then
  644. homes cursor and changes to another color. (This can be seen.)
  645. */
  646. "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
  647. static LastSeen last_phrasing(2);
  648. ZF_LOGI("mangle(ANSI_CLS)");
  649. do {
  650. r = randint(sizeof(phrasing) / sizeof(char *));
  651. } while (last_phrasing.seen_before(r));
  652. int color = randint(14) + 1;
  653. int x = randint(30) + 1;
  654. int y = randint(15) + 1;
  655. /*
  656. Don't have it pause there before moving the cursor.
  657. Move the cursor, get the color changed, THEN pause.
  658. Then act all crazy.
  659. NOTE: Make sure if you use any ^R Render effects, turn them off
  660. before trying to display the restore_color. :P ^R0 Also, make
  661. sure you re-home the cursor ^G0101 because that's where they are
  662. expecting the cursor to be! (At least it's how Mystic does it.)
  663. HOME, CLS, HOME, ... Not sure what others do there. We'll see.
  664. */
  665. if (strncmp(phrasing[r], "^G", 2) == 0) {
  666. display << "^S3^P1" << phrasing[r] << "^S0^R0" << restore_color
  667. << "^P1^G0101";
  668. // This starts with a GOTO, so don't use our random position
  669. // slen = snprintf(display, sizeof(display),
  670. // "^S3^P1%s^S0^R0%s^P1^G0101",
  671. // phrasing[r], restore_color);
  672. } else {
  673. display << "^G" << std::setw(2) << std::setfill('0') << x
  674. << std::setw(2) << y << "^S3^C" << std::setw(2) << color
  675. << "^P1" << phrasing[r] << "^S0^R0" << restore_color
  676. << "^P1^G0101";
  677. // slen = snprintf(display, sizeof(display),
  678. // "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
  679. // color, phrasing[r], restore_color);
  680. };
  681. std::string display_output = display.str();
  682. // sprintf(display, "^P1^S3^C%02d%s^S0^R0%s^P1", color, phrasing[r],
  683. // restore_color);
  684. // Added debug statement so we can identify what was sent... color,
  685. // number picked and what that is
  686. ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'", color,
  687. r, phrasing[r]);
  688. ZF_LOGI("mangle(ANSI_CLS): %d %s", r, repr(display_output.c_str()));
  689. // Move the buffer so there's room for the display string.
  690. buffer.insert(pos, display_output);
  691. work.insert(pos, std::string(display_output.size(), ' '));
  692. return 1; // need_render = 1;
  693. }
  694. }
  695. }
  696. }
  697. int mangle(int fd, std::string buffer) {
  698. // a simple default for now.
  699. ZF_LOGI_MEM(buffer.data(), buffer.size(), "mangle(%d): %lu bytes", fd,
  700. buffer.size());
  701. int need_render = 0;
  702. int mangled = 0;
  703. int mangled_chars = 0;
  704. static std::string work;
  705. static size_t work_size = 0;
  706. work.assign(buffer);
  707. // This should allow us to monitor any memory allocations
  708. if (work.capacity() != work_size) {
  709. ZF_LOGD("work cap %lu -> %lu", work_size, work.capacity());
  710. work_size = work.capacity();
  711. }
  712. const char *ANSI_CLS = "\x1b[2J";
  713. size_t pos = buffer.find(ANSI_CLS);
  714. if (pos != std::string::npos) {
  715. if (mangle_clrscr(buffer, work, pos)) {
  716. need_render = 1;
  717. }
  718. }
  719. // Ok, maybe the work string was a bad idea?
  720. static std::string text;
  721. static std::vector<int> text_offsets;
  722. size_t stri;
  723. text.clear();
  724. text_offsets.clear();
  725. for (stri = 0; stri < buffer.size(); ++stri) {
  726. // why wasn't \x1b[?1000h handled by console_char?
  727. // what happened to \x0c ? It is there.
  728. termchar tc = console_char(&console, work[stri]);
  729. if (tc.in_ansi) {
  730. if (tc.ansi != START) {
  731. // Ok, this is something. What is it?
  732. ZF_LOGD("ANSI type %d at %lu", tc.ansi, stri);
  733. switch (tc.ansi) {
  734. case CURSOR:
  735. case CLEAR:
  736. case OTHER:
  737. text.append(1, '.');
  738. text_offsets.push_back(-1);
  739. break;
  740. case COLOR:
  741. // text.append(1, ' ');
  742. // text_offsets.push_back(-1);
  743. break;
  744. }
  745. }
  746. } else {
  747. // These should never get out of sync ...
  748. if (text.size() != text_offsets.size()) {
  749. ZF_LOGE("Error: text != text_offsets %lu != %lu", text.size(),
  750. text_offsets.size());
  751. }
  752. text.append(1, work[stri]);
  753. text_offsets.push_back(stri);
  754. }
  755. }
  756. ZF_LOGD_MEM(buffer.data(), buffer.size(), "Buffer:");
  757. ZF_LOGD_MEM(work.data(), work.size(), "Work:");
  758. ZF_LOGD_MEM(text.data(), text.size(), "Text Buffer:");
  759. std::ostringstream oss;
  760. int comma = 0;
  761. for (auto it = std::begin(text_offsets); it != std::end(text_offsets); ++it) {
  762. if (comma) {
  763. oss << ", ";
  764. };
  765. comma++;
  766. oss << *it;
  767. if (comma == 30) {
  768. std::string temp_output = oss.str();
  769. ZF_LOGD("Vector: %s", temp_output.c_str());
  770. // reset ostringstream
  771. oss.str(std::string());
  772. oss.clear();
  773. comma = 0;
  774. }
  775. }
  776. std::string vector_output = oss.str();
  777. ZF_LOGD("Vector: %s", vector_output.c_str());
  778. if (need_render) {
  779. render(fd, buffer);
  780. } else {
  781. write(fd, buffer.data(), buffer.size());
  782. }
  783. return need_render;
  784. }