scripts.cpp 33 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 = 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. BUGZ_LOG(warning) << "Prefer Ports: " + prefer_ports;
  307. }
  308. void ScriptExplore::activate() {
  309. us = director.chain;
  310. state = 1;
  311. to_server("I");
  312. /*
  313. director.chain = input;
  314. input->activate();
  315. if(director.galaxy.meta["ship"]) {
  316. if(!director.galaxy.meta["ship"]["scanner"]) {
  317. to_client("\n\rIt appears your ship doesn't have a long range
  318. scanner.\n\r"); deactivate();
  319. }
  320. }
  321. state = 1;
  322. return;
  323. */
  324. }
  325. void ScriptExplore::deactivate() {
  326. BUGZ_LOG(warning) << "ScriptExplore::deactivate()";
  327. us.reset();
  328. notify();
  329. }
  330. void ScriptExplore::move_notify() {
  331. director.chain = us;
  332. if (md->aborted) {
  333. deactivate();
  334. return;
  335. }
  336. if (md->success) {
  337. to_server("SD");
  338. state = 3;
  339. return;
  340. } else {
  341. if (unknown_warps.size() != 0) {
  342. BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
  343. state = 4;
  344. target = unknown_warps.top();
  345. unknown_warps.pop();
  346. std::string message = "UNSAFE DESTINATION";
  347. std::string indenter = " ";
  348. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  349. to_client(indenter + alert() + message + reset() + "\n\r");
  350. BUGZ_LOG(warning) << "Target = " << target;
  351. next();
  352. //deactivate();
  353. } else {
  354. std::string message = "Move failed: " + md->why_failed + "\n\r";
  355. // to_client("No safe moves.\n\r");
  356. BUGZ_LOG(warning) << message;
  357. to_client(message);
  358. deactivate();
  359. }
  360. }
  361. }
  362. void ScriptExplore::input_notify() {
  363. director.chain = us;
  364. if (id->input.empty() || id->aborted) {
  365. to_client("Maybe next time.\n\r");
  366. deactivate();
  367. return;
  368. }
  369. loops = sstoi(id->input, -1);
  370. if (loops == -1) {
  371. to_client("I'm sorry, WHAT?\n\r");
  372. deactivate();
  373. return;
  374. }
  375. if (loops == 0) {
  376. infinite = true;
  377. } else {
  378. infinite = false;
  379. }
  380. id->input.clear();
  381. if (!infinite) {
  382. BUGZ_LOG(warning) << "Explore loops: " << loops;
  383. } else {
  384. to_client("Infinite Mode!\n\r");
  385. to_client("[ PRESS A KEY TO STOP ]\n\r");
  386. BUGZ_LOG(warning) << "Explore loops: INFINITE";
  387. }
  388. to_server("SD");
  389. state = 3;
  390. }
  391. void ScriptExplore::next() {
  392. if (loops <= 0 && !infinite) {
  393. to_client("The exploration ends, for now.\n\r");
  394. deactivate();
  395. return;
  396. }
  397. if (!infinite) --loops;
  398. // Calculate next best sector to goto
  399. density_scan &ds = director.galaxy.dscan;
  400. density best_sector;
  401. best_sector.sector = 0;
  402. if (target != 0) {
  403. BUGZ_LOG(info) << "Using: " << target;
  404. best_sector.sector = target;
  405. target = 0;
  406. } else {
  407. for (int x = 0; x < ds.pos; ++x) {
  408. if (best_sector.sector != 0)
  409. BUGZ_LOG(info) << "Comparing: " << ds.d[x].sector << " ("
  410. << ds.d[x].density << ", " << ds.d[x].known << ") to "
  411. << best_sector.sector << " (" << best_sector.density
  412. << ", " << best_sector.known << ")";
  413. /* Is this sector prefered over others?
  414. * Warp Counts (Number of warps)
  415. * Density Check (Is this sector clear, does it contain a port)
  416. * NavHaz Check (Avoid sectors with navhaz above X%)
  417. */
  418. if (!ds.d[x].known) {
  419. BUGZ_LOG(info) << "Subject: " << ds.d[x].sector;
  420. // Compare, Warp counts
  421. if (best_sector.sector != 0) {
  422. if (prefer_ports) {
  423. if ((ds.d[x].density == 100 || ds.d[x].density == 101) ||
  424. (ds.d[x].warps >= best_sector.warps)) {
  425. if (density_clear(ds.d[x].sector, ds.d[x].density,
  426. ds.d[x].navhaz)) {
  427. if (best_sector.sector != 0) {
  428. BUGZ_LOG(info)
  429. << "Storing previous best " << best_sector.sector;
  430. unknown_warps.push(best_sector.sector);
  431. }
  432. best_sector = ds.d[x];
  433. }
  434. } else {
  435. if (density_clear(ds.d[x].sector, ds.d[x].density,
  436. ds.d[x].navhaz)) {
  437. BUGZ_LOG(info)
  438. << "Added " << ds.d[x].sector << " to unknown_warps ("
  439. << unknown_warps.size() << ")";
  440. unknown_warps.push(ds.d[x].sector);
  441. }
  442. }
  443. } else {
  444. if ((ds.d[x].warps >= best_sector.warps)) {
  445. if (density_clear(ds.d[x].sector, ds.d[x].density,
  446. ds.d[x].navhaz)) {
  447. if (best_sector.sector != 0) {
  448. BUGZ_LOG(info)
  449. << "Storing previous best " << best_sector.sector;
  450. unknown_warps.push(best_sector.sector);
  451. }
  452. best_sector = ds.d[x];
  453. }
  454. } else {
  455. if (density_clear(ds.d[x].sector, ds.d[x].density,
  456. ds.d[x].navhaz)) {
  457. BUGZ_LOG(info)
  458. << "Added " << ds.d[x].sector << " to unknown_warps ("
  459. << unknown_warps.size() << ")";
  460. unknown_warps.push(ds.d[x].sector);
  461. }
  462. }
  463. }
  464. } else {
  465. BUGZ_LOG(info) << "No-Op " << ds.d[x].sector << " is best.";
  466. best_sector = ds.d[x];
  467. }
  468. // Check density for possible port
  469. }
  470. // Check density for possible port
  471. }
  472. }
  473. BUGZ_LOG(warning) << "Unknown Warps: " << unknown_warps.size();
  474. if (best_sector.sector == 0) {
  475. if (unknown_warps.size() == 0) {
  476. to_client("No unknown warps.");
  477. deactivate();
  478. return;
  479. } else {
  480. BUGZ_LOG(warning) << "Seeking previous unexplored";
  481. best_sector.sector = unknown_warps.top();
  482. unknown_warps.pop();
  483. std::string message = "DEAD END";
  484. std::string indenter = " ";
  485. ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
  486. to_client(indenter + alert() + message + reset() + "\n\r");
  487. }
  488. }
  489. BUGZ_LOG(warning) << "Targeting sector: " << best_sector.sector;
  490. if (director.current_sector != best_sector.sector) {
  491. md->move_to = best_sector.sector;
  492. director.chain = move;
  493. director.chain->activate();
  494. } else {
  495. BUGZ_LOG(warning) << "Targeting current sector!";
  496. state = 3;
  497. to_server("SD");
  498. }
  499. }
  500. void ScriptExplore::server_prompt(const std::string &prompt) {
  501. BUGZ_LOG(info) << "Explorer State: SP " << state;
  502. // next();
  503. if (state == 1) {
  504. if (at_command_prompt(prompt)) {
  505. if (director.galaxy.meta.contains("ship")) {
  506. if (!director.galaxy.meta["ship"].contains("scanner")) {
  507. to_client(
  508. "\n\rIt appears your ship doesn't have a long range "
  509. "scanner.\n\r");
  510. deactivate();
  511. return;
  512. }
  513. }
  514. state = 2;
  515. BUGZ_LOG(info) << "state = 1, prompting for user input";
  516. director.chain = input;
  517. input->activate();
  518. return;
  519. }
  520. }
  521. if (state == 3) {
  522. if (at_command_prompt(prompt)) {
  523. state = 4;
  524. BUGZ_LOG(info) << "state = 3, calculating next sector";
  525. next();
  526. }
  527. }
  528. }
  529. ScriptPlanet::ScriptPlanet(Director &d, const char *called)
  530. : Dispatch(d, called) {
  531. BUGZ_LOG(warning) << "ScriptPlanet()";
  532. if (called == nullptr) name = "Planet";
  533. init();
  534. }
  535. ScriptPlanet::~ScriptPlanet() { BUGZ_LOG(warning) << "~ScriptPlanet()"; }
  536. void ScriptPlanet::init() {
  537. move = std::make_shared<MoveDispatch>(director, "PlanetMove");
  538. md = static_cast<MoveDispatch *>(&(*move));
  539. md->setNotify([this]() { this->move_notify(); });
  540. md->use_express = true;
  541. trader = std::make_shared<TraderDispatch>(director, "PlanetTrader");
  542. td = static_cast<TraderDispatch *>(&(*trader));
  543. td->setNotify([this]() { this->trade_notify(); });
  544. input = std::make_shared<InputDispatch>(director, "PlanetInput");
  545. id = static_cast<InputDispatch *>(&(*input));
  546. id->prompt = "Which planet would you like to upgrade => ";
  547. id->max_length = 3;
  548. id->numeric = true;
  549. id->setNotify([this]() { this->input_notify(); });
  550. state = 0;
  551. }
  552. void ScriptPlanet::activate() {
  553. us = director.chain;
  554. aborted = false;
  555. // FUTURE: handle special case here, where we activate at planet/citadel
  556. // prompt
  557. /*
  558. States:
  559. 1 = Team List Planets
  560. 2 = List Planets
  561. 3 = Input Which planet to upgrade?
  562. 4 = Move to Planet
  563. 5 = Land, get planet information
  564. 6 = CU Citadel build/upgrade
  565. 7 = Parse Citadel needs
  566. 8 = Construct/upgrade ?
  567. 9 = to terra!
  568. 10 = back to the planet!
  569. 11 = unloading...
  570. 12 = resources
  571. 13 = moving to buyer
  572. 14 = moving to planet
  573. 15 = product unloaded
  574. */
  575. state = 1;
  576. // clear out the planets list -- we're refreshing.
  577. director.galaxy.planets.clear();
  578. // get planet lists
  579. to_server("TLQ");
  580. }
  581. void ScriptPlanet::deactivate() {
  582. BUGZ_LOG(warning) << "ScriptPlanet::deactivate()";
  583. us.reset();
  584. notify();
  585. }
  586. void ScriptPlanet::clear_amounts(void) {
  587. // clear amounts
  588. for (int x = 0; x < 3; x++) {
  589. population[x] = 0;
  590. amount[x] = 0;
  591. needs[x] = 0;
  592. ship[x] = 0;
  593. to_make_one[x] = 0;
  594. }
  595. total_population = 0;
  596. support_construction = 0;
  597. days = 0;
  598. }
  599. /**
  600. * @brief Best place to put colonists
  601. *
  602. * Where is the best place to put colonists?
  603. *
  604. * That would be in production where they produce the most product.
  605. * Where the number to make one is the least.
  606. *
  607. * @return int
  608. */
  609. int ScriptPlanet::place_colonists(void) {
  610. int best = 1000;
  611. int pos = 0;
  612. for (int x = 0; x < 3; x++) {
  613. if (to_make_one[x] != 0) {
  614. if (to_make_one[x] < best) {
  615. best = to_make_one[x];
  616. pos = x;
  617. }
  618. }
  619. }
  620. return pos;
  621. }
  622. void ScriptPlanet::input_notify() {
  623. // deactivate();
  624. director.chain = us;
  625. if (id->input.empty()) {
  626. deactivate();
  627. return;
  628. }
  629. int selected = sstoi(id->input);
  630. if (selected == 0) {
  631. deactivate();
  632. return;
  633. }
  634. // find the planet in our list
  635. auto pos = director.galaxy.planets.find(selected);
  636. if (pos == director.galaxy.planets.end()) {
  637. to_client("Sorry, I can't find that planet #.\n\r");
  638. deactivate();
  639. return;
  640. }
  641. // Check planet level, if already max, don't bother!
  642. // Ok, we're off to planet # selected!
  643. planet = selected;
  644. sector = pos->second.sector;
  645. current_level = pos->second.level;
  646. if (director.current_sector == sector) {
  647. // We're already there!
  648. state = 5;
  649. // clear out numbers
  650. clear_amounts();
  651. // Landing ...
  652. to_server("L");
  653. return;
  654. } else {
  655. // Let's get to the planet
  656. state = 4;
  657. md->move_to = sector;
  658. director.chain = move;
  659. move->activate();
  660. return;
  661. }
  662. }
  663. void ScriptPlanet::move_notify() {
  664. director.chain = us;
  665. if (md->success) {
  666. // Ok, we're here
  667. if (state == 4) {
  668. state = 5;
  669. // clear out numbers
  670. clear_amounts();
  671. to_server("L");
  672. return;
  673. } else if (state == 9) {
  674. // Ok, we're at terra
  675. to_server("LT\r");
  676. return;
  677. } else if (state == 10) {
  678. // Back at the planet - Land and unload
  679. to_server("L");
  680. return;
  681. } else if (state == 13) {
  682. // Ok, we're here!
  683. td->port[0] = current_buyfrom;
  684. td->port[1] = 0;
  685. for (int x = 0; x < 3; x++) {
  686. td->port_buysell[0].foe[x] = false;
  687. td->port_buysell[1].foe[x] = false;
  688. td->trades.foe[x] = false;
  689. }
  690. td->port_buysell[0].foe[current_product] = true;
  691. td->trades.foe[current_product] = true;
  692. director.chain = trader;
  693. td->activate();
  694. return;
  695. } else if (state == 14) {
  696. // We're at the planet! Time to unload!
  697. to_server("L");
  698. return;
  699. }
  700. return;
  701. } else {
  702. std::string message = "MOVE FAILED: ";
  703. message.append(md->why_failed);
  704. message.append("\n\r");
  705. to_client(message);
  706. deactivate();
  707. return;
  708. }
  709. }
  710. void ScriptPlanet::trade_notify() {
  711. director.chain = us;
  712. if (td->success) {
  713. if (state == 13) {
  714. // Ok, we have what we came from, return to the planet.
  715. state = 14;
  716. md->move_to = sector;
  717. director.chain = move;
  718. move->activate();
  719. return;
  720. }
  721. } else {
  722. to_client("Trade failed.\n\r");
  723. deactivate();
  724. return;
  725. }
  726. }
  727. void ScriptPlanet::server_prompt(const std::string &prompt) {
  728. if (state == 1) {
  729. if (at_command_prompt(prompt)) {
  730. state = 2;
  731. to_server("CYQ");
  732. return;
  733. }
  734. } else if (state == 2) {
  735. if (at_command_prompt(prompt)) {
  736. state = 3;
  737. if (director.galaxy.planets.empty()) {
  738. to_client("Sorry, I don't see that you have any planets!\n\r");
  739. deactivate();
  740. return;
  741. }
  742. for (auto const &planet : director.galaxy.planets) {
  743. std::string text = str(
  744. boost::format("%1$3d <%2$5d> Class %3% Level %4% Name %5%\n\r") %
  745. planet.first % planet.second.sector % planet.second.c %
  746. planet.second.level % planet.second.name);
  747. to_client(text);
  748. }
  749. director.chain = input;
  750. director.chain->activate();
  751. return;
  752. }
  753. } else if (state == 5) {
  754. // Are they prompting us for which planet to land on?
  755. // SP: [Land on which planet <Q to abort> ? ]
  756. if (prompt == "Land on which planet <Q to abort> ? ") {
  757. std::string text = std::to_string(planet) + "\r";
  758. to_server(text);
  759. return;
  760. }
  761. // SP: [Planet command (?=help) [D] ]
  762. if (prompt == "Planet command (?=help) [D] ") {
  763. // Ok, we're here on the planet. (Did we capture the planet info on
  764. // landing?)
  765. BUGZ_LOG(fatal) << "Total population: " << total_population;
  766. // citadel, upgrade
  767. // what is the message when you don't have a citadel yet?
  768. state = 6;
  769. to_server("CU");
  770. return;
  771. }
  772. } else if (state == 8) {
  773. // SP: [Do you wish to construct one? ]
  774. if (startswith(prompt, "Do you wish to construct ") &&
  775. endswith(prompt, "? ")) {
  776. // Do we have what we need?
  777. bool ready = true;
  778. if (total_population < support_construction) {
  779. ready = false;
  780. state = 9;
  781. BUGZ_LOG(fatal) << "Need people ["
  782. << support_construction - total_population << "]";
  783. }
  784. for (int x = 0; x < 3; ++x) {
  785. if (needs[x] > amount[x]) {
  786. if (ready) {
  787. ready = false;
  788. state = 12;
  789. }
  790. BUGZ_LOG(fatal) << "Need " << x << " :" << needs[x] - amount[x];
  791. }
  792. }
  793. if (ready) {
  794. to_server("Y");
  795. deactivate();
  796. return;
  797. }
  798. // NNY!
  799. if (current_level > 0) {
  800. to_server("NQQ");
  801. } else
  802. to_server("NQ");
  803. // Ok, time to start moving!
  804. if (state == 9) {
  805. md->move_to = 1;
  806. director.chain = move;
  807. md->activate();
  808. return;
  809. }
  810. if (state == 12) {
  811. // Need resources
  812. current_product = -1;
  813. for (int x = 0; x < 3; ++x) {
  814. if (needs[x] > amount[x]) {
  815. current_product = x;
  816. break;
  817. }
  818. }
  819. if (current_product == -1) {
  820. // I think we have everything.
  821. BUGZ_LOG(fatal) << "I think we've got it...";
  822. to_server("CUY");
  823. deactivate();
  824. return;
  825. } else {
  826. // Ok, let's find where we need to go
  827. current_buyfrom = director.galaxy.find_nearest_selling(
  828. director.current_sector, current_product);
  829. if (current_buyfrom == 0) {
  830. to_client("We weren't able to locate a port selling.\n\r");
  831. deactivate();
  832. return;
  833. }
  834. state = 13;
  835. md->move_to = current_buyfrom;
  836. director.chain = move;
  837. md->activate();
  838. return;
  839. }
  840. }
  841. }
  842. } else if (state == 9) {
  843. if (at_command_prompt(prompt)) {
  844. // Ok! We have colonists ... back to the planet!
  845. state = 10;
  846. md->move_to = sector;
  847. director.chain = move;
  848. md->activate();
  849. return;
  850. }
  851. } else if (state == 10) {
  852. if (prompt == "Land on which planet <Q to abort> ? ") {
  853. std::string text = std::to_string(planet) + "\r";
  854. to_server(text);
  855. return;
  856. }
  857. if (prompt == "Planet command (?=help) [D] ") {
  858. // Ok, on the planet.
  859. state = 11;
  860. int place = place_colonists();
  861. std::string unload = "SNL";
  862. unload.append(std::to_string(place + 1));
  863. unload.append("\r");
  864. to_server(unload);
  865. return;
  866. }
  867. } else if (state == 11) {
  868. if (prompt == "Planet command (?=help) [D] ") {
  869. if (total_population < support_construction) {
  870. // Need More - we're not in citadel.
  871. to_server("Q");
  872. state = 9;
  873. md->move_to = 1;
  874. director.chain = move;
  875. md->activate();
  876. return;
  877. }
  878. // Ok, we're ready for the next step:
  879. // checking the resources.
  880. // Need resources
  881. current_product = -1;
  882. for (int x = 0; x < 3; ++x) {
  883. if (needs[x] > amount[x]) {
  884. current_product = x;
  885. break;
  886. }
  887. }
  888. if (current_product == -1) {
  889. // I think we have everything.
  890. BUGZ_LOG(fatal) << "I think we've got it...";
  891. to_server("CUY");
  892. deactivate();
  893. return;
  894. } else {
  895. // Ok, let's find where we need to go
  896. current_buyfrom = director.galaxy.find_nearest_selling(
  897. director.current_sector, current_product);
  898. if (current_buyfrom == 0) {
  899. to_client("We weren't able to locate a port selling.\n\r");
  900. deactivate();
  901. return;
  902. }
  903. to_server("Q");
  904. state = 13;
  905. md->move_to = current_buyfrom;
  906. director.chain = move;
  907. md->activate();
  908. return;
  909. }
  910. // ending here for now. (not in citadel)
  911. // to_server("Q");
  912. // deactivate();
  913. // return;
  914. }
  915. } else if (state == 14) {
  916. if (prompt == "Land on which planet <Q to abort> ? ") {
  917. std::string text = std::to_string(planet) + "\r";
  918. to_server(text);
  919. return;
  920. }
  921. if (prompt == "Planet command (?=help) [D] ") {
  922. state = 15;
  923. std::string command = "TNL";
  924. command.append(std::to_string(current_product + 1));
  925. command.append("\r");
  926. to_server(command);
  927. return;
  928. }
  929. } else if (state == 15) {
  930. if (prompt == "Planet command (?=help) [D] ") {
  931. // Ok, we're done unloading ... what do we need next?
  932. // Need resources
  933. current_product = -1;
  934. for (int x = 0; x < 3; ++x) {
  935. if (needs[x] > amount[x]) {
  936. current_product = x;
  937. break;
  938. }
  939. }
  940. if (current_product == -1) {
  941. // I think we have everything.
  942. BUGZ_LOG(fatal) << "I think we've got it...";
  943. to_server("CUY");
  944. deactivate();
  945. return;
  946. } else {
  947. // Ok, let's find where we need to go
  948. current_buyfrom = director.galaxy.find_nearest_selling(
  949. director.current_sector, current_product);
  950. if (current_buyfrom == 0) {
  951. to_client("We weren't able to locate a port selling.\n\r");
  952. deactivate();
  953. return;
  954. }
  955. to_server("Q");
  956. state = 13;
  957. md->move_to = current_buyfrom;
  958. director.chain = move;
  959. md->activate();
  960. return;
  961. }
  962. }
  963. }
  964. }
  965. void ScriptPlanet::server_line(const std::string &line,
  966. const std::string &raw_line) {
  967. // because I'm not sending this to the client, this is all hidden from them.
  968. if (state == 5) {
  969. // Save the planet information
  970. /*
  971. SL: [ ------- --------- --------- --------- --------- ---------
  972. ---------] SL: [Fuel Ore 4,950 2 2,475 28,135 0
  973. 200,000] SL: [Organics 0 5 0 100 0
  974. 200,000] SL: [Equipment 128 20 6 120 0
  975. 100,000] SL: [Fighters N/A 24 206 2,395 200
  976. 1,000,000]
  977. */
  978. std::string work = line;
  979. replace(work, "Fuel Ore", "Fuel");
  980. replace(work, ",", "");
  981. auto parts = split(work);
  982. if (parts.size() == 7) {
  983. int pos = -1;
  984. if (parts[0] == "Fuel") {
  985. pos = 0;
  986. } else if (parts[0] == "Organics") {
  987. pos = 1;
  988. } else if (parts[0] == "Equipment") {
  989. pos = 2;
  990. }
  991. // To save:
  992. if (pos >= 0) {
  993. population[pos] = sstoi(parts[1]);
  994. to_make_one[pos] = sstoi(parts[2]);
  995. total_population += population[pos];
  996. amount[pos] = sstoi(parts[4]);
  997. // What do we have on-board the ship?
  998. ship[pos] = sstoi(parts[5]);
  999. BUGZ_LOG(fatal) << pos << " : pop " << population[pos] << " 2M1 "
  1000. << to_make_one[pos] << " amount " << amount[pos]
  1001. << " ship: " << ship[pos];
  1002. }
  1003. }
  1004. } else if (state == 6) {
  1005. // [Be patient, your Citadel is not yet finished.]
  1006. if ((line == "Be patient, your Citadel is not yet finished.") ||
  1007. (startswith(line, "You may not upgrade while"))) {
  1008. // We're already upgrading!
  1009. std::string work = raw_line;
  1010. work += "\n\r";
  1011. to_client(work);
  1012. if (current_level > 0) {
  1013. to_server("QQ"); // exit citadel, exit planet
  1014. } else {
  1015. to_server("Q"); // exit planet
  1016. };
  1017. deactivate();
  1018. return;
  1019. }
  1020. // Citadel upgrade information (possibly)
  1021. /*
  1022. SL: [Citadel construction on this type of planet requires the following:]
  1023. SL: [ 400,000 Colonists to support the construction,]
  1024. SL: [ 150 units of Fuel Ore,]
  1025. SL: [ 100 units of Organics,]
  1026. SL: [ 150 units of Equipment and]
  1027. SL: [ 2 days to construct.]
  1028. [Construction of a Combat Control Computer on this type of planet requires]
  1029. */
  1030. if ((line == "Citadel construction on this type of planet requires the "
  1031. "following:") ||
  1032. (endswith(line, " on this type of planet requires"))) {
  1033. state = 7;
  1034. }
  1035. } else if (state == 7) {
  1036. if (line.empty()) {
  1037. state = 8;
  1038. } else {
  1039. // Display the upgrade information to the client
  1040. std::string work = raw_line;
  1041. work += "\n\r";
  1042. to_client(work);
  1043. work = line;
  1044. replace(work, ",", "");
  1045. trim(work);
  1046. auto pos = work.find(" Colonists to support");
  1047. if (pos != std::string::npos) {
  1048. support_construction = sstoi(work) / 1000;
  1049. return;
  1050. }
  1051. pos = work.find(" units of Fuel");
  1052. if (pos != std::string::npos) {
  1053. needs[0] = sstoi(work);
  1054. return;
  1055. }
  1056. pos = work.find(" units of Organics");
  1057. if (pos != std::string::npos) {
  1058. needs[1] = sstoi(work);
  1059. return;
  1060. }
  1061. pos = work.find(" units of Equipment");
  1062. if (pos != std::string::npos) {
  1063. needs[2] = sstoi(work);
  1064. return;
  1065. }
  1066. pos = work.find(" days to construct");
  1067. if (pos != std::string::npos) {
  1068. days = sstoi(work);
  1069. return;
  1070. }
  1071. }
  1072. } else if (state == 11) {
  1073. // SL: [How many groups of Colonists do you want to leave ([125] on board)
  1074. // ? ]
  1075. if (startswith(line, "How many groups of Colonists do you want to leave")) {
  1076. std::string work = line.substr(line.find('[') + 1);
  1077. int amount = sstoi(work);
  1078. total_population += amount;
  1079. BUGZ_LOG(fatal) << "Population now: " << total_population;
  1080. }
  1081. } else if (state == 15) {
  1082. // SL: [How many holds of Organics do you want to leave ([250] on board) ? ]
  1083. if (startswith(line, "How many holds of ") &&
  1084. endswith(line, "] on board) ? ")) {
  1085. std::string work = line.substr(line.find('[') + 1);
  1086. int amount_moved = sstoi(work);
  1087. amount[current_product] += amount_moved;
  1088. BUGZ_LOG(fatal) << "Planet " << current_product << " +" << amount_moved
  1089. << " = " << amount[current_product];
  1090. }
  1091. }
  1092. }
  1093. void ScriptPlanet::client_input(const std::string &input) { deactivate(); }