wordplay.cpp 24 KB

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