소스 검색

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 년 전
부모
커밋
594e82257a
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      scripts.cpp

+ 3 - 1
scripts.cpp

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