|
@@ -145,6 +145,18 @@ bool at_command_prompt(const std::string &prompt) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+bool at_computer_prompt(const std::string &prompt) {
|
|
|
+ if (startswith(prompt, "Computer command ["))
|
|
|
+ if (endswith(prompt, "] (?=Help)? ")) return true;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+bool at_planet_prompt(const std::string &prompt) {
|
|
|
+ if(startswith(prompt, "Planet command (?=Help)"))
|
|
|
+ if (endswith(prompt, " [D] ")) return true;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
#include <algorithm>
|
|
|
#include <cctype>
|
|
|
|