dispatchers.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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} {
  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 = 5;
  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.empty()) {
  63. // if (count >= 5) {
  64. auto lines = Boxes::alert(" Returning you to the game... ", "",
  65. "\x1b[1;32m", 30, 1, true);
  66. // I'm not setting the box color, so the last color bleeds over.
  67. to_client("\x1b[0m");
  68. for (auto line : lines) {
  69. to_client(line);
  70. };
  71. to_client("Returning you to the game...\n\r");
  72. deactivate();
  73. } else {
  74. // prompt it again, sam.
  75. id.setNotify([this]() { this->have_input(); });
  76. id.activate();
  77. }
  78. }
  79. void MainDispatch::deactivate(void) {
  80. // Since we're the main thing there --
  81. sess->emit_server_line = nullptr;
  82. sess->emit_server_prompt = nullptr;
  83. sess->emit_client_input = nullptr;
  84. sess->show_client = true;
  85. sess->talk_direct = true;
  86. sess->set_prompt(old_prompt);
  87. notify();
  88. }
  89. void MainDispatch::server_line(const std::string &line) {
  90. BUGZ_LOG(info) << "MDSL: " << line;
  91. to_client("SL: ");
  92. to_client(line);
  93. to_client("\n\r");
  94. }
  95. void MainDispatch::server_prompt(const std::string &prompt) {
  96. BUGZ_LOG(info) << "MDSP: " << prompt;
  97. }
  98. #ifdef NEVERMORE
  99. void MainDispatch::client_input(const std::string &input) {
  100. // I don't care what the old prompt looked liked at this point.
  101. BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
  102. // Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
  103. // up.
  104. if (input == "\x1b") {
  105. return;
  106. }
  107. ++count;
  108. std::string output = str(boost::format("MSG %1%: [%2%]\n\r") % count % input);
  109. to_client(output);
  110. if (count >= 5) {
  111. to_client("And we're outta here!\n\r");
  112. deactivate();
  113. }
  114. }
  115. #endif
  116. InputDispatch::InputDispatch(Session *s) : Dispatch(s) {
  117. BUGZ_LOG(warning) << "InputDispatch()";
  118. }
  119. void InputDispatch::activate(void) {
  120. ds = sess->save_settings();
  121. sess->emit_server_line = [this](const std::string &s) { server_line(s); };
  122. sess->emit_server_prompt =
  123. nullptr; // [this](const std::string &s) { server_prompt(s); };
  124. sess->emit_client_input = [this](const std::string &s) { client_input(s); };
  125. sess->show_client = false; // don not auto-send server to client
  126. sess->talk_direct = false; // do not auto-send client to server
  127. input.clear();
  128. to_client(prompt);
  129. }
  130. void InputDispatch::deactivate(void) {
  131. sess->restore_settings(ds);
  132. notify();
  133. }
  134. void InputDispatch::server_line(const std::string &line) {}
  135. // void InputDispatch::server_prompt(const std::string &prompt) {}
  136. void InputDispatch::client_input(const std::string &cinput) {
  137. for (const char ch : cinput) {
  138. if (isprint(ch)) {
  139. // Ok!
  140. if (input.length() < max_length) {
  141. to_client(std::string(1, ch));
  142. input += ch;
  143. }
  144. } else if ((ch == '\b') || (ch == 0x7f)) {
  145. // Backspace or rubout
  146. if (input.length() > 0) {
  147. to_client("\b \b");
  148. input.erase(input.size() - 1);
  149. }
  150. } else if (ch == '\r') {
  151. // Ok, we're done!
  152. BUGZ_LOG(info) << "InputDispatch done: " << input;
  153. to_client("\x1b[0m\n\r");
  154. deactivate();
  155. }
  156. }
  157. }
  158. /*
  159. * CoreDispatch: This is an example class that does dispatch.
  160. * Copy this and make changes from there...
  161. */
  162. CoreDispatch::CoreDispatch(Session *s) : Dispatch{s} {
  163. BUGZ_LOG(warning) << "CoreDispatch()";
  164. }
  165. void CoreDispatch::activate(void) {
  166. // save things, set things
  167. }
  168. void CoreDispatch::deactivate(void) {
  169. // restore things
  170. notify();
  171. }
  172. void CoreDispatch::server_line(const std::string &line) {}
  173. void CoreDispatch::server_prompt(const std::string &prompt) {}
  174. void CoreDispatch::client_input(const std::string &input) {
  175. BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
  176. }