|
@@ -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.
|