dispatchers.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  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())
  185. return;
  186. std::string temp = repr(raw_line);
  187. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  188. if (startswith(line, "Command [TL=")) {
  189. return;
  190. }
  191. /*
  192. temp = raw_line;
  193. clean_string(temp);
  194. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  195. */
  196. temp = prompt;
  197. ansi_clean(temp);
  198. size_t total = temp.length() + input.length();
  199. to_client("\x1b[0m"); // reset colors
  200. while (total > 0) {
  201. to_client("\b \b");
  202. --total;
  203. }
  204. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  205. temp = raw_line;
  206. replace(temp, "\x1b[1A", "");
  207. // replace(temp, "\x1[2J", "");
  208. to_client(temp);
  209. to_client("\n\r");
  210. // Doesn't matter if it is one or two calls.
  211. temp = prompt;
  212. temp.append(input);
  213. to_client(temp);
  214. // to_client(prompt);
  215. // to_client(input);
  216. }
  217. // void InputDispatch::server_prompt(const std::string &prompt) {}
  218. void InputDispatch::client_input(const std::string &cinput) {
  219. // BUGZ_LOG(info) << "InputDispatch::client_input(" << cinput << ")";
  220. for (const char ch : cinput) {
  221. if (isprint(ch)) {
  222. // Ok!
  223. if (input.length() < max_length) {
  224. to_client(std::string(1, ch));
  225. input += ch;
  226. }
  227. } else if ((ch == '\b') || (ch == 0x7f)) {
  228. // Backspace or rubout
  229. if (input.length() > 0) {
  230. to_client("\b \b");
  231. input.erase(input.size() - 1);
  232. }
  233. } else if (ch == '\r') {
  234. // Ok, we're done!
  235. BUGZ_LOG(info) << "InputDispatch done: " << input;
  236. to_client("\x1b[0m\n\r");
  237. deactivate();
  238. }
  239. }
  240. }
  241. /**
  242. * Menu Dispatch
  243. *
  244. * Two types of menus:
  245. * lazy: display the menu name and show prompt. ? shows menu.
  246. * non-lazy: displays menu + prompts.
  247. *
  248. *
  249. */
  250. MenuDispatch::MenuDispatch(Director &d) : Dispatch(d) {
  251. BUGZ_LOG(warning) << "MenuDispatch()";
  252. }
  253. MenuDispatch::~MenuDispatch() { BUGZ_LOG(warning) << "~MenuDispatch()"; }
  254. void MenuDispatch::activate(void) {
  255. calculate_widths();
  256. input.clear();
  257. BUGZ_LOG(warning) << "MenuDispatch::activate() " << max_width << ", "
  258. << max_option_width;
  259. if (lazy)
  260. menubox();
  261. else
  262. help();
  263. to_client(menu_prompt);
  264. }
  265. void MenuDispatch::deactivate(void) { notify(); }
  266. void MenuDispatch::help(void) {
  267. size_t max = max_width;
  268. Boxes mbox(max, 1, true);
  269. mbox.boxcolor = menu_box_color;
  270. if (lazy) {
  271. // just the menu
  272. mbox.textcolor = menu_options_color;
  273. to_client(mbox.top());
  274. for (auto const menu_item : menu) {
  275. std::string text = " ";
  276. text.append(menu_item.first);
  277. text.append(" - ");
  278. text.append(menu_item.second);
  279. while (text.length() < max) text.append(1, ' ');
  280. to_client(mbox.row(text));
  281. }
  282. to_client(mbox.bottom());
  283. } else {
  284. // full menu
  285. mbox.textcolor = menu_text_color;
  286. to_client(mbox.top());
  287. std::string title = centered(max, menu_title);
  288. BUGZ_LOG(debug) << "help max=" << max << " [" << title << "]";
  289. to_client(mbox.row(title));
  290. to_client(mbox.middle());
  291. mbox.textcolor = menu_options_color;
  292. for (auto const menu_item : menu) {
  293. std::string text = " ";
  294. text.append(menu_item.first);
  295. text.append(" - ");
  296. text.append(menu_item.second);
  297. while (text.length() < max) text.append(1, ' ');
  298. to_client(mbox.row(text));
  299. }
  300. to_client(mbox.bottom());
  301. }
  302. }
  303. std::string MenuDispatch::centered(int length, const std::string &s) {
  304. std::string text = s;
  305. size_t leftovers = length - text.length();
  306. int count = leftovers / 2;
  307. if (count > 0) {
  308. text.insert(0, count, ' ');
  309. text.append(count, ' ');
  310. }
  311. if (leftovers % 1 == 1) text.append(1, ' ');
  312. return text;
  313. }
  314. void MenuDispatch::menubox(void) {
  315. // just the menu box
  316. std::string title = centered(max_width, menu_title);
  317. /*
  318. int leftovers = max - menu_title.length();
  319. while (leftovers > 2) {
  320. title.insert(0, 1, " ");
  321. title.append(1, " ");
  322. leftovers -= 2;
  323. };
  324. if (leftovers == 1)
  325. title.append(1, " ");
  326. */
  327. BUGZ_LOG(debug) << "menubox max=" << max_width << " [" << title << "]";
  328. auto abox =
  329. Boxes::alert(title, menu_box_color, menu_text_color, max_width, 1, true);
  330. for (auto line : abox) {
  331. to_client(line);
  332. }
  333. }
  334. void MenuDispatch::calculate_widths(void) {
  335. max_width = menu_title.length() + 2;
  336. max_option_width = 0;
  337. for (auto key : menu) {
  338. size_t menu_line_length =
  339. 1 + key.first.length() + 3 + key.second.length() + 1;
  340. if (menu_line_length > max_width) max_width = menu_line_length;
  341. if (key.first.length() > max_option_width)
  342. max_option_width = key.first.length();
  343. }
  344. instant = max_option_width == 1;
  345. }
  346. void MenuDispatch::server_line(const std::string &line,
  347. const std::string &raw_line) {
  348. // TODO:
  349. // Clear prompt, display raw server line, restore prompt.
  350. if (line.empty())
  351. return;
  352. std::string temp = repr(raw_line);
  353. BUGZ_LOG(fatal) << "Input:SL(" << temp << ")";
  354. if (startswith(line, "Command [TL=")) {
  355. return;
  356. }
  357. /*
  358. temp = raw_line;
  359. clean_string(temp);
  360. BUGZ_LOG(fatal) << "InputDispatch::server_line(" << temp << ")";
  361. */
  362. temp = menu_prompt;
  363. ansi_clean(temp);
  364. size_t total = temp.length() + input.length();
  365. to_client("\x1b[0m"); // reset colors
  366. while (total > 0) {
  367. to_client("\b \b");
  368. --total;
  369. }
  370. // Lines line "\[[1A\[[1;36mphil \[[0;32mwarps into the sector.\[[0m"
  371. temp = raw_line;
  372. replace(temp, "\x1b[1A", "");
  373. // replace(temp, "\x1[2J", "");
  374. to_client(temp);
  375. to_client("\n\r");
  376. // Doesn't matter if it is one or two calls.
  377. temp = menu_prompt;
  378. temp.append(input);
  379. to_client(temp);
  380. // to_client(prompt);
  381. // to_client(input);
  382. }
  383. void MenuDispatch::client_input(const std::string &cinput) {
  384. for (auto const ch : cinput) {
  385. // not likely that we'd have more then one,
  386. // but deal with it correctly.
  387. if (ch == '\r') {
  388. // enter
  389. if (instant) return;
  390. for (auto const mnu : menu) {
  391. if (mnu.first == input) {
  392. to_client("\x1b[0m\n\r");
  393. deactivate();
  394. return;
  395. }
  396. }
  397. // input wasn't found ?
  398. while (input.length() > 0) {
  399. to_client("\b \b");
  400. input.erase(input.length() - 1);
  401. }
  402. return; // don't continue ...
  403. }
  404. if (ch == '\x1b') {
  405. // [ESC] - erase the input string
  406. while (input.length() > 0) {
  407. to_client("\b \b");
  408. input.erase(input.length() - 1);
  409. }
  410. // Exit - allow escape from menu
  411. deactivate();
  412. return;
  413. }
  414. if (ch == '\b') {
  415. if (input.length() > 0) {
  416. to_client("\b \b");
  417. input.erase(input.length() - 1);
  418. }
  419. }
  420. if (ch == '?') {
  421. to_client(cinput); // display what they entered.
  422. to_client("\x1b[0m\n\r");
  423. help();
  424. to_client(menu_prompt);
  425. return;
  426. }
  427. if (isprint(ch)) {
  428. char c = ch;
  429. if (!case_sensitive) c = toupper(ch);
  430. // ok, it's a printable character
  431. if (input.length() < max_option_width) {
  432. // ok, there's room.
  433. to_client(std::string(1, c));
  434. input.append(1, c);
  435. }
  436. if (instant) {
  437. for (auto const mnu : menu) {
  438. if (mnu.first == input) {
  439. to_client("\x1b[0m\n\r");
  440. deactivate();
  441. return;
  442. }
  443. }
  444. // Erase last character, wasn't an option.
  445. to_client("\b \b");
  446. input.erase(input.length() - 1);
  447. }
  448. }
  449. }
  450. }
  451. /*
  452. * CoreDispatch: This is an example class that does dispatch.
  453. * Copy this and make changes from there...
  454. */
  455. CoreDispatch::CoreDispatch(Director &d) : Dispatch(d) {
  456. BUGZ_LOG(warning) << "CoreDispatch()";
  457. }
  458. void CoreDispatch::activate(void) {
  459. // save things, set things
  460. }
  461. void CoreDispatch::deactivate(void) {
  462. // restore things
  463. notify();
  464. }
  465. void CoreDispatch::server_line(const std::string &line,
  466. const std::string &raw_line) {}
  467. void CoreDispatch::server_prompt(const std::string &prompt) {}
  468. void CoreDispatch::client_input(const std::string &input) {
  469. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  470. }