wordplay.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. #include "charman.h"
  2. #include "images.h"
  3. #include "lastseen.h"
  4. #include "logs_utils.h"
  5. #include "render.h"
  6. #include "terminal.h"
  7. #include "utils.h"
  8. #include "zf_log.h"
  9. #include <iomanip>
  10. #include <regex>
  11. #include <sstream>
  12. #include <string.h>
  13. #include <string>
  14. #include <unistd.h> // write
  15. #include <vector>
  16. extern struct console_details console;
  17. #define BSIZE 512
  18. /*
  19. * harry_idle_event(fd)
  20. *
  21. * User is idle, let's let them know we're here. HAHAHA!
  22. *
  23. */
  24. void harry_idle_event(int fd) {
  25. // Make something happen
  26. std::ostringstream buffer;
  27. int r;
  28. int level = harry_level();
  29. if (!level)
  30. return;
  31. // This is no where near finished, BUT!
  32. // Do not put any ^ codes in these -- the strlen() would be wrong.
  33. const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
  34. "MeOW", "I see U", "Arrooo!",
  35. "Ahh-wooo!", "Aaaooo!"};
  36. static LastSeen last_seen_harry_event(2);
  37. do {
  38. r = randint((sizeof(phrases) / sizeof(char *)));
  39. } while (last_seen_harry_event.seen_before(r));
  40. int color = randint(15) + 1;
  41. // %02d = std::setfill('0') << std::setw(2) << (int)
  42. buffer << "^CS^S2^C" << std::setfill('0') << std::setw(2) << color
  43. << phrases[r] << "^P2^CR^D" << std::setw(2) << strlen(phrases[r]);
  44. std::string str = buffer.str();
  45. ZF_LOGD("harry_event: render(%d, \"%s\")", fd, str.c_str());
  46. render(fd, str);
  47. }
  48. void init_harry() {
  49. // init_have_seen(last_seen_harry_event, MAX_HARRY_EVENT_DUPS);
  50. // ZF_LOGD("init => %d %d", last_seen_harry_event[0],
  51. // last_seen_harry_event[1]);
  52. console_init(&console);
  53. }
  54. // char words[] = "[a-zA-Z]+( [a-zA-Z]+)+";
  55. int mangle_clrscr(std::string &buffer, std::string &work, size_t pos) {
  56. static int ANSI_CLS_count = 0;
  57. ZF_LOGI("seen: ANSI_CLS");
  58. ANSI_CLS_count++;
  59. int level = harry_level();
  60. if (!level)
  61. return 0;
  62. if (ANSI_CLS_count > 1) {
  63. // if (random_activate((level + 1) / 2)) {
  64. if (random_activate(level * 5)) {
  65. std::ostringstream display;
  66. int needs_cls = 0;
  67. struct image {
  68. const char **lines;
  69. int size;
  70. int cls;
  71. int width; // height = size
  72. } images[] = {{ghost, sizeof(ghost) / sizeof(char *), 1, 0},
  73. {ghead, sizeof(ghead) / sizeof(char *), 1, 0},
  74. {wolf, sizeof(wolf) / sizeof(char *), 1, 0},
  75. {panther, sizeof(panther) / sizeof(char *), 1, 0},
  76. {bat, sizeof(bat) / sizeof(char *), 1, 0},
  77. {icu, sizeof(icu) / sizeof(char *), 0, 20},
  78. {skull, sizeof(skull) / sizeof(char *), 0, 19},
  79. {skullblink, sizeof(skullblink) / sizeof(char *), 0, 19}};
  80. static LastSeen last_files(2);
  81. int r;
  82. do {
  83. r = randint((sizeof(images) / sizeof(image)));
  84. } while (last_files.seen_before(r));
  85. std::string fgoto;
  86. if (!images[r].cls) {
  87. int x = 0, y = 0;
  88. x = randint(79 - images[r].width) + 1;
  89. y = randint(24 - images[r].size) + 1;
  90. display << "^CS^f" << std::setfill('0') << std::setw(2) << x
  91. << std::setw(2) << y << "\x1b[1;1H";
  92. fgoto = display.str();
  93. // reset display
  94. display.str(std::string());
  95. display.clear();
  96. } else {
  97. fgoto.assign("^CS^F");
  98. }
  99. needs_cls = images[r].cls;
  100. // I get what's happening. Mystic moves cursor to home, CLS, cursor
  101. // home. When we get here, we're ALWAYS at the top of the screen...
  102. // Hence our bat isn't displayed at the end of the screen.
  103. // This is before the actual CLS, so we CLS before displaying our files.
  104. // I tried a ^P2 before doing this .. but I'd rather have the picture up
  105. // right away I think.
  106. // Ok, yes, there's no filename being sent. :P
  107. render_image(images[r].lines, images[r].size);
  108. display << (needs_cls ? "\x1b[2J" : "") << fgoto << "^CR^P3";
  109. std::string display_output = display.str();
  110. ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r,
  111. repr(display_output.c_str()));
  112. // Move the buffer so there's room for the display string.
  113. buffer.insert(pos, display_output);
  114. work.insert(pos, std::string(display_output.size(), ' '));
  115. return 1; // need_render = 1;
  116. } else {
  117. // if (random_activate((level + 1) / 2)) {
  118. if (random_activate(level * 5)) {
  119. int r;
  120. std::ostringstream display;
  121. const char *phrasing[] = {
  122. "^R1Haha^P1ha^P1ha", "Poof!", "Got U", "Anyone there?",
  123. "^R1Knock, ^P1Knock",
  124. /*
  125. This picks random color and position -- then
  126. homes cursor and changes to another color. (This can be seen.)
  127. */
  128. "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
  129. static LastSeen last_phrasing(2);
  130. ZF_LOGI("mangle(ANSI_CLS)");
  131. do {
  132. r = randint(sizeof(phrasing) / sizeof(char *));
  133. } while (last_phrasing.seen_before(r));
  134. int color = randint(14) + 1;
  135. int x = randint(30) + 1;
  136. int y = randint(15) + 1;
  137. /*
  138. Don't have it pause there before moving the cursor.
  139. Move the cursor, get the color changed, THEN pause.
  140. Then act all crazy.
  141. NOTE: Make sure if you use any ^R Render effects, turn them off
  142. before trying to display the restore_color. :P ^R0 Also, make
  143. sure you re-home the cursor ^G0101 because that's where they are
  144. expecting the cursor to be! (At least it's how Mystic does it.)
  145. HOME, CLS, HOME, ... Not sure what others do there. We'll see.
  146. */
  147. if (strncmp(phrasing[r], "^G", 2) == 0) {
  148. display << "^CS^S3^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
  149. // This starts with a GOTO, so don't use our random position
  150. } else {
  151. display << "^CS^G" << std::setw(2) << std::setfill('0') << x
  152. << std::setw(2) << y << "^S3^C" << std::setw(2) << color
  153. << "^P1" << phrasing[r] << "^S0^R0^CR^P1^G0101";
  154. };
  155. std::string display_output = display.str();
  156. // Added debug statement so we can identify what was sent... color,
  157. // number picked and what that is
  158. ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'", color,
  159. r, phrasing[r]);
  160. ZF_LOGI("mangle(ANSI_CLS): %d %s", r, repr(display_output.c_str()));
  161. // Move the buffer so there's room for the display string.
  162. buffer.insert(pos, display_output);
  163. work.insert(pos, std::string(display_output.size(), ' '));
  164. return 1; // need_render = 1;
  165. }
  166. }
  167. }
  168. return 0;
  169. }
  170. int mangle(int fd, std::string &buffer) {
  171. // a simple default for now.
  172. // ZF_LOGV("mangle [%s]", logrepr(buffer.c_str()));
  173. ZF_LOGV_LR("mangle:", buffer);
  174. /*
  175. ZF_LOGV_MEM(buffer.data(), buffer.size(), "mangle(%d): %lu bytes", fd,
  176. buffer.size());
  177. */
  178. int need_render = 0;
  179. int mangled = 0;
  180. int mangled_chars = 0;
  181. static std::string work;
  182. static size_t work_size = 0;
  183. work.assign(buffer);
  184. // This should allow us to monitor any memory allocations
  185. if (work.capacity() != work_size) {
  186. ZF_LOGD("work cap %lu -> %lu", work_size, work.capacity());
  187. work_size = work.capacity();
  188. }
  189. int level = harry_level();
  190. std::ostringstream new_buffer;
  191. std::smatch match;
  192. if (level) {
  193. // Strings are good, but Regex is better
  194. // Mystic BBS v1.12 A43 for Linux Node 1
  195. // Mystic BBS Version 1.12 A45
  196. static int bbs_match = 0;
  197. if (!bbs_match) {
  198. std::regex bbs_what(
  199. "(?:Mystic BBS Version [0-9.]+ A[0-9]+)|(?:Mystic BBS "
  200. "v[0-9.]+ A[0-9]+ for Linux Node [0-9]+)");
  201. // std::regex bbs_what("Mystic BBS Version [0-9.]+ A[0-9]+");
  202. // std::regex_constants::ECMAScript);
  203. // Mystic BBS v[0-9.]+ A[0-9]+ for Linux Node [0-9]+
  204. if (std::regex_search(buffer, match, bbs_what)) {
  205. // We have a match
  206. ZF_LOGD("bbs_seen");
  207. bbs_match = 1;
  208. std::string old_string =
  209. buffer.substr(match.position(0), match.length(0));
  210. // Build a new and better string
  211. std::string new_string;
  212. const char *bbs_systems[] = {
  213. "Haunted BBS", "Harry's BBS", "Scary BBS Software",
  214. "Screaming BBS", "Fright BBS", "Gravestone BBS",
  215. };
  216. const char *operating_systems[] = {
  217. "OS/360", "CP/M", "OS/9",
  218. "Xenix", "MS-DOS", "PC-DOS",
  219. "DR-DOS", "QNX", "Novell Netware",
  220. "AmigaOS", "Windows NT", "Windows CE",
  221. "AIX", "OS/2", "OS/400",
  222. "NeXTSTEP", "MINIX", "Solaris",
  223. "Plan 9", "FreeBSD", "Windows 95",
  224. "Palm OS", "Mac OS X", "Windows XP",
  225. "DESQview",
  226. };
  227. int r = randint(sizeof(bbs_systems) / sizeof(char *));
  228. new_buffer << bbs_systems[r] << " v" << randint(10) << "."
  229. << randint(80);
  230. new_buffer << " for ";
  231. r = randint(sizeof(operating_systems) / sizeof(char *));
  232. new_buffer << operating_systems[r] << " Node " << randint(150 * level);
  233. new_string = new_buffer.str();
  234. // reset buffer
  235. new_buffer.str(std::string());
  236. new_buffer.clear();
  237. replace(buffer, old_string, new_string);
  238. replace(work, old_string, new_string);
  239. level = 0; // temp turn off the manglers! ;)
  240. }
  241. }
  242. static int author_match = 0;
  243. if (!author_match) {
  244. static std::regex author("Copyright \\(C\\) [0-9-]+ By James Coyle");
  245. if (std::regex_search(buffer, match, author)) {
  246. // We have a match
  247. ZF_LOGD("author seen");
  248. author_match = 1;
  249. std::string old_author =
  250. buffer.substr(match.position(0), match.length(0));
  251. // Build a new and better string
  252. const char *coder_names[] = {"Horrible Harry", "Ghost Writer",
  253. "Sands of Time", "Spector Software",
  254. "Creepy Coder"};
  255. if (randint(10) < 5)
  256. new_buffer << "Copyfright ";
  257. else
  258. new_buffer << "Copyright ";
  259. new_buffer << "(C) " << 1000 + randint(999) << "-" << randint(24000)
  260. << " By ";
  261. int r = randint(sizeof(coder_names) / sizeof(char *));
  262. new_buffer << coder_names[r];
  263. std::string new_author = new_buffer.str();
  264. replace(buffer, old_author, new_author);
  265. replace(work, old_author, new_author);
  266. level = 0;
  267. }
  268. }
  269. }
  270. const char *ANSI_CLS = "\x1b[2J";
  271. size_t pos = buffer.find(ANSI_CLS);
  272. if (pos != std::string::npos) {
  273. if (level)
  274. if (mangle_clrscr(buffer, work, pos)) {
  275. need_render = 1;
  276. }
  277. }
  278. static std::string text;
  279. static std::vector<int> text_offsets;
  280. size_t stri;
  281. text.clear();
  282. text_offsets.clear();
  283. for (stri = 0; stri < buffer.size(); ++stri) {
  284. termchar tc = console_char(&console, work[stri]);
  285. if (tc.in_ansi) {
  286. if (tc.ansi != START) {
  287. // Ok, this is something. What is it?
  288. // ZF_LOGV("ANSI type %d at %lu", tc.ansi, stri);
  289. switch (tc.ansi) {
  290. case CURSOR:
  291. case CLEAR:
  292. case OTHER:
  293. text.append(1, '.');
  294. text_offsets.push_back(-1);
  295. break;
  296. case START:
  297. case COLOR:
  298. // text.append(1, ' ');
  299. // text_offsets.push_back(-1);
  300. // color changes show as nothing in the text string.
  301. break;
  302. }
  303. }
  304. } else {
  305. // These should never get out of sync ...
  306. if (text.size() != text_offsets.size()) {
  307. ZF_LOGE("Error: text != text_offsets %lu != %lu", text.size(),
  308. text_offsets.size());
  309. }
  310. text.append(1, work[stri]);
  311. text_offsets.push_back(stri);
  312. }
  313. }
  314. // Control buffer debugging output.
  315. #ifndef NO_BUFFER_DEBUG
  316. // ZF_LOGV_LR("mangle:", buffer);
  317. ZF_LOGV_LR("Buffer:", buffer);
  318. ZF_LOGV_LR("Work:", work);
  319. ZF_LOGV_LR("Text:", text);
  320. // ZF_LOGV("Buffer: %s", logrepr(buffer.c_str()));
  321. // ZF_LOGV("Work: %s", logrepr(work.c_str()));
  322. // ZF_LOGV("Text: %s", logrepr(text.c_str()));
  323. // ZF_LOGV_MEM(buffer.data(), buffer.size(), "Buffer:");
  324. // ZF_LOGV_MEM(work.data(), work.size(), "Work:");
  325. // ZF_LOGV_MEM(text.data(), text.size(), "Text Buffer:");
  326. // Output vector contents
  327. std::ostringstream oss;
  328. int comma = 0;
  329. for (auto it = std::begin(text_offsets); it != std::end(text_offsets); ++it) {
  330. if (comma) {
  331. oss << ", ";
  332. };
  333. comma++;
  334. oss << *it;
  335. if (comma == 30) {
  336. std::string temp_output = oss.str();
  337. ZF_LOGV("Vector: %s", temp_output.c_str());
  338. // reset ostringstream
  339. oss.str(std::string());
  340. oss.clear();
  341. comma = 0;
  342. }
  343. }
  344. std::string vector_output = oss.str();
  345. ZF_LOGV("Vector: %s", vector_output.c_str());
  346. // reset oss (if we need it)
  347. oss.str(std::string());
  348. oss.clear();
  349. #endif
  350. // Begin the mangle process 2.0
  351. if (level) {
  352. ZF_LOGD("CharMan");
  353. CharMan cm(buffer, work, text, text_offsets);
  354. ZF_LOGD("CharMan %d, %d chars, render %d", cm.mangle_count, cm.mangle_chars,
  355. cm.need_render);
  356. if (cm.need_render)
  357. need_render = 1;
  358. };
  359. if (need_render) {
  360. render(fd, buffer);
  361. } else {
  362. write(fd, buffer.data(), buffer.size());
  363. console_receive(&console, buffer);
  364. }
  365. return need_render;
  366. }