scripts.cpp 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145
  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. trader = std::make_shared<TraderDispatch>(director);
  531. td = static_cast<TraderDispatch *>(&(*trader));
  532. td->setNotify([this]() { this->trade_notify(); });
  533. input = std::make_shared<InputDispatch>(director);
  534. id = static_cast<InputDispatch *>(&(*input));
  535. id->prompt = "Which planet would you like to upgrade => ";
  536. id->max_length = 3;
  537. id->numeric = true;
  538. id->setNotify([this]() { this->input_notify(); });
  539. state = 0;
  540. }
  541. void ScriptPlanet::activate() {
  542. us = director.chain;
  543. aborted = false;
  544. // FUTURE: handle special case here, where we activate at planet/citadel
  545. // prompt
  546. /*
  547. States:
  548. 1 = Team List Planets
  549. 2 = List Planets
  550. 3 = Input Which planet to upgrade?
  551. 4 = Move to Planet
  552. 5 = Land, get planet information
  553. 6 = CU Citadel build/upgrade
  554. 7 = Parse Citadel needs
  555. 8 = Construct/upgrade ?
  556. 9 = to terra!
  557. 10 = back to the planet!
  558. 11 = unloading...
  559. 12 = resources
  560. 13 = moving to buyer
  561. 14 = moving to planet
  562. 15 = product unloaded
  563. */
  564. state = 1;
  565. // clear out the planets list -- we're refreshing.
  566. director.galaxy.planets.clear();
  567. // get planet lists
  568. to_server("TLQ");
  569. }
  570. void ScriptPlanet::deactivate() {
  571. BUGZ_LOG(warning) << "ScriptPlanet::deactivate()";
  572. us.reset();
  573. notify();
  574. }
  575. void ScriptPlanet::clear_amounts(void) {
  576. // clear amounts
  577. for (int x = 0; x < 3; x++) {
  578. population[x] = 0;
  579. amount[x] = 0;
  580. needs[x] = 0;
  581. ship[x] = 0;
  582. to_make_one[x] = 0;
  583. }
  584. total_population = 0;
  585. support_construction = 0;
  586. days = 0;
  587. }
  588. /**
  589. * @brief Best place to put colonists
  590. *
  591. * Where is the best place to put colonists?
  592. *
  593. * That would be in production where they produce the most product.
  594. * Where the number to make one is the least.
  595. *
  596. * @return int
  597. */
  598. int ScriptPlanet::place_colonists(void) {
  599. int best = 1000;
  600. int pos = 0;
  601. for (int x = 0; x < 3; x++) {
  602. if (to_make_one[x] != 0) {
  603. if (to_make_one[x] < best) {
  604. best = to_make_one[x];
  605. pos = x;
  606. }
  607. }
  608. }
  609. return pos;
  610. }
  611. void ScriptPlanet::input_notify() {
  612. // deactivate();
  613. director.chain = us;
  614. if (id->input.empty()) {
  615. deactivate();
  616. return;
  617. }
  618. int selected = sstoi(id->input);
  619. if (selected == 0) {
  620. deactivate();
  621. return;
  622. }
  623. // find the planet in our list
  624. auto pos = director.galaxy.planets.find(selected);
  625. if (pos == director.galaxy.planets.end()) {
  626. to_client("Sorry, I can't find that planet #.\n\r");
  627. deactivate();
  628. return;
  629. }
  630. // Check planet level, if already max, don't bother!
  631. // Ok, we're off to planet # selected!
  632. planet = selected;
  633. sector = pos->second.sector;
  634. current_level = pos->second.level;
  635. if (director.current_sector == sector) {
  636. // We're already there!
  637. state = 5;
  638. // clear out numbers
  639. clear_amounts();
  640. // Landing ...
  641. to_server("L");
  642. return;
  643. } else {
  644. // Let's get to the planet
  645. state = 4;
  646. md->move_to = sector;
  647. director.chain = move;
  648. move->activate();
  649. return;
  650. }
  651. }
  652. void ScriptPlanet::move_notify() {
  653. director.chain = us;
  654. if (md->success) {
  655. // Ok, we're here
  656. if (state == 4) {
  657. state = 5;
  658. // clear out numbers
  659. clear_amounts();
  660. to_server("L");
  661. return;
  662. } else if (state == 9) {
  663. // Ok, we're at terra
  664. to_server("LT\r");
  665. return;
  666. } else if (state == 10) {
  667. // Back at the planet - Land and unload
  668. to_server("L");
  669. return;
  670. } else if (state == 13) {
  671. // Ok, we're here!
  672. td->port[0] = current_buyfrom;
  673. td->port[1] = 0;
  674. for (int x = 0; x < 3; x++) {
  675. td->port_buysell[0].foe[x] = false;
  676. td->port_buysell[1].foe[x] = false;
  677. td->trades.foe[x] = false;
  678. }
  679. td->port_buysell[0].foe[current_product] = true;
  680. td->trades.foe[current_product] = true;
  681. director.chain = trader;
  682. td->activate();
  683. return;
  684. } else if (state == 14) {
  685. // We're at the planet! Time to unload!
  686. to_server("L");
  687. return;
  688. }
  689. return;
  690. } else {
  691. std::string message = "MOVE FAILED: ";
  692. message.append(md->why_failed);
  693. message.append("\n\r");
  694. to_client(message);
  695. deactivate();
  696. return;
  697. }
  698. }
  699. void ScriptPlanet::trade_notify() {
  700. if (td->success) {
  701. if (state == 13) {
  702. // Ok, we have what we came from, return to the planet.
  703. state = 14;
  704. md->move_to = sector;
  705. director.chain = move;
  706. move->activate();
  707. return;
  708. }
  709. } else {
  710. to_client("Trade failed.\n\r");
  711. deactivate();
  712. return;
  713. }
  714. }
  715. void ScriptPlanet::server_prompt(const std::string &prompt) {
  716. if (state == 1) {
  717. if (at_command_prompt(prompt)) {
  718. state = 2;
  719. to_server("CYQ");
  720. return;
  721. }
  722. } else if (state == 2) {
  723. if (at_command_prompt(prompt)) {
  724. state = 3;
  725. if (director.galaxy.planets.empty()) {
  726. to_client("Sorry, I don't see that you have any planets!\n\r");
  727. deactivate();
  728. return;
  729. }
  730. for (auto const &planet : director.galaxy.planets) {
  731. std::string text = str(
  732. boost::format("%1$3d <%2$5d> Class %3% Level %4% Name %5%\n\r") %
  733. planet.first % planet.second.sector % planet.second.c %
  734. planet.second.level % planet.second.name);
  735. to_client(text);
  736. }
  737. director.chain = input;
  738. director.chain->activate();
  739. return;
  740. }
  741. } else if (state == 5) {
  742. // Are they prompting us for which planet to land on?
  743. // SP: [Land on which planet <Q to abort> ? ]
  744. if (prompt == "Land on which planet <Q to abort> ? ") {
  745. std::string text = std::to_string(planet) + "\r";
  746. to_server(text);
  747. return;
  748. }
  749. // SP: [Planet command (?=help) [D] ]
  750. if (prompt == "Planet command (?=help) [D] ") {
  751. // Ok, we're here on the planet. (Did we capture the planet info on
  752. // landing?)
  753. BUGZ_LOG(fatal) << "Total population: " << total_population;
  754. // citadel, upgrade
  755. // what is the message when you don't have a citadel yet?
  756. state = 6;
  757. to_server("CU");
  758. return;
  759. }
  760. } else if (state == 8) {
  761. // SP: [Do you wish to construct one? ]
  762. if (startswith(prompt, "Do you wish to construct ") &&
  763. endswith(prompt, "? ")) {
  764. // Do we have what we need?
  765. bool ready = true;
  766. if (total_population < support_construction) {
  767. ready = false;
  768. state = 9;
  769. BUGZ_LOG(fatal) << "Need people ["
  770. << support_construction - total_population << "]";
  771. }
  772. for (int x = 0; x < 3; ++x) {
  773. if (needs[x] > amount[x]) {
  774. if (ready) {
  775. ready = false;
  776. state = 12;
  777. }
  778. BUGZ_LOG(fatal) << "Need " << x << " :" << needs[x] - amount[x];
  779. }
  780. }
  781. if (ready) {
  782. to_server("Y");
  783. deactivate();
  784. return;
  785. }
  786. // NNY!
  787. if (current_level > 0) {
  788. to_server("NQQ");
  789. } else
  790. to_server("NQ");
  791. // Ok, time to start moving!
  792. if (state == 9) {
  793. md->move_to = 1;
  794. director.chain = move;
  795. md->activate();
  796. return;
  797. }
  798. if (state == 12) {
  799. // Need resources
  800. current_product = -1;
  801. for (int x = 0; x < 3; ++x) {
  802. if (needs[x] > amount[x]) {
  803. current_product = x;
  804. break;
  805. }
  806. }
  807. if (current_product == -1) {
  808. // I think we have everything.
  809. BUGZ_LOG(fatal) << "I think we've got it...";
  810. deactivate();
  811. return;
  812. } else {
  813. // Ok, let's find where we need to go
  814. current_buyfrom = director.galaxy.find_nearest_selling(
  815. director.current_sector, current_product);
  816. if (current_buyfrom == 0) {
  817. to_client("We weren't able to locate a port selling.\n\r");
  818. deactivate();
  819. return;
  820. }
  821. state = 13;
  822. md->move_to = current_buyfrom;
  823. director.chain = move;
  824. md->activate();
  825. return;
  826. }
  827. }
  828. }
  829. } else if (state == 9) {
  830. if (at_command_prompt(prompt)) {
  831. // Ok! We have colonists ... back to the planet!
  832. state = 10;
  833. md->move_to = sector;
  834. director.chain = move;
  835. md->activate();
  836. return;
  837. }
  838. } else if (state == 10) {
  839. if (prompt == "Land on which planet <Q to abort> ? ") {
  840. std::string text = std::to_string(planet) + "\r";
  841. to_server(text);
  842. return;
  843. }
  844. if (prompt == "Planet command (?=help) [D] ") {
  845. // Ok, on the planet.
  846. state = 11;
  847. int place = place_colonists();
  848. std::string unload = "SNL";
  849. unload.append(std::to_string(place + 1));
  850. unload.append("\r");
  851. to_server(unload);
  852. return;
  853. }
  854. } else if (state == 11) {
  855. if (prompt == "Planet command (?=help) [D] ") {
  856. if (total_population < support_construction) {
  857. // Need More - we're not in citadel.
  858. to_server("Q");
  859. state = 9;
  860. md->move_to = 1;
  861. director.chain = move;
  862. md->activate();
  863. return;
  864. }
  865. // Ok, we're ready for the next step:
  866. // checking the resources.
  867. // ending here for now. (not in citadel)
  868. to_server("Q");
  869. deactivate();
  870. return;
  871. }
  872. } else if (state == 14) {
  873. if (prompt == "Land on which planet <Q to abort> ? ") {
  874. std::string text = std::to_string(planet) + "\r";
  875. to_server(text);
  876. return;
  877. }
  878. if (prompt == "Planet command (?=help) [D] ") {
  879. state = 15;
  880. std::string command = "TNL";
  881. command.append(std::to_string(current_product + 1));
  882. command.append("\r");
  883. to_server(command);
  884. return;
  885. }
  886. } else if (state == 15) {
  887. if (prompt == "Planet command (?=help) [D] ") {
  888. // Ok, we're done unloading ... what do we need next?
  889. // Need resources
  890. current_product = -1;
  891. for (int x = 0; x < 3; ++x) {
  892. if (needs[x] > amount[x]) {
  893. current_product = x;
  894. break;
  895. }
  896. }
  897. if (current_product == -1) {
  898. // I think we have everything.
  899. BUGZ_LOG(fatal) << "I think we've got it...";
  900. deactivate();
  901. return;
  902. } else {
  903. // Ok, let's find where we need to go
  904. current_buyfrom = director.galaxy.find_nearest_selling(
  905. director.current_sector, current_product);
  906. if (current_buyfrom == 0) {
  907. to_client("We weren't able to locate a port selling.\n\r");
  908. deactivate();
  909. return;
  910. }
  911. to_server("Q");
  912. state = 13;
  913. md->move_to = current_buyfrom;
  914. director.chain = move;
  915. md->activate();
  916. return;
  917. }
  918. }
  919. }
  920. }
  921. void ScriptPlanet::server_line(const std::string &line,
  922. const std::string &raw_line) {
  923. // because I'm not sending this to the client, this is all hidden from them.
  924. if (state == 5) {
  925. // Save the planet information
  926. /*
  927. SL: [ ------- --------- --------- --------- --------- ---------
  928. ---------] SL: [Fuel Ore 4,950 2 2,475 28,135 0
  929. 200,000] SL: [Organics 0 5 0 100 0
  930. 200,000] SL: [Equipment 128 20 6 120 0
  931. 100,000] SL: [Fighters N/A 24 206 2,395 200
  932. 1,000,000]
  933. */
  934. std::string work = line;
  935. replace(work, "Fuel Ore", "Fuel");
  936. replace(work, ",", "");
  937. auto parts = split(work);
  938. if (parts.size() == 7) {
  939. int pos = -1;
  940. if (parts[0] == "Fuel") {
  941. pos = 0;
  942. } else if (parts[0] == "Organics") {
  943. pos = 1;
  944. } else if (parts[0] == "Equipment") {
  945. pos = 2;
  946. }
  947. // To save:
  948. if (pos >= 0) {
  949. population[pos] = sstoi(parts[1]);
  950. to_make_one[pos] = sstoi(parts[2]);
  951. total_population += population[pos];
  952. amount[pos] = sstoi(parts[3]);
  953. // What do we have on-board the ship?
  954. ship[pos] = sstoi(parts[5]);
  955. }
  956. }
  957. } else if (state == 6) {
  958. if (startswith(line, "You may not upgrade while")) {
  959. // We're already upgrading!
  960. std::string work = raw_line;
  961. work += "\n\r";
  962. to_client(work);
  963. if (current_level > 0) {
  964. to_server("QQ"); // exit citadel, exit planet
  965. } else {
  966. to_server("Q"); // exit planet
  967. };
  968. deactivate();
  969. return;
  970. }
  971. // Citadel upgrade information (possibly)
  972. /*
  973. SL: [Citadel construction on this type of planet requires the following:]
  974. SL: [ 400,000 Colonists to support the construction,]
  975. SL: [ 150 units of Fuel Ore,]
  976. SL: [ 100 units of Organics,]
  977. SL: [ 150 units of Equipment and]
  978. SL: [ 2 days to construct.]
  979. */
  980. if (line ==
  981. "Citadel construction on this type of planet requires the "
  982. "following:") {
  983. state = 7;
  984. }
  985. } else if (state == 7) {
  986. if (line.empty()) {
  987. state = 8;
  988. } else {
  989. // Display the upgrade information to the client
  990. std::string work = raw_line;
  991. work += "\n\r";
  992. to_client(work);
  993. work = line;
  994. replace(work, ",", "");
  995. trim(work);
  996. auto pos = work.find(" Colonists to support");
  997. if (pos != std::string::npos) {
  998. support_construction = sstoi(work) / 1000;
  999. return;
  1000. }
  1001. pos = work.find(" units of Fuel");
  1002. if (pos != std::string::npos) {
  1003. needs[0] = sstoi(work);
  1004. return;
  1005. }
  1006. pos = work.find(" units of Organics");
  1007. if (pos != std::string::npos) {
  1008. needs[1] = sstoi(work);
  1009. return;
  1010. }
  1011. pos = work.find(" units of Equipment");
  1012. if (pos != std::string::npos) {
  1013. needs[2] = sstoi(work);
  1014. return;
  1015. }
  1016. pos = work.find(" days to construct");
  1017. if (pos != std::string::npos) {
  1018. days = sstoi(work);
  1019. return;
  1020. }
  1021. }
  1022. } else if (state == 11) {
  1023. // SL: [How many groups of Colonists do you want to leave ([125] on board)
  1024. // ? ]
  1025. if (startswith(line, "How many groups of Colonists do you want to leave")) {
  1026. std::string work = line.substr(line.find('[') + 1);
  1027. int amount = sstoi(work);
  1028. total_population += amount;
  1029. BUGZ_LOG(fatal) << "Population now: " << total_population;
  1030. }
  1031. } else if (state == 15) {
  1032. // SL: [How many holds of Organics do you want to leave ([250] on board) ? ]
  1033. if (startswith(line, "How many holds of ") &&
  1034. endswith(line, "] on board) ? ")) {
  1035. std::string work = line.substr(line.find('[') + 1);
  1036. int amount_moved = sstoi(work);
  1037. amount[current_product] += amount_moved;
  1038. BUGZ_LOG(fatal) << "Planet " << current_product << " +" << amount_moved
  1039. << " = " << amount[current_product];
  1040. }
  1041. }
  1042. }
  1043. void ScriptPlanet::client_input(const std::string &input) { deactivate(); }