director.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. #include "director.h"
  2. #include <boost/format.hpp>
  3. #include "boxes.h"
  4. #include "galaxy.h"
  5. #include "logging.h"
  6. #include "scripts.h"
  7. #include "utils.h"
  8. Director::Director() {
  9. BUGZ_LOG(warning) << "Director::Director()";
  10. // active = false;
  11. game = 0; // not in a game
  12. galaxy.reset();
  13. // do everything proxy_deactivate does ...
  14. // proxy_deactivate();
  15. active = false;
  16. // reset everything back to good state
  17. talk_direct = true;
  18. show_client = true;
  19. count = 0;
  20. /*
  21. Setup StringFunc for SL_parser:
  22. Construct these once, rather then every single time we need them.
  23. */
  24. SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
  25. SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
  26. SF_portline = [this](const std::string &s) { this->SL_portline(s); };
  27. SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
  28. SF_infoline = [this](const std::string &s) { this->SL_infoline(s); };
  29. build_menu();
  30. }
  31. Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
  32. void Director::client_input(const std::string &input) {
  33. // If we're already active, don't try to activate.
  34. if (chain) {
  35. chain->client_input(input);
  36. return;
  37. }
  38. if (active) {
  39. if (input == "Q" || input == "q") proxy_deactivate();
  40. return;
  41. } else if (input == "\x1b" || input == "~") {
  42. std::string &prompt = current_prompt;
  43. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  44. if (prompt == "Selection (? for menu): ") {
  45. to_client(
  46. "\n\rThere's not much we can do here. Activate in-game at a "
  47. "Command prompt.\n\r");
  48. to_client(current_raw_prompt);
  49. return;
  50. }
  51. // easter-eggs:
  52. if (prompt == "Enter your choice: ") {
  53. to_client(
  54. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  55. "that's how I was coded.\n\r");
  56. to_client(current_raw_prompt);
  57. return;
  58. }
  59. // easter-egg
  60. if (prompt == "[Pause]") {
  61. to_client(" \x1b[1;36mPAWS\x1b[0m\n\r");
  62. to_client(current_raw_prompt);
  63. return;
  64. }
  65. if (prompt == "Planet command (?=help) [D] ") {
  66. // future: If activated at planet menu, activate the planet upgrade
  67. // script!
  68. to_client("\n\r\x1b[0mFUTURE: Activate the planet upgrade script.\n\r");
  69. to_client(current_raw_prompt);
  70. return;
  71. }
  72. //
  73. // The command prompt that we're looking for:
  74. //
  75. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  76. // the time, and the sector number vary...
  77. /*
  78. if (startswith(prompt, "Command [")) {
  79. // if (prompt.substr(0, 9) == "Command [") {
  80. // int len = prompt.length();
  81. if (endswith(prompt, "] (?=Help)? : ")) {
  82. // if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  83. proxy_activate();
  84. return;
  85. }
  86. }
  87. }
  88. */
  89. if (at_command_prompt(prompt)) {
  90. proxy_activate();
  91. return;
  92. }
  93. }
  94. // Ok...
  95. if (talk_direct) to_server(input);
  96. /*
  97. if (emit_client_input)
  98. emit_client_input(line);
  99. */
  100. }
  101. void Director::server_line(const std::string &line,
  102. const std::string &raw_line) {
  103. // check for if we entered game/left game
  104. if (line.find("TradeWars Game Server ") != std::string::npos) {
  105. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  106. /*
  107. There's a delay here when I save the game data.
  108. I've moved it futher down. Hide it at a prompt, so it isn't so
  109. noticeable.
  110. */
  111. // reset "active game" -- we're at the TWGS main menu
  112. }
  113. if (line.find("Selection (? for menu): ") != std::string::npos) {
  114. char ch = line[line.length() - 1];
  115. if (ch >= 'A' && ch < 'Q') {
  116. if ((game) && (game != ch)) {
  117. galaxy.save();
  118. }
  119. game = ch;
  120. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  121. // TODO: Load game data
  122. galaxy.game = game;
  123. galaxy.username = username;
  124. galaxy.load();
  125. // YAML loaded, set sensible default config values (if missing).
  126. if (!galaxy.config["display_lines"]) {
  127. galaxy.config["display_lines"] = 20;
  128. }
  129. galaxy.meta["help"]["display_lines"] = "Number of lines to display";
  130. if (!galaxy.config["burnt_percent"]) {
  131. galaxy.config["burnt_percent"] = 40;
  132. }
  133. galaxy.meta["help"]["burnt_percent"] = "Ignore ports below this %";
  134. }
  135. // not needed (handled by above Game Server check).
  136. if (ch == 'Q') {
  137. if (game) {
  138. // TODO: Save galaxy data
  139. galaxy.save();
  140. }
  141. game = 0;
  142. galaxy.reset();
  143. }
  144. }
  145. if (game) {
  146. // in-game parsing here.
  147. /*
  148. ____ _ _
  149. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  150. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  151. ___) | __/ | \ V / __/ | | |___| | | | | __/
  152. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  153. ____ _
  154. | _ \ __ _ _ __ ___(_)_ __ __ _
  155. | |_) / _` | '__/ __| | '_ \ / _` |
  156. | __/ (_| | | \__ \ | | | | (_| |
  157. |_| \__,_|_| |___/_|_| |_|\__, |
  158. |___/
  159. This is where all of the server lines are gleaned for all the
  160. information that we can get out of them.
  161. // When activating the computer
  162. SP: [Command [TL=00:00:00]:[926] (?=Help)? : ]
  163. Sector: 926
  164. CI: [c]
  165. SL: [Command [TL=00:00:00]:[926] (?=Help)? : C]
  166. SL: [<Computer>]
  167. SL: []
  168. SL: [<Computer activated>]
  169. SL: []
  170. SP: [Computer command [TL=00:00:00]:[926] (?=Help)? ]
  171. // deactivating the computer
  172. SL: [Computer command [TL=00:00:00]:[926] (?=Help)? Q]
  173. SL: []
  174. SL: [<Computer deactivated>]
  175. SL: []
  176. */
  177. if (startswith(line, " Items Status Trading % of max OnBoard"))
  178. SL_parser = SF_portline;
  179. if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
  180. if (line == ": ") SL_parser = SF_cimline;
  181. if (line == "<Info>") SL_parser = SF_infoline;
  182. }
  183. if (SL_parser) {
  184. SL_parser(line);
  185. }
  186. /*
  187. if (emit_server_line) {
  188. emit_server_line(line);
  189. }
  190. */
  191. if (chain) {
  192. chain->server_line(line, raw_line);
  193. }
  194. }
  195. void Director::server_prompt(const std::string &prompt,
  196. const std::string &raw_prompt) {
  197. current_prompt = prompt;
  198. current_raw_prompt = raw_prompt;
  199. if (game) {
  200. if (prompt == "Selection (? for menu): ") {
  201. galaxy.save();
  202. game = 0;
  203. galaxy.reset();
  204. }
  205. // in-game parsing here.
  206. if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
  207. std::string sector_text;
  208. size_t before, after;
  209. before = prompt.find("]:[") + 3;
  210. after = prompt.find("] (?=Help)");
  211. sector_text = prompt.substr(before, after - before);
  212. current_sector = stoi(sector_text);
  213. BUGZ_LOG(fatal) << "Sector: " << sector_text;
  214. }
  215. }
  216. /*
  217. if (emit_server_prompt)
  218. emit_server_prompt(prompt);
  219. */
  220. if (chain) chain->server_prompt(prompt);
  221. }
  222. void Director::build_menu(void) {
  223. main_menu = std::make_shared<MenuDispatch>(*this);
  224. MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
  225. md->menu_box_color = "\x1b[1;33;44m";
  226. md->menu_text_color = "\x1b[1;37;44m";
  227. md->menu_title = "Proxy Menu";
  228. md->menu_options_color = "\x1b[1;36;40m";
  229. md->menu_prompt =
  230. "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  231. "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  232. md->lazy = true;
  233. md->menu = {{"C", "Configure"},
  234. {"D", "Display Report"},
  235. {"E", "Export Data/Save"},
  236. {"I", "Information"},
  237. {"P", "Port CIM"},
  238. {"W", "Warp CIM"},
  239. {"T", "Trading Report (same as D)"},
  240. {"S", "Scripts"},
  241. {"X", "eXit"}};
  242. md->setNotify([this]() { this->menu_choice(); });
  243. cim = std::make_shared<CIMDispatch>(*this);
  244. cim->setNotify([this]() { this->cim_done(); });
  245. }
  246. void Director::proxy_activate(void) {
  247. active = true; // yes, set keep-alive timer.
  248. to_server(" "); // start keep-alive timer.
  249. // set other values we need
  250. talk_direct = false;
  251. show_client = false;
  252. /*
  253. Wait a minute .. this might be confusing.
  254. Shouldn't I send them the current prompt?
  255. Just in case we abort in the middle of something?!?
  256. */
  257. old_prompt = current_prompt;
  258. old_raw_prompt = current_raw_prompt;
  259. to_client("\x1b[0m\n\r");
  260. /*
  261. ╔══════════════════════════════╗
  262. ║ TradeWars Proxy Active ║
  263. ╚══════════════════════════════╝
  264. -=>
  265. */
  266. Boxes box(30, 1, true);
  267. box.boxcolor = "\x1b[1;33;44m";
  268. box.textcolor = "\x1b[1;33;44m";
  269. to_client(box.top());
  270. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  271. to_client(box.row(output));
  272. to_client(box.bottom());
  273. chain = main_menu;
  274. main_menu->activate();
  275. /*
  276. // Using InputDispatch -- and see have_input
  277. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  278. chain = readline;
  279. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  280. id->prompt = "\x1b[0m\x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  281. id->max_length = 15;
  282. id->setNotify([this]() { this->have_input(); });
  283. readline->activate();
  284. */
  285. }
  286. void Director::menu_choice(void) {
  287. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  288. if (md) {
  289. if (md->input.empty()) {
  290. to_client("Menu aborted.\n\r");
  291. proxy_deactivate();
  292. return;
  293. } else {
  294. switch (md->input[0]) {
  295. case 'C': // configure
  296. config_edit();
  297. return;
  298. break;
  299. case 'D':
  300. case 'T': // display trading report
  301. {
  302. auto pptv = galaxy.find_best_trades();
  303. std::string output;
  304. galaxy.sort_port_pair_type(pptv);
  305. int max_display = 20;
  306. if (galaxy.config["display_lines"])
  307. max_display = galaxy.config["display_lines"].as<int>();
  308. else
  309. galaxy.config["display_lines"] = max_display;
  310. if ((max_display <= 0) || (max_display > 255)) {
  311. max_display = 255;
  312. galaxy.config["display_lines"] = 255;
  313. }
  314. const int per_line = 5;
  315. int count = 0;
  316. int line = 0;
  317. for (auto const &ppt : pptv) {
  318. output = str(boost::format("%1$5d:%2$-5d = %3$d") % ppt.s1 %
  319. ppt.s2 % ppt.type);
  320. to_client(output);
  321. ++count;
  322. if (count == per_line) {
  323. count = 0;
  324. to_client("\n\r");
  325. ++line;
  326. }
  327. if (line == max_display) break;
  328. }
  329. if (count != 0) to_client("\n\r");
  330. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  331. if ((line < 5) && (max_display > 5)) {
  332. // suggestion:
  333. to_client(
  334. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  335. }
  336. } break;
  337. case 'E': // Export Data/Save
  338. to_client("Saving...");
  339. galaxy.save();
  340. to_client("\rSaved....\n\r");
  341. break;
  342. case 'I': // Information
  343. information();
  344. break;
  345. case 'P': // Port CIM
  346. // Since we're adding/updating, we don't lose our
  347. // type 0 ports. Type 9 stays at 9.
  348. chain = cim;
  349. to_server("^RQ");
  350. to_client("Port CIM Report\n\r");
  351. chain->activate();
  352. return;
  353. break;
  354. case 'W': // Warp CIM
  355. chain = cim;
  356. to_server("^IQ");
  357. to_client("Warp CIM Report\n\r");
  358. chain->activate();
  359. return;
  360. break;
  361. // case 'T': // Trading Report
  362. // break;
  363. case 'S': // Scripts
  364. {
  365. init_scripts_menu();
  366. chain = scripts_menu;
  367. chain->activate();
  368. return;
  369. } break;
  370. case 'X': // Exit
  371. proxy_deactivate();
  372. return;
  373. }
  374. /*
  375. std::string text = str(
  376. boost::format("Back from Menu [%1%] was selected.\n\r") %
  377. md->input);
  378. to_client(text);
  379. */
  380. md->activate();
  381. }
  382. }
  383. }
  384. MenuDispatch *Director::init_scripts_menu(void) {
  385. MenuDispatch *md;
  386. if (scripts_menu) {
  387. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  388. return md;
  389. } else {
  390. scripts_menu = std::make_shared<MenuDispatch>(*this);
  391. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  392. md->menu_box_color = "\x1b[0;32;40m";
  393. md->menu_text_color = "\x1b[1;32;40m";
  394. md->menu_title = "Scripts Menu";
  395. md->menu_options_color = "\x1b[1;32;40m";
  396. md->lazy = false;
  397. md->menu_prompt = " SCRIPT : ";
  398. md->menu = {{"!", "Terror"}, {"T", "Trade"}, {"U", "Upgrade Planet Pants"}};
  399. md->setNotify([this]() { this->scripts_done(); });
  400. return md;
  401. }
  402. }
  403. void Director::scripts_done(void) {
  404. // Was script selected? If so, run it!
  405. // otherwise, back to the menu we go...
  406. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  407. if (md) {
  408. if (md->input.empty()) {
  409. to_client("Scripts aborted.\n\r");
  410. scripts_menu.reset();
  411. proxy_deactivate();
  412. return;
  413. } else {
  414. switch (md->input[0]) {
  415. case 'T': // Trade
  416. script = std::make_shared<ScriptTrader>(*this);
  417. ScriptTrader *ts = static_cast<ScriptTrader *>(&((*script)));
  418. ts->setNotify([this]() { this->proxy_deactivate(); });
  419. // Set parameters
  420. auto found = galaxy.find_trades(current_sector, false);
  421. if (found.empty()) {
  422. to_client(
  423. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  424. "or no ports around.\n\r");
  425. proxy_deactivate();
  426. return;
  427. }
  428. // sort first?
  429. galaxy.sort_port_pair_type(found);
  430. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  431. BUGZ_LOG(fatal) << found[0].s1 << "," << found[0].s2 << " : "
  432. << found[0].type;
  433. ts->port[0] = found[0].s1;
  434. ts->port[1] = found[0].s2;
  435. ts->type = found[0].type;
  436. chain = script;
  437. chain->activate();
  438. return;
  439. break;
  440. }
  441. }
  442. }
  443. proxy_activate();
  444. // And to end scripts, we do .. what exactly?
  445. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  446. // here?? probably do want to destroy scripts here. ;)
  447. // scripts_menu.reset();
  448. // proxy_deactivate();
  449. }
  450. /**
  451. * @brief Setup Config Input
  452. *
  453. * @return DispatchInput*
  454. */
  455. InputDispatch *Director::init_config_input(void) {
  456. InputDispatch *id;
  457. if (config_input) {
  458. // Yes, it has been setup before.
  459. id = dynamic_cast<InputDispatch *>(&(*config_input));
  460. id->prompt = "Config => ";
  461. id->max_length = 3;
  462. config_item.clear();
  463. return id;
  464. } else {
  465. // set it up
  466. config_input = std::make_shared<InputDispatch>(*this);
  467. id = static_cast<InputDispatch *>(&(*config_input));
  468. id->prompt = "Config => ";
  469. id->max_length = 3;
  470. id->setNotify([this]() { this->config_have_input(); });
  471. config_item.clear();
  472. return id;
  473. }
  474. }
  475. void Director::config_edit(void) {
  476. // display current config
  477. std::string menu_box_color = "\x1b[1;33;44m";
  478. std::string menu_text_color = "\x1b[1;37;44m";
  479. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  480. menu_text_color, 20, 1, true);
  481. for (auto line : abox) {
  482. to_client(line);
  483. }
  484. // to_client("Configuration:\n\r");
  485. int item = 1;
  486. for (auto const &cfg : galaxy.config) {
  487. std::string output = str(boost::format("%1$2d %2$20s: %3$s\n\r") % item %
  488. cfg.first % cfg.second);
  489. to_client(output);
  490. ++item;
  491. }
  492. to_client("Enter number to edit, blank to exit.\n\r");
  493. // setup call to config_input:
  494. InputDispatch *id = init_config_input();
  495. chain = config_input;
  496. id->activate();
  497. // to return to the menu:
  498. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  499. // md->activate();
  500. }
  501. void Director::config_have_input(void) {
  502. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  503. if (config_item.empty()) {
  504. // This is a config menu selection
  505. if (id->input.empty()) {
  506. // We're done here. Return to menu.
  507. chain = main_menu;
  508. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  509. md->activate();
  510. // destroy the input? yes.
  511. config_input.reset();
  512. return;
  513. } else {
  514. int item;
  515. try {
  516. item = stoi(id->input);
  517. } catch (const std::invalid_argument &e) {
  518. BUGZ_LOG(fatal) << e.what();
  519. item = 0;
  520. } catch (const std::out_of_range &e) {
  521. BUGZ_LOG(fatal) << e.what();
  522. item = 0;
  523. }
  524. if ((item < 1) || (item > (int)galaxy.config.size())) {
  525. // selection out of range - redisplay config menu
  526. config_edit();
  527. return;
  528. } else {
  529. int pos = 1;
  530. const YAML::Node &config = galaxy.config;
  531. for (auto const &c : config) {
  532. if (pos == item) {
  533. // got it!
  534. config_item = c.first.as<std::string>();
  535. std::string output =
  536. str(boost::format("%1% : %2%\n\r") % config_item %
  537. galaxy.meta["help"][config_item]);
  538. to_client(output);
  539. id->max_length = 30;
  540. id->prompt = "Change to => ";
  541. id->activate();
  542. return;
  543. };
  544. ++pos;
  545. }
  546. to_client("What? I didn't find that item?\n\r");
  547. config_edit();
  548. return;
  549. }
  550. }
  551. } else {
  552. // This is a config item edit
  553. if (id->input.empty()) {
  554. to_client("No change.\n\r");
  555. config_edit();
  556. return;
  557. } else {
  558. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  559. galaxy.config[config_item] = id->input;
  560. config_edit();
  561. return;
  562. }
  563. }
  564. }
  565. void Director::have_input(void) {
  566. ++count;
  567. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  568. if (id) {
  569. std::string output =
  570. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  571. to_client("\x1b[0m");
  572. to_client(output);
  573. } else {
  574. proxy_deactivate();
  575. return;
  576. }
  577. if (count > 3) {
  578. proxy_deactivate();
  579. } else {
  580. chain->activate();
  581. }
  582. }
  583. void Director::cim_done(void) {
  584. BUGZ_LOG(info) << "CIM done";
  585. chain = main_menu;
  586. main_menu->activate();
  587. }
  588. void Director::information(void) {
  589. std::string output;
  590. to_client("I currently know the following:\n\r");
  591. output = str(
  592. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  593. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  594. galaxy.meta.size());
  595. to_client(output);
  596. }
  597. void Director::proxy_deactivate(void) {
  598. active = false;
  599. // reset everything back to good state
  600. talk_direct = true;
  601. show_client = true;
  602. chain.reset();
  603. to_client("\n\r");
  604. to_client(current_raw_prompt);
  605. }
  606. /*
  607. Server Line Parsing Routines
  608. */
  609. void Director::SL_cimline(const std::string &line) {
  610. if (line == ": ENDINTERROG") {
  611. SL_parser = nullptr;
  612. return;
  613. }
  614. if (line == ": ") {
  615. // do I need to do anything special here for this?
  616. // Maybe -- We would save special ports that don't show up
  617. // (StarDock/Special) before. We don't know (at this point) if this is
  618. // warps or ports.
  619. return;
  620. }
  621. if (line.empty()) {
  622. SL_parser = nullptr;
  623. return;
  624. }
  625. // parse cimline
  626. // size_t pos = line.find('%');
  627. // std::string work = line;
  628. // if (pos == line.npos) {
  629. if (in(line, "%")) {
  630. // portcim
  631. struct port p = parse_portcim(line);
  632. if (p.sector == 0)
  633. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  634. else
  635. BUGZ_LOG(trace) << "portcim: " << p;
  636. galaxy.add_port(p);
  637. } else {
  638. // warpcim
  639. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  640. auto warps = split(line);
  641. sector_warps sw;
  642. for (auto const &w : warps) {
  643. if (sw.sector == 0) {
  644. sw.sector = stoi(w);
  645. } else {
  646. sw.add(stoi(w));
  647. }
  648. }
  649. BUGZ_LOG(trace) << "warpcim: " << sw;
  650. galaxy.add_warp(sw);
  651. }
  652. }
  653. void Director::SL_thiefline(const std::string &line) {
  654. size_t pos = line.find("Suddenly you're Busted!");
  655. bool busted = pos != line.npos;
  656. if (busted) {
  657. BUGZ_LOG(fatal) << "set bust";
  658. SL_parser = nullptr;
  659. } else {
  660. pos = line.find("(You realize the guards saw you last time!)");
  661. if (pos != line.npos) SL_parser = nullptr;
  662. }
  663. // Are those the two ways to exit from this state?
  664. }
  665. void Director::SL_sectorline(const std::string &line) {
  666. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  667. if (line.empty()) {
  668. SL_parser = nullptr;
  669. } else {
  670. /*
  671. sectorline: [Sector : 926 in The Federation.]
  672. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  673. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  674. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  675. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  676. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  677. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  678. What can we get from Traders : line? Can we get if they are hostile
  679. to us? We need to respond to "is powering up weapons" ... We can
  680. react faster then a person can!
  681. "phil is powering up weapons systems!"
  682. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  683. */
  684. if (in(line, "Sector :")) {
  685. current_sector = stoi(line.substr(10));
  686. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  687. }
  688. if (in(line, "Ports :")) {
  689. std::string port_class;
  690. size_t pos = line.find(", Class ");
  691. if (pos != std::string::npos) {
  692. pos += 8;
  693. int class_ = stoi(line.substr(pos));
  694. BUGZ_LOG(fatal) << "PORT: " << class_;
  695. galaxy.add_port(current_sector, class_);
  696. }
  697. }
  698. if (in(line, "Warps to Sector(s) :")) {
  699. std::string temp = line.substr(20);
  700. replace(temp, " - ", " ");
  701. // unexplored sectors ()
  702. // Should I track these?
  703. replace(temp, "(", "");
  704. replace(temp, ")", "");
  705. sector_warps sw;
  706. auto warps = split(temp);
  707. sw.sector = current_sector;
  708. for (auto const &w : warps) {
  709. sw.add(stoi(w));
  710. }
  711. BUGZ_LOG(fatal) << "WARPS: " << sw;
  712. galaxy.add_warp(sw);
  713. }
  714. }
  715. }
  716. void Director::SL_portline(const std::string &line) {
  717. if (line.empty()) {
  718. SL_parser = nullptr;
  719. return;
  720. }
  721. /*
  722. SL: [ Items Status Trading % of max OnBoard]
  723. SL: [ ----- ------ ------- -------- -------]
  724. SL: [Fuel Ore Buying 3000 100% 0]
  725. SL: [Organics Buying 3000 100% 0]
  726. SL: [Equipment Buying 3000 100% 0]
  727. SL: []
  728. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  729. SL: [A Cargo holds : 650 credits / next hold 0]
  730. SL: [B Fighters : 233 credits per fighter 75]
  731. SL: [C Shield Points : 116 credits per point 100]
  732. SL: []
  733. */
  734. // BUGZ_LOG(info) << "portline : " << line;
  735. if (in(line, "%")) {
  736. // size_t pos = line.find('%');
  737. // if (pos != line.npos) {
  738. // Ok, this is a valid portline
  739. std::string work = line;
  740. replace(work, "Fuel Ore", "Fuel");
  741. auto parts = split(work);
  742. /*
  743. BUGZ_LOG(fatal) << "portline split:";
  744. for (auto const p : parts) {
  745. BUGZ_LOG(fatal) << p;
  746. }
  747. */
  748. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  749. }
  750. }
  751. void Director::SL_warpline(const std::string &line) {
  752. if (line.empty()) {
  753. SL_parser = nullptr;
  754. return;
  755. }
  756. // process warp line
  757. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  758. }
  759. void Director::SL_infoline(const std::string &line) {
  760. static int state;
  761. if (line == "<Info>") {
  762. state = 0;
  763. galaxy.meta["info"] = YAML::Node();
  764. }
  765. if (line.empty()) {
  766. ++state;
  767. if (state == 2) {
  768. SL_parser = nullptr;
  769. // clear out the existing ship data
  770. galaxy.meta["ship"] = YAML::Node();
  771. // process the parsed information in meta["info"]
  772. if (galaxy.meta["info"]["Total Holds"]) {
  773. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  774. replace(work, "Fuel Ore", "Fuel");
  775. auto parts = split(work, " - ");
  776. int total_holds = stoi(parts[0]);
  777. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  778. auto contents = split(parts[1]);
  779. for (auto const &hold : contents) {
  780. auto hold_amount = split(hold, "=");
  781. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  782. std::string key = hold_amount[0];
  783. str_tolower(key);
  784. // equipment = e
  785. // organics = o
  786. // fuel = f
  787. // colonists = c
  788. // empty = empty
  789. if (key != "empty") {
  790. key = key[0];
  791. }
  792. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  793. }
  794. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  795. }
  796. if (galaxy.meta["info"]["Turns to Warp"]) {
  797. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  798. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  799. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  800. }
  801. if (galaxy.meta["info"]["LongRange Scan"]) {
  802. std::string scanner_text =
  803. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  804. char scanner = scanner_text[0];
  805. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  806. galaxy.meta["ship"]["scanner"] = scanner;
  807. }
  808. // turns isn't ship specific
  809. if (galaxy.meta["info"]["Turns left"]) {
  810. // OR this could be "Unlimited" !!!
  811. std::string text = galaxy.meta["info"]["Turns left"].as<std::string>();
  812. if (text == "Unlimited") {
  813. galaxy.meta["turns"] = -1;
  814. } else {
  815. int turns =
  816. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  817. BUGZ_LOG(fatal) << "Turns left: " << turns;
  818. galaxy.meta["turns"] = turns;
  819. }
  820. }
  821. if (galaxy.meta["info"]["Current Sector"]) {
  822. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  823. BUGZ_LOG(fatal) << "Sector: " << sector;
  824. // it should already be sector ...
  825. current_sector = sector;
  826. }
  827. if (galaxy.meta["info"]["Credits"]) {
  828. std::string credit_text =
  829. galaxy.meta["info"]["Credits"].as<std::string>();
  830. replace(credit_text, ",", "");
  831. int credits = stoi(credit_text);
  832. galaxy.meta["credits"] = credits;
  833. BUGZ_LOG(fatal) << "Credits: " << credits;
  834. }
  835. }
  836. return;
  837. }
  838. // info to parse:
  839. size_t pos = line.find(" : ");
  840. if (pos != line.npos) {
  841. std::string key = line.substr(0, pos);
  842. std::string value = line.substr(pos + 3);
  843. trim(key);
  844. trim(value);
  845. galaxy.meta["info"][key] = value;
  846. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  847. }
  848. }