wordplay.cpp 25 KB

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