director.cpp 33 KB

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