director.cpp 33 KB

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