director.cpp 30 KB

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