director.cpp 21 KB

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