dispatchers.cpp 5.5 KB

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