director.cpp 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143
  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")) 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) chain->server_prompt(prompt);
  240. }
  241. void Director::build_menu(void) {
  242. main_menu = std::make_shared<MenuDispatch>(*this);
  243. MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
  244. md->menu_box_color = "\x1b[1;33;44m";
  245. md->menu_text_color = "\x1b[1;37;44m";
  246. md->menu_title = "Proxy Menu";
  247. md->menu_options_color = "\x1b[1;36;40m";
  248. md->menu_prompt =
  249. "\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 %
  338. ppt.s2 % 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) break;
  347. }
  348. if (count != 0) to_client("\n\r");
  349. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  350. if ((line < 5) && (max_display > 5)) {
  351. // suggestion:
  352. to_client(
  353. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  354. }
  355. } break;
  356. case 'E': // Export Data/Save
  357. to_client("Saving...");
  358. galaxy.save();
  359. to_client("\rSaved....\n\r");
  360. break;
  361. case 'I': // Information
  362. information();
  363. break;
  364. case 'P': // Port CIM
  365. // Since we're adding/updating, we don't lose our
  366. // type 0 ports. Type 9 stays at 9.
  367. chain = cim;
  368. to_server("^RQ");
  369. {
  370. std::string text = str(boost::format("Port CIM Report (%1%)\n\r") %
  371. galaxy.ports.size());
  372. // to_client("Port CIM Report\n\r");
  373. to_client(text);
  374. }
  375. chain->activate();
  376. return;
  377. break;
  378. case 'W': // Warp CIM
  379. chain = cim;
  380. to_server("^IQ");
  381. {
  382. std::string text = str(boost::format("Warp CIM Report (%1%)\n\r") %
  383. galaxy.warps.size());
  384. // to_client("Warp CIM Report\n\r");
  385. to_client(text);
  386. }
  387. chain->activate();
  388. return;
  389. break;
  390. // case 'T': // Trading Report
  391. // break;
  392. case 'S': // Scripts
  393. {
  394. init_scripts_menu();
  395. chain = scripts_menu;
  396. chain->activate();
  397. return;
  398. } break;
  399. case 'X': // Exit
  400. proxy_deactivate();
  401. return;
  402. }
  403. /*
  404. std::string text = str(
  405. boost::format("Back from Menu [%1%] was selected.\n\r") %
  406. md->input);
  407. to_client(text);
  408. */
  409. md->activate();
  410. }
  411. }
  412. }
  413. MenuDispatch *Director::init_scripts_menu(void) {
  414. MenuDispatch *md;
  415. if (scripts_menu) {
  416. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  417. return md;
  418. } else {
  419. scripts_menu = std::make_shared<MenuDispatch>(*this);
  420. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  421. md->menu_box_color = "\x1b[0;32;40m";
  422. md->menu_text_color = "\x1b[1;32;40m";
  423. md->menu_title = "Scripts Menu";
  424. md->menu_options_color = "\x1b[1;32;40m";
  425. md->lazy = false;
  426. md->menu_prompt = " SCRIPT : ";
  427. md->menu = {{"!", "Terror"},
  428. {"T", "Trade"},
  429. {"S", "Safe Move"},
  430. {"U", "Upgrade Planet Pants"}};
  431. md->setNotify([this]() { this->scripts_done(); });
  432. return md;
  433. }
  434. }
  435. void Director::scripts_done(void) {
  436. // Was script selected? If so, run it!
  437. // otherwise, back to the menu we go...
  438. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  439. if (md) {
  440. if (md->input.empty()) {
  441. to_client("Scripts aborted.\n\r");
  442. scripts_menu.reset();
  443. proxy_deactivate();
  444. return;
  445. } else {
  446. switch (md->input[0]) {
  447. case 'T': // Trade
  448. {
  449. script = std::make_shared<ScriptTrader>(*this);
  450. ScriptTrader *ts = static_cast<ScriptTrader *>(&((*script)));
  451. ts->setNotify([this]() { this->proxy_deactivate(); });
  452. // Set parameters
  453. auto found = galaxy.find_trades(current_sector, false);
  454. if (found.empty()) {
  455. to_client(
  456. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  457. "or no ports around.\n\r");
  458. proxy_deactivate();
  459. return;
  460. }
  461. // sort first?
  462. galaxy.sort_port_pair_type(found);
  463. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  464. BUGZ_LOG(fatal) << found[0].s1 << "," << found[0].s2 << " : "
  465. << found[0].type;
  466. ts->port[0] = found[0].s1;
  467. ts->port[1] = found[0].s2;
  468. ts->type = found[0].type;
  469. chain = script;
  470. chain->activate();
  471. return;
  472. } break;
  473. case 'S': {
  474. script = std::make_shared<MoveDispatch>(*this);
  475. MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
  476. md->setNotify([this]() { this->proxy_deactivate(); });
  477. md->move_to = 1;
  478. chain = script;
  479. chain->activate();
  480. return;
  481. } break;
  482. case '!': {
  483. auto best = galaxy.find_closest(current_sector);
  484. if (best.type != 0) {
  485. std::string text =
  486. str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
  487. best.type % best.s1 % best.s2);
  488. to_client(text);
  489. } else {
  490. to_client("I don't see any best trades.\n\r");
  491. }
  492. } break;
  493. }
  494. }
  495. }
  496. proxy_activate();
  497. // And to end scripts, we do .. what exactly?
  498. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  499. // here?? probably do want to destroy scripts here. ;)
  500. // scripts_menu.reset();
  501. // proxy_deactivate();
  502. }
  503. /**
  504. * @brief Setup Config Input
  505. *
  506. * @return DispatchInput*
  507. */
  508. InputDispatch *Director::init_config_input(void) {
  509. InputDispatch *id;
  510. if (config_input) {
  511. // Yes, it has been setup before.
  512. id = dynamic_cast<InputDispatch *>(&(*config_input));
  513. id->prompt = "Config => ";
  514. id->max_length = 3;
  515. config_item.clear();
  516. return id;
  517. } else {
  518. // set it up
  519. config_input = std::make_shared<InputDispatch>(*this);
  520. id = static_cast<InputDispatch *>(&(*config_input));
  521. id->prompt = "Config => ";
  522. id->max_length = 3;
  523. id->setNotify([this]() { this->config_have_input(); });
  524. config_item.clear();
  525. return id;
  526. }
  527. }
  528. void Director::config_edit(void) {
  529. // display current config
  530. std::string menu_box_color = "\x1b[1;33;44m";
  531. std::string menu_text_color = "\x1b[1;37;44m";
  532. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  533. menu_text_color, 20, 1, true);
  534. for (auto line : abox) {
  535. to_client(line);
  536. }
  537. // to_client("Configuration:\n\r");
  538. int item = 1;
  539. for (auto const &cfg : galaxy.config) {
  540. std::string output = str(boost::format("%1$2d %2$20s: %3$s\n\r") % item %
  541. cfg.first % cfg.second);
  542. to_client(output);
  543. ++item;
  544. }
  545. to_client("Enter number to edit, blank to exit.\n\r");
  546. // setup call to config_input:
  547. InputDispatch *id = init_config_input();
  548. chain = config_input;
  549. id->activate();
  550. // to return to the menu:
  551. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  552. // md->activate();
  553. }
  554. void Director::config_have_input(void) {
  555. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  556. if (config_item.empty()) {
  557. // This is a config menu selection
  558. if (id->input.empty()) {
  559. // We're done here. Return to menu.
  560. chain = main_menu;
  561. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  562. md->activate();
  563. // destroy the input? yes.
  564. config_input.reset();
  565. return;
  566. } else {
  567. int item;
  568. try {
  569. item = stoi(id->input);
  570. } catch (const std::invalid_argument &e) {
  571. BUGZ_LOG(fatal) << e.what();
  572. item = 0;
  573. } catch (const std::out_of_range &e) {
  574. BUGZ_LOG(fatal) << e.what();
  575. item = 0;
  576. }
  577. if ((item < 1) || (item > (int)galaxy.config.size())) {
  578. // selection out of range - redisplay config menu
  579. config_edit();
  580. return;
  581. } else {
  582. int pos = 1;
  583. const YAML::Node &config = galaxy.config;
  584. for (auto const &c : config) {
  585. if (pos == item) {
  586. // got it!
  587. config_item = c.first.as<std::string>();
  588. std::string output =
  589. str(boost::format("%1% : %2%\n\r") % config_item %
  590. galaxy.meta["help"][config_item]);
  591. to_client(output);
  592. id->max_length = 30;
  593. id->prompt = "Change to => ";
  594. id->activate();
  595. return;
  596. };
  597. ++pos;
  598. }
  599. to_client("What? I didn't find that item?\n\r");
  600. config_edit();
  601. return;
  602. }
  603. }
  604. } else {
  605. // This is a config item edit
  606. if (id->input.empty()) {
  607. to_client("No change.\n\r");
  608. config_edit();
  609. return;
  610. } else {
  611. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  612. galaxy.config[config_item] = id->input;
  613. config_edit();
  614. return;
  615. }
  616. }
  617. }
  618. void Director::have_input(void) {
  619. ++count;
  620. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  621. if (id) {
  622. std::string output =
  623. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  624. to_client("\x1b[0m");
  625. to_client(output);
  626. } else {
  627. proxy_deactivate();
  628. return;
  629. }
  630. if (count > 3) {
  631. proxy_deactivate();
  632. } else {
  633. chain->activate();
  634. }
  635. }
  636. void Director::cim_done(void) {
  637. BUGZ_LOG(info) << "CIM done";
  638. chain = main_menu;
  639. main_menu->activate();
  640. }
  641. void Director::information(void) {
  642. std::string output;
  643. to_client("I currently know the following:\n\r");
  644. output = str(
  645. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  646. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  647. galaxy.meta.size());
  648. to_client(output);
  649. }
  650. void Director::proxy_deactivate(void) {
  651. active = false;
  652. // reset everything back to good state
  653. talk_direct = true;
  654. show_client = true;
  655. chain.reset();
  656. to_client("\n\r");
  657. to_client(current_raw_prompt);
  658. }
  659. /*
  660. Server Line Parsing Routines
  661. */
  662. void Director::SL_cimline(const std::string &line) {
  663. if (line == ": ENDINTERROG") {
  664. SL_parser = nullptr;
  665. return;
  666. }
  667. if (line == ": ") {
  668. // do I need to do anything special here for this?
  669. // Maybe -- We would save special ports that don't show up
  670. // (StarDock/Special) before. We don't know (at this point) if this is
  671. // warps or ports.
  672. return;
  673. }
  674. if (line.empty()) {
  675. SL_parser = nullptr;
  676. return;
  677. }
  678. // parse cimline
  679. // size_t pos = line.find('%');
  680. // std::string work = line;
  681. // if (pos == line.npos) {
  682. if (in(line, "%")) {
  683. // portcim
  684. struct port p = parse_portcim(line);
  685. if (p.sector == 0)
  686. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  687. else
  688. BUGZ_LOG(trace) << "portcim: " << p;
  689. galaxy.add_port(p);
  690. } else {
  691. // warpcim
  692. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  693. auto warps = split(line);
  694. sector_warps sw;
  695. for (auto const &w : warps) {
  696. if (sw.sector == 0) {
  697. sw.sector = stoi(w);
  698. } else {
  699. sw.add(stoi(w));
  700. }
  701. }
  702. BUGZ_LOG(trace) << "warpcim: " << sw;
  703. galaxy.add_warp(sw);
  704. }
  705. }
  706. void Director::SL_thiefline(const std::string &line) {
  707. size_t pos = line.find("Suddenly you're Busted!");
  708. bool busted = pos != line.npos;
  709. if (busted) {
  710. BUGZ_LOG(fatal) << "set bust";
  711. SL_parser = nullptr;
  712. } else {
  713. pos = line.find("(You realize the guards saw you last time!)");
  714. if (pos != line.npos) SL_parser = nullptr;
  715. }
  716. // Are those the two ways to exit from this state?
  717. }
  718. void Director::SL_sectorline(const std::string &line) {
  719. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  720. if (line.empty()) {
  721. SL_parser = nullptr;
  722. } else {
  723. /*
  724. sectorline: [Sector : 926 in The Federation.]
  725. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  726. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  727. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  728. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  729. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  730. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  731. What can we get from Traders : line? Can we get if they are hostile
  732. to us? We need to respond to "is powering up weapons" ... We can
  733. react faster then a person can!
  734. "phil is powering up weapons systems!"
  735. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  736. */
  737. if (in(line, "Sector :")) {
  738. current_sector = stoi(line.substr(10));
  739. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  740. }
  741. if (in(line, "Ports :")) {
  742. std::string port_class;
  743. size_t pos = line.find(", Class ");
  744. if (pos != std::string::npos) {
  745. pos += 8;
  746. int class_ = stoi(line.substr(pos));
  747. BUGZ_LOG(fatal) << "PORT: " << class_;
  748. galaxy.add_port(current_sector, class_);
  749. }
  750. }
  751. if (in(line, "Warps to Sector(s) :")) {
  752. std::string temp = line.substr(20);
  753. replace(temp, " - ", " ");
  754. // unexplored sectors ()
  755. // Should I track these?
  756. replace(temp, "(", "");
  757. replace(temp, ")", "");
  758. sector_warps sw;
  759. auto warps = split(temp);
  760. sw.sector = current_sector;
  761. // what if there is only one warp?
  762. for (auto const &w : warps) {
  763. sw.add(stoi(w));
  764. }
  765. BUGZ_LOG(fatal) << "WARPS: " << sw;
  766. galaxy.add_warp(sw);
  767. }
  768. }
  769. }
  770. void Director::SL_densityline(const std::string &line) {
  771. BUGZ_LOG(fatal) << "densityline: [" << line << "]";
  772. if (line.empty()) {
  773. SL_parser = nullptr;
  774. return;
  775. }
  776. /*
  777. // Ensure this really is a density scan and not something else
  778. if (!in(line, "Sector") || !in(line, "Warps") || !in(line, "NavHaz") ||
  779. !in(line, "Anom")) {
  780. BUGZ_LOG(fatal) << "densityline: Invalid line.";
  781. SL_parser = nullptr;
  782. return;
  783. }
  784. if (not galaxy.meta["density"]) {
  785. galaxy.meta["density"] = YAML::Node();
  786. }
  787. */
  788. /*
  789. 0 1 2 3 4 5 6 7 8 9 10 11 12
  790. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  791. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  792. // Cleaned up line
  793. 0 1 2 3 4 5 6 7 8 9
  794. "Sector 55 ==> 0 Warps 4 NavHaz 0 Anom No"
  795. "Sector 223 ==> 0 Warps 3 NavHaz 0 Anom No"
  796. */
  797. if (in(line, "==>")) {
  798. std::string work = line;
  799. replace(work, ":", "");
  800. bool known = !in(work, "(");
  801. replace(work, "(", "");
  802. replace(work, ")", "");
  803. replace(work, "%", "");
  804. auto dense = split(work);
  805. // Parse our data
  806. int sector = std::stoi(dense.at(1));
  807. int density = std::stoi(dense.at(3));
  808. int warps = std::stoi(dense.at(5));
  809. int navhaz = std::stoi(dense.at(7));
  810. bool anom = in(dense.at(9), "Yes");
  811. // Commit data
  812. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  813. << " density=" << density << " warps=" << warps
  814. << " navhaz=" << navhaz << " anom=" << anom
  815. << " known=" << known << "}";
  816. /*
  817. if (galaxy.meta["density"][sector]) {
  818. galaxy.meta["density"][sector] = YAML::Node();
  819. }
  820. */
  821. galaxy.meta["density"][sector]["density"] = density;
  822. galaxy.meta["density"][sector]["warps"] = warps;
  823. galaxy.meta["density"][sector]["navhaz"] = navhaz;
  824. galaxy.meta["density"][sector]["anom"] = anom;
  825. galaxy.meta["density"][sector]["known"] = known;
  826. // Add a check to see if density is greater than 500
  827. // Add datetime stamp
  828. }
  829. }
  830. void Director::SL_portline(const std::string &line) {
  831. /*
  832. We take blank lines because we start at <Port>.
  833. Otherwise, we trigger on computer port requests.
  834. if (line.empty()) {
  835. SL_parser = nullptr;
  836. return;
  837. }
  838. */
  839. /*
  840. SL: [ Items Status Trading % of max OnBoard]
  841. SL: [ ----- ------ ------- -------- -------]
  842. SL: [Fuel Ore Buying 3000 100% 0]
  843. SL: [Organics Buying 3000 100% 0]
  844. SL: [Equipment Buying 3000 100% 0]
  845. SL: []
  846. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  847. SL: [A Cargo holds : 650 credits / next hold 0]
  848. SL: [B Fighters : 233 credits per fighter 75]
  849. SL: [C Shield Points : 116 credits per point 100]
  850. SL: []
  851. */
  852. // BUGZ_LOG(info) << "portline : " << line;
  853. if (in(line, "%")) {
  854. // size_t pos = line.find('%');
  855. // if (pos != line.npos) {
  856. // Ok, this is a valid portline
  857. std::string work = line;
  858. replace(work, "Fuel Ore", "Fuel");
  859. auto parts = split(work);
  860. if (parts[0] == "Items") return;
  861. char c = tolower(parts[0][0]);
  862. int pos;
  863. char foe[4] = "foe";
  864. for (pos = 0; pos < 3; ++pos) {
  865. if (c == foe[pos]) break;
  866. }
  867. int amount = stoi(parts[2]);
  868. int percent = stoi(parts[3]);
  869. // update port
  870. auto port = galaxy.ports.find(current_sector);
  871. if (port != galaxy.ports.end()) {
  872. port->second.amount[pos] = amount;
  873. port->second.percent[pos] = percent;
  874. }
  875. /*
  876. BUGZ_LOG(fatal) << "portline split:";
  877. for (auto const p : parts) {
  878. BUGZ_LOG(fatal) << p;
  879. }
  880. */
  881. // Here's the end:
  882. if (parts[0] == "Equipment") SL_parser = nullptr;
  883. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  884. }
  885. }
  886. void Director::SL_warpline(const std::string &line) {
  887. if (line.empty()) {
  888. SL_parser = nullptr;
  889. return;
  890. }
  891. // process warp line
  892. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  893. }
  894. void Director::SL_infoline(const std::string &line) {
  895. static int state;
  896. if (line == "<Info>") {
  897. state = 0;
  898. galaxy.meta["info"] = YAML::Node();
  899. }
  900. if (line.empty()) {
  901. ++state;
  902. if (state == 2) {
  903. SL_parser = nullptr;
  904. // clear out the existing ship data
  905. galaxy.meta["ship"] = YAML::Node();
  906. // process the parsed information in meta["info"]
  907. if (galaxy.meta["info"]["Total Holds"]) {
  908. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  909. replace(work, "Fuel Ore", "Fuel");
  910. auto parts = split(work, " - ");
  911. int total_holds = stoi(parts[0]);
  912. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  913. auto contents = split(parts[1]);
  914. for (auto const &hold : contents) {
  915. auto hold_amount = split(hold, "=");
  916. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  917. std::string key = hold_amount[0];
  918. str_tolower(key);
  919. // equipment = e
  920. // organics = o
  921. // fuel = f
  922. // colonists = c
  923. // empty = empty
  924. if (key != "empty") {
  925. key = key[0];
  926. }
  927. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  928. }
  929. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  930. }
  931. if (galaxy.meta["info"]["Turns to Warp"]) {
  932. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  933. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  934. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  935. }
  936. if (galaxy.meta["info"]["LongRange Scan"]) {
  937. std::string scanner_text =
  938. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  939. char scanner = scanner_text[0];
  940. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  941. galaxy.meta["ship"]["scanner"] = scanner;
  942. }
  943. // turns isn't ship specific
  944. if (galaxy.meta["info"]["Turns left"]) {
  945. // OR this could be "Unlimited" !!!
  946. std::string text = galaxy.meta["info"]["Turns left"].as<std::string>();
  947. if (text == "Unlimited") {
  948. galaxy.meta["turns"] = -1;
  949. } else {
  950. int turns =
  951. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  952. BUGZ_LOG(fatal) << "Turns left: " << turns;
  953. galaxy.meta["turns"] = turns;
  954. }
  955. }
  956. if (galaxy.meta["info"]["Current Sector"]) {
  957. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  958. BUGZ_LOG(fatal) << "Sector: " << sector;
  959. // it should already be sector ...
  960. current_sector = sector;
  961. }
  962. if (galaxy.meta["info"]["Credits"]) {
  963. std::string credit_text =
  964. galaxy.meta["info"]["Credits"].as<std::string>();
  965. replace(credit_text, ",", "");
  966. int credits = stoi(credit_text);
  967. galaxy.meta["credits"] = credits;
  968. BUGZ_LOG(fatal) << "Credits: " << credits;
  969. }
  970. }
  971. return;
  972. }
  973. // info to parse:
  974. size_t pos = line.find(" : ");
  975. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  976. std::string key = line.substr(0, pos);
  977. // Ferrengi ships don't have date built
  978. std::string value = line.substr(pos + 3);
  979. trim(key);
  980. trim(value);
  981. galaxy.meta["info"][key] = value;
  982. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  983. }
  984. }
  985. void Director::SL_computer_portline(const std::string &line) {
  986. if (startswith(line, "What sector is the port in?"))
  987. computer_port_done = false;
  988. if (line == "I have no information about a port in that sector.") {
  989. computer_port_sector = 0;
  990. SL_parser = nullptr;
  991. return;
  992. }
  993. if (!computer_port_done) {
  994. if (in(line, "Fuel Ore")) computer_port_done = true;
  995. if (in(line, "Cargo holds")) {
  996. // If I want to scan the class type 0 ports:
  997. // computer_port_done = true;
  998. // otherwise:
  999. SL_parser = nullptr;
  1000. return;
  1001. }
  1002. }
  1003. if (computer_port_done) {
  1004. if (line.empty()) {
  1005. SL_parser = nullptr;
  1006. return;
  1007. }
  1008. // scan for items of interest
  1009. // SL: [Fuel Ore Buying 810 100% 0]
  1010. // SL: [Organics Buying 856 57% 0]
  1011. // SL: [Equipment Selling 922 44% 0]
  1012. std::string work = line;
  1013. replace(work, "Fuel Ore", "Fuel");
  1014. replace(work, "%", "");
  1015. auto parts = split(work);
  1016. char c = tolower(parts[0][0]);
  1017. int pos;
  1018. char foe[4] = "foe";
  1019. for (pos = 0; pos < 3; ++pos) {
  1020. if (c == foe[pos]) break;
  1021. }
  1022. int amount = stoi(parts[2]);
  1023. int percent = stoi(parts[3]);
  1024. // update port
  1025. auto port = galaxy.ports.find(computer_port_sector);
  1026. if (port != galaxy.ports.end()) {
  1027. BUGZ_LOG(info) << "COM PORT " << computer_port_sector << " " << c << " "
  1028. << amount << " " << percent;
  1029. port->second.amount[pos] = amount;
  1030. port->second.percent[pos] = percent;
  1031. }
  1032. }
  1033. }