Quellcode durchsuchen

Just 1 Q to leave planet. Added function to galaxy.

We only need one Q to leave the planet.  When and where we
are at, we're not in the citadel.

Added my locate nearest port trading given product.
Steve Thielemann vor 3 Jahren
Ursprung
Commit
fd20a9475a
3 geänderte Dateien mit 12 neuen und 22 gelöschten Zeilen
  1. 4 0
      galaxy.cpp
  2. 4 3
      galaxy.h
  3. 4 19
      scripts.cpp

+ 4 - 0
galaxy.cpp

@@ -947,3 +947,7 @@ trade_type_result Galaxy::trade_type_info(sector_type port1, sector_type port2,
   BUGZ_LOG(fatal) << "result: " << NONE << " " << inv2;
   return trade_type_result{NONE, inv2};
 }
+
+sector_type Galaxy::find_nearest_selling(int sector, int product, int selling){
+  return 0;
+};

+ 4 - 3
galaxy.h

@@ -109,17 +109,17 @@ class density_scan {
   void add_scan(density d);
   density find(sector_type sector);
 
- //private:
+  // private:
   int pos;
 };
 
 class planet {
-  public:
+ public:
   sector_type sector;
   int number;
   int level;
   std::string name;
-  char c; // class
+  char c;  // class
 };
 
 // SPECIAL = 0
@@ -161,6 +161,7 @@ class Galaxy {
   port_pair_type find_closest(int sector);
   port_pair_type find_closest_trade(int sector, int lowest_trade_type,
                                     int burnt_percent = 20);
+  sector_type find_nearest_selling(int sector, int product, int selling=250);
   char game;
   std::string username;
 };

+ 4 - 19
scripts.cpp

@@ -855,15 +855,6 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
         return;
       }
 
-      /*
-      if (current_level > 0)
-        to_server("NQQ");
-      else
-        to_server("NQ");
-
-      deactivate();
-      return;
-      */
     }
   } else if (state == 9) {
     if (at_command_prompt(prompt)) {
@@ -893,11 +884,8 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
   } else if (state == 11) {
     if (prompt == "Planet command (?=help) [D] ") {
       if (total_population < support_construction) {
-        // Need More
-        if (current_level > 0) {
-          to_server("QQ");
-        } else
-          to_server("Q");
+        // Need More - we're not in citadel.
+        to_server("Q");
         state = 9;
         md->move_to = 1;
         director.chain = move;
@@ -907,11 +895,8 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
       // Ok, we're ready for the next step:
       // checking the resources.
 
-      // ending here for now.
-      if (current_level > 0) {
-        to_server("QQ");
-      } else
-        to_server("Q");
+      // ending here for now. (not in citadel)
+      to_server("Q");
       deactivate();
       return;
     }