|
@@ -267,12 +267,12 @@ void Director::build_menu(void) {
|
|
|
"\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
|
|
|
md->lazy = true;
|
|
|
md->menu = {{"C", "Configure"},
|
|
|
- // {"D", "Display Report"},
|
|
|
+ {"D", "Display Report"},
|
|
|
{"E", "Export Data/Save"},
|
|
|
{"I", "Information"},
|
|
|
{"P", "Port CIM"},
|
|
|
{"W", "Warp CIM"},
|
|
|
- {"T", "Trading Report"},
|
|
|
+ {"T", "Trading Report (same as D)"},
|
|
|
{"S", "Scripts"},
|
|
|
{"X", "eXit"}};
|
|
|
md->setNotify([this]() { this->menu_choice(); });
|
|
@@ -339,6 +339,7 @@ void Director::menu_choice(void) {
|
|
|
config_edit();
|
|
|
return;
|
|
|
break;
|
|
|
+ case 'D':
|
|
|
case 'T': // display trading report
|
|
|
{
|
|
|
auto pptv = galaxy.find_best_trades();
|
|
@@ -419,7 +420,7 @@ void Director::menu_choice(void) {
|
|
|
/*
|
|
|
std::string text = str(
|
|
|
boost::format("Back from Menu [%1%] was selected.\n\r") %
|
|
|
- md->input);
|
|
|
+ md->input);
|
|
|
to_client(text);
|
|
|
*/
|
|
|
|
|
@@ -463,7 +464,8 @@ void Director::scripts_done(void) {
|
|
|
case 'T': // Trade
|
|
|
script = std::make_shared<ScriptTrader>(*this);
|
|
|
ScriptTrader *ts = static_cast<ScriptTrader *>(&((*script)));
|
|
|
- chain = script;
|
|
|
+ ts->setNotify( [this](){ this->proxy_deactivate(); } );
|
|
|
+
|
|
|
// Set parameters
|
|
|
auto found = galaxy.find_trades(current_sector, false);
|
|
|
if (found.empty()) {
|
|
@@ -473,9 +475,16 @@ void Director::scripts_done(void) {
|
|
|
proxy_deactivate();
|
|
|
return;
|
|
|
}
|
|
|
+ // sort first?
|
|
|
+ galaxy.sort_port_pair_type(found);
|
|
|
+
|
|
|
+ BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
|
|
|
+ BUGZ_LOG(fatal) << found[0].s1 << "," << found[0].s2 << " : "
|
|
|
+ << found[0].type;
|
|
|
ts->port[0] = found[0].s1;
|
|
|
ts->port[1] = found[0].s2;
|
|
|
ts->type = found[0].type;
|
|
|
+ chain = script;
|
|
|
chain->activate();
|
|
|
return;
|
|
|
break;
|
|
@@ -799,7 +808,7 @@ void Director::SL_portline(const std::string &line) {
|
|
|
SL: [C Shield Points : 116 credits per point 100]
|
|
|
SL: []
|
|
|
*/
|
|
|
- BUGZ_LOG(info) << "portline : " << line;
|
|
|
+ // BUGZ_LOG(info) << "portline : " << line;
|
|
|
if (in(line, "%")) {
|
|
|
// size_t pos = line.find('%');
|
|
|
// if (pos != line.npos) {
|
|
@@ -807,10 +816,12 @@ void Director::SL_portline(const std::string &line) {
|
|
|
std::string work = line;
|
|
|
replace(work, "Fuel Ore", "Fuel");
|
|
|
auto parts = split(work);
|
|
|
+ /*
|
|
|
BUGZ_LOG(fatal) << "portline split:";
|
|
|
for (auto const p : parts) {
|
|
|
BUGZ_LOG(fatal) << p;
|
|
|
}
|
|
|
+ */
|
|
|
// BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
|
|
|
}
|
|
|
}
|
|
@@ -837,6 +848,8 @@ void Director::SL_infoline(const std::string &line) {
|
|
|
if (state == 2) {
|
|
|
SL_parser = nullptr;
|
|
|
|
|
|
+ // clear out the existing ship data
|
|
|
+ galaxy.meta["ship"] = YAML::Node();
|
|
|
// process the parsed information in meta["info"]
|
|
|
if (galaxy.meta["info"]["Total Holds"]) {
|
|
|
std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
|
|
@@ -845,36 +858,59 @@ void Director::SL_infoline(const std::string &line) {
|
|
|
int total_holds = stoi(parts[0]);
|
|
|
BUGZ_LOG(fatal) << "total holds: " << total_holds;
|
|
|
auto contents = split(parts[1]);
|
|
|
+
|
|
|
for (auto const &hold : contents) {
|
|
|
auto hold_amount = split(hold, "=");
|
|
|
BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
|
|
|
+ std::string key = hold_amount[0];
|
|
|
+ str_tolower(key);
|
|
|
+ // equipment = e
|
|
|
+ // organics = o
|
|
|
+ // fuel = f
|
|
|
+ // colonists = c
|
|
|
+ // empty = empty
|
|
|
+ if (key != "empty" ) {
|
|
|
+ key = key[0];
|
|
|
+ }
|
|
|
+ galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
|
|
|
}
|
|
|
+ galaxy.meta["ship"]["holds"]["total"] = total_holds;
|
|
|
}
|
|
|
+
|
|
|
if (galaxy.meta["info"]["Turns to Warp"]) {
|
|
|
int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
|
|
|
BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
|
|
|
+ galaxy.meta["ship"]["warp_turns"] = warp_turns;
|
|
|
}
|
|
|
- if (galaxy.meta["info"]["Turns left"]) {
|
|
|
- int turns = galaxy.meta["info"]["Turns left"].as<int>();
|
|
|
- BUGZ_LOG(fatal) << "Turns left: " << turns;
|
|
|
- }
|
|
|
+
|
|
|
if (galaxy.meta["info"]["LongRange Scan"]) {
|
|
|
std::string scanner_text =
|
|
|
galaxy.meta["info"]["LongRange Scan"].as<std::string>();
|
|
|
char scanner = scanner_text[0];
|
|
|
BUGZ_LOG(fatal) << "Scanner: " << scanner;
|
|
|
+ galaxy.meta["ship"]["scanner"] = scanner;
|
|
|
+ }
|
|
|
+
|
|
|
+ // turns isn't ship specific
|
|
|
+ if (galaxy.meta["info"]["Turns left"]) {
|
|
|
+ int turns = galaxy.meta["info"]["Turns left"].as<int>();
|
|
|
+ BUGZ_LOG(fatal) << "Turns left: " << turns;
|
|
|
+ galaxy.meta["turns"] = turns;
|
|
|
}
|
|
|
+
|
|
|
if (galaxy.meta["info"]["Current Sector"]) {
|
|
|
int sector = galaxy.meta["info"]["Current Sector"].as<int>();
|
|
|
BUGZ_LOG(fatal) << "Sector: " << sector;
|
|
|
// it should already be sector ...
|
|
|
current_sector = sector;
|
|
|
}
|
|
|
+
|
|
|
if (galaxy.meta["info"]["Credits"]) {
|
|
|
std::string credit_text =
|
|
|
galaxy.meta["info"]["Credits"].as<std::string>();
|
|
|
replace(credit_text, ",", "");
|
|
|
int credits = stoi(credit_text);
|
|
|
+ galaxy.meta["credits"] = credits;
|
|
|
BUGZ_LOG(fatal) << "Credits: " << credits;
|
|
|
}
|
|
|
}
|