wordplay.cpp 25 KB

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