director.cpp 28 KB

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