Просмотр исходного кода

MoveDispatch: replace slow move line. Fix visual.

When they display <Auto Pilot Engaging>, they clrscr + home cursor.
The clrscr is eaten, and now I eat the home cursor so we don't
have text upon text.

Initial notes on trade_pair.  The code needs to be redone, so it
looks at the real port data to find real trades.
Steve Thielemann 3 лет назад
Родитель
Сommit
cd1cd45e6f
2 измененных файлов с 35 добавлено и 25 удалено
  1. 28 3
      dispatchers.cpp
  2. 7 22
      galaxy.cpp

+ 28 - 3
dispatchers.cpp

@@ -582,8 +582,27 @@ void MoveDispatch::server_line(const std::string &line,
   if ((state != 2) && (state != 5)) {
     // hide the density scan part
     std::string temp = raw_line;
-    temp.append("\n\r");
-    to_client(temp);
+    if (line == "<Auto Pilot Engaging>") {
+      // trim out the stray cursor home
+      replace(temp, "\x1b[H", "");
+    }
+
+    // Replace progress bar with something else.
+    if (startswith(temp, "\x1b[1;33m\xb3")) 
+      temp = "\x1b[1A\x1b[1;33m** SLOW MOVE **";
+
+    /*
+    if (in(temp, "\xb3")) {
+      std::string debug = repr(temp);
+      BUGZ_LOG(fatal) << "MOVE LINE: " << debug;
+    }
+    */
+
+    // Don't output raw_lines that move the cursor up 3.
+    if (!in(temp, "\x1b[3A")) {
+      temp.append("\n\r");
+      to_client(temp);
+    }
   }
 
   if (state == 3) {
@@ -725,7 +744,13 @@ void MoveDispatch::server_prompt(const std::string &prompt) {
     }
   }
 }
-void MoveDispatch::client_input(const std::string &input) {}
+
+void MoveDispatch::client_input(const std::string &input) {
+  // This exits us out quickly -- should I stop at a better spot?
+  // As in answer "Y" to Stop in this sector?
+  success = 0;
+  deactivate();
+}
 
 /*
  * CoreDispatch:  This is an example class that does dispatch.

+ 7 - 22
galaxy.cpp

@@ -72,10 +72,16 @@ bool operator==(const density lhs, const density rhs) {
 }
 
 trade_type_result trade_type_info(port_type port1, port_type port2) {
+  // This only gives us one trade_type per pair.  There actually
+  // should be multiple values returned here!
+  // Like in case of BBB/SSS:  return 3, 4 and 5.
+
   // NONE = 0
   // GOOD = 1 = OE PAIR
   // OK   = 2 = ?? Pair
-  // FAIR = 3 = B / S
+  // FAIR = 3 = B/S E
+  //        4 = B/S O
+  //        5 = B/S F
 
   buysell p1 = get_buysell(port1);
   buysell p2 = get_buysell(port2);
@@ -121,21 +127,8 @@ int trade_type(port_type port1, port_type port2) {
   return r.type;
 }
 
-/*
-// adding this breaks test-galaxy's port = {2, 2, {1,2,3}, {1,2,3}} code.
-port::port() {
-  sector = 0;
-  type = 0;
-  for (int x = 0; x < 3; x++) {
-    amount[x] = 0;
-    percent[x] = 0;
-  }
-}
-*/
-
 sector_warps::sector_warps() {
   sector = 0;
-  // for (int x = 0; x < MAX_WARPS; ++x) warps[x] = 0;
 }
 
 void sector_warps::add(sector_type new_sector) {
@@ -164,14 +157,6 @@ std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
       comma = true;
     os << warp;
   }
-  /*
-  for (int x = 0; x < MAX_WARPS; ++x) {
-    if (warps.warps[x] != 0) {
-      if (x != 0) os << ",";
-      os << warps.warps[x];
-    }
-  }
-  */
   return os;
 }