|
@@ -91,7 +91,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 +111,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.
|
|
@@ -378,10 +379,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 =
|
|
@@ -498,6 +499,7 @@ MenuDispatch *Director::init_scripts_menu(void) {
|
|
|
{"T", "Trade"},
|
|
|
{"S", "Safe Move"},
|
|
|
{"C", "Closest Trade"},
|
|
|
+ {"N", "Nearest Unexplored"},
|
|
|
{"U", "Upgrade Planet Pants"},
|
|
|
{"X", "Exit Scripts"}};
|
|
|
md->setNotify([this]() { this->scripts_done(); });
|
|
@@ -580,6 +582,15 @@ 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 'Q':
|
|
|
chain = main_menu;
|
|
|
main_menu->activate();
|