dispatchers.cpp 5.1 KB

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