|
@@ -1,5 +1,7 @@
|
|
#include "director.h"
|
|
#include "director.h"
|
|
|
|
+
|
|
#include <boost/format.hpp>
|
|
#include <boost/format.hpp>
|
|
|
|
+
|
|
#include "boxes.h"
|
|
#include "boxes.h"
|
|
#include "galaxy.h"
|
|
#include "galaxy.h"
|
|
#include "logging.h"
|
|
#include "logging.h"
|
|
@@ -17,6 +19,15 @@ Director::Director() {
|
|
talk_direct = true;
|
|
talk_direct = true;
|
|
show_client = true;
|
|
show_client = true;
|
|
count = 0;
|
|
count = 0;
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ Setup StringFunc for SL_parser:
|
|
|
|
+ Construct these once, rather then every single time we need them.
|
|
|
|
+ */
|
|
|
|
+ SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
|
|
|
|
+ SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
|
|
|
|
+ SF_portline = [this](const std::string &s) { this->SL_portline(s); };
|
|
|
|
+ SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
|
|
}
|
|
}
|
|
|
|
|
|
Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
|
|
Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
|
|
@@ -71,20 +82,12 @@ void Director::client_input(const std::string &input) {
|
|
// "Command [TL=00:00:00]:[242] (?=Help)? : "
|
|
// "Command [TL=00:00:00]:[242] (?=Help)? : "
|
|
// the time, and the sector number vary...
|
|
// the time, and the sector number vary...
|
|
|
|
|
|
- if (prompt.substr(0, 9) == "Command [") {
|
|
|
|
- int len = prompt.length();
|
|
|
|
- if (prompt.substr(len - 14) == "] (?=Help)? : ") {
|
|
|
|
|
|
+ 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();
|
|
proxy_activate();
|
|
- /*
|
|
|
|
- to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
|
|
|
|
- "activate.\n\r");
|
|
|
|
- // active = true;
|
|
|
|
- // show_client = true; // because if something comes (unexpected)
|
|
|
|
- // from the server? talk_direct = false;
|
|
|
|
-
|
|
|
|
- // but we aren't activating (NNY)
|
|
|
|
- to_client(get_prompt());
|
|
|
|
- */
|
|
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -96,14 +99,17 @@ void Director::client_input(const std::string &input) {
|
|
if (emit_client_input)
|
|
if (emit_client_input)
|
|
emit_client_input(line);
|
|
emit_client_input(line);
|
|
*/
|
|
*/
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-void Director::server_line(const std::string &line, const std::string &raw_line) {
|
|
|
|
|
|
+void Director::server_line(const std::string &line,
|
|
|
|
+ const std::string &raw_line) {
|
|
// check for if we entered game/left game
|
|
// check for if we entered game/left game
|
|
|
|
|
|
if (line.find("TradeWars Game Server ") != std::string::npos) {
|
|
if (line.find("TradeWars Game Server ") != std::string::npos) {
|
|
to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
|
|
to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
|
|
|
|
+ if (game) {
|
|
|
|
+ // TODO: Save galaxy data
|
|
|
|
+ }
|
|
game = 0;
|
|
game = 0;
|
|
// reset "active game" -- we're at the TWGS main menu
|
|
// reset "active game" -- we're at the TWGS main menu
|
|
}
|
|
}
|
|
@@ -113,13 +119,48 @@ void Director::server_line(const std::string &line, const std::string &raw_line)
|
|
if (ch >= 'A' && ch < 'Q') {
|
|
if (ch >= 'A' && ch < 'Q') {
|
|
game = ch;
|
|
game = ch;
|
|
BUGZ_LOG(warning) << "GAME " << game << " activated!";
|
|
BUGZ_LOG(warning) << "GAME " << game << " activated!";
|
|
|
|
+ // TODO: Load game data
|
|
}
|
|
}
|
|
// not needed (handled by above Game Server check).
|
|
// not needed (handled by above Game Server check).
|
|
- if (ch == 'Q') game = 0;
|
|
|
|
|
|
+ if (ch == 'Q') {
|
|
|
|
+ if (game) {
|
|
|
|
+ // TODO: Save galaxy data
|
|
|
|
+ }
|
|
|
|
+ game = 0;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
if (game) {
|
|
if (game) {
|
|
// in-game parsing here.
|
|
// in-game parsing here.
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ ____ _ _
|
|
|
|
+ / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
|
|
|
|
+ \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
|
|
|
|
+ ___) | __/ | \ V / __/ | | |___| | | | | __/
|
|
|
|
+ |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
|
|
|
|
+
|
|
|
|
+ ____ _
|
|
|
|
+ | _ \ __ _ _ __ ___(_)_ __ __ _
|
|
|
|
+ | |_) / _` | '__/ __| | '_ \ / _` |
|
|
|
|
+ | __/ (_| | | \__ \ | | | | (_| |
|
|
|
|
+ |_| \__,_|_| |___/_|_| |_|\__, |
|
|
|
|
+ |___/
|
|
|
|
+
|
|
|
|
+ This is where all of the server lines are gleaned for all the
|
|
|
|
+ information that we can get out of them.
|
|
|
|
+
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+ if (startswith(line, " Items Status Trading % of max OnBoard"))
|
|
|
|
+ SL_parser = SF_portline;
|
|
|
|
+ if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
|
|
|
|
+ if (line == ": ") SL_parser = SF_cimline;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if (SL_parser) {
|
|
|
|
+ SL_parser(line);
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -136,6 +177,20 @@ void Director::server_prompt(const std::string &prompt,
|
|
const std::string &raw_prompt) {
|
|
const std::string &raw_prompt) {
|
|
current_prompt = prompt;
|
|
current_prompt = prompt;
|
|
current_raw_prompt = raw_prompt;
|
|
current_raw_prompt = raw_prompt;
|
|
|
|
+
|
|
|
|
+ if (game) {
|
|
|
|
+ // in-game parsing here.
|
|
|
|
+ if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
|
|
|
|
+ std::string sector_text;
|
|
|
|
+ size_t before, after;
|
|
|
|
+ before = prompt.find("]:[") + 3;
|
|
|
|
+ after = prompt.find("] (?=Help)");
|
|
|
|
+ sector_text = prompt.substr(before, after - before);
|
|
|
|
+ current_sector = stoi(sector_text);
|
|
|
|
+ BUGZ_LOG(fatal) << "Sector: " << sector_text;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
/*
|
|
/*
|
|
if (emit_server_prompt)
|
|
if (emit_server_prompt)
|
|
emit_server_prompt(prompt);
|
|
emit_server_prompt(prompt);
|
|
@@ -144,8 +199,8 @@ void Director::server_prompt(const std::string &prompt,
|
|
}
|
|
}
|
|
|
|
|
|
void Director::proxy_activate(void) {
|
|
void Director::proxy_activate(void) {
|
|
- active = true; // yes, set keep-alive timer.
|
|
|
|
- to_server(" "); // start keep-alive timer.
|
|
|
|
|
|
+ active = true; // yes, set keep-alive timer.
|
|
|
|
+ to_server(" "); // start keep-alive timer.
|
|
|
|
|
|
// set other values we need
|
|
// set other values we need
|
|
talk_direct = false;
|
|
talk_direct = false;
|
|
@@ -177,40 +232,40 @@ void Director::proxy_activate(void) {
|
|
std::shared_ptr<Dispatch> menu = std::make_shared<MenuDispatch>(*this);
|
|
std::shared_ptr<Dispatch> menu = std::make_shared<MenuDispatch>(*this);
|
|
chain = menu;
|
|
chain = menu;
|
|
MenuDispatch *md = static_cast<MenuDispatch *>(&(*menu));
|
|
MenuDispatch *md = static_cast<MenuDispatch *>(&(*menu));
|
|
- md->menu_box_color = "\x1b[1;33;44m";
|
|
|
|
- md->menu_text_color = "\x1b[1;37;44m";
|
|
|
|
- md->menu_title = "Proxy Menu";
|
|
|
|
- md->menu_options_color = "\x1b[1;36;40m";
|
|
|
|
-
|
|
|
|
- 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 : ";
|
|
|
|
- md->lazy = true;
|
|
|
|
- md->menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
|
|
|
|
- md->setNotify([this]() { this->menu_choice(); });
|
|
|
|
- menu->activate();
|
|
|
|
-/*
|
|
|
|
- // Using InputDispatch -- and see have_input
|
|
|
|
- std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
|
|
|
|
- chain = readline;
|
|
|
|
- InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
|
|
|
|
- id->prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
|
|
|
|
- id->max_length = 15;
|
|
|
|
- id->setNotify([this]() { this->have_input(); });
|
|
|
|
- readline->activate();
|
|
|
|
-*/
|
|
|
|
-
|
|
|
|
|
|
+ md->menu_box_color = "\x1b[1;33;44m";
|
|
|
|
+ md->menu_text_color = "\x1b[1;37;44m";
|
|
|
|
+ md->menu_title = "Proxy Menu";
|
|
|
|
+ md->menu_options_color = "\x1b[1;36;40m";
|
|
|
|
+
|
|
|
|
+ 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 : ";
|
|
|
|
+ md->lazy = true;
|
|
|
|
+ md->menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
|
|
|
|
+ md->setNotify([this]() { this->menu_choice(); });
|
|
|
|
+ menu->activate();
|
|
|
|
+ /*
|
|
|
|
+ // Using InputDispatch -- and see have_input
|
|
|
|
+ std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
|
|
|
|
+ chain = readline;
|
|
|
|
+ InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
|
|
|
|
+ id->prompt = "\x1b[0m \x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
|
|
|
|
+ id->max_length = 15;
|
|
|
|
+ id->setNotify([this]() { this->have_input(); });
|
|
|
|
+ readline->activate();
|
|
|
|
+ */
|
|
}
|
|
}
|
|
|
|
|
|
void Director::menu_choice(void) {
|
|
void Director::menu_choice(void) {
|
|
- MenuDispatch * md = dynamic_cast<MenuDispatch *>(&(*chain));
|
|
|
|
|
|
+ MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
|
|
if (md) {
|
|
if (md) {
|
|
if (md->input.empty()) {
|
|
if (md->input.empty()) {
|
|
to_client("Menu aborted.\n\r");
|
|
to_client("Menu aborted.\n\r");
|
|
proxy_deactivate();
|
|
proxy_deactivate();
|
|
return;
|
|
return;
|
|
} else {
|
|
} else {
|
|
- std::string text = str(boost::format( "Back from Menu [%1%] was selected.\n\r") % md->input);
|
|
|
|
|
|
+ std::string text = str(
|
|
|
|
+ boost::format("Back from Menu [%1%] was selected.\n\r") % md->input);
|
|
to_client(text);
|
|
to_client(text);
|
|
|
|
|
|
md->activate();
|
|
md->activate();
|
|
@@ -242,15 +297,17 @@ void Director::proxy_deactivate(void) {
|
|
// reset everything back to good state
|
|
// reset everything back to good state
|
|
talk_direct = true;
|
|
talk_direct = true;
|
|
show_client = true;
|
|
show_client = true;
|
|
- /*
|
|
|
|
- current_prompt = old_prompt;
|
|
|
|
- current_raw_prompt = old_raw_prompt;
|
|
|
|
- */
|
|
|
|
chain.reset();
|
|
chain.reset();
|
|
to_client("\n\r");
|
|
to_client("\n\r");
|
|
to_client(current_raw_prompt);
|
|
to_client(current_raw_prompt);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+
|
|
|
|
+Server Line Parsing Routines
|
|
|
|
+
|
|
|
|
+ */
|
|
|
|
+
|
|
void Director::SL_cimline(const std::string &line) {
|
|
void Director::SL_cimline(const std::string &line) {
|
|
if (line == ": ENDINTERROG") {
|
|
if (line == ": ENDINTERROG") {
|
|
SL_parser = nullptr;
|
|
SL_parser = nullptr;
|
|
@@ -258,6 +315,8 @@ void Director::SL_cimline(const std::string &line) {
|
|
}
|
|
}
|
|
if (line == ": ") {
|
|
if (line == ": ") {
|
|
// do I need to do anything special here for this?
|
|
// do I need to do anything special here for this?
|
|
|
|
+ // Maybe -- We would save special ports that don't show up (StarDock/Special) before.
|
|
|
|
+ // We don't know (at this point) if this is warps or ports.
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
if (line.empty()) {
|
|
if (line.empty()) {
|
|
@@ -266,10 +325,11 @@ void Director::SL_cimline(const std::string &line) {
|
|
}
|
|
}
|
|
|
|
|
|
// parse cimline
|
|
// parse cimline
|
|
- size_t pos = line.find('%');
|
|
|
|
- std::string work = line;
|
|
|
|
|
|
+ // size_t pos = line.find('%');
|
|
|
|
+ // std::string work = line;
|
|
|
|
|
|
- if (pos == line.npos) {
|
|
|
|
|
|
+ // if (pos == line.npos) {
|
|
|
|
+ if (in(line, "%")) {
|
|
// warpcim
|
|
// warpcim
|
|
BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
|
|
BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
|
|
auto warps = split(line);
|
|
auto warps = split(line);
|
|
@@ -287,7 +347,7 @@ void Director::SL_cimline(const std::string &line) {
|
|
// portcim
|
|
// portcim
|
|
struct port p = parse_portcim(line);
|
|
struct port p = parse_portcim(line);
|
|
if (p.sector == 0)
|
|
if (p.sector == 0)
|
|
- BUGZ_LOG(fatal) << "portcim: [" << line << "]";
|
|
|
|
|
|
+ BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
|
|
else
|
|
else
|
|
BUGZ_LOG(fatal) << "portcim: " << p;
|
|
BUGZ_LOG(fatal) << "portcim: " << p;
|
|
}
|
|
}
|
|
@@ -308,6 +368,47 @@ void Director::SL_thiefline(const std::string &line) {
|
|
}
|
|
}
|
|
void Director::SL_sectorline(const std::string &line) {
|
|
void Director::SL_sectorline(const std::string &line) {
|
|
BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
|
|
BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
|
|
|
|
+ if (line.empty()) {
|
|
|
|
+ SL_parser = nullptr;
|
|
|
|
+ } else {
|
|
|
|
+ /*
|
|
|
|
+ sectorline: [Sector : 926 in The Federation.]
|
|
|
|
+ sectorline: [Beacon : FedSpace, FedLaw Enforced]
|
|
|
|
+ sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
|
|
|
|
+ sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
|
|
|
|
+ sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
|
|
|
|
+ sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
|
|
|
|
+ sectorline: [Warps to Sector(s) : 70 - (475) - 569]
|
|
|
|
+ */
|
|
|
|
+ if (in(line, "Sector :")) {
|
|
|
|
+ current_sector = stoi(line.substr(10));
|
|
|
|
+ BUGZ_LOG(warning) << "SECTOR: " << current_sector;
|
|
|
|
+ }
|
|
|
|
+ if (in(line, "Ports :")) {
|
|
|
|
+ std::string port_class;
|
|
|
|
+ size_t pos = line.find(", Class ");
|
|
|
|
+ if (pos != std::string::npos) {
|
|
|
|
+ pos += 8;
|
|
|
|
+ int class_ = stoi(line.substr(pos));
|
|
|
|
+ BUGZ_LOG(fatal) << "PORT: " << class_;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (in(line, "Warps to Sector(s) :")) {
|
|
|
|
+ std::string temp = line.substr( 20 );
|
|
|
|
+ replace(temp, " - ", " ");
|
|
|
|
+ // unexplored sectors ()
|
|
|
|
+ // Should I track these?
|
|
|
|
+ replace(temp, "(", "");
|
|
|
|
+ replace(temp, ")", "");
|
|
|
|
+ sector_warps sw;
|
|
|
|
+ auto warps = split(temp);
|
|
|
|
+ sw.sector = current_sector;
|
|
|
|
+ for( auto const &w : warps) {
|
|
|
|
+ sw.add(stoi(w));
|
|
|
|
+ }
|
|
|
|
+ BUGZ_LOG(fatal) << "WARPS: " << sw;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
void Director::SL_portline(const std::string &line) {
|
|
void Director::SL_portline(const std::string &line) {
|
|
@@ -316,12 +417,18 @@ void Director::SL_portline(const std::string &line) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
BUGZ_LOG(info) << "portline : " << line;
|
|
BUGZ_LOG(info) << "portline : " << line;
|
|
- size_t pos = line.find('%');
|
|
|
|
- if (pos != line.npos) {
|
|
|
|
|
|
+ if (in(line, "%")) {
|
|
|
|
+ // size_t pos = line.find('%');
|
|
|
|
+ // if (pos != line.npos) {
|
|
// Ok, this is a valid portline
|
|
// Ok, this is a valid portline
|
|
std::string work = line;
|
|
std::string work = line;
|
|
replace(work, "Fuel Ore", "Fuel");
|
|
replace(work, "Fuel Ore", "Fuel");
|
|
- BUGZ_LOG(fatal) << "re.split? : [" << work << "]";
|
|
|
|
|
|
+ auto parts = split(work);
|
|
|
|
+ BUGZ_LOG(fatal) << "portline split:";
|
|
|
|
+ for( auto const p : parts) {
|
|
|
|
+ BUGZ_LOG(fatal) << p;
|
|
|
|
+ }
|
|
|
|
+ // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|