dispatchers.cpp 15 KB

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