director.cpp 32 KB

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