|
@@ -1,6 +1,7 @@
|
|
|
#include "scripts.h"
|
|
|
|
|
|
#include "logging.h"
|
|
|
+#include <boost/format.hpp>
|
|
|
|
|
|
ScriptTrader::ScriptTrader(Director &d) : Dispatch(d) {
|
|
|
BUGZ_LOG(fatal) << "ScriptTrader()";
|
|
@@ -487,25 +488,31 @@ void ScriptTrader::server_prompt(const std::string &prompt) {
|
|
|
void ScriptTrader::client_input(const std::string &cinput) { deactivate(); };
|
|
|
|
|
|
ScriptTerror::ScriptTerror(Director &d) : Dispatch(d) {
|
|
|
- BUGZ_LOG(warning) << "ScriptTerror";
|
|
|
+ BUGZ_LOG(warning) << "ScriptTerror()";
|
|
|
init();
|
|
|
}
|
|
|
|
|
|
-ScriptTerror::~ScriptTerror() { BUGZ_LOG(warning) << "~ScriptTerror"; }
|
|
|
+ScriptTerror::~ScriptTerror() { BUGZ_LOG(warning) << "~ScriptTerror()"; }
|
|
|
|
|
|
void ScriptTerror::init(void) {
|
|
|
+ BUGZ_LOG(fatal) << "ScriptTerror::init()";
|
|
|
+
|
|
|
move = std::make_shared<MoveDispatch>(director);
|
|
|
md = static_cast<MoveDispatch *>(&(*move));
|
|
|
// setup notify functions for results/completion.
|
|
|
- // md->setNotify([this]() { this->input_notify(); });
|
|
|
+ md->setNotify([this]() { this->move_notify(); });
|
|
|
+
|
|
|
input = std::make_shared<InputDispatch>(director);
|
|
|
- id = static_cast<InputDispatch *>(&(*move));
|
|
|
+ id = static_cast<InputDispatch *>(&(*input));
|
|
|
id->prompt = "Number of loops: ";
|
|
|
id->max_length = 4;
|
|
|
id->numeric = true;
|
|
|
id->setNotify([this]() { this->input_notify(); });
|
|
|
- trader = std::make_shared<ScriptTrader>(director);
|
|
|
- st = static_cast<ScriptTrader *>(&(*trader));
|
|
|
+
|
|
|
+ trader = std::make_shared<TraderDispatch>(director);
|
|
|
+ td = static_cast<TraderDispatch *>(&(*trader));
|
|
|
+ td->setNotify([this]() { this->trade_notify(); });
|
|
|
+ BUGZ_LOG(fatal) << "ScriptTerror::init() completed.";
|
|
|
}
|
|
|
|
|
|
void ScriptTerror::activate(void) {
|
|
@@ -532,12 +539,52 @@ void ScriptTerror::input_notify(void) {
|
|
|
deactivate();
|
|
|
return;
|
|
|
}
|
|
|
- loops = sstoi(id->input);
|
|
|
- if (loops == 0) {
|
|
|
+ max_loops = sstoi(id->input, -1);
|
|
|
+ if (max_loops == -1) {
|
|
|
deactivate();
|
|
|
return;
|
|
|
}
|
|
|
- BUGZ_LOG(warning) << "Loops of terror: " << loops;
|
|
|
- // for now:
|
|
|
+ id->input.clear();
|
|
|
+ BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
|
|
|
+ loops = 0;
|
|
|
+ // find nearest
|
|
|
+ ppt = director.galaxy.find_closest_trade(director.current_sector, 3);
|
|
|
+ if (ppt.type == 0) {
|
|
|
+ to_client("No trades found! You've burnt the galaxy!\n\r");
|
|
|
+ deactivate();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // ok, step 2: move!
|
|
|
+ // md->setNotify([this]() { this->proxy_deactivate(); });
|
|
|
+
|
|
|
+ BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
|
|
|
+ md->move_to = ppt.s1;
|
|
|
+ director.chain = move;
|
|
|
+ director.chain->activate();
|
|
|
+ return;
|
|
|
+}
|
|
|
+
|
|
|
+void ScriptTerror::move_notify(void) {
|
|
|
+ BUGZ_LOG(fatal) << "move_notify()";
|
|
|
+ // Check for success, and start trading!
|
|
|
+ if (md->success) {
|
|
|
+ to_client("We're here, get trading!\n\r");
|
|
|
+
|
|
|
+ td->port[0] = ppt.s1;
|
|
|
+ td->port[1] = ppt.s2;
|
|
|
+ td->trades = ppt.trades;
|
|
|
+ td->type = ppt.type;
|
|
|
+ director.chain = trader;
|
|
|
+ director.chain->activate();
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ to_client("Move FAILED.\n\r");
|
|
|
+ deactivate();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void ScriptTerror::trade_notify(void) {
|
|
|
+ // Done trading -- maybe! :P
|
|
|
+ to_client("Ok, trade is done.\n\r");
|
|
|
deactivate();
|
|
|
}
|