director.cpp 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  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. /*
  768. 0 1 2 3 4 5 6 7 8 9 10 11 12
  769. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  770. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  771. */
  772. std::string work = line;
  773. replace(work, ":", "");
  774. bool known = !in(work, "(");
  775. replace(work, "(", "");
  776. replace(work, ")", "");
  777. replace(work, "%", "");
  778. // Cleaned up
  779. /*
  780. 0 1 2 3 4 5 6 7 8 9
  781. "Sector 55 ==> 0 Warps 4 NavHaz 0 Anom No"
  782. "Sector 223 ==> 0 Warps 3 NavHaz 0 Anom No"
  783. */
  784. std::vector<std::string> dense = split(work);
  785. // Parse our data
  786. int sector = std::stoi(dense.at(1));
  787. int density = std::stoi(dense.at(3));
  788. int warps = std::stoi(dense.at(5));
  789. int navhaz = std::stoi(dense.at(7));
  790. bool anom = in(dense.at(9), "Yes");
  791. // Commit data
  792. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  793. << " density=" << density << " warps=" << warps
  794. << " navhaz=" << navhaz << " anom=" << anom
  795. << " known=" << known << "}";
  796. galaxy.meta["density"][sector]["density"] = density;
  797. galaxy.meta["density"][sector]["warps"] = warps;
  798. galaxy.meta["density"][sector]["navhaz"] = navhaz;
  799. galaxy.meta["density"][sector]["anom"] = anom;
  800. galaxy.meta["density"][sector]["known"] = known;
  801. // Add a check to see if density is greater than 500
  802. // Add datetime stamp
  803. }
  804. void Director::SL_portline(const std::string &line) {
  805. /*
  806. We take blank lines because we start at <Port>.
  807. Otherwise, we trigger on computer port requests.
  808. if (line.empty()) {
  809. SL_parser = nullptr;
  810. return;
  811. }
  812. */
  813. /*
  814. SL: [ Items Status Trading % of max OnBoard]
  815. SL: [ ----- ------ ------- -------- -------]
  816. SL: [Fuel Ore Buying 3000 100% 0]
  817. SL: [Organics Buying 3000 100% 0]
  818. SL: [Equipment Buying 3000 100% 0]
  819. SL: []
  820. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  821. SL: [A Cargo holds : 650 credits / next hold 0]
  822. SL: [B Fighters : 233 credits per fighter 75]
  823. SL: [C Shield Points : 116 credits per point 100]
  824. SL: []
  825. */
  826. // BUGZ_LOG(info) << "portline : " << line;
  827. if (in(line, "%")) {
  828. // size_t pos = line.find('%');
  829. // if (pos != line.npos) {
  830. // Ok, this is a valid portline
  831. std::string work = line;
  832. replace(work, "Fuel Ore", "Fuel");
  833. auto parts = split(work);
  834. if (parts[0] == "Items")
  835. return;
  836. char c = tolower(parts[0][0]);
  837. int pos;
  838. char foe[4] = "foe";
  839. for (pos = 0; pos < 3; ++pos) {
  840. if (c == foe[pos])
  841. break;
  842. }
  843. int amount = stoi(parts[2]);
  844. int percent = stoi(parts[3]);
  845. // update port
  846. auto port = galaxy.ports.find(current_sector);
  847. if (port != galaxy.ports.end()) {
  848. port->second.amount[pos] = amount;
  849. port->second.percent[pos] = percent;
  850. }
  851. /*
  852. BUGZ_LOG(fatal) << "portline split:";
  853. for (auto const p : parts) {
  854. BUGZ_LOG(fatal) << p;
  855. }
  856. */
  857. // Here's the end:
  858. if (parts[0] == "Equipment")
  859. SL_parser = nullptr;
  860. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  861. }
  862. }
  863. void Director::SL_warpline(const std::string &line) {
  864. if (line.empty()) {
  865. SL_parser = nullptr;
  866. return;
  867. }
  868. // process warp line
  869. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  870. }
  871. void Director::SL_infoline(const std::string &line) {
  872. static int state;
  873. if (line == "<Info>") {
  874. state = 0;
  875. galaxy.meta["info"] = YAML::Node();
  876. }
  877. if (line.empty()) {
  878. ++state;
  879. if (state == 2) {
  880. SL_parser = nullptr;
  881. // clear out the existing ship data
  882. galaxy.meta["ship"] = YAML::Node();
  883. // process the parsed information in meta["info"]
  884. if (galaxy.meta["info"]["Total Holds"]) {
  885. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  886. replace(work, "Fuel Ore", "Fuel");
  887. auto parts = split(work, " - ");
  888. int total_holds = stoi(parts[0]);
  889. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  890. auto contents = split(parts[1]);
  891. for (auto const &hold : contents) {
  892. auto hold_amount = split(hold, "=");
  893. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  894. std::string key = hold_amount[0];
  895. str_tolower(key);
  896. // equipment = e
  897. // organics = o
  898. // fuel = f
  899. // colonists = c
  900. // empty = empty
  901. if (key != "empty") {
  902. key = key[0];
  903. }
  904. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  905. }
  906. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  907. }
  908. if (galaxy.meta["info"]["Turns to Warp"]) {
  909. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  910. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  911. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  912. }
  913. if (galaxy.meta["info"]["LongRange Scan"]) {
  914. std::string scanner_text =
  915. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  916. char scanner = scanner_text[0];
  917. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  918. galaxy.meta["ship"]["scanner"] = scanner;
  919. }
  920. // turns isn't ship specific
  921. if (galaxy.meta["info"]["Turns left"]) {
  922. // OR this could be "Unlimited" !!!
  923. std::string text = galaxy.meta["info"]["Turns left"].as<std::string>();
  924. if (text == "Unlimited") {
  925. galaxy.meta["turns"] = -1;
  926. } else {
  927. int turns =
  928. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  929. BUGZ_LOG(fatal) << "Turns left: " << turns;
  930. galaxy.meta["turns"] = turns;
  931. }
  932. }
  933. if (galaxy.meta["info"]["Current Sector"]) {
  934. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  935. BUGZ_LOG(fatal) << "Sector: " << sector;
  936. // it should already be sector ...
  937. current_sector = sector;
  938. }
  939. if (galaxy.meta["info"]["Credits"]) {
  940. std::string credit_text =
  941. galaxy.meta["info"]["Credits"].as<std::string>();
  942. replace(credit_text, ",", "");
  943. int credits = stoi(credit_text);
  944. galaxy.meta["credits"] = credits;
  945. BUGZ_LOG(fatal) << "Credits: " << credits;
  946. }
  947. }
  948. return;
  949. }
  950. // info to parse:
  951. size_t pos = line.find(" : ");
  952. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  953. std::string key = line.substr(0, pos);
  954. // Ferrengi ships don't have date built
  955. std::string value = line.substr(pos + 3);
  956. trim(key);
  957. trim(value);
  958. galaxy.meta["info"][key] = value;
  959. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  960. }
  961. }