|
@@ -38,6 +38,7 @@ Director::Director() {
|
|
|
SF_computer_portline = [this](const std::string &s) {
|
|
|
this->SL_computer_portline(s);
|
|
|
};
|
|
|
+ SF_planetline = [this](const std::string &s) { this->SL_planetline(s); };
|
|
|
build_menu();
|
|
|
}
|
|
|
|
|
@@ -91,7 +92,7 @@ void Director::client_input(const std::string &input) {
|
|
|
|
|
|
if (at_planet_prompt(prompt)) {
|
|
|
// future: If activated at planet menu, activate the planet upgrade
|
|
|
- // script!
|
|
|
+ // script! (Maybe). If I can figure out what planet it is/and where.
|
|
|
to_client("\n\r\x1b[0mFUTURE: Activate the planet upgrade script.\n\r");
|
|
|
to_client(current_raw_prompt);
|
|
|
return;
|
|
@@ -111,6 +112,7 @@ void Director::server_line(const std::string &line,
|
|
|
// check for if we entered game/left game
|
|
|
|
|
|
if (line.find("TradeWars Game Server ") != std::string::npos) {
|
|
|
+ // Inject our proxy activation message
|
|
|
to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
|
|
|
/*
|
|
|
There's a delay here when I save the game data.
|
|
@@ -200,6 +202,16 @@ void Director::server_line(const std::string &line,
|
|
|
if (line == "<Port>") {
|
|
|
SL_parser = SF_portline;
|
|
|
}
|
|
|
+
|
|
|
+ if (line ==
|
|
|
+ " Corporate Planet Scan "
|
|
|
+ " " ||
|
|
|
+ line ==
|
|
|
+ " Personal Planet Scan "
|
|
|
+ " ") {
|
|
|
+ SL_parser = SF_planetline;
|
|
|
+ }
|
|
|
+
|
|
|
/*
|
|
|
if (startswith(line, " Items Status Trading % of max OnBoard"))
|
|
|
SL_parser = SF_portline;
|
|
@@ -379,10 +391,10 @@ void Director::menu_choice(void) {
|
|
|
int line = 0;
|
|
|
std::string display_line;
|
|
|
|
|
|
- ANSIColor by{1, 33};
|
|
|
- ANSIColor cyan{36};
|
|
|
- ANSIColor bg{1, 32};
|
|
|
- ANSIColor bb{1, 34};
|
|
|
+ ANSIColor by{1, 33}; // yellow
|
|
|
+ ANSIColor cyan{36}; // cyan
|
|
|
+ ANSIColor bg{1, 32}; // bright green
|
|
|
+ ANSIColor bb{1, 34}; // bright blue
|
|
|
|
|
|
for (auto const &ppt : pptv) {
|
|
|
output =
|
|
@@ -499,6 +511,8 @@ MenuDispatch *Director::init_scripts_menu(void) {
|
|
|
{"T", "Trade"},
|
|
|
{"S", "Safe Move"},
|
|
|
{"C", "Closest Trade"},
|
|
|
+ {"N", "Nearest Unexplored"},
|
|
|
+ {"V", "Voyager Explorer"},
|
|
|
{"U", "Upgrade Planet Pants"},
|
|
|
{"X", "Exit Scripts"}};
|
|
|
md->setNotify([this]() { this->scripts_done(); });
|
|
@@ -581,6 +595,26 @@ void Director::scripts_done(void) {
|
|
|
to_client("I don't see any best trades.\n\r");
|
|
|
}
|
|
|
} break;
|
|
|
+ case 'N': {
|
|
|
+ sector_type s = galaxy.find_nearest_unexplored(current_sector);
|
|
|
+ if (s != 0) {
|
|
|
+ std::string text = str(boost::format("Sector: %1%\n\r") % s);
|
|
|
+ to_client(text);
|
|
|
+ } else {
|
|
|
+ to_client("I don't see any unexplored.\n\r");
|
|
|
+ }
|
|
|
+ } break;
|
|
|
+ case 'V': {
|
|
|
+ script = std::make_shared<ScriptVoyager>(*this);
|
|
|
+ ScriptVoyager *sv = static_cast<ScriptVoyager *>(&(*script));
|
|
|
+ sv->setNotify([this]() {
|
|
|
+ script.reset();
|
|
|
+ this->proxy_deactivate();
|
|
|
+ });
|
|
|
+ chain = script;
|
|
|
+ chain->activate();
|
|
|
+ return;
|
|
|
+ } break;
|
|
|
case 'Q':
|
|
|
chain = main_menu;
|
|
|
main_menu->activate();
|
|
@@ -1212,3 +1246,53 @@ void Director::SL_computer_portline(const std::string &line) {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+void Director::SL_planetline(const std::string &line) {
|
|
|
+ if (line == "Corporate command [TL=00:00:00]:[344] (?=Help)? Q" ||
|
|
|
+ line == "Computer command [TL=00:00:00]:[344] (?=Help)? Q") {
|
|
|
+ SL_parser = nullptr;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (in(line, "Class ") && (in(line, "Level ") || (endswith(line, "No Citadel")))) {
|
|
|
+ int level;
|
|
|
+ char c;
|
|
|
+ sector_type sector;
|
|
|
+ int number;
|
|
|
+ std::string name;
|
|
|
+ std::string work = line;
|
|
|
+ size_t pos = work.find('#');
|
|
|
+ std::string temp = work.substr(0, pos);
|
|
|
+ trim(temp);
|
|
|
+ sector = sstoi(temp);
|
|
|
+ work = work.substr(pos + 1);
|
|
|
+ number = sstoi(work);
|
|
|
+ pos = work.find(' ');
|
|
|
+ work = work.substr(pos + 1);
|
|
|
+ trim(work);
|
|
|
+ if (endswith(work, "No Citadel")) {
|
|
|
+ level = 0;
|
|
|
+ } else {
|
|
|
+ pos = work.rfind("Level ");
|
|
|
+ temp = work.substr(pos + 6);
|
|
|
+ level = sstoi(temp);
|
|
|
+ }
|
|
|
+ pos = work.rfind("Class ");
|
|
|
+ temp = work.substr(pos + 6);
|
|
|
+ c = temp[0];
|
|
|
+ work = work.substr(0, pos);
|
|
|
+ trim(work);
|
|
|
+ name = work;
|
|
|
+ BUGZ_LOG(warning) << (int)sector << " # " << number << " Class " << c
|
|
|
+ << " Level " << level << " name: [" << name << "]";
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ SL: [ 344 #4 Enjoy the Silence Class M, Earth Type Level 3] SL:
|
|
|
+ [ --- (4M) 1T 64 25 14T 693 277 2T 10M] SL: [
|
|
|
+ 344 #5 High There! Class L, Mountainous Level 2]
|
|
|
+ SL: [ --- (5M) 2T 0 6 25T 100 112 2T 6M]
|
|
|
+ ...
|
|
|
+ SL: [ --- (9M) 3T 64 31 39T 793 389 4T ---]
|
|
|
+ */
|
|
|
+}
|