director.cpp 24 KB

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