scripts.cpp 33 KB

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