|
@@ -3,6 +3,7 @@
|
|
|
#include <boost/format.hpp>
|
|
|
#include <cctype>
|
|
|
|
|
|
+#include "ansicolor.h"
|
|
|
#include "boxes.h"
|
|
|
#include "galaxy.h"
|
|
|
#include "logging.h"
|
|
@@ -68,15 +69,22 @@ void Director::client_input(const std::string &input) {
|
|
|
// easter-eggs:
|
|
|
|
|
|
if (prompt == "Enter your choice: ") {
|
|
|
- to_client("\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
|
|
|
- "that's how I was coded.\n\r");
|
|
|
+ ANSIColor c1(COLOR::CYAN, ATTR::BOLD);
|
|
|
+ ANSIColor c2(COLOR::WHITE, ATTR::BOLD);
|
|
|
+
|
|
|
+ to_client(std::string("\n\r") + c1() + "I'd choose " + c2() + "`T`" +
|
|
|
+ c1() + ", but that's how I was coded.\n\r");
|
|
|
+ // "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
|
|
|
+ // "that's how I was coded.\n\r");
|
|
|
+
|
|
|
to_client(current_raw_prompt);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
// easter-egg
|
|
|
if (prompt == "[Pause]") {
|
|
|
- to_client(" \x1b[1;36mPAWS\x1b[0m\n\r");
|
|
|
+ ANSIColor c1(COLOR::CYAN, ATTR::BOLD);
|
|
|
+ to_client(std::string(" ") + c1() + "PAWS" + reset() + "\n\r");
|
|
|
to_client(current_raw_prompt);
|
|
|
return;
|
|
|
}
|
|
@@ -89,36 +97,13 @@ void Director::client_input(const std::string &input) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- //
|
|
|
- // The command prompt that we're looking for:
|
|
|
- //
|
|
|
- // "Command [TL=00:00:00]:[242] (?=Help)? : "
|
|
|
- // the time, and the sector number vary...
|
|
|
- /*
|
|
|
- if (startswith(prompt, "Command [")) {
|
|
|
- // if (prompt.substr(0, 9) == "Command [") {
|
|
|
- // int len = prompt.length();
|
|
|
- if (endswith(prompt, "] (?=Help)? : ")) {
|
|
|
- // if (prompt.substr(len - 14) == "] (?=Help)? : ") {
|
|
|
- proxy_activate();
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- */
|
|
|
if (at_command_prompt(prompt)) {
|
|
|
proxy_activate();
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
// Ok...
|
|
|
- if (talk_direct)
|
|
|
- to_server(input);
|
|
|
-
|
|
|
- /*
|
|
|
- if (emit_client_input)
|
|
|
- emit_client_input(line);
|
|
|
- */
|
|
|
+ if (talk_direct) to_server(input);
|
|
|
}
|
|
|
|
|
|
void Director::server_line(const std::string &line,
|
|
@@ -152,12 +137,16 @@ void Director::server_line(const std::string &line,
|
|
|
if (!galaxy.config["display_lines"]) {
|
|
|
galaxy.config["display_lines"] = 20;
|
|
|
}
|
|
|
+
|
|
|
galaxy.meta["help"]["display_lines"] =
|
|
|
"Number of report lines to display";
|
|
|
+
|
|
|
if (!galaxy.config["burnt_percent"]) {
|
|
|
galaxy.config["burnt_percent"] = 40;
|
|
|
}
|
|
|
- galaxy.meta["help"]["burnt_percent"] = "Ignore ports below this percent";
|
|
|
+
|
|
|
+ galaxy.meta["help"]["burnt_percent"] =
|
|
|
+ "Don't display ports in report below this percent";
|
|
|
}
|
|
|
// not needed (handled by above Game Server check).
|
|
|
if (ch == 'Q') {
|
|
@@ -236,11 +225,6 @@ void Director::server_line(const std::string &line,
|
|
|
SL_parser(line);
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- if (emit_server_line) {
|
|
|
- emit_server_line(line);
|
|
|
- }
|
|
|
- */
|
|
|
if (chain) {
|
|
|
chain->server_line(line, raw_line);
|
|
|
}
|
|
@@ -266,7 +250,7 @@ void Director::server_prompt(const std::string &prompt,
|
|
|
after = prompt.find("] (?=Help)");
|
|
|
sector_text = prompt.substr(before, after - before);
|
|
|
current_sector = stoi(sector_text);
|
|
|
- BUGZ_LOG(fatal) << "Sector: " << sector_text;
|
|
|
+ BUGZ_LOG(info) << "current_sector = " << current_sector;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -281,13 +265,24 @@ void Director::server_prompt(const std::string &prompt,
|
|
|
void Director::build_menu(void) {
|
|
|
main_menu = std::make_shared<MenuDispatch>(*this);
|
|
|
MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
|
|
|
- md->menu_box_color = "\x1b[1;33;44m";
|
|
|
- md->menu_text_color = "\x1b[1;37;44m";
|
|
|
+ ANSIColor bcolor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD);
|
|
|
+ ANSIColor tcolor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD);
|
|
|
+ ANSIColor mocolor(COLOR::CYAN, ATTR::BOLD);
|
|
|
+ md->menu_box_color = bcolor(); // "\x1b[1;33;44m";
|
|
|
+ md->menu_text_color = tcolor(); // "\x1b[1;37;44m";
|
|
|
md->menu_title = "Proxy Menu";
|
|
|
- md->menu_options_color = "\x1b[1;36;40m";
|
|
|
+ md->menu_options_color = mocolor(); // "\x1b[1;36;40m";
|
|
|
+
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ std::string prompt = by() + "M" + cyan() + "ain " + by() + "P" + cyan() +
|
|
|
+ "roxy " + bg() + "=>" + reset() + " ";
|
|
|
+
|
|
|
+ md->menu_prompt = prompt; // "Main Proxy => ";
|
|
|
|
|
|
- md->menu_prompt = "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
|
|
|
- "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
|
|
|
+ // "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
|
|
|
+ // "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
|
|
|
md->lazy = true;
|
|
|
md->menu = {{"C", "Configure"},
|
|
|
{"D", "Display Report"},
|
|
@@ -358,53 +353,68 @@ void Director::menu_choice(void) {
|
|
|
return;
|
|
|
} else {
|
|
|
switch (md->input[0]) {
|
|
|
- case 'C': // configure
|
|
|
- config_edit();
|
|
|
- return;
|
|
|
- break;
|
|
|
- case 'D':
|
|
|
- case 'T': // display trading report
|
|
|
- {
|
|
|
- auto pptv = galaxy.find_best_trades();
|
|
|
- std::string output;
|
|
|
- galaxy.sort_port_pair_type(pptv);
|
|
|
-
|
|
|
- int max_display = 20;
|
|
|
- if (galaxy.config["display_lines"])
|
|
|
- max_display = galaxy.config["display_lines"].as<int>();
|
|
|
- else
|
|
|
- galaxy.config["display_lines"] = max_display;
|
|
|
-
|
|
|
- if ((max_display <= 0) || (max_display > 255)) {
|
|
|
- max_display = 255;
|
|
|
- galaxy.config["display_lines"] = 255;
|
|
|
- }
|
|
|
- const int per_line = 5;
|
|
|
- int count = 0;
|
|
|
- int line = 0;
|
|
|
- for (auto const &ppt : pptv) {
|
|
|
- output = str(boost::format("%1$5d:%2$-5d(%3$d) ") % ppt.s1 % ppt.s2 %
|
|
|
- ppt.type);
|
|
|
- to_client(output);
|
|
|
- ++count;
|
|
|
- if (count == per_line) {
|
|
|
- count = 0;
|
|
|
- to_client("\n\r");
|
|
|
- ++line;
|
|
|
+ case 'C': // configure
|
|
|
+ config_edit();
|
|
|
+ return;
|
|
|
+ break;
|
|
|
+ case 'D':
|
|
|
+ case 'T': // display trading report
|
|
|
+ {
|
|
|
+ auto pptv = galaxy.find_best_trades();
|
|
|
+ std::string output;
|
|
|
+ galaxy.sort_port_pair_type(pptv);
|
|
|
+
|
|
|
+ int max_display = 20;
|
|
|
+ if (galaxy.config["display_lines"])
|
|
|
+ max_display = galaxy.config["display_lines"].as<int>();
|
|
|
+ else
|
|
|
+ galaxy.config["display_lines"] = max_display;
|
|
|
+
|
|
|
+ if ((max_display <= 0) || (max_display > 255)) {
|
|
|
+ max_display = 255;
|
|
|
+ galaxy.config["display_lines"] = 255;
|
|
|
+ }
|
|
|
+ const int per_line = 5;
|
|
|
+ int count = 0;
|
|
|
+ int line = 0;
|
|
|
+ std::string display_line;
|
|
|
+
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ ANSIColor bb{1, 34};
|
|
|
+
|
|
|
+ for (auto const &ppt : pptv) {
|
|
|
+ output =
|
|
|
+ str(boost::format("%1%%2$5d%3%:%4%%5$-5d%3%(%6%%7$d%3%) ") %
|
|
|
+ by() % ppt.s1 % cyan() % bg() % ppt.s2 % bb() % ppt.type);
|
|
|
+ display_line.append(output);
|
|
|
+
|
|
|
+ ++count;
|
|
|
+ if (count == per_line) {
|
|
|
+ count = 0;
|
|
|
+ display_line.append("\n\r");
|
|
|
+ to_client(display_line);
|
|
|
+ display_line.clear();
|
|
|
+ ++line;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (line == max_display) break;
|
|
|
}
|
|
|
|
|
|
- if (line == max_display)
|
|
|
- break;
|
|
|
- }
|
|
|
- if (count != 0)
|
|
|
- to_client("\n\r");
|
|
|
- // We got < 5 lines, and max_display is > 5. Offer suggestion:
|
|
|
- if ((line < 5) && (max_display > 5)) {
|
|
|
- // suggestion:
|
|
|
- to_client(
|
|
|
- "HINT: For more lines, try reducing the burnt_percent?\n\r");
|
|
|
- }
|
|
|
- } break;
|
|
|
+ if (count != 0) {
|
|
|
+ display_line.append("\n\r");
|
|
|
+ to_client(display_line);
|
|
|
+ display_line.clear();
|
|
|
+ }
|
|
|
+
|
|
|
+ // We got < 5 lines, and max_display is > 5. Offer suggestion:
|
|
|
+ if ((line < 5) && (max_display > 5)) {
|
|
|
+ // suggestion:
|
|
|
+ to_client(
|
|
|
+ "HINT: For more lines, try reducing the burnt_percent?\n\r");
|
|
|
+ }
|
|
|
+ } break;
|
|
|
case 'E': // Export Data/Save
|
|
|
to_client("Saving...");
|
|
|
galaxy.save();
|
|
@@ -477,12 +487,20 @@ MenuDispatch *Director::init_scripts_menu(void) {
|
|
|
md->menu_title = "Scripts Menu";
|
|
|
md->menu_options_color = "\x1b[1;32;40m";
|
|
|
md->lazy = false;
|
|
|
- md->menu_prompt = " SCRIPT : ";
|
|
|
+
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ std::string prompt = by() + "S" + cyan() + "cript " + by() + "M" + cyan() +
|
|
|
+ "enu " + bg() + "=>" + reset() + " ";
|
|
|
+
|
|
|
+ md->menu_prompt = prompt; // " SCRIPT : ";
|
|
|
md->menu = {{"!", "Terror"},
|
|
|
{"T", "Trade"},
|
|
|
{"S", "Safe Move"},
|
|
|
{"C", "Closest Trade"},
|
|
|
- {"U", "Upgrade Planet Pants"}};
|
|
|
+ {"U", "Upgrade Planet Pants"},
|
|
|
+ {"X", "Exit Scripts"}};
|
|
|
md->setNotify([this]() { this->scripts_done(); });
|
|
|
return md;
|
|
|
}
|
|
@@ -563,6 +581,11 @@ void Director::scripts_done(void) {
|
|
|
to_client("I don't see any best trades.\n\r");
|
|
|
}
|
|
|
} break;
|
|
|
+ case 'Q':
|
|
|
+ chain = main_menu;
|
|
|
+ main_menu->activate();
|
|
|
+ return;
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -586,7 +609,14 @@ InputDispatch *Director::init_config_input(void) {
|
|
|
if (config_input) {
|
|
|
// Yes, it has been setup before.
|
|
|
id = dynamic_cast<InputDispatch *>(&(*config_input));
|
|
|
- id->prompt = "Config => ";
|
|
|
+
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ std::string prompt =
|
|
|
+ by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
|
|
|
+ id->prompt = prompt; // "Config => ";
|
|
|
+ id->numeric = true;
|
|
|
id->max_length = 3;
|
|
|
config_item.clear();
|
|
|
return id;
|
|
@@ -594,7 +624,13 @@ InputDispatch *Director::init_config_input(void) {
|
|
|
// set it up
|
|
|
config_input = std::make_shared<InputDispatch>(*this);
|
|
|
id = static_cast<InputDispatch *>(&(*config_input));
|
|
|
- id->prompt = "Config => ";
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ std::string prompt =
|
|
|
+ by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
|
|
|
+ id->prompt = prompt; // "Config => ";
|
|
|
+ id->numeric = true;
|
|
|
id->max_length = 3;
|
|
|
id->setNotify([this]() { this->config_have_input(); });
|
|
|
config_item.clear();
|
|
@@ -613,13 +649,21 @@ void Director::config_edit(void) {
|
|
|
}
|
|
|
// to_client("Configuration:\n\r");
|
|
|
int item = 1;
|
|
|
+ ANSIColor number(COLOR::CYAN);
|
|
|
+ ANSIColor key(COLOR::GREEN, ATTR::BOLD);
|
|
|
+ ANSIColor value(COLOR::BLUE, ATTR::BOLD);
|
|
|
+
|
|
|
for (auto const &cfg : galaxy.config) {
|
|
|
- std::string output = str(boost::format("%1$2d %2$20s: %3$s\n\r") % item %
|
|
|
- cfg.first % cfg.second);
|
|
|
+ std::string output =
|
|
|
+ str(boost::format("%1%%2$2d %3%%4$20s: %5%%6$s%7%\n\r") % number() %
|
|
|
+ item % key() % cfg.first % value() % cfg.second % reset());
|
|
|
to_client(output);
|
|
|
++item;
|
|
|
}
|
|
|
- to_client("Enter number to edit, blank to exit.\n\r");
|
|
|
+ std::string message =
|
|
|
+ number() + "Enter number to edit, " + key() + "blank to exit.\n\r";
|
|
|
+ // to_client("Enter number to edit, blank to exit.\n\r");
|
|
|
+ to_client(message);
|
|
|
|
|
|
// setup call to config_input:
|
|
|
InputDispatch *id = init_config_input();
|
|
@@ -645,19 +689,11 @@ void Director::config_have_input(void) {
|
|
|
config_input.reset();
|
|
|
return;
|
|
|
} else {
|
|
|
- int item;
|
|
|
- try {
|
|
|
- item = stoi(id->input);
|
|
|
- } catch (const std::invalid_argument &e) {
|
|
|
- BUGZ_LOG(fatal) << e.what();
|
|
|
- item = 0;
|
|
|
- } catch (const std::out_of_range &e) {
|
|
|
- BUGZ_LOG(fatal) << e.what();
|
|
|
- item = 0;
|
|
|
- }
|
|
|
+ int item = sstoi(id->input);
|
|
|
|
|
|
if ((item < 1) || (item > (int)galaxy.config.size())) {
|
|
|
// selection out of range - redisplay config menu
|
|
|
+ to_client("What? I didn't see that item.\n\r");
|
|
|
config_edit();
|
|
|
return;
|
|
|
} else {
|
|
@@ -666,14 +702,23 @@ void Director::config_have_input(void) {
|
|
|
for (auto const &c : config) {
|
|
|
if (pos == item) {
|
|
|
// got it!
|
|
|
+ ANSIColor key(COLOR::GREEN, ATTR::BOLD);
|
|
|
+ ANSIColor value(COLOR::BLUE, ATTR::BOLD);
|
|
|
|
|
|
config_item = c.first.as<std::string>();
|
|
|
std::string output =
|
|
|
- str(boost::format("%1% : %2%\n\r") % config_item %
|
|
|
- galaxy.meta["help"][config_item]);
|
|
|
+ str(boost::format("%1%%2% : %3%%4%\n\r") % key() % config_item %
|
|
|
+ value() % galaxy.meta["help"][config_item]);
|
|
|
to_client(output);
|
|
|
id->max_length = 30;
|
|
|
- id->prompt = "Change to => ";
|
|
|
+ id->numeric = false;
|
|
|
+
|
|
|
+ ANSIColor by{1, 33};
|
|
|
+ ANSIColor cyan{36};
|
|
|
+ ANSIColor bg{1, 32};
|
|
|
+ std::string prompt =
|
|
|
+ by() + "C" + cyan() + "hange to " + bg() + "=>" + reset() + " ";
|
|
|
+ id->prompt = prompt;
|
|
|
id->activate();
|
|
|
return;
|
|
|
};
|