|
@@ -1,4 +1,5 @@
|
|
|
#include <boost/format.hpp>
|
|
|
+#include <cctype>
|
|
|
|
|
|
#include "dispatchers.h"
|
|
|
#include "logging.h"
|
|
@@ -20,20 +21,44 @@ void Dispatch::notify(void) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-MainDispatch::MainDispatch(Session *s) : Dispatch{s} {
|
|
|
+MainDispatch::MainDispatch(Session *s) : Dispatch{s}, id{s} {
|
|
|
BUGZ_LOG(warning) << "MainDispatch()";
|
|
|
}
|
|
|
|
|
|
+MainDispatch::~MainDispatch() { BUGZ_LOG(warning) << "~MainDispatch()"; }
|
|
|
+
|
|
|
void MainDispatch::activate(void) {
|
|
|
|
|
|
sess->emit_server_line = [this](const std::string &s) { server_line(s); };
|
|
|
sess->emit_server_prompt = [this](const std::string &s) { server_prompt(s); };
|
|
|
- sess->emit_client_input = [this](const std::string &s) { client_input(s); };
|
|
|
+ sess->emit_client_input = nullptr;
|
|
|
+
|
|
|
+
|
|
|
sess->show_client = false;
|
|
|
sess->talk_direct = false;
|
|
|
count = 0;
|
|
|
old_prompt = sess->get_prompt();
|
|
|
to_client("\n\r\x1b[1;34mWELCOME! You are now in the proxy zone...\n\r");
|
|
|
+ id.prompt = "Proxy Main :=> ";
|
|
|
+ id.max_length = 25;
|
|
|
+ id.setNotify([this]() { this->have_input(); });
|
|
|
+ id.activate();
|
|
|
+}
|
|
|
+
|
|
|
+void MainDispatch::have_input(void) {
|
|
|
+ ++count;
|
|
|
+ std::string output =
|
|
|
+ str(boost::format("Your Input (%2%): [%1%]\n\r") % id.input % count);
|
|
|
+
|
|
|
+ to_client(output);
|
|
|
+ if (count >= 5) {
|
|
|
+ to_client("Returning you to the game...\n\r");
|
|
|
+ deactivate();
|
|
|
+ } else {
|
|
|
+
|
|
|
+ id.setNotify([this]() { this->have_input(); });
|
|
|
+ id.activate();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void MainDispatch::deactivate(void) {
|
|
@@ -58,6 +83,7 @@ void MainDispatch::server_prompt(const std::string &prompt) {
|
|
|
BUGZ_LOG(info) << "MDSP: " << prompt;
|
|
|
}
|
|
|
|
|
|
+#ifdef NEVERMORE
|
|
|
void MainDispatch::client_input(const std::string &input) {
|
|
|
|
|
|
BUGZ_LOG(warning) << "Got: " << input;
|
|
@@ -76,11 +102,73 @@ void MainDispatch::client_input(const std::string &input) {
|
|
|
deactivate();
|
|
|
}
|
|
|
}
|
|
|
+#endif
|
|
|
+
|
|
|
+InputDispatch::InputDispatch(Session *s) : Dispatch(s) {
|
|
|
+ BUGZ_LOG(warning) << "InputDispatch()";
|
|
|
+}
|
|
|
|
|
|
+void InputDispatch::activate(void) {
|
|
|
+ ds = sess->save_settings();
|
|
|
+ sess->emit_server_line = [this](const std::string &s) { server_line(s); };
|
|
|
+ sess->emit_server_prompt =
|
|
|
+ nullptr;
|
|
|
+ sess->emit_client_input = [this](const std::string &s) { client_input(s); };
|
|
|
+ sess->show_client = false;
|
|
|
+ sess->talk_direct = false;
|
|
|
+
|
|
|
+ input.clear();
|
|
|
+ to_client(prompt);
|
|
|
+}
|
|
|
+
|
|
|
+void InputDispatch::deactivate(void) {
|
|
|
+ sess->restore_settings(ds);
|
|
|
+ notify();
|
|
|
+}
|
|
|
+
|
|
|
+void InputDispatch::server_line(const std::string &line) {}
|
|
|
+
|
|
|
+
|
|
|
+void InputDispatch::client_input(const std::string &cinput) {
|
|
|
+ for (const char ch : cinput) {
|
|
|
+ if (isprint(ch)) {
|
|
|
+
|
|
|
+ if (input.length() < max_length) {
|
|
|
+ to_client(std::string(1, ch));
|
|
|
+ input += ch;
|
|
|
+ }
|
|
|
+ } else if ((ch == '\b') || (ch == 0x7f)) {
|
|
|
+
|
|
|
+ if (input.length() > 0) {
|
|
|
+ to_client("\b \b");
|
|
|
+ input.erase(input.size() - 1);
|
|
|
+ }
|
|
|
+ } else if (ch == '\r') {
|
|
|
+
|
|
|
+ BUGZ_LOG(info) << "InputDispatch done: " << input;
|
|
|
+ to_client("\n\r");
|
|
|
+ deactivate();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ * CoreDispatch: This is an example class that does dispatch.
|
|
|
+ * Copy this and make changes from there...
|
|
|
+ */
|
|
|
CoreDispatch::CoreDispatch(Session *s) : Dispatch{s} {
|
|
|
BUGZ_LOG(warning) << "CoreDispatch()";
|
|
|
}
|
|
|
|
|
|
+void CoreDispatch::activate(void) {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+void CoreDispatch::deactivate(void) {
|
|
|
+
|
|
|
+ notify();
|
|
|
+}
|
|
|
+
|
|
|
void CoreDispatch::server_line(const std::string &line) {}
|
|
|
void CoreDispatch::server_prompt(const std::string &prompt) {}
|
|
|
void CoreDispatch::client_input(const std::string &input) {
|