director.cpp 34 KB

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