wordplay.cpp 14 KB

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