wordplay.cpp 14 KB

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