director.cpp 28 KB

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