scripts.cpp 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156
  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 = director.galaxy.config["trade_end_empty"];
  32. } else {
  33. old_trade_end_empty = "Y";
  34. }
  35. director.galaxy.config["trade_end_empty"] = "Y";
  36. // Step 0: Get ship information / # of holds
  37. max_loops = loops = -1;
  38. to_server("I");
  39. // Step 1: Get number of loops of terror
  40. // director.chain = input;
  41. // input->activate();
  42. // Step 2: Look for closest trades, try ScriptTrade until none < some
  43. // level. Step 3: Move on, unless out of loops (or low on turns)
  44. // deactivate();
  45. }
  46. void ScriptTerror::deactivate(void) {
  47. BUGZ_LOG(warning) << "ScriptTerror::deactivate()";
  48. // restore the original value.
  49. director.galaxy.config["trade_end_empty"] = old_trade_end_empty;
  50. notify();
  51. }
  52. void ScriptTerror::input_notify(void) {
  53. if (id->input.empty()) {
  54. deactivate();
  55. return;
  56. }
  57. if (id->aborted) {
  58. deactivate();
  59. return;
  60. }
  61. max_loops = sstoi(id->input, -1);
  62. if (max_loops == -1) {
  63. deactivate();
  64. return;
  65. }
  66. id->input.clear();
  67. BUGZ_LOG(warning) << "Loops of terror: " << max_loops;
  68. loops = max_loops;
  69. // find nearest
  70. int stop_percent;
  71. if (director.galaxy.config.contains("stop_percent")) {
  72. stop_percent = director.galaxy.config["stop_percent"].get<int>();
  73. } else {
  74. stop_percent = 25;
  75. director.galaxy.config["stop_percent"] = stop_percent;
  76. }
  77. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  78. stop_percent);
  79. if (ppt.type == 0) {
  80. to_client("No trades found! You've burnt the galaxy!\n\r");
  81. deactivate();
  82. return;
  83. }
  84. // ok, step 2: move!
  85. // md->setNotify([this]() { this->proxy_deactivate(); });
  86. if (director.current_sector != ppt.s1) {
  87. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  88. md->move_to = ppt.s1;
  89. director.chain = move;
  90. director.chain->activate();
  91. return;
  92. } else {
  93. // We're already there!
  94. to_client("Ok! Get trading!\n\r");
  95. td->port[0] = ppt.s1;
  96. td->port[1] = ppt.s2;
  97. td->trades = ppt.trades;
  98. td->type = ppt.type;
  99. director.chain = trader;
  100. director.chain->activate();
  101. return;
  102. }
  103. }
  104. void ScriptTerror::move_notify(void) {
  105. BUGZ_LOG(fatal) << "move_notify()";
  106. if (md->aborted) {
  107. to_client("Move cancel.\n\r");
  108. deactivate();
  109. return;
  110. }
  111. // Check for success, and start trading!
  112. if (md->success) {
  113. to_client("We're here, get trading!\n\r");
  114. td->port[0] = ppt.s1;
  115. td->port[1] = ppt.s2;
  116. td->trades = ppt.trades;
  117. td->type = ppt.type;
  118. director.chain = trader;
  119. director.chain->activate();
  120. return;
  121. } else {
  122. std::string message = "Move FAILED. " + md->why_failed + "\n\r";
  123. // to_client("Move FAILED.\n\r");
  124. to_client(message);
  125. deactivate();
  126. }
  127. }
  128. void ScriptTerror::server_prompt(const std::string &prompt) {
  129. if ((loops == -1) && (max_loops == -1)) {
  130. if (at_command_prompt(prompt)) {
  131. // Step 1: Get number of loops of terror
  132. director.chain = input;
  133. input->activate();
  134. return;
  135. }
  136. }
  137. }
  138. void ScriptTerror::trade_notify(void) {
  139. // Done trading -- maybe! :P
  140. if (td->aborted) {
  141. to_client("Trade cancel.\n\r");
  142. deactivate();
  143. return;
  144. }
  145. if (td->success) {
  146. // success!
  147. // find nearest
  148. int stop_percent;
  149. if (director.galaxy.config.contains("stop_percent")) {
  150. stop_percent = director.galaxy.config["stop_percent"].get<int>();
  151. } else {
  152. stop_percent = 25;
  153. director.galaxy.config["stop_percent"] = stop_percent;
  154. }
  155. ppt = director.galaxy.find_closest_trade(director.current_sector, 3,
  156. stop_percent);
  157. if (ppt.type == 0) {
  158. to_client("No trades found! You've burnt the galaxy!\n\r");
  159. deactivate();
  160. return;
  161. }
  162. if ((director.current_sector == ppt.s1) ||
  163. (director.current_sector == ppt.s2)) {
  164. // We're still here...
  165. BUGZ_LOG(fatal) << "Trade it again, Sam.";
  166. to_client("Keep trading.\n\r");
  167. td->port[0] = ppt.s1;
  168. td->port[1] = ppt.s2;
  169. td->trades = ppt.trades;
  170. td->type = ppt.type;
  171. director.chain = trader;
  172. director.chain->activate();
  173. return;
  174. }
  175. // Ok, this isn't a local trade.
  176. if (loops == 0) {
  177. to_client("We're done terrorizing, for now...\n\r");
  178. deactivate();
  179. return;
  180. }
  181. --loops;
  182. // Move to our next target
  183. BUGZ_LOG(fatal) << "Moving to: " << ppt.s1;
  184. md->move_to = ppt.s1;
  185. director.chain = move;
  186. director.chain->activate();
  187. return;
  188. } else {
  189. std::string message = "Trade done: " + td->why_failed + "\n\r";
  190. to_client(message);
  191. }
  192. // to_client("Ok, trade is done.\n\r");
  193. deactivate();
  194. }
  195. ScriptVoyager::ScriptVoyager(Director &d) : Dispatch(d) {
  196. BUGZ_LOG(warning) << "ScriptVoyager()";
  197. init();
  198. }
  199. ScriptVoyager::~ScriptVoyager() { BUGZ_LOG(warning) << "~ScriptVoyager()"; }
  200. void ScriptVoyager::init(void) {
  201. move = std::make_shared<MoveDispatch>(director);
  202. md = static_cast<MoveDispatch *>(&(*move));
  203. md->setNotify([this]() { this->move_notify(); });
  204. input = std::make_shared<InputDispatch>(director);
  205. id = static_cast<InputDispatch *>(&(*input));
  206. id->prompt = "Number of loops/tries: ";
  207. id->max_length = 5;
  208. id->numeric = true;
  209. id->setNotify([this]() { this->input_notify(); });
  210. }
  211. void ScriptVoyager::activate(void) {
  212. director.chain = input;
  213. input->activate();
  214. return;
  215. }
  216. void ScriptVoyager::deactivate(void) {
  217. BUGZ_LOG(warning) << "ScriptVoyager::deactivate()";
  218. notify();
  219. }
  220. void ScriptVoyager::move_notify(void) {
  221. if (md->aborted) {
  222. deactivate();
  223. return;
  224. }
  225. if (md->success) {
  226. // Great!
  227. next();
  228. return;
  229. } else {
  230. std::string message = "No safe moves. " + md->why_failed + "\n\r";
  231. to_client(message);
  232. deactivate();
  233. }
  234. }
  235. void ScriptVoyager::input_notify(void) {
  236. if (id->input.empty() || id->aborted) {
  237. to_client("Ok, maybe later then.\n\r");
  238. deactivate();
  239. return;
  240. }
  241. loops = sstoi(id->input, -1);
  242. if (loops == -1) {
  243. to_client("I'm sorry, WHAT?\n\r");
  244. deactivate();
  245. }
  246. id->input.clear();
  247. BUGZ_LOG(warning) << "Voyager loops: " << loops;
  248. next();
  249. }
  250. void ScriptVoyager::next(void) {
  251. if (loops == 0) {
  252. // ok, stop here.
  253. to_client("The voyage ends here, for now.\n\r");
  254. deactivate();
  255. return;
  256. }
  257. --loops;
  258. sector_type s =
  259. director.galaxy.find_nearest_unexplored(director.current_sector);
  260. if (s == 0) {
  261. to_client("I don't see anything else to explorer.\n\r");
  262. BUGZ_LOG(warning) << "find_nearest_unexplored returned 0";
  263. deactivate();
  264. }
  265. BUGZ_LOG(warning) << "Next stop: " << s;
  266. md->move_to = s;
  267. director.chain = move;
  268. director.chain->activate();
  269. }
  270. // SL: [###### DANGER! You have marked sector 740 to be avoided!]
  271. // SP: [Do you really want to warp there? (Y/N) ]
  272. void ScriptVoyager::server_prompt(const std::string &prompt) {}
  273. ScriptExplore::ScriptExplore(Director &d) : Dispatch(d) {
  274. BUGZ_LOG(warning) << "ScriptExplore()";
  275. init();
  276. }
  277. ScriptExplore::~ScriptExplore() { BUGZ_LOG(warning) << "~ScriptExplore()"; }
  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. target = 0;
  290. if (!director.galaxy.config.contains("prefer_ports")) {
  291. director.galaxy.config["prefer_ports"] = "Y";
  292. prefer_ports = true;
  293. } else {
  294. prefer_ports = json_str(director.galaxy.config["prefer_ports"]) == "Y";
  295. }
  296. if (!director.galaxy.meta["help"].contains("prefer_ports")) {
  297. director.galaxy.meta["help"]["prefer_ports"] =
  298. "Explorer prefers to find ports.";
  299. }
  300. BUGZ_LOG(warning) << "Prefer Ports: " + prefer_ports;
  301. }
  302. void ScriptExplore::activate() {
  303. us = director.chain;
  304. state = 1;
  305. to_server("I");
  306. /*
  307. director.chain = input;
  308. input->activate();
  309. if(director.galaxy.meta["ship"]) {
  310. if(!director.galaxy.meta["ship"]["scanner"]) {
  311. to_client("\n\rIt appears your ship doesn't have a long range
  312. scanner.\n\r"); deactivate();
  313. }
  314. }
  315. state = 1;
  316. return;
  317. */
  318. }
  319. void ScriptExplore::deactivate() {
  320. BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
  321. us.reset();
  322. notify();
  323. }
  324. void ScriptExplore::move_notify() {
  325. director.chain = us;
  326. if (md->aborted) {
  327. deactivate();
  328. return;
  329. }
  330. if (md->success) {
  331. to_server("SD");
  332. state = 3;
  333. return;
  334. } else {
  335. if (unknown_warps.size() != 0) {
  336. BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
  337. state = 4;
  338. next();
  339. target = unknown_warps.top();
  340. unknown_warps.pop();
  341. std::string message = "UNSAFE DESTINATION";
  342. std::string indenter = " ";
  343. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  344. to_client(indenter + alert() + message + reset() + "\n\r");
  345. } else {
  346. std::string message = "Move failed: " + md->why_failed + "\n\r";
  347. // to_client("No safe moves.\n\r");
  348. BUGZ_LOG(warning) << message;
  349. to_client(message);
  350. deactivate();
  351. }
  352. }
  353. }
  354. void ScriptExplore::input_notify() {
  355. director.chain = us;
  356. if (id->input.empty() || id->aborted) {
  357. to_client("Maybe next time.\n\r");
  358. deactivate();
  359. return;
  360. }
  361. loops = sstoi(id->input, -1);
  362. if (loops == -1) {
  363. to_client("I'm sorry, WHAT?\n\r");
  364. deactivate();
  365. return;
  366. }
  367. if (loops == 0) {
  368. infinite = true;
  369. } else {
  370. infinite = false;
  371. }
  372. id->input.clear();
  373. if (!infinite) {
  374. BUGZ_LOG(warning) << "Explore loops: " << loops;
  375. } else {
  376. to_client("Infinite Mode!\n\r");
  377. to_client("[ PRESS A KEY TO STOP ]\n\r");
  378. BUGZ_LOG(warning) << "Explore loops: INFINITE";
  379. }
  380. to_server("SD");
  381. state = 3;
  382. }
  383. void ScriptExplore::next() {
  384. if (loops <= 0 && !infinite) {
  385. to_client("The exploration ends, for now.\n\r");
  386. deactivate();
  387. return;
  388. }
  389. if (!infinite) --loops;
  390. // Calculate next best sector to goto
  391. density_scan &ds = director.galaxy.dscan;
  392. density best_sector;
  393. best_sector.sector = 0;
  394. if (target != 0) {
  395. BUGZ_LOG(info) << "Using: " << target;
  396. best_sector.sector = target;
  397. target = 0;
  398. } else {
  399. for (int x = 0; x < ds.pos; ++x) {
  400. if (best_sector.sector != 0)
  401. BUGZ_LOG(info) << "Comparing: " << ds.d[x].sector << " ("
  402. << ds.d[x].density << ", " << ds.d[x].known << ") to "
  403. << best_sector.sector << " (" << best_sector.density
  404. << ", " << best_sector.known << ")";
  405. /* Is this sector prefered over others?
  406. * Warp Counts (Number of warps)
  407. * Density Check (Is this sector clear, does it contain a port)
  408. * NavHaz Check (Avoid sectors with navhaz above X%)
  409. */
  410. if (!ds.d[x].known) {
  411. BUGZ_LOG(info) << "Subject: " << ds.d[x].sector;
  412. // Compare, Warp counts
  413. if (best_sector.sector != 0) {
  414. if (prefer_ports) {
  415. if ((ds.d[x].density == 100 || ds.d[x].density == 101) ||
  416. (ds.d[x].warps >= best_sector.warps)) {
  417. if (density_clear(ds.d[x].sector, ds.d[x].density,
  418. ds.d[x].navhaz)) {
  419. if (best_sector.sector != 0) {
  420. BUGZ_LOG(info)
  421. << "Storing previous best " << best_sector.sector;
  422. unknown_warps.push(best_sector.sector);
  423. }
  424. best_sector = ds.d[x];
  425. }
  426. } else {
  427. if (density_clear(ds.d[x].sector, ds.d[x].density,
  428. ds.d[x].navhaz)) {
  429. BUGZ_LOG(info)
  430. << "Added " << ds.d[x].sector << " to unknown_warps ("
  431. << unknown_warps.size() << ")";
  432. unknown_warps.push(ds.d[x].sector);
  433. }
  434. }
  435. } else {
  436. if ((ds.d[x].warps >= best_sector.warps)) {
  437. if (density_clear(ds.d[x].sector, ds.d[x].density,
  438. ds.d[x].navhaz)) {
  439. if (best_sector.sector != 0) {
  440. BUGZ_LOG(info)
  441. << "Storing previous best " << best_sector.sector;
  442. unknown_warps.push(best_sector.sector);
  443. }
  444. best_sector = ds.d[x];
  445. }
  446. } else {
  447. if (density_clear(ds.d[x].sector, ds.d[x].density,
  448. ds.d[x].navhaz)) {
  449. BUGZ_LOG(info)
  450. << "Added " << ds.d[x].sector << " to unknown_warps ("
  451. << unknown_warps.size() << ")";
  452. unknown_warps.push(ds.d[x].sector);
  453. }
  454. }
  455. }
  456. } else {
  457. BUGZ_LOG(info) << "No-Op " << ds.d[x].sector << " is best.";
  458. best_sector = ds.d[x];
  459. }
  460. // Check density for possible port
  461. }
  462. // Check density for possible port
  463. }
  464. }
  465. BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
  466. if (best_sector.sector == 0) {
  467. if (unknown_warps.size() == 0) {
  468. to_client("No unknown warps.");
  469. deactivate();
  470. return;
  471. } else {
  472. BUGZ_LOG(warning) << "Seeking previous unexplored";
  473. best_sector.sector = unknown_warps.top();
  474. unknown_warps.pop();
  475. std::string message = "DEAD END";
  476. std::string indenter = " ";
  477. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  478. to_client(indenter + alert() + message + reset() + "\n\r");
  479. }
  480. }
  481. BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
  482. if (director.current_sector != best_sector.sector) {
  483. md->move_to = best_sector.sector;
  484. director.chain = move;
  485. director.chain->activate();
  486. } else {
  487. BUGZ_LOG(warning) << "Targeting current sector!";
  488. state = 3;
  489. to_server("SD");
  490. }
  491. }
  492. void ScriptExplore::server_prompt(const std::string &prompt) {
  493. BUGZ_LOG(info) << "Explorer State: SP " << state;
  494. // next();
  495. if (state == 1) {
  496. if (at_command_prompt(prompt)) {
  497. if (director.galaxy.meta.contains("ship")) {
  498. if (!director.galaxy.meta["ship"].contains("scanner")) {
  499. to_client(
  500. "\n\rIt appears your ship doesn't have a long range "
  501. "scanner.\n\r");
  502. deactivate();
  503. return;
  504. }
  505. }
  506. state = 2;
  507. BUGZ_LOG(info) << "state = 1, prompting for user input";
  508. director.chain = input;
  509. input->activate();
  510. return;
  511. }
  512. }
  513. if (state == 3) {
  514. if (at_command_prompt(prompt)) {
  515. state = 4;
  516. BUGZ_LOG(info) << "state = 3, calculating next sector";
  517. next();
  518. }
  519. }
  520. }
  521. ScriptPlanet::ScriptPlanet(Director &d) : Dispatch(d) {
  522. BUGZ_LOG(warning) << "ScriptPlanet()";
  523. init();
  524. }
  525. ScriptPlanet::~ScriptPlanet() { BUGZ_LOG(warning) << "~ScriptPlanet()"; }
  526. void ScriptPlanet::init() {
  527. move = std::make_shared<MoveDispatch>(director);
  528. md = static_cast<MoveDispatch *>(&(*move));
  529. md->setNotify([this]() { this->move_notify(); });
  530. md->use_express = true;
  531. trader = std::make_shared<TraderDispatch>(director);
  532. td = static_cast<TraderDispatch *>(&(*trader));
  533. td->setNotify([this]() { this->trade_notify(); });
  534. input = std::make_shared<InputDispatch>(director);
  535. id = static_cast<InputDispatch *>(&(*input));
  536. id->prompt = "Which planet would you like to upgrade => ";
  537. id->max_length = 3;
  538. id->numeric = true;
  539. id->setNotify([this]() { this->input_notify(); });
  540. state = 0;
  541. }
  542. void ScriptPlanet::activate() {
  543. us = director.chain;
  544. aborted = false;
  545. // FUTURE: handle special case here, where we activate at planet/citadel
  546. // prompt
  547. /*
  548. States:
  549. 1 = Team List Planets
  550. 2 = List Planets
  551. 3 = Input Which planet to upgrade?
  552. 4 = Move to Planet
  553. 5 = Land, get planet information
  554. 6 = CU Citadel build/upgrade
  555. 7 = Parse Citadel needs
  556. 8 = Construct/upgrade ?
  557. 9 = to terra!
  558. 10 = back to the planet!
  559. 11 = unloading...
  560. 12 = resources
  561. 13 = moving to buyer
  562. 14 = moving to planet
  563. 15 = product unloaded
  564. */
  565. state = 1;
  566. // clear out the planets list -- we're refreshing.
  567. director.galaxy.planets.clear();
  568. // get planet lists
  569. to_server("TLQ");
  570. }
  571. void ScriptPlanet::deactivate() {
  572. BUGZ_LOG(warning) << "ScriptPlanet::deactivate()";
  573. us.reset();
  574. notify();
  575. }
  576. void ScriptPlanet::clear_amounts(void) {
  577. // clear amounts
  578. for (int x = 0; x < 3; x++) {
  579. population[x] = 0;
  580. amount[x] = 0;
  581. needs[x] = 0;
  582. ship[x] = 0;
  583. to_make_one[x] = 0;
  584. }
  585. total_population = 0;
  586. support_construction = 0;
  587. days = 0;
  588. }
  589. /**
  590. * @brief Best place to put colonists
  591. *
  592. * Where is the best place to put colonists?
  593. *
  594. * That would be in production where they produce the most product.
  595. * Where the number to make one is the least.
  596. *
  597. * @return int
  598. */
  599. int ScriptPlanet::place_colonists(void) {
  600. int best = 1000;
  601. int pos = 0;
  602. for (int x = 0; x < 3; x++) {
  603. if (to_make_one[x] != 0) {
  604. if (to_make_one[x] < best) {
  605. best = to_make_one[x];
  606. pos = x;
  607. }
  608. }
  609. }
  610. return pos;
  611. }
  612. void ScriptPlanet::input_notify() {
  613. // deactivate();
  614. director.chain = us;
  615. if (id->input.empty()) {
  616. deactivate();
  617. return;
  618. }
  619. int selected = sstoi(id->input);
  620. if (selected == 0) {
  621. deactivate();
  622. return;
  623. }
  624. // find the planet in our list
  625. auto pos = director.galaxy.planets.find(selected);
  626. if (pos == director.galaxy.planets.end()) {
  627. to_client("Sorry, I can't find that planet #.\n\r");
  628. deactivate();
  629. return;
  630. }
  631. // Check planet level, if already max, don't bother!
  632. // Ok, we're off to planet # selected!
  633. planet = selected;
  634. sector = pos->second.sector;
  635. current_level = pos->second.level;
  636. if (director.current_sector == sector) {
  637. // We're already there!
  638. state = 5;
  639. // clear out numbers
  640. clear_amounts();
  641. // Landing ...
  642. to_server("L");
  643. return;
  644. } else {
  645. // Let's get to the planet
  646. state = 4;
  647. md->move_to = sector;
  648. director.chain = move;
  649. move->activate();
  650. return;
  651. }
  652. }
  653. void ScriptPlanet::move_notify() {
  654. director.chain = us;
  655. if (md->success) {
  656. // Ok, we're here
  657. if (state == 4) {
  658. state = 5;
  659. // clear out numbers
  660. clear_amounts();
  661. to_server("L");
  662. return;
  663. } else if (state == 9) {
  664. // Ok, we're at terra
  665. to_server("LT\r");
  666. return;
  667. } else if (state == 10) {
  668. // Back at the planet - Land and unload
  669. to_server("L");
  670. return;
  671. } else if (state == 13) {
  672. // Ok, we're here!
  673. td->port[0] = current_buyfrom;
  674. td->port[1] = 0;
  675. for (int x = 0; x < 3; x++) {
  676. td->port_buysell[0].foe[x] = false;
  677. td->port_buysell[1].foe[x] = false;
  678. td->trades.foe[x] = false;
  679. }
  680. td->port_buysell[0].foe[current_product] = true;
  681. td->trades.foe[current_product] = true;
  682. director.chain = trader;
  683. td->activate();
  684. return;
  685. } else if (state == 14) {
  686. // We're at the planet! Time to unload!
  687. to_server("L");
  688. return;
  689. }
  690. return;
  691. } else {
  692. std::string message = "MOVE FAILED: ";
  693. message.append(md->why_failed);
  694. message.append("\n\r");
  695. to_client(message);
  696. deactivate();
  697. return;
  698. }
  699. }
  700. void ScriptPlanet::trade_notify() {
  701. director.chain = us;
  702. if (td->success) {
  703. if (state == 13) {
  704. // Ok, we have what we came from, return to the planet.
  705. state = 14;
  706. md->move_to = sector;
  707. director.chain = move;
  708. move->activate();
  709. return;
  710. }
  711. } else {
  712. to_client("Trade failed.\n\r");
  713. deactivate();
  714. return;
  715. }
  716. }
  717. void ScriptPlanet::server_prompt(const std::string &prompt) {
  718. if (state == 1) {
  719. if (at_command_prompt(prompt)) {
  720. state = 2;
  721. to_server("CYQ");
  722. return;
  723. }
  724. } else if (state == 2) {
  725. if (at_command_prompt(prompt)) {
  726. state = 3;
  727. if (director.galaxy.planets.empty()) {
  728. to_client("Sorry, I don't see that you have any planets!\n\r");
  729. deactivate();
  730. return;
  731. }
  732. for (auto const &planet : director.galaxy.planets) {
  733. std::string text = str(
  734. boost::format("%1$3d <%2$5d> Class %3% Level %4% Name %5%\n\r") %
  735. planet.first % planet.second.sector % planet.second.c %
  736. planet.second.level % planet.second.name);
  737. to_client(text);
  738. }
  739. director.chain = input;
  740. director.chain->activate();
  741. return;
  742. }
  743. } else if (state == 5) {
  744. // Are they prompting us for which planet to land on?
  745. // SP: [Land on which planet <Q to abort> ? ]
  746. if (prompt == "Land on which planet <Q to abort> ? ") {
  747. std::string text = std::to_string(planet) + "\r";
  748. to_server(text);
  749. return;
  750. }
  751. // SP: [Planet command (?=help) [D] ]
  752. if (prompt == "Planet command (?=help) [D] ") {
  753. // Ok, we're here on the planet. (Did we capture the planet info on
  754. // landing?)
  755. BUGZ_LOG(fatal) << "Total population: " << total_population;
  756. // citadel, upgrade
  757. // what is the message when you don't have a citadel yet?
  758. state = 6;
  759. to_server("CU");
  760. return;
  761. }
  762. } else if (state == 8) {
  763. // SP: [Do you wish to construct one? ]
  764. if (startswith(prompt, "Do you wish to construct ") &&
  765. endswith(prompt, "? ")) {
  766. // Do we have what we need?
  767. bool ready = true;
  768. if (total_population < support_construction) {
  769. ready = false;
  770. state = 9;
  771. BUGZ_LOG(fatal) << "Need people ["
  772. << support_construction - total_population << "]";
  773. }
  774. for (int x = 0; x < 3; ++x) {
  775. if (needs[x] > amount[x]) {
  776. if (ready) {
  777. ready = false;
  778. state = 12;
  779. }
  780. BUGZ_LOG(fatal) << "Need " << x << " :" << needs[x] - amount[x];
  781. }
  782. }
  783. if (ready) {
  784. to_server("Y");
  785. deactivate();
  786. return;
  787. }
  788. // NNY!
  789. if (current_level > 0) {
  790. to_server("NQQ");
  791. } else
  792. to_server("NQ");
  793. // Ok, time to start moving!
  794. if (state == 9) {
  795. md->move_to = 1;
  796. director.chain = move;
  797. md->activate();
  798. return;
  799. }
  800. if (state == 12) {
  801. // Need resources
  802. current_product = -1;
  803. for (int x = 0; x < 3; ++x) {
  804. if (needs[x] > amount[x]) {
  805. current_product = x;
  806. break;
  807. }
  808. }
  809. if (current_product == -1) {
  810. // I think we have everything.
  811. BUGZ_LOG(fatal) << "I think we've got it...";
  812. to_server("CUY");
  813. deactivate();
  814. return;
  815. } else {
  816. // Ok, let's find where we need to go
  817. current_buyfrom = director.galaxy.find_nearest_selling(
  818. director.current_sector, current_product);
  819. if (current_buyfrom == 0) {
  820. to_client("We weren't able to locate a port selling.\n\r");
  821. deactivate();
  822. return;
  823. }
  824. state = 13;
  825. md->move_to = current_buyfrom;
  826. director.chain = move;
  827. md->activate();
  828. return;
  829. }
  830. }
  831. }
  832. } else if (state == 9) {
  833. if (at_command_prompt(prompt)) {
  834. // Ok! We have colonists ... back to the planet!
  835. state = 10;
  836. md->move_to = sector;
  837. director.chain = move;
  838. md->activate();
  839. return;
  840. }
  841. } else if (state == 10) {
  842. if (prompt == "Land on which planet <Q to abort> ? ") {
  843. std::string text = std::to_string(planet) + "\r";
  844. to_server(text);
  845. return;
  846. }
  847. if (prompt == "Planet command (?=help) [D] ") {
  848. // Ok, on the planet.
  849. state = 11;
  850. int place = place_colonists();
  851. std::string unload = "SNL";
  852. unload.append(std::to_string(place + 1));
  853. unload.append("\r");
  854. to_server(unload);
  855. return;
  856. }
  857. } else if (state == 11) {
  858. if (prompt == "Planet command (?=help) [D] ") {
  859. if (total_population < support_construction) {
  860. // Need More - we're not in citadel.
  861. to_server("Q");
  862. state = 9;
  863. md->move_to = 1;
  864. director.chain = move;
  865. md->activate();
  866. return;
  867. }
  868. // Ok, we're ready for the next step:
  869. // checking the resources.
  870. // ending here for now. (not in citadel)
  871. to_server("Q");
  872. deactivate();
  873. return;
  874. }
  875. } else if (state == 14) {
  876. if (prompt == "Land on which planet <Q to abort> ? ") {
  877. std::string text = std::to_string(planet) + "\r";
  878. to_server(text);
  879. return;
  880. }
  881. if (prompt == "Planet command (?=help) [D] ") {
  882. state = 15;
  883. std::string command = "TNL";
  884. command.append(std::to_string(current_product + 1));
  885. command.append("\r");
  886. to_server(command);
  887. return;
  888. }
  889. } else if (state == 15) {
  890. if (prompt == "Planet command (?=help) [D] ") {
  891. // Ok, we're done unloading ... what do we need next?
  892. // Need resources
  893. current_product = -1;
  894. for (int x = 0; x < 3; ++x) {
  895. if (needs[x] > amount[x]) {
  896. current_product = x;
  897. break;
  898. }
  899. }
  900. if (current_product == -1) {
  901. // I think we have everything.
  902. BUGZ_LOG(fatal) << "I think we've got it...";
  903. to_server("CUY");
  904. deactivate();
  905. return;
  906. } else {
  907. // Ok, let's find where we need to go
  908. current_buyfrom = director.galaxy.find_nearest_selling(
  909. director.current_sector, current_product);
  910. if (current_buyfrom == 0) {
  911. to_client("We weren't able to locate a port selling.\n\r");
  912. deactivate();
  913. return;
  914. }
  915. to_server("Q");
  916. state = 13;
  917. md->move_to = current_buyfrom;
  918. director.chain = move;
  919. md->activate();
  920. return;
  921. }
  922. }
  923. }
  924. }
  925. void ScriptPlanet::server_line(const std::string &line,
  926. const std::string &raw_line) {
  927. // because I'm not sending this to the client, this is all hidden from them.
  928. if (state == 5) {
  929. // Save the planet information
  930. /*
  931. SL: [ ------- --------- --------- --------- --------- ---------
  932. ---------] SL: [Fuel Ore 4,950 2 2,475 28,135 0
  933. 200,000] SL: [Organics 0 5 0 100 0
  934. 200,000] SL: [Equipment 128 20 6 120 0
  935. 100,000] SL: [Fighters N/A 24 206 2,395 200
  936. 1,000,000]
  937. */
  938. std::string work = line;
  939. replace(work, "Fuel Ore", "Fuel");
  940. replace(work, ",", "");
  941. auto parts = split(work);
  942. if (parts.size() == 7) {
  943. int pos = -1;
  944. if (parts[0] == "Fuel") {
  945. pos = 0;
  946. } else if (parts[0] == "Organics") {
  947. pos = 1;
  948. } else if (parts[0] == "Equipment") {
  949. pos = 2;
  950. }
  951. // To save:
  952. if (pos >= 0) {
  953. population[pos] = sstoi(parts[1]);
  954. to_make_one[pos] = sstoi(parts[2]);
  955. total_population += population[pos];
  956. amount[pos] = sstoi(parts[4]);
  957. // What do we have on-board the ship?
  958. ship[pos] = sstoi(parts[5]);
  959. BUGZ_LOG(fatal) << pos << " : pop " << population[pos] << " 2M1 "
  960. << to_make_one[pos] << " amount " << amount[pos]
  961. << " ship: " << ship[pos];
  962. }
  963. }
  964. } else if (state == 6) {
  965. // [Be patient, your Citadel is not yet finished.]
  966. if ((line == "Be patient, your Citadel is not yet finished.") ||
  967. (startswith(line, "You may not upgrade while"))) {
  968. // We're already upgrading!
  969. std::string work = raw_line;
  970. work += "\n\r";
  971. to_client(work);
  972. if (current_level > 0) {
  973. to_server("QQ"); // exit citadel, exit planet
  974. } else {
  975. to_server("Q"); // exit planet
  976. };
  977. deactivate();
  978. return;
  979. }
  980. // Citadel upgrade information (possibly)
  981. /*
  982. SL: [Citadel construction on this type of planet requires the following:]
  983. SL: [ 400,000 Colonists to support the construction,]
  984. SL: [ 150 units of Fuel Ore,]
  985. SL: [ 100 units of Organics,]
  986. SL: [ 150 units of Equipment and]
  987. SL: [ 2 days to construct.]
  988. */
  989. if ((line == "Citadel construction on this type of planet requires the "
  990. "following:") ||
  991. (endswith(line, " construction on this type of planet requires"))) {
  992. state = 7;
  993. }
  994. } else if (state == 7) {
  995. if (line.empty()) {
  996. state = 8;
  997. } else {
  998. // Display the upgrade information to the client
  999. std::string work = raw_line;
  1000. work += "\n\r";
  1001. to_client(work);
  1002. work = line;
  1003. replace(work, ",", "");
  1004. trim(work);
  1005. auto pos = work.find(" Colonists to support");
  1006. if (pos != std::string::npos) {
  1007. support_construction = sstoi(work) / 1000;
  1008. return;
  1009. }
  1010. pos = work.find(" units of Fuel");
  1011. if (pos != std::string::npos) {
  1012. needs[0] = sstoi(work);
  1013. return;
  1014. }
  1015. pos = work.find(" units of Organics");
  1016. if (pos != std::string::npos) {
  1017. needs[1] = sstoi(work);
  1018. return;
  1019. }
  1020. pos = work.find(" units of Equipment");
  1021. if (pos != std::string::npos) {
  1022. needs[2] = sstoi(work);
  1023. return;
  1024. }
  1025. pos = work.find(" days to construct");
  1026. if (pos != std::string::npos) {
  1027. days = sstoi(work);
  1028. return;
  1029. }
  1030. }
  1031. } else if (state == 11) {
  1032. // SL: [How many groups of Colonists do you want to leave ([125] on board)
  1033. // ? ]
  1034. if (startswith(line, "How many groups of Colonists do you want to leave")) {
  1035. std::string work = line.substr(line.find('[') + 1);
  1036. int amount = sstoi(work);
  1037. total_population += amount;
  1038. BUGZ_LOG(fatal) << "Population now: " << total_population;
  1039. }
  1040. } else if (state == 15) {
  1041. // SL: [How many holds of Organics do you want to leave ([250] on board) ? ]
  1042. if (startswith(line, "How many holds of ") &&
  1043. endswith(line, "] on board) ? ")) {
  1044. std::string work = line.substr(line.find('[') + 1);
  1045. int amount_moved = sstoi(work);
  1046. amount[current_product] += amount_moved;
  1047. BUGZ_LOG(fatal) << "Planet " << current_product << " +" << amount_moved
  1048. << " = " << amount[current_product];
  1049. }
  1050. }
  1051. }
  1052. void ScriptPlanet::client_input(const std::string &input) { deactivate(); }