director.cpp 30 KB

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