director.cpp 32 KB

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