scripts.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. #include "scripts.h"
  2. #include <boost/format.hpp>
  3. #include "logging.h"
  4. ScriptTerror::ScriptTerror(Director &d) : Dispatch(d) {
  5. BUGZ_LOG(warning) << "ScriptTerror()";
  6. init();
  7. }
  8. ScriptTerror::~ScriptTerror() { BUGZ_LOG(warning) << "~ScriptTerror()"; }
  9. void ScriptTerror::init(void) {
  10. BUGZ_LOG(fatal) << "ScriptTerror::init()";
  11. move = std::make_shared<MoveDispatch>(director);
  12. md = static_cast<MoveDispatch *>(&(*move));
  13. // setup notify functions for results/completion.
  14. md->setNotify([this]() { this->move_notify(); });
  15. input = std::make_shared<InputDispatch>(director);
  16. id = static_cast<InputDispatch *>(&(*input));
  17. id->prompt = "Number of loops: ";
  18. id->max_length = 4;
  19. id->numeric = true;
  20. id->setNotify([this]() { this->input_notify(); });
  21. trader = std::make_shared<TraderDispatch>(director);
  22. td = static_cast<TraderDispatch *>(&(*trader));
  23. td->setNotify([this]() { this->trade_notify(); });
  24. BUGZ_LOG(fatal) << "ScriptTerror::init() completed.";
  25. }
  26. void ScriptTerror::activate(void) {
  27. BUGZ_LOG(warning) << "ScriptTerror::activate()";
  28. // Need: InputDispatch, MoveDispatch, ScriptTrader
  29. // Save the trade_end_empty setting, and set to Y
  30. if (director.galaxy.config.contains("trade_end_empty")) {
  31. old_trade_end_empty =
  32. director.galaxy.config["trade_end_empty"];
  33. } else {
  34. old_trade_end_empty = "Y";
  35. }
  36. director.galaxy.config["trade_end_empty"] = "Y";
  37. // Step 0: Get ship information / # of holds
  38. max_loops = loops = -1;
  39. to_server("I");
  40. // Step 1: Get number of loops of terror
  41. // director.chain = input;
  42. // input->activate();
  43. // Step 2: Look for closest trades, try ScriptTrade until none < some
  44. // level. Step 3: Move on, unless out of loops (or low on turns)
  45. // deactivate();
  46. }
  47. void ScriptTerror::deactivate(void) {
  48. BUGZ_LOG(warning) << "ScriptTerror::deactivate()";
  49. // restore the original value.
  50. director.galaxy.config["trade_end_empty"] = old_trade_end_empty;
  51. notify();
  52. }
  53. void ScriptTerror::input_notify(void) {
  54. if (id->input.empty()) {
  55. deactivate();
  56. return;
  57. }
  58. if (id->aborted) {
  59. deactivate();
  60. return;
  61. }
  62. max_loops = sstoi(id->input, -1);
  63. if (max_loops == -1) {
  64. deactivate();
  65. return;
  66. }
  67. id->input.clear();
  68. BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
  69. loops = max_loops;
  70. // find nearest
  71. int stop_percent;
  72. if (director.galaxy.config.contains("stop_percent")) {
  73. stop_percent = director.galaxy.config["stop_percent"].get<int>();
  74. } else {
  75. stop_percent = 25;
  76. director.galaxy.config["stop_percent"] = stop_percent;
  77. }
  78. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  79. stop_percent);
  80. if (ppt.type == 0) {
  81. to_client("No trades found! You've burnt the galaxy!\n\r");
  82. deactivate();
  83. return;
  84. }
  85. // ok, step 2: move!
  86. // md->setNotify([this]() { this->proxy_deactivate(); });
  87. if (director.current_sector != ppt.s1) {
  88. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  89. md->move_to = ppt.s1;
  90. director.chain = move;
  91. director.chain->activate();
  92. return;
  93. } else {
  94. // We're already there!
  95. to_client("Ok! Get trading!\n\r");
  96. td->port[0] = ppt.s1;
  97. td->port[1] = ppt.s2;
  98. td->trades = ppt.trades;
  99. td->type = ppt.type;
  100. director.chain = trader;
  101. director.chain->activate();
  102. return;
  103. }
  104. }
  105. void ScriptTerror::move_notify(void) {
  106. BUGZ_LOG(fatal) << "move_notify()";
  107. if (md->aborted) {
  108. to_client("Move cancel.\n\r");
  109. deactivate();
  110. return;
  111. }
  112. // Check for success, and start trading!
  113. if (md->success) {
  114. to_client("We're here, get trading!\n\r");
  115. td->port[0] = ppt.s1;
  116. td->port[1] = ppt.s2;
  117. td->trades = ppt.trades;
  118. td->type = ppt.type;
  119. director.chain = trader;
  120. director.chain->activate();
  121. return;
  122. } else {
  123. std::string message = "Move FAILED. " + md->why_failed + "\n\r";
  124. // to_client("Move FAILED.\n\r");
  125. to_client(message);
  126. deactivate();
  127. }
  128. }
  129. void ScriptTerror::server_prompt(const std::string &prompt) {
  130. if ((loops == -1) && (max_loops == -1)) {
  131. if (at_command_prompt(prompt)) {
  132. // Step 1: Get number of loops of terror
  133. director.chain = input;
  134. input->activate();
  135. return;
  136. }
  137. }
  138. }
  139. void ScriptTerror::trade_notify(void) {
  140. // Done trading -- maybe! :P
  141. if (td->aborted) {
  142. to_client("Trade cancel.\n\r");
  143. deactivate();
  144. return;
  145. }
  146. if (td->success) {
  147. // success!
  148. // find nearest
  149. int stop_percent;
  150. if (director.galaxy.config.contains("stop_percent")) {
  151. stop_percent = director.galaxy.config["stop_percent"].get<int>();
  152. } else {
  153. stop_percent = 25;
  154. director.galaxy.config["stop_percent"] = stop_percent;
  155. }
  156. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  157. stop_percent);
  158. if (ppt.type == 0) {
  159. to_client("No trades found! You've burnt the galaxy!\n\r");
  160. deactivate();
  161. return;
  162. }
  163. if ((director.current_sector == ppt.s1) ||
  164. (director.current_sector == ppt.s2)) {
  165. // We're still here...
  166. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  167. to_client("Keep trading.\n\r");
  168. td->port[0] = ppt.s1;
  169. td->port[1] = ppt.s2;
  170. td->trades = ppt.trades;
  171. td->type = ppt.type;
  172. director.chain = trader;
  173. director.chain->activate();
  174. return;
  175. }
  176. // Ok, this isn't a local trade.
  177. if (loops == 0) {
  178. to_client("We're done terrorizing, for now...\n\r");
  179. deactivate();
  180. return;
  181. }
  182. --loops;
  183. // Move to our next target
  184. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  185. md->move_to = ppt.s1;
  186. director.chain = move;
  187. director.chain->activate();
  188. return;
  189. } else {
  190. std::string message = "Trade done: " + td->why_failed + "\n\r";
  191. to_client(message);
  192. }
  193. // to_client("Ok, trade is done.\n\r");
  194. deactivate();
  195. }
  196. ScriptVoyager::ScriptVoyager(Director &d) : Dispatch(d) {
  197. BUGZ_LOG(warning) << "ScriptVoyager()";
  198. init();
  199. }
  200. ScriptVoyager::~ScriptVoyager() {
  201. BUGZ_LOG(warning) << "~ScriptVoyager()";
  202. }
  203. void ScriptVoyager::init(void) {
  204. move = std::make_shared<MoveDispatch>(director);
  205. md = static_cast<MoveDispatch *>(&(*move));
  206. md->setNotify([this]() { this->move_notify(); });
  207. input = std::make_shared<InputDispatch>(director);
  208. id = static_cast<InputDispatch *>(&(*input));
  209. id->prompt = "Number of loops/tries: ";
  210. id->max_length = 5;
  211. id->numeric = true;
  212. id->setNotify([this](){ this->input_notify();});
  213. }
  214. void ScriptVoyager::activate(void) {
  215. director.chain = input;
  216. input->activate();
  217. return;
  218. }
  219. void ScriptVoyager::deactivate(void) {
  220. BUGZ_LOG(warning) << "ScriptVoyager::deactivate()";
  221. notify();
  222. }
  223. void ScriptVoyager::move_notify(void) {
  224. if (md->aborted) {
  225. deactivate();
  226. return;
  227. }
  228. if (md->success) {
  229. // Great!
  230. next();
  231. return;
  232. } else {
  233. std::string message = "No safe moves. " + md->why_failed + "\n\r";
  234. to_client(message);
  235. deactivate();
  236. }
  237. }
  238. void ScriptVoyager::input_notify(void) {
  239. if (id->input.empty() || id->aborted) {
  240. to_client("Ok, maybe later then.\n\r");
  241. deactivate();
  242. return;
  243. }
  244. loops = sstoi(id->input, -1);
  245. if (loops == -1) {
  246. to_client("I'm sorry, WHAT?\n\r");
  247. deactivate();
  248. }
  249. id->input.clear();
  250. BUGZ_LOG(warning) << "Voyager loops: " << loops;
  251. next();
  252. }
  253. void ScriptVoyager::next(void) {
  254. if (loops == 0) {
  255. // ok, stop here.
  256. to_client("The voyage ends here, for now.\n\r");
  257. deactivate();
  258. return;
  259. }
  260. --loops;
  261. sector_type s = director.galaxy.find_nearest_unexplored(director.current_sector);
  262. if (s == 0) {
  263. to_client("I don't see anything else to explorer.\n\r");
  264. BUGZ_LOG(warning) << "find_nearest_unexplored returned 0";
  265. deactivate();
  266. }
  267. BUGZ_LOG(warning) << "Next stop: " << s;
  268. md->move_to = s;
  269. director.chain = move;
  270. director.chain->activate();
  271. }
  272. // SL: [###### DANGER! You have marked sector 740 to be avoided!]
  273. // SP: [Do you really want to warp there? (Y/N) ]
  274. void ScriptVoyager::server_prompt(const std::string &prompt) {
  275. }
  276. ScriptExplore::ScriptExplore(Director &d) : Dispatch(d) {
  277. BUGZ_LOG(warning) << "ScriptExplore()";
  278. init();
  279. }
  280. ScriptExplore::~ScriptExplore() {
  281. BUGZ_LOG(warning) << "~ScriptExplore()";
  282. }
  283. void ScriptExplore::init() {
  284. move = std::make_shared<MoveDispatch>(director);
  285. md = static_cast<MoveDispatch *>(&(*move));
  286. md->setNotify([this]() {this->move_notify();});
  287. input = std::make_shared<InputDispatch>(director);
  288. id = static_cast<InputDispatch *>(&(*input));
  289. id->prompt = "Number of sectors to explore: ";
  290. id->max_length = 5;
  291. id->numeric = true;
  292. id->setNotify([this](){this->input_notify();});
  293. state = 0;
  294. }
  295. void ScriptExplore::activate() {
  296. us = director.chain;
  297. state = 1;
  298. to_server("I");
  299. /*
  300. director.chain = input;
  301. input->activate();
  302. if(director.galaxy.meta["ship"]) {
  303. if(!director.galaxy.meta["ship"]["scanner"]) {
  304. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  305. deactivate();
  306. }
  307. }
  308. state = 1;
  309. return;
  310. */
  311. }
  312. void ScriptExplore::deactivate() {
  313. BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
  314. us.reset();
  315. notify();
  316. }
  317. void ScriptExplore::move_notify() {
  318. director.chain = us;
  319. if (md->aborted) {
  320. deactivate();
  321. return;
  322. }
  323. if (md->success) {
  324. to_server("SD");
  325. state = 3;
  326. return;
  327. } else {
  328. to_client("No safe moves.\n\r");
  329. deactivate();
  330. }
  331. }
  332. void ScriptExplore::input_notify() {
  333. director.chain = us;
  334. if (id->input.empty() || id->aborted) {
  335. to_client("Maybe next time.\n\r");
  336. deactivate();
  337. return;
  338. }
  339. loops = sstoi(id->input, -1);
  340. if (loops == -1) {
  341. to_client("I'm sorry, WHAT?\n\r");
  342. deactivate();
  343. return;
  344. }
  345. if (loops == 0) {
  346. infinite = true;
  347. } else {
  348. infinite = false;
  349. }
  350. id->input.clear();
  351. if (!infinite) {
  352. BUGZ_LOG(warning) << "Explore loops: " << loops;
  353. } else {
  354. to_client("Infinite Mode!\n\r");
  355. to_client("[ PRESS A KEY TO STOP ]\n\r");
  356. BUGZ_LOG(warning) << "Explore loops: INFINITE";
  357. }
  358. to_server("SD");
  359. state = 3;
  360. }
  361. void ScriptExplore::next() {
  362. if (loops <= 0 && !infinite) {
  363. to_client("The exploration ends, for now.\n\r");
  364. deactivate();
  365. return;
  366. }
  367. if(!infinite)
  368. --loops;
  369. // Calculate next best sector to goto
  370. density_scan & ds = director.galaxy.dscan;
  371. density best_sector;
  372. for (int x = 0; x < ds.pos; ++x) {
  373. BUGZ_LOG(warning) << "Comparing: " << ds.d[x].sector << " (" << ds.d[x].density << ", " << ds.d[x].known <<") to " << best_sector.sector << " (" << best_sector.density << ", " << best_sector.known << ")";
  374. /* Is this sector prefered over others?
  375. * Warp Counts (Number of warps)
  376. * Density Check (Is this sector clear, does it contain a port)
  377. * NavHaz Check (Avoid sectors with navhaz above X%)
  378. */
  379. if(!ds.d[x].known) {
  380. BUGZ_LOG(warning) << "Subject: " << ds.d[x].sector;
  381. // Compare, Warp counts
  382. if (best_sector.sector != 0) {
  383. if((ds.d[x].warps >= best_sector.warps) || ((ds.d[x].density == 100 || ds.d[x].density == 101) && (best_sector.density != 100 || best_sector.density != 101))) {
  384. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  385. if(best_sector.sector != 0) {
  386. BUGZ_LOG(warning) << "Storing previous best " << best_sector.sector;
  387. unknown_warps.push(best_sector.sector);
  388. }
  389. best_sector = ds.d[x];
  390. }
  391. } else {
  392. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  393. BUGZ_LOG(warning) << "Added " << ds.d[x].sector << " to unknown_warps (" << unknown_warps.size() << ")";
  394. unknown_warps.push(ds.d[x].sector);
  395. }
  396. }
  397. } else {
  398. best_sector = ds.d[x];
  399. }
  400. // Check density for possible port
  401. }
  402. }
  403. BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
  404. if (best_sector.sector == 0) {
  405. if (unknown_warps.size() == 0) {
  406. to_client("No unknown warps.");
  407. deactivate();
  408. return;
  409. } else {
  410. BUGZ_LOG(warning) << "Seeking previous unexplored";
  411. best_sector.sector = unknown_warps.top();
  412. unknown_warps.pop();
  413. }
  414. }
  415. BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
  416. md->move_to = best_sector.sector;
  417. director.chain = move;
  418. director.chain->activate();
  419. }
  420. void ScriptExplore::server_prompt(const std::string &prompt) {
  421. BUGZ_LOG(warning) << "Explorer State: SP " << state;
  422. //next();
  423. if(state == 1) {
  424. if(at_command_prompt(prompt)) {
  425. if(director.galaxy.meta["ship"]) {
  426. if(!director.galaxy.meta["ship"]["scanner"]) {
  427. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  428. deactivate();
  429. return;
  430. }
  431. }
  432. state = 2;
  433. BUGZ_LOG(fatal) << "state = 1, prompting for user input";
  434. director.chain = input;
  435. input->activate();
  436. return;
  437. }
  438. }
  439. if (state == 3) {
  440. if(at_command_prompt(prompt)) {
  441. state = 4;
  442. next();
  443. }
  444. }
  445. }