director.cpp 33 KB

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