scripts.cpp 32 KB

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