dispatchers.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. #include "dispatchers.h"
  2. #include <boost/format.hpp>
  3. #include <cctype>
  4. #include "boxes.h"
  5. #include "logging.h"
  6. #include "utils.h"
  7. Dispatch::Dispatch(Director &d) : director{d} {};
  8. Dispatch::~Dispatch(){};
  9. void Dispatch::to_server(const std::string &send) { director.to_server(send); }
  10. void Dispatch::to_client(const std::string &send) { director.to_client(send); }
  11. const std::string &Dispatch::get_prompt(void) {
  12. return director.current_prompt;
  13. }
  14. void Dispatch::setNotify(notifyFunc nf) { notify_ = nf; }
  15. void Dispatch::notify(void) {
  16. if (director.post) {
  17. director.post(notify_);
  18. }
  19. }
  20. void Dispatch::chain_client_input(const std::string &input) {
  21. if (chain) {
  22. chain->chain_client_input(input);
  23. } else {
  24. client_input(input);
  25. }
  26. }
  27. void Dispatch::chain_server_line(const std::string &line,
  28. const std::string &raw_line) {
  29. if (chain) {
  30. chain->chain_server_line(line, raw_line);
  31. } else {
  32. server_line(line, raw_line);
  33. }
  34. }
  35. void Dispatch::chain_server_prompt(const std::string &prompt) {
  36. if (chain) {
  37. chain->chain_server_prompt(prompt);
  38. } else {
  39. server_prompt(prompt);
  40. }
  41. }
  42. void Dispatch::server_line(const std::string &line,
  43. const std::string &raw_line) {}
  44. void Dispatch::server_prompt(const std::string &prompt) {}
  45. void Dispatch::client_input(const std::string &input) {}
  46. MainDispatch::MainDispatch(Director &d) : Dispatch{d}, id{d}, md{d} {
  47. BUGZ_LOG(warning) << "MainDispatch()";
  48. }
  49. MainDispatch::~MainDispatch() { BUGZ_LOG(warning) << "~MainDispatch()"; }
  50. void MainDispatch::activate(void) {
  51. count = 0;
  52. old_prompt = get_prompt();
  53. /*
  54. ╔══════════════════════════════╗
  55. ║ TradeWars Proxy Active ║
  56. ╚══════════════════════════════╝
  57. -=>
  58. */
  59. Boxes box(30, 1, true);
  60. box.boxcolor = "\x1b[1;33;44m";
  61. box.textcolor = "\x1b[1;33;44m";
  62. to_client("\n\r");
  63. to_client(box.top());
  64. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  65. to_client(box.row(output));
  66. to_client(box.bottom());
  67. // to_client("\n\r\x1b[1;34mWELCOME! You are now in the proxy zone...\n\r");
  68. id.prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  69. id.max_length = 15;
  70. id.setNotify([this]() { this->have_input(); });
  71. id.activate();
  72. }
  73. void MainDispatch::have_input(void) {
  74. ++count;
  75. std::string output =
  76. str(boost::format("Your Input (%2%): [%1%]\n\r") % id.input % count);
  77. to_client("\x1b[0m");
  78. to_client(output);
  79. if (id.input == "?") {
  80. // Maybe? Maybe not.
  81. }
  82. if (id.input == "menu") {
  83. md.menu_box_color = "\x1b[1;33;44m";
  84. md.menu_text_color = "\x1b[1;37;44m";
  85. md.menu_title = "Proxy Menu";
  86. md.menu_options_color = "\x1b[1;36;40m";
  87. // md.menu_prompt = " --==>> ";
  88. // bold white to white --- black to green
  89. // md.menu_prompt = "\x1b[1;37;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED GREEN
  90. // \x1b[30;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
  91. // md.menu_prompt = "\x1b[0;31;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED
  92. // GREEN\x1b[37;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
  93. const char *CP437_GRADIENT = "\xdb\xb2\xb1\xb0 "; // 100, 75, 50, 25, 0
  94. md.menu_prompt =
  95. "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  96. "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  97. md.lazy = true;
  98. md.menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
  99. md.setNotify([this]() { this->menu_choice(); });
  100. md.activate();
  101. return;
  102. }
  103. if (id.input == "menu2") {
  104. md.lazy = false;
  105. md.setNotify([this]() { this->menu_choice(); });
  106. md.activate();
  107. return;
  108. }
  109. if (id.input.empty()) {
  110. // if (count >= 5) {
  111. auto lines = Boxes::alert(" Returning you to the game... ", "",
  112. "\x1b[1;32m", 30, 1, true);
  113. // I'm not setting the box color, so the last color bleeds over.
  114. to_client("\x1b[0m");
  115. for (auto line : lines) {
  116. to_client(line);
  117. };
  118. to_client("Returning you to the game...\n\r");
  119. deactivate();
  120. } else {
  121. // prompt it again, sam.
  122. id.setNotify([this]() { this->have_input(); });
  123. id.activate();
  124. }
  125. }
  126. void MainDispatch::menu_choice(void) {
  127. if (md.input.empty()) {
  128. to_client("Menu abort.\n\r");
  129. } else {
  130. std::string text = "Back from menu [";
  131. text.append(md.input);
  132. text.append("] was your selection.\n\r");
  133. to_client(text);
  134. }
  135. id.max_length = 15;
  136. id.setNotify([this]() { this->have_input(); });
  137. id.activate();
  138. }
  139. void MainDispatch::deactivate(void) {
  140. // Since we're the main thing there --
  141. // sess->show_client = true;
  142. // sess->talk_direct = true;
  143. notify();
  144. }
  145. void MainDispatch::server_line(const std::string &line,
  146. const std::string &raw_line) {
  147. BUGZ_LOG(info) << "MDSL: " << line;
  148. to_client("SL: ");
  149. to_client(line);
  150. to_client("\n\r");
  151. }
  152. void MainDispatch::server_prompt(const std::string &prompt) {
  153. BUGZ_LOG(info) << "MDSP: " << prompt;
  154. }
  155. #ifdef NEVERMORE
  156. void MainDispatch::client_input(const std::string &input) {
  157. // I don't care what the old prompt looked liked at this point.
  158. BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
  159. // Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
  160. // up.
  161. if (input == "\x1b") {
  162. return;
  163. }
  164. ++count;
  165. std::string output = str(boost::format("MSG %1%: [%2%]\n\r") % count % input);
  166. to_client(output);
  167. if (count >= 5) {
  168. to_client("And we're outta here!\n\r");
  169. deactivate();
  170. }
  171. }
  172. #endif
  173. InputDispatch::InputDispatch(Director &d) : Dispatch(d) {
  174. BUGZ_LOG(warning) << "InputDispatch()";
  175. }
  176. InputDispatch::~InputDispatch() { BUGZ_LOG(warning) << "~InputDispatch()"; }
  177. void InputDispatch::activate(void) {
  178. input.clear();
  179. to_client(prompt);
  180. }
  181. void InputDispatch::deactivate(void) { notify(); }
  182. void InputDispatch::server_line(const std::string &line,
  183. const std::string &raw_line) {
  184. if (line.empty()) return;
  185. std::string temp = repr(raw_line);
  186. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  187. if (startswith(line, "Command [TL=")) {
  188. return;
  189. }
  190. /*
  191. temp = raw_line;
  192. clean_string(temp);
  193. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  194. */
  195. temp = prompt;
  196. ansi_clean(temp);
  197. size_t total = temp.length() + input.length();
  198. to_client("\x1b[0m"); // reset colors
  199. while (total > 0) {
  200. to_client("\b \b");
  201. --total;
  202. }
  203. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  204. temp = raw_line;
  205. replace(temp, "\x1b[1A", "");
  206. // replace(temp, "\x1[2J", "");
  207. to_client(temp);
  208. to_client("\n\r");
  209. // Doesn't matter if it is one or two calls.
  210. temp = prompt;
  211. temp.append(input);
  212. to_client(temp);
  213. // to_client(prompt);
  214. // to_client(input);
  215. }
  216. // void InputDispatch::server_prompt(const std::string &prompt) {}
  217. void InputDispatch::client_input(const std::string &cinput) {
  218. // BUGZ_LOG(info) << "InputDispatch::client_input(" << cinput << ")";
  219. for (const char ch : cinput) {
  220. if (isprint(ch)) {
  221. // Ok!
  222. if (input.length() < max_length) {
  223. to_client(std::string(1, ch));
  224. input += ch;
  225. }
  226. } else if ((ch == '\b') || (ch == 0x7f)) {
  227. // Backspace or rubout
  228. if (input.length() > 0) {
  229. to_client("\b \b");
  230. input.erase(input.size() - 1);
  231. }
  232. } else if (ch == '\r') {
  233. // Ok, we're done!
  234. BUGZ_LOG(info) << "InputDispatch done: " << input;
  235. to_client("\x1b[0m\n\r");
  236. deactivate();
  237. }
  238. }
  239. }
  240. /**
  241. * Menu Dispatch
  242. *
  243. * Two types of menus:
  244. * lazy: display the menu name and show prompt. ? shows menu.
  245. * non-lazy: displays menu + prompts.
  246. *
  247. *
  248. */
  249. MenuDispatch::MenuDispatch(Director &d) : Dispatch(d) {
  250. BUGZ_LOG(warning) << "MenuDispatch()";
  251. }
  252. MenuDispatch::~MenuDispatch() { BUGZ_LOG(warning) << "~MenuDispatch()"; }
  253. void MenuDispatch::activate(void) {
  254. calculate_widths();
  255. input.clear();
  256. BUGZ_LOG(warning) << "MenuDispatch::activate() " << max_width << ", "
  257. << max_option_width;
  258. if (lazy)
  259. menubox();
  260. else
  261. help();
  262. to_client(menu_prompt);
  263. }
  264. void MenuDispatch::deactivate(void) { notify(); }
  265. void MenuDispatch::help(void) {
  266. size_t max = max_width;
  267. Boxes mbox(max, 1, true);
  268. mbox.boxcolor = menu_box_color;
  269. if (lazy) {
  270. // just the menu
  271. mbox.textcolor = menu_options_color;
  272. to_client(mbox.top());
  273. for (auto const menu_item : menu) {
  274. std::string text = " ";
  275. text.append(menu_item.first);
  276. text.append(" - ");
  277. text.append(menu_item.second);
  278. while (text.length() < max) text.append(1, ' ');
  279. to_client(mbox.row(text));
  280. }
  281. to_client(mbox.bottom());
  282. } else {
  283. // full menu
  284. mbox.textcolor = menu_text_color;
  285. to_client(mbox.top());
  286. std::string title = centered(max, menu_title);
  287. BUGZ_LOG(debug) << "help max=" << max << " [" << title << "]";
  288. to_client(mbox.row(title));
  289. to_client(mbox.middle());
  290. mbox.textcolor = menu_options_color;
  291. for (auto const menu_item : menu) {
  292. std::string text = " ";
  293. text.append(menu_item.first);
  294. text.append(" - ");
  295. text.append(menu_item.second);
  296. while (text.length() < max) text.append(1, ' ');
  297. to_client(mbox.row(text));
  298. }
  299. to_client(mbox.bottom());
  300. }
  301. }
  302. std::string MenuDispatch::centered(int length, const std::string &s) {
  303. std::string text = s;
  304. size_t leftovers = length - text.length();
  305. int count = leftovers / 2;
  306. if (count > 0) {
  307. text.insert(0, count, ' ');
  308. text.append(count, ' ');
  309. }
  310. if (leftovers % 1 == 1) text.append(1, ' ');
  311. return text;
  312. }
  313. void MenuDispatch::menubox(void) {
  314. // just the menu box
  315. std::string title = centered(max_width, menu_title);
  316. /*
  317. int leftovers = max - menu_title.length();
  318. while (leftovers > 2) {
  319. title.insert(0, 1, " ");
  320. title.append(1, " ");
  321. leftovers -= 2;
  322. };
  323. if (leftovers == 1)
  324. title.append(1, " ");
  325. */
  326. BUGZ_LOG(debug) << "menubox max=" << max_width << " [" << title << "]";
  327. auto abox =
  328. Boxes::alert(title, menu_box_color, menu_text_color, max_width, 1, true);
  329. for (auto line : abox) {
  330. to_client(line);
  331. }
  332. }
  333. void MenuDispatch::calculate_widths(void) {
  334. max_width = menu_title.length() + 2;
  335. max_option_width = 0;
  336. for (auto key : menu) {
  337. size_t menu_line_length =
  338. 1 + key.first.length() + 3 + key.second.length() + 1;
  339. if (menu_line_length > max_width) max_width = menu_line_length;
  340. if (key.first.length() > max_option_width)
  341. max_option_width = key.first.length();
  342. }
  343. instant = max_option_width == 1;
  344. }
  345. void MenuDispatch::server_line(const std::string &line,
  346. const std::string &raw_line) {
  347. // TODO:
  348. // Clear prompt, display raw server line, restore prompt.
  349. if (line.empty()) return;
  350. std::string temp = repr(raw_line);
  351. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  352. if (startswith(line, "Command [TL=")) {
  353. return;
  354. }
  355. /*
  356. temp = raw_line;
  357. clean_string(temp);
  358. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  359. */
  360. temp = menu_prompt;
  361. ansi_clean(temp);
  362. size_t total = temp.length() + input.length();
  363. to_client("\x1b[0m"); // reset colors
  364. while (total > 0) {
  365. to_client("\b \b");
  366. --total;
  367. }
  368. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  369. temp = raw_line;
  370. replace(temp, "\x1b[1A", "");
  371. // replace(temp, "\x1[2J", "");
  372. to_client(temp);
  373. to_client("\n\r");
  374. // Doesn't matter if it is one or two calls.
  375. temp = menu_prompt;
  376. temp.append(input);
  377. to_client(temp);
  378. // to_client(prompt);
  379. // to_client(input);
  380. }
  381. void MenuDispatch::client_input(const std::string &cinput) {
  382. for (auto const ch : cinput) {
  383. // not likely that we'd have more then one,
  384. // but deal with it correctly.
  385. if (ch == '\r') {
  386. // enter
  387. if (instant) return;
  388. for (auto const mnu : menu) {
  389. if (mnu.first == input) {
  390. to_client("\x1b[0m\n\r");
  391. deactivate();
  392. return;
  393. }
  394. }
  395. // input wasn't found ?
  396. while (input.length() > 0) {
  397. to_client("\b \b");
  398. input.erase(input.length() - 1);
  399. }
  400. return; // don't continue ...
  401. }
  402. if (ch == '\x1b') {
  403. // [ESC] - erase the input string
  404. while (input.length() > 0) {
  405. to_client("\b \b");
  406. input.erase(input.length() - 1);
  407. }
  408. // Exit - allow escape from menu
  409. deactivate();
  410. return;
  411. }
  412. if (ch == '\b') {
  413. if (input.length() > 0) {
  414. to_client("\b \b");
  415. input.erase(input.length() - 1);
  416. }
  417. }
  418. if (ch == '?') {
  419. to_client(cinput); // display what they entered.
  420. to_client("\x1b[0m\n\r");
  421. help();
  422. to_client(menu_prompt);
  423. return;
  424. }
  425. if (isprint(ch)) {
  426. char c = ch;
  427. if (!case_sensitive) c = toupper(ch);
  428. // ok, it's a printable character
  429. if (input.length() < max_option_width) {
  430. // ok, there's room.
  431. to_client(std::string(1, c));
  432. input.append(1, c);
  433. }
  434. if (instant) {
  435. for (auto const mnu : menu) {
  436. if (mnu.first == input) {
  437. to_client("\x1b[0m\n\r");
  438. deactivate();
  439. return;
  440. }
  441. }
  442. // Erase last character, wasn't an option.
  443. to_client("\b \b");
  444. input.erase(input.length() - 1);
  445. }
  446. }
  447. }
  448. }
  449. CIMDispatch::CIMDispatch(Director &d) : Dispatch(d) {}
  450. void CIMDispatch::activate(void) { count = 0; }
  451. void CIMDispatch::deactivate(void) { notify(); }
  452. void CIMDispatch::server_line(const std::string &line,
  453. const std::string &raw_line) {
  454. if (!((line.empty() || startswith(line, ": ") ||
  455. startswith(line, "Command [")))) {
  456. count++;
  457. if (count % 100 == 0) {
  458. std::string message = str(boost::format("\r%1%") % count);
  459. to_client(message);
  460. }
  461. }
  462. if (line == ": ENDINTERROG") {
  463. std::string message = str(boost::format("\r%1%\n\r") % count);
  464. to_client(message);
  465. deactivate();
  466. }
  467. }
  468. /*
  469. * CoreDispatch: This is an example class that does dispatch.
  470. * Copy this and make changes from there...
  471. */
  472. CoreDispatch::CoreDispatch(Director &d) : Dispatch(d) {
  473. BUGZ_LOG(warning) << "CoreDispatch()";
  474. }
  475. void CoreDispatch::activate(void) {
  476. // save things, set things
  477. }
  478. void CoreDispatch::deactivate(void) {
  479. // restore things
  480. notify();
  481. }
  482. void CoreDispatch::server_line(const std::string &line,
  483. const std::string &raw_line) {}
  484. void CoreDispatch::server_prompt(const std::string &prompt) {}
  485. void CoreDispatch::client_input(const std::string &input) {
  486. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  487. }