wordplay.cpp 18 KB

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