Browse Source

Merge branch 'master' into conan_build

david 3 years ago
parent
commit
a39378ffa7
3 changed files with 39 additions and 16 deletions
  1. 9 8
      galaxy.cpp
  2. 2 1
      galaxy.h
  3. 28 7
      scripts.cpp

+ 9 - 8
galaxy.cpp

@@ -415,8 +415,8 @@ void Galaxy::save(void) {
         BUGZ_LOG(fatal) << "Outputting Sequence... " << data.first;
         BUGZ_LOG(fatal) << "Outputting Sequence... " << data.first;
         of << yaml_spacer << data.first << ": [";
         of << yaml_spacer << data.first << ": [";
         bool first = true;
         bool first = true;
-        for( auto const &seq : data.second) {
-          if (! first) 
+        for (auto const &seq : data.second) {
+          if (!first)
             of << ", ";
             of << ", ";
           else
           else
             first = false;
             first = false;
@@ -673,12 +673,13 @@ port_pair_type Galaxy::find_closest(int sector) {
 
 
 /**
 /**
  * Find closest and best trade
  * Find closest and best trade
- * 
- * @param sector 
- * @param lowest_trade_type 
- * @return port_pair_type 
+ *
+ * @param sector
+ * @param lowest_trade_type
+ * @return port_pair_type
  */
  */
-port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type) {
+port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type,
+                                          int burnt_percent) {
   // int type, sector_type s1, s2;
   // int type, sector_type s1, s2;
   BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
   BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
   std::vector<port_pair_type> vppt;
   std::vector<port_pair_type> vppt;
@@ -725,7 +726,7 @@ port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type) {
         auto possible_port = ports.find(s);
         auto possible_port = ports.find(s);
         if (possible_port == ports.end()) continue;
         if (possible_port == ports.end()) continue;
         if (possible_port->second.type == 0) continue;
         if (possible_port->second.type == 0) continue;
-        trade_type_result ttr = trade_type_info(c, s);
+        trade_type_result ttr = trade_type_info(c, s, burnt_percent);
         if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
         if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
         // Ok! we found a trade that fits the criteria!
         // Ok! we found a trade that fits the criteria!
         vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});
         vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});

+ 2 - 1
galaxy.h

@@ -146,7 +146,8 @@ class Galaxy {
                                     int burnt_percent = 20);
                                     int burnt_percent = 20);
   void sort_port_pair_type(std::vector<port_pair_type>& pptv);
   void sort_port_pair_type(std::vector<port_pair_type>& pptv);
   port_pair_type find_closest(int sector);
   port_pair_type find_closest(int sector);
-  port_pair_type find_closest_trade(int sector, int lowest_trade_type);
+  port_pair_type find_closest_trade(int sector, int lowest_trade_type,
+                                    int burnt_percent = 20);
   char game;
   char game;
   std::string username;
   std::string username;
 };
 };

+ 28 - 7
scripts.cpp

@@ -84,8 +84,18 @@ void ScriptTerror::input_notify(void) {
   id->input.clear();
   id->input.clear();
   BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
   BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
   loops = max_loops;
   loops = max_loops;
+
   // find nearest
   // find nearest
-  ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
+  int stop_percent;
+  if (director.galaxy.config["stop_percent"]) {
+    stop_percent = director.galaxy.config["stop_percent"].as<int>();
+  } else {
+    stop_percent = 25;
+    director.galaxy.config["stop_percent"] = stop_percent;
+  }
+
+  ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
+                                           stop_percent);
   if (ppt.type == 0) {
   if (ppt.type == 0) {
     to_client("No trades found!  You've burnt the galaxy!\n\r");
     to_client("No trades found!  You've burnt the galaxy!\n\r");
     deactivate();
     deactivate();
@@ -95,11 +105,11 @@ void ScriptTerror::input_notify(void) {
   // md->setNotify([this]() { this->proxy_deactivate(); });
   // md->setNotify([this]() { this->proxy_deactivate(); });
 
 
   if (director.current_sector != ppt.s1) {
   if (director.current_sector != ppt.s1) {
-  BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
-  md->move_to = ppt.s1;
-  director.chain = move;
-  director.chain->activate();
-  return;
+    BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
+    md->move_to = ppt.s1;
+    director.chain = move;
+    director.chain->activate();
+    return;
   } else {
   } else {
     // We're already there!
     // We're already there!
     to_client("Ok!  Get trading!\n\r");
     to_client("Ok!  Get trading!\n\r");
@@ -160,7 +170,18 @@ void ScriptTerror::trade_notify(void) {
 
 
   if (td->success) {
   if (td->success) {
     // success!
     // success!
-    ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
+
+    // find nearest
+    int stop_percent;
+    if (director.galaxy.config["stop_percent"]) {
+      stop_percent = director.galaxy.config["stop_percent"].as<int>();
+    } else {
+      stop_percent = 25;
+      director.galaxy.config["stop_percent"] = stop_percent;
+    }
+
+    ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
+                                             stop_percent);
     if (ppt.type == 0) {
     if (ppt.type == 0) {
       to_client("No trades found!  You've burnt the galaxy!\n\r");
       to_client("No trades found!  You've burnt the galaxy!\n\r");
       deactivate();
       deactivate();