Selaa lähdekoodia

Explorer possibly fixed due to unsafe densities

  It was found that Explorer could enter a broken state as it were when
induced to a unsafe density.

  It's order of operations was:
  1. Change state
  2. Call next() to move to ??? (target would be set first, which may
have been the problem)
  3. Target get's set to non-zero indicating it should be used rather
than deducting from density scans

  As stated above, it is beleived that the issue was that target was
being set after code which depended on it's value.
david 3 vuotta sitten
vanhempi
commit
594e82257a
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      scripts.cpp

+ 3 - 1
scripts.cpp

@@ -395,13 +395,15 @@ void ScriptExplore::move_notify() {
     if (unknown_warps.size() != 0) {
     if (unknown_warps.size() != 0) {
       BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
       BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
       state = 4;
       state = 4;
-      next();
       target = unknown_warps.top();
       target = unknown_warps.top();
       unknown_warps.pop();
       unknown_warps.pop();
       std::string message = "UNSAFE DESTINATION";
       std::string message = "UNSAFE DESTINATION";
       std::string indenter = "    ";
       std::string indenter = "    ";
       ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
       ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
       to_client(indenter + alert() + message + reset() + "\n\r");
       to_client(indenter + alert() + message + reset() + "\n\r");
+      BUGZ_LOG(warning) << "Target = " << target;
+      next();
+      //deactivate();
     } else {
     } else {
       std::string message = "Move failed: " + md->why_failed + "\n\r";
       std::string message = "Move failed: " + md->why_failed + "\n\r";
       // to_client("No safe moves.\n\r");
       // to_client("No safe moves.\n\r");