|
@@ -216,4 +216,98 @@ void ScriptTerror::trade_notify(void) {
|
|
}
|
|
}
|
|
to_client("Ok, trade is done.\n\r");
|
|
to_client("Ok, trade is done.\n\r");
|
|
deactivate();
|
|
deactivate();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+ScriptVoyager::ScriptVoyager(Director &d) : Dispatch(d) {
|
|
|
|
+ BUGZ_LOG(warning) << "SCriptVoyager()";
|
|
|
|
+ init();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+ScriptVoyager::~ScriptVoyager() {
|
|
|
|
+ BUGZ_LOG(warning) << "~ScriptVoyager()";
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::init(void) {
|
|
|
|
+ move = std::make_shared<MoveDispatch>(director);
|
|
|
|
+ md = static_cast<MoveDispatch *>(&(*move));
|
|
|
|
+ md->setNotify([this]() { this->move_notify(); });
|
|
|
|
+
|
|
|
|
+ input = std::make_shared<InputDispatch>(director);
|
|
|
|
+ id = static_cast<InputDispatch *>(&(*input));
|
|
|
|
+ id->prompt = "Number of loops/tries: ";
|
|
|
|
+ id->max_length = 5;
|
|
|
|
+ id->numeric = true;
|
|
|
|
+ id->setNotify([this](){ this->input_notify();});
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::activate(void) {
|
|
|
|
+ director.chain = input;
|
|
|
|
+ input->activate();
|
|
|
|
+ return;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::deactivate(void) {
|
|
|
|
+ BUGZ_LOG(warning) << "ScriptVoyager::deactivate()";
|
|
|
|
+ notify();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::move_notify(void) {
|
|
|
|
+ if (md->aborted) {
|
|
|
|
+ deactivate();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ if (md->success) {
|
|
|
|
+ // Great!
|
|
|
|
+ next();
|
|
|
|
+ return;
|
|
|
|
+ } else {
|
|
|
|
+ to_client("No safe moves.\n\r");
|
|
|
|
+ deactivate();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::input_notify(void) {
|
|
|
|
+ if (id->input.empty() || id->aborted) {
|
|
|
|
+ to_client("Ok, maybe later then.\n\r");
|
|
|
|
+ deactivate();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ loops = sstoi(id->input, -1);
|
|
|
|
+
|
|
|
|
+ if (loops == -1) {
|
|
|
|
+ to_client("I'm sorry, WHAT?\n\r");
|
|
|
|
+ deactivate();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ id->input.clear();
|
|
|
|
+ BUGZ_LOG(warning) << "Voyager loops: " << loops;
|
|
|
|
+ next();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::next(void) {
|
|
|
|
+ if (loops == 0) {
|
|
|
|
+ // ok, stop here.
|
|
|
|
+ to_client("The voyage ends here, for now.\n\r");
|
|
|
|
+ deactivate();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ --loops;
|
|
|
|
+
|
|
|
|
+ sector_type s = director.galaxy.find_nearest_unexplored(director.current_sector);
|
|
|
|
+ if (s == 0) {
|
|
|
|
+ to_client("I don't see anything else to explorer.\n\r");
|
|
|
|
+ BUGZ_LOG(warning) << "find_nearest_unexplored returned 0";
|
|
|
|
+ deactivate();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ BUGZ_LOG(warning) << "Next stop: " << s;
|
|
|
|
+ md->move_to = s;
|
|
|
|
+ director.chain = move;
|
|
|
|
+ director.chain->activate();
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ScriptVoyager::server_prompt(const std::string &prompt) {
|
|
|
|
+
|
|
}
|
|
}
|