scripts.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  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. target = 0;
  295. if(!director.galaxy.config.contains("prefer_ports")) {
  296. director.galaxy.config["prefer_ports"] = "Y";
  297. prefer_ports = true;
  298. } else {
  299. prefer_ports = json_str(director.galaxy.config["prefer_ports"]) == "Y";
  300. }
  301. if(!director.galaxy.meta["help"].contains("prefer_ports")) {
  302. director.galaxy.meta["help"]["prefer_ports"] = "Explorer prefers to find ports.";
  303. }
  304. BUGZ_LOG(warning) << "Prefer Ports: " + prefer_ports;
  305. }
  306. void ScriptExplore::activate() {
  307. us = director.chain;
  308. state = 1;
  309. to_server("I");
  310. /*
  311. director.chain = input;
  312. input->activate();
  313. if(director.galaxy.meta["ship"]) {
  314. if(!director.galaxy.meta["ship"]["scanner"]) {
  315. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  316. deactivate();
  317. }
  318. }
  319. state = 1;
  320. return;
  321. */
  322. }
  323. void ScriptExplore::deactivate() {
  324. BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
  325. us.reset();
  326. notify();
  327. }
  328. void ScriptExplore::move_notify() {
  329. director.chain = us;
  330. if (md->aborted) {
  331. deactivate();
  332. return;
  333. }
  334. if (md->success) {
  335. to_server("SD");
  336. state = 3;
  337. return;
  338. } else {
  339. if (unknown_warps.size() != 0) {
  340. BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
  341. state = 4;
  342. next();
  343. target = unknown_warps.top();
  344. unknown_warps.pop();
  345. std::string message = "UNSAFE DESTINATION";
  346. std::string indenter = " ";
  347. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  348. to_client(indenter + alert() + message + reset() + "\n\r");
  349. } else {
  350. std::string message = "Move failed: " + md->why_failed + "\n\r";
  351. //to_client("No safe moves.\n\r");
  352. BUGZ_LOG(warning) << message;
  353. to_client(message);
  354. deactivate();
  355. }
  356. }
  357. }
  358. void ScriptExplore::input_notify() {
  359. director.chain = us;
  360. if (id->input.empty() || id->aborted) {
  361. to_client("Maybe next time.\n\r");
  362. deactivate();
  363. return;
  364. }
  365. loops = sstoi(id->input, -1);
  366. if (loops == -1) {
  367. to_client("I'm sorry, WHAT?\n\r");
  368. deactivate();
  369. return;
  370. }
  371. if (loops == 0) {
  372. infinite = true;
  373. } else {
  374. infinite = false;
  375. }
  376. id->input.clear();
  377. if (!infinite) {
  378. BUGZ_LOG(warning) << "Explore loops: " << loops;
  379. } else {
  380. to_client("Infinite Mode!\n\r");
  381. to_client("[ PRESS A KEY TO STOP ]\n\r");
  382. BUGZ_LOG(warning) << "Explore loops: INFINITE";
  383. }
  384. to_server("SD");
  385. state = 3;
  386. }
  387. void ScriptExplore::next() {
  388. if (loops <= 0 && !infinite) {
  389. to_client("The exploration ends, for now.\n\r");
  390. deactivate();
  391. return;
  392. }
  393. if(!infinite)
  394. --loops;
  395. // Calculate next best sector to goto
  396. density_scan & ds = director.galaxy.dscan;
  397. density best_sector;
  398. best_sector.sector = 0;
  399. if (target != 0) {
  400. BUGZ_LOG(info) << "Using: " << target;
  401. best_sector.sector = target;
  402. target = 0;
  403. } else {
  404. for (int x = 0; x < ds.pos; ++x) {
  405. if(best_sector.sector != 0)
  406. BUGZ_LOG(info) << "Comparing: " << ds.d[x].sector << " (" << ds.d[x].density << ", " << ds.d[x].known <<") to " << best_sector.sector << " (" << best_sector.density << ", " << best_sector.known << ")";
  407. /* Is this sector prefered over others?
  408. * Warp Counts (Number of warps)
  409. * Density Check (Is this sector clear, does it contain a port)
  410. * NavHaz Check (Avoid sectors with navhaz above X%)
  411. */
  412. if(!ds.d[x].known) {
  413. BUGZ_LOG(info) << "Subject: " << ds.d[x].sector;
  414. // Compare, Warp counts
  415. if (best_sector.sector != 0) {
  416. if(prefer_ports) {
  417. if((ds.d[x].warps >= best_sector.warps) || (ds.d[x].density == 100 || ds.d[x].density == 101)) {
  418. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  419. if(best_sector.sector != 0) {
  420. BUGZ_LOG(info) << "Storing previous best " << best_sector.sector;
  421. unknown_warps.push(best_sector.sector);
  422. }
  423. best_sector = ds.d[x];
  424. }
  425. } else {
  426. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  427. BUGZ_LOG(info) << "Added " << ds.d[x].sector << " to unknown_warps (" << unknown_warps.size() << ")";
  428. unknown_warps.push(ds.d[x].sector);
  429. }
  430. }
  431. } else {
  432. if((ds.d[x].warps >= best_sector.warps)) {
  433. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  434. if(best_sector.sector != 0) {
  435. BUGZ_LOG(info) << "Storing previous best " << best_sector.sector;
  436. unknown_warps.push(best_sector.sector);
  437. }
  438. best_sector = ds.d[x];
  439. }
  440. } else {
  441. if(density_clear(ds.d[x].sector, ds.d[x].density, ds.d[x].navhaz)) {
  442. BUGZ_LOG(info) << "Added " << ds.d[x].sector << " to unknown_warps (" << unknown_warps.size() << ")";
  443. unknown_warps.push(ds.d[x].sector);
  444. }
  445. }
  446. }
  447. } else {
  448. BUGZ_LOG(info) << "No-Op " << ds.d[x].sector << " is best.";
  449. best_sector = ds.d[x];
  450. }
  451. // Check density for possible port
  452. }
  453. }
  454. }
  455. BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
  456. if (best_sector.sector == 0) {
  457. if (unknown_warps.size() == 0) {
  458. to_client("No unknown warps.");
  459. deactivate();
  460. return;
  461. } else {
  462. BUGZ_LOG(warning) << "Seeking previous unexplored";
  463. best_sector.sector = unknown_warps.top();
  464. unknown_warps.pop();
  465. std::string message = "DEAD END";
  466. std::string indenter = " ";
  467. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  468. to_client(indenter + alert() + message + reset() + "\n\r");
  469. }
  470. }
  471. BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
  472. if (director.current_sector != best_sector.sector) {
  473. md->move_to = best_sector.sector;
  474. director.chain = move;
  475. director.chain->activate();
  476. } else {
  477. BUGZ_LOG(warning) << "Targeting current sector!";
  478. state = 3;
  479. to_server("SD");
  480. }
  481. }
  482. void ScriptExplore::server_prompt(const std::string &prompt) {
  483. BUGZ_LOG(info) << "Explorer State: SP " << state;
  484. //next();
  485. if(state == 1) {
  486. if(at_command_prompt(prompt)) {
  487. if(director.galaxy.meta.contains("ship")) {
  488. if(!director.galaxy.meta["ship"].contains("scanner")) {
  489. to_client("\n\rIt appears your ship doesn't have a long range scanner.\n\r");
  490. deactivate();
  491. return;
  492. }
  493. }
  494. state = 2;
  495. BUGZ_LOG(info) << "state = 1, prompting for user input";
  496. director.chain = input;
  497. input->activate();
  498. return;
  499. }
  500. }
  501. if (state == 3) {
  502. if(at_command_prompt(prompt)) {
  503. state = 4;
  504. BUGZ_LOG(info) << "state = 3, calculating next sector";
  505. next();
  506. }
  507. }
  508. }