scripts.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  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["trade_end_empty"]) {
  31. old_trade_end_empty =
  32. director.galaxy.config["trade_end_empty"].as<std::string>();
  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["stop_percent"]) {
  73. stop_percent = director.galaxy.config["stop_percent"].as<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. to_client("Move FAILED.\n\r");
  124. deactivate();
  125. }
  126. }
  127. void ScriptTerror::server_prompt(const std::string &prompt) {
  128. if ((loops == -1) && (max_loops == -1)) {
  129. if (at_command_prompt(prompt)) {
  130. // Step 1: Get number of loops of terror
  131. director.chain = input;
  132. input->activate();
  133. return;
  134. }
  135. }
  136. }
  137. void ScriptTerror::trade_notify(void) {
  138. // Done trading -- maybe! :P
  139. if (td->aborted) {
  140. to_client("Trade cancel.\n\r");
  141. deactivate();
  142. return;
  143. }
  144. if (td->success) {
  145. // success!
  146. // find nearest
  147. int stop_percent;
  148. if (director.galaxy.config["stop_percent"]) {
  149. stop_percent = director.galaxy.config["stop_percent"].as<int>();
  150. } else {
  151. stop_percent = 25;
  152. director.galaxy.config["stop_percent"] = stop_percent;
  153. }
  154. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  155. stop_percent);
  156. if (ppt.type == 0) {
  157. to_client("No trades found! You've burnt the galaxy!\n\r");
  158. deactivate();
  159. return;
  160. }
  161. if ((director.current_sector == ppt.s1) ||
  162. (director.current_sector == ppt.s2)) {
  163. // We're still here...
  164. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  165. to_client("Keep trading.\n\r");
  166. td->port[0] = ppt.s1;
  167. td->port[1] = ppt.s2;
  168. td->trades = ppt.trades;
  169. td->type = ppt.type;
  170. director.chain = trader;
  171. director.chain->activate();
  172. return;
  173. }
  174. // Ok, this isn't a local trade.
  175. if (loops == 0) {
  176. to_client("We're done terrorizing, for now...\n\r");
  177. deactivate();
  178. return;
  179. }
  180. --loops;
  181. // Move to our next target
  182. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  183. md->move_to = ppt.s1;
  184. director.chain = move;
  185. director.chain->activate();
  186. return;
  187. }
  188. to_client("Ok, trade is done.\n\r");
  189. deactivate();
  190. }
  191. ScriptVoyager::ScriptVoyager(Director &d) : Dispatch(d) {
  192. BUGZ_LOG(warning) << "ScriptVoyager()";
  193. init();
  194. }
  195. ScriptVoyager::~ScriptVoyager() {
  196. BUGZ_LOG(warning) << "~ScriptVoyager()";
  197. }
  198. void ScriptVoyager::init(void) {
  199. move = std::make_shared<MoveDispatch>(director);
  200. md = static_cast<MoveDispatch *>(&(*move));
  201. md->setNotify([this]() { this->move_notify(); });
  202. input = std::make_shared<InputDispatch>(director);
  203. id = static_cast<InputDispatch *>(&(*input));
  204. id->prompt = "Number of loops/tries: ";
  205. id->max_length = 5;
  206. id->numeric = true;
  207. id->setNotify([this](){ this->input_notify();});
  208. }
  209. void ScriptVoyager::activate(void) {
  210. director.chain = input;
  211. input->activate();
  212. return;
  213. }
  214. void ScriptVoyager::deactivate(void) {
  215. BUGZ_LOG(warning) << "ScriptVoyager::deactivate()";
  216. notify();
  217. }
  218. void ScriptVoyager::move_notify(void) {
  219. if (md->aborted) {
  220. deactivate();
  221. return;
  222. }
  223. if (md->success) {
  224. // Great!
  225. next();
  226. return;
  227. } else {
  228. to_client("No safe moves.\n\r");
  229. deactivate();
  230. }
  231. }
  232. void ScriptVoyager::input_notify(void) {
  233. if (id->input.empty() || id->aborted) {
  234. to_client("Ok, maybe later then.\n\r");
  235. deactivate();
  236. return;
  237. }
  238. loops = sstoi(id->input, -1);
  239. if (loops == -1) {
  240. to_client("I'm sorry, WHAT?\n\r");
  241. deactivate();
  242. }
  243. id->input.clear();
  244. BUGZ_LOG(warning) << "Voyager loops: " << loops;
  245. next();
  246. }
  247. void ScriptVoyager::next(void) {
  248. if (loops == 0) {
  249. // ok, stop here.
  250. to_client("The voyage ends here, for now.\n\r");
  251. deactivate();
  252. return;
  253. }
  254. --loops;
  255. sector_type s = director.galaxy.find_nearest_unexplored(director.current_sector);
  256. if (s == 0) {
  257. to_client("I don't see anything else to explorer.\n\r");
  258. BUGZ_LOG(warning) << "find_nearest_unexplored returned 0";
  259. deactivate();
  260. }
  261. BUGZ_LOG(warning) << "Next stop: " << s;
  262. md->move_to = s;
  263. director.chain = move;
  264. director.chain->activate();
  265. }
  266. // SL: [###### DANGER! You have marked sector 740 to be avoided!]
  267. // SP: [Do you really want to warp there? (Y/N) ]
  268. void ScriptVoyager::server_prompt(const std::string &prompt) {
  269. }
  270. ScriptExplore::ScriptExplore(Director &d) : Dispatch(d) {
  271. BUGZ_LOG(warning) << "ScriptExplore()";
  272. init();
  273. }
  274. ScriptExplore::~ScriptExplore() {
  275. BUGZ_LOG(warning) << "~ScriptExplore()";
  276. us.reset();
  277. }
  278. void ScriptExplore::init() {
  279. move = std::make_shared<MoveDispatch>(director);
  280. md = static_cast<MoveDispatch *>(&(*move));
  281. md->setNotify([this]() {this->move_notify();});
  282. input = std::make_shared<InputDispatch>(director);
  283. id = static_cast<InputDispatch *>(&(*input));
  284. id->prompt = "Number of sectors to explore: ";
  285. id->max_length = 5;
  286. id->numeric = true;
  287. id->setNotify([this](){this->input_notify();});
  288. state = 0;
  289. }
  290. void ScriptExplore::activate() {
  291. us = director.chain;
  292. state = 1;
  293. to_server("I");
  294. /*
  295. director.chain = input;
  296. input->activate();
  297. if(director.galaxy.meta["ship"]) {
  298. if(!director.galaxy.meta["ship"]["scanner"]) {
  299. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  300. deactivate();
  301. }
  302. }
  303. state = 1;
  304. return;
  305. */
  306. }
  307. void ScriptExplore::deactivate() {
  308. BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
  309. notify();
  310. }
  311. void ScriptExplore::move_notify() {
  312. if (md->aborted) {
  313. deactivate();
  314. return;
  315. }
  316. if (md->success) {
  317. to_server("SD");
  318. state = 3;
  319. return;
  320. } else {
  321. to_client("No safe moves.\n\r");
  322. deactivate();
  323. }
  324. }
  325. void ScriptExplore::input_notify() {
  326. if (id->input.empty() || id->aborted) {
  327. to_client("Maybe next time.\n\r");
  328. deactivate();
  329. return;
  330. }
  331. loops = sstoi(id->input, -1);
  332. if (loops == -1) {
  333. to_client("I'm sorry, WHAT?\n\r");
  334. deactivate();
  335. return;
  336. }
  337. if (loops == 0) {
  338. infinite = true;
  339. } else {
  340. infinite = false;
  341. }
  342. id->input.clear();
  343. if (!infinite) {
  344. BUGZ_LOG(warning) << "Explore loops: " << loops;
  345. } else {
  346. to_client("Infinite Mode!\n\r");
  347. to_client("[ PRESS A KEY TO STOP ]\n\r");
  348. BUGZ_LOG(warning) << "Explore loops: INFINITE";
  349. }
  350. director.chain = us;
  351. to_server("SD");
  352. state = 3;
  353. }
  354. void ScriptExplore::next() {
  355. if (loops <= 0 && !infinite) {
  356. to_client("The exploration ends, for now.\n\r");
  357. deactivate();
  358. return;
  359. }
  360. if(!infinite)
  361. --loops;
  362. // Calculate next best sector to goto
  363. density_scan & ds = director.galaxy.dscan;
  364. density best_sector;
  365. for (int x = 0; x < ds.pos; ++x) {
  366. 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 << ")";
  367. /* Is this sector prefered over others?
  368. * Warp Counts (Number of warps)
  369. * Density Check (Is this sector clear, does it contain a port)
  370. * NavHaz Check (Avoid sectors with navhaz above X%)
  371. */
  372. if(!ds.d[x].known) {
  373. BUGZ_LOG(warning) << "Subject: " << ds.d[x].sector;
  374. // Compare, Warp counts
  375. if (best_sector.sector != 0) {
  376. 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))) {
  377. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  378. if(best_sector.sector != 0) {
  379. BUGZ_LOG(warning) << "Storing previous best " << best_sector.sector;
  380. unknown_warps.push(best_sector.sector);
  381. }
  382. best_sector = ds.d[x];
  383. }
  384. } else {
  385. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  386. BUGZ_LOG(warning) << "Added " << ds.d[x].sector << " to unknown_warps (" << unknown_warps.size() << ")";
  387. unknown_warps.push(ds.d[x].sector);
  388. }
  389. }
  390. } else {
  391. best_sector = ds.d[x];
  392. }
  393. // Check density for possible port
  394. }
  395. }
  396. BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
  397. if (best_sector.sector == 0) {
  398. if (unknown_warps.size() == 0) {
  399. to_client("No unknown warps.");
  400. deactivate();
  401. return;
  402. } else {
  403. BUGZ_LOG(warning) << "Seeking previous unexplored";
  404. best_sector.sector = unknown_warps.top();
  405. unknown_warps.pop();
  406. }
  407. }
  408. BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
  409. md->move_to = best_sector.sector;
  410. director.chain = move;
  411. director.chain->activate();
  412. }
  413. void ScriptExplore::server_prompt(const std::string &prompt) {
  414. BUGZ_LOG(warning) << "Explorer State: SP " << state;
  415. //next();
  416. if(state == 1) {
  417. if(at_command_prompt(prompt)) {
  418. if(director.galaxy.meta["ship"]) {
  419. if(!director.galaxy.meta["ship"]["scanner"]) {
  420. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  421. deactivate();
  422. return;
  423. }
  424. }
  425. state = 2;
  426. BUGZ_LOG(fatal) << "state = 1, prompting for user input";
  427. director.chain = input;
  428. input->activate();
  429. return;
  430. }
  431. }
  432. if (state == 3) {
  433. if(at_command_prompt(prompt)) {
  434. state = 4;
  435. next();
  436. }
  437. }
  438. }