director.cpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  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"},
  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 'T': // display trading report
  300. {
  301. auto pptv = galaxy.find_best_trades();
  302. std::string output;
  303. galaxy.sort_port_pair_type(pptv);
  304. int max_display = 20;
  305. if (galaxy.config["display_lines"])
  306. max_display = galaxy.config["display_lines"].as<int>();
  307. else
  308. galaxy.config["display_lines"] = max_display;
  309. if ((max_display <= 0) || (max_display > 255)) {
  310. max_display = 255;
  311. galaxy.config["display_lines"] = 255;
  312. }
  313. const int per_line = 5;
  314. int count = 0;
  315. int line = 0;
  316. for (auto const &ppt : pptv) {
  317. output = str(boost::format("%1$5d:%2$-5d = %3$d") % ppt.s1 %
  318. ppt.s2 % ppt.type);
  319. to_client(output);
  320. ++count;
  321. if (count == per_line) {
  322. count = 0;
  323. to_client("\n\r");
  324. ++line;
  325. }
  326. if (line == max_display) break;
  327. }
  328. if (count != 0) to_client("\n\r");
  329. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  330. if ((line < 5) && (max_display > 5)) {
  331. // suggestion:
  332. to_client(
  333. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  334. }
  335. } break;
  336. case 'E': // Export Data/Save
  337. to_client("Saving...");
  338. galaxy.save();
  339. to_client("\rSaved....\n\r");
  340. break;
  341. case 'I': // Information
  342. information();
  343. break;
  344. case 'P': // Port CIM
  345. // Since we're adding/updating, we don't lose our
  346. // type 0 ports. Type 9 stays at 9.
  347. chain = cim;
  348. to_server("^RQ");
  349. to_client("Port CIM Report\n\r");
  350. chain->activate();
  351. return;
  352. break;
  353. case 'W': // Warp CIM
  354. chain = cim;
  355. to_server("^IQ");
  356. to_client("Warp CIM Report\n\r");
  357. chain->activate();
  358. return;
  359. break;
  360. // case 'T': // Trading Report
  361. // break;
  362. case 'S': // Scripts
  363. {
  364. init_scripts_menu();
  365. chain = scripts_menu;
  366. chain->activate();
  367. return;
  368. } break;
  369. case 'X': // Exit
  370. proxy_deactivate();
  371. return;
  372. }
  373. /*
  374. std::string text = str(
  375. boost::format("Back from Menu [%1%] was selected.\n\r") %
  376. md->input);
  377. to_client(text);
  378. */
  379. md->activate();
  380. }
  381. }
  382. }
  383. MenuDispatch *Director::init_scripts_menu(void) {
  384. MenuDispatch *md;
  385. if (scripts_menu) {
  386. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  387. return md;
  388. } else {
  389. scripts_menu = std::make_shared<MenuDispatch>(*this);
  390. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  391. md->menu_box_color = "\x1b[0;32;40m";
  392. md->menu_text_color = "\x1b[1;32;40m";
  393. md->menu_title = "Scripts Menu";
  394. md->menu_options_color = "\x1b[1;32;40m";
  395. md->lazy = false;
  396. md->menu_prompt = " SCRIPT : ";
  397. md->menu = {{"!", "Terror"}, {"T", "Trade"}, {"U", "Upgrade Planet Pants"}};
  398. md->setNotify([this]() { this->scripts_done(); });
  399. return md;
  400. }
  401. }
  402. void Director::scripts_done(void) {
  403. // Was script selected? If so, run it!
  404. // otherwise, back to the menu we go...
  405. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  406. if (md) {
  407. if (md->input.empty()) {
  408. to_client("Scripts aborted.\n\r");
  409. scripts_menu.reset();
  410. proxy_deactivate();
  411. return;
  412. } else {
  413. switch (md->input[0]) {
  414. case 'T': // Trade
  415. script = std::make_shared<ScriptTrader>(*this);
  416. ScriptTrader *ts = static_cast<ScriptTrader *>(&((*script)));
  417. chain = script;
  418. // Set parameters
  419. auto found = galaxy.find_trades(current_sector, false);
  420. if (found.empty()) {
  421. to_client(
  422. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  423. "or no ports around.\n\r");
  424. proxy_deactivate();
  425. return;
  426. }
  427. ts->port[0] = found[0].s1;
  428. ts->port[1] = found[0].s2;
  429. ts->type = found[0].type;
  430. chain->activate();
  431. return;
  432. break;
  433. }
  434. }
  435. }
  436. proxy_activate();
  437. // And to end scripts, we do .. what exactly?
  438. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  439. // here?? probably do want to destroy scripts here. ;)
  440. // scripts_menu.reset();
  441. // proxy_deactivate();
  442. }
  443. /**
  444. * @brief Setup Config Input
  445. *
  446. * @return DispatchInput*
  447. */
  448. InputDispatch *Director::init_config_input(void) {
  449. InputDispatch *id;
  450. if (config_input) {
  451. // Yes, it has been setup before.
  452. id = dynamic_cast<InputDispatch *>(&(*config_input));
  453. id->prompt = "Config => ";
  454. id->max_length = 3;
  455. config_item.clear();
  456. return id;
  457. } else {
  458. // set it up
  459. config_input = std::make_shared<InputDispatch>(*this);
  460. id = static_cast<InputDispatch *>(&(*config_input));
  461. id->prompt = "Config => ";
  462. id->max_length = 3;
  463. id->setNotify([this]() { this->config_have_input(); });
  464. config_item.clear();
  465. return id;
  466. }
  467. }
  468. void Director::config_edit(void) {
  469. // display current config
  470. std::string menu_box_color = "\x1b[1;33;44m";
  471. std::string menu_text_color = "\x1b[1;37;44m";
  472. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  473. menu_text_color, 20, 1, true);
  474. for (auto line : abox) {
  475. to_client(line);
  476. }
  477. // to_client("Configuration:\n\r");
  478. int item = 1;
  479. for (auto const &cfg : galaxy.config) {
  480. std::string output = str(boost::format("%1$2d %2$20s: %3$s\n\r") % item %
  481. cfg.first % cfg.second);
  482. to_client(output);
  483. ++item;
  484. }
  485. to_client("Enter number to edit, blank to exit.\n\r");
  486. // setup call to config_input:
  487. InputDispatch *id = init_config_input();
  488. chain = config_input;
  489. id->activate();
  490. // to return to the menu:
  491. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  492. // md->activate();
  493. }
  494. void Director::config_have_input(void) {
  495. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  496. if (config_item.empty()) {
  497. // This is a config menu selection
  498. if (id->input.empty()) {
  499. // We're done here. Return to menu.
  500. chain = main_menu;
  501. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  502. md->activate();
  503. // destroy the input? yes.
  504. config_input.reset();
  505. return;
  506. } else {
  507. int item;
  508. try {
  509. item = stoi(id->input);
  510. } catch (const std::invalid_argument &e) {
  511. BUGZ_LOG(fatal) << e.what();
  512. item = 0;
  513. } catch (const std::out_of_range &e) {
  514. BUGZ_LOG(fatal) << e.what();
  515. item = 0;
  516. }
  517. if ((item < 1) || (item > (int)galaxy.config.size())) {
  518. // selection out of range - redisplay config menu
  519. config_edit();
  520. return;
  521. } else {
  522. int pos = 1;
  523. const YAML::Node &config = galaxy.config;
  524. for (auto const &c : config) {
  525. if (pos == item) {
  526. // got it!
  527. config_item = c.first.as<std::string>();
  528. std::string output =
  529. str(boost::format("%1% : %2%\n\r") % config_item %
  530. galaxy.meta["help"][config_item]);
  531. to_client(output);
  532. id->max_length = 30;
  533. id->prompt = "Change to => ";
  534. id->activate();
  535. return;
  536. };
  537. ++pos;
  538. }
  539. to_client("What? I didn't find that item?\n\r");
  540. config_edit();
  541. return;
  542. }
  543. }
  544. } else {
  545. // This is a config item edit
  546. if (id->input.empty()) {
  547. to_client("No change.\n\r");
  548. config_edit();
  549. return;
  550. } else {
  551. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  552. galaxy.config[config_item] = id->input;
  553. config_edit();
  554. return;
  555. }
  556. }
  557. }
  558. void Director::have_input(void) {
  559. ++count;
  560. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  561. if (id) {
  562. std::string output =
  563. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  564. to_client("\x1b[0m");
  565. to_client(output);
  566. } else {
  567. proxy_deactivate();
  568. return;
  569. }
  570. if (count > 3) {
  571. proxy_deactivate();
  572. } else {
  573. chain->activate();
  574. }
  575. }
  576. void Director::cim_done(void) {
  577. BUGZ_LOG(info) << "CIM done";
  578. chain = main_menu;
  579. main_menu->activate();
  580. }
  581. void Director::information(void) {
  582. std::string output;
  583. to_client("I currently know the following:\n\r");
  584. output = str(
  585. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  586. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  587. galaxy.meta.size());
  588. to_client(output);
  589. }
  590. void Director::proxy_deactivate(void) {
  591. active = false;
  592. // reset everything back to good state
  593. talk_direct = true;
  594. show_client = true;
  595. chain.reset();
  596. to_client("\n\r");
  597. to_client(current_raw_prompt);
  598. }
  599. /*
  600. Server Line Parsing Routines
  601. */
  602. void Director::SL_cimline(const std::string &line) {
  603. if (line == ": ENDINTERROG") {
  604. SL_parser = nullptr;
  605. return;
  606. }
  607. if (line == ": ") {
  608. // do I need to do anything special here for this?
  609. // Maybe -- We would save special ports that don't show up
  610. // (StarDock/Special) before. We don't know (at this point) if this is
  611. // warps or ports.
  612. return;
  613. }
  614. if (line.empty()) {
  615. SL_parser = nullptr;
  616. return;
  617. }
  618. // parse cimline
  619. // size_t pos = line.find('%');
  620. // std::string work = line;
  621. // if (pos == line.npos) {
  622. if (in(line, "%")) {
  623. // portcim
  624. struct port p = parse_portcim(line);
  625. if (p.sector == 0)
  626. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  627. else
  628. BUGZ_LOG(trace) << "portcim: " << p;
  629. galaxy.add_port(p);
  630. } else {
  631. // warpcim
  632. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  633. auto warps = split(line);
  634. sector_warps sw;
  635. for (auto const &w : warps) {
  636. if (sw.sector == 0) {
  637. sw.sector = stoi(w);
  638. } else {
  639. sw.add(stoi(w));
  640. }
  641. }
  642. BUGZ_LOG(trace) << "warpcim: " << sw;
  643. galaxy.add_warp(sw);
  644. }
  645. }
  646. void Director::SL_thiefline(const std::string &line) {
  647. size_t pos = line.find("Suddenly you're Busted!");
  648. bool busted = pos != line.npos;
  649. if (busted) {
  650. BUGZ_LOG(fatal) << "set bust";
  651. SL_parser = nullptr;
  652. } else {
  653. pos = line.find("(You realize the guards saw you last time!)");
  654. if (pos != line.npos) SL_parser = nullptr;
  655. }
  656. // Are those the two ways to exit from this state?
  657. }
  658. void Director::SL_sectorline(const std::string &line) {
  659. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  660. if (line.empty()) {
  661. SL_parser = nullptr;
  662. } else {
  663. /*
  664. sectorline: [Sector : 926 in The Federation.]
  665. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  666. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  667. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  668. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  669. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  670. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  671. What can we get from Traders : line? Can we get if they are hostile
  672. to us? We need to respond to "is powering up weapons" ... We can
  673. react faster then a person can!
  674. "phil is powering up weapons systems!"
  675. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  676. */
  677. if (in(line, "Sector :")) {
  678. current_sector = stoi(line.substr(10));
  679. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  680. }
  681. if (in(line, "Ports :")) {
  682. std::string port_class;
  683. size_t pos = line.find(", Class ");
  684. if (pos != std::string::npos) {
  685. pos += 8;
  686. int class_ = stoi(line.substr(pos));
  687. BUGZ_LOG(fatal) << "PORT: " << class_;
  688. galaxy.add_port(current_sector, class_);
  689. }
  690. }
  691. if (in(line, "Warps to Sector(s) :")) {
  692. std::string temp = line.substr(20);
  693. replace(temp, " - ", " ");
  694. // unexplored sectors ()
  695. // Should I track these?
  696. replace(temp, "(", "");
  697. replace(temp, ")", "");
  698. sector_warps sw;
  699. auto warps = split(temp);
  700. sw.sector = current_sector;
  701. for (auto const &w : warps) {
  702. sw.add(stoi(w));
  703. }
  704. BUGZ_LOG(fatal) << "WARPS: " << sw;
  705. galaxy.add_warp(sw);
  706. }
  707. }
  708. }
  709. void Director::SL_portline(const std::string &line) {
  710. if (line.empty()) {
  711. SL_parser = nullptr;
  712. return;
  713. }
  714. /*
  715. SL: [ Items Status Trading % of max OnBoard]
  716. SL: [ ----- ------ ------- -------- -------]
  717. SL: [Fuel Ore Buying 3000 100% 0]
  718. SL: [Organics Buying 3000 100% 0]
  719. SL: [Equipment Buying 3000 100% 0]
  720. SL: []
  721. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  722. SL: [A Cargo holds : 650 credits / next hold 0]
  723. SL: [B Fighters : 233 credits per fighter 75]
  724. SL: [C Shield Points : 116 credits per point 100]
  725. SL: []
  726. */
  727. BUGZ_LOG(info) << "portline : " << line;
  728. if (in(line, "%")) {
  729. // size_t pos = line.find('%');
  730. // if (pos != line.npos) {
  731. // Ok, this is a valid portline
  732. std::string work = line;
  733. replace(work, "Fuel Ore", "Fuel");
  734. auto parts = split(work);
  735. BUGZ_LOG(fatal) << "portline split:";
  736. for (auto const p : parts) {
  737. BUGZ_LOG(fatal) << p;
  738. }
  739. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  740. }
  741. }
  742. void Director::SL_warpline(const std::string &line) {
  743. if (line.empty()) {
  744. SL_parser = nullptr;
  745. return;
  746. }
  747. // process warp line
  748. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  749. }
  750. void Director::SL_infoline(const std::string &line) {
  751. static int state;
  752. if (line == "<Info>") {
  753. state = 0;
  754. galaxy.meta["info"] = YAML::Node();
  755. }
  756. if (line.empty()) {
  757. ++state;
  758. if (state == 2) {
  759. SL_parser = nullptr;
  760. // process the parsed information in meta["info"]
  761. if (galaxy.meta["info"]["Total Holds"]) {
  762. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  763. replace(work, "Fuel Ore", "Fuel");
  764. auto parts = split(work, " - ");
  765. int total_holds = stoi(parts[0]);
  766. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  767. auto contents = split(parts[1]);
  768. for (auto const &hold : contents) {
  769. auto hold_amount = split(hold, "=");
  770. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  771. }
  772. }
  773. if (galaxy.meta["info"]["Turns to Warp"]) {
  774. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  775. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  776. }
  777. if (galaxy.meta["info"]["Turns left"]) {
  778. int turns = galaxy.meta["info"]["Turns left"].as<int>();
  779. BUGZ_LOG(fatal) << "Turns left: " << turns;
  780. }
  781. if (galaxy.meta["info"]["LongRange Scan"]) {
  782. std::string scanner_text =
  783. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  784. char scanner = scanner_text[0];
  785. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  786. }
  787. if (galaxy.meta["info"]["Current Sector"]) {
  788. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  789. BUGZ_LOG(fatal) << "Sector: " << sector;
  790. // it should already be sector ...
  791. current_sector = sector;
  792. }
  793. if (galaxy.meta["info"]["Credits"]) {
  794. std::string credit_text =
  795. galaxy.meta["info"]["Credits"].as<std::string>();
  796. replace(credit_text, ",", "");
  797. int credits = stoi(credit_text);
  798. BUGZ_LOG(fatal) << "Credits: " << credits;
  799. }
  800. }
  801. return;
  802. }
  803. // info to parse:
  804. size_t pos = line.find(" : ");
  805. if (pos != line.npos) {
  806. std::string key = line.substr(0, pos);
  807. std::string value = line.substr(pos + 3);
  808. trim(key);
  809. trim(value);
  810. galaxy.meta["info"][key] = value;
  811. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  812. }
  813. }