dispatchers.cpp 12 KB

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