director.cpp 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151
  1. #include "director.h"
  2. #include <boost/format.hpp>
  3. #include <cctype>
  4. #include "boxes.h"
  5. #include "galaxy.h"
  6. #include "logging.h"
  7. #include "scripts.h"
  8. #include "utils.h"
  9. Director::Director() {
  10. BUGZ_LOG(warning) << "Director::Director()";
  11. // active = false;
  12. game = 0; // not in a game
  13. galaxy.reset();
  14. // do everything proxy_deactivate does ...
  15. // proxy_deactivate();
  16. active = false;
  17. // reset everything back to good state
  18. talk_direct = true;
  19. show_client = true;
  20. count = 0;
  21. /*
  22. Setup StringFunc for SL_parser:
  23. Construct these once, rather then every single time we need them.
  24. */
  25. SF_cimline = [this](const std::string &s) { this->SL_cimline(s); };
  26. SF_sectorline = [this](const std::string &s) { this->SL_sectorline(s); };
  27. SF_portline = [this](const std::string &s) { this->SL_portline(s); };
  28. SF_warpline = [this](const std::string &s) { this->SL_warpline(s); };
  29. SF_infoline = [this](const std::string &s) { this->SL_infoline(s); };
  30. SF_densityline = [this](const std::string &s) { this->SL_densityline(s); };
  31. SF_computer_portline = [this](const std::string &s) {
  32. this->SL_computer_portline(s);
  33. };
  34. build_menu();
  35. }
  36. Director::~Director() { BUGZ_LOG(warning) << "Director::~Director()"; }
  37. void Director::client_input(const std::string &input) {
  38. // If we're already active, don't try to activate.
  39. if (chain) {
  40. chain->client_input(input);
  41. return;
  42. }
  43. if (active) {
  44. if (input == "Q" || input == "q") proxy_deactivate();
  45. return;
  46. } else if (input == "\x1b" || input == "~") {
  47. std::string &prompt = current_prompt;
  48. BUGZ_LOG(trace) << "ACTIVATE prompt shows: [" << prompt << "]";
  49. if (prompt == "Selection (? for menu): ") {
  50. to_client(
  51. "\n\rThere's not much we can do here. Activate in-game at a "
  52. "Command prompt.\n\r");
  53. to_client(current_raw_prompt);
  54. return;
  55. }
  56. // easter-eggs:
  57. if (prompt == "Enter your choice: ") {
  58. to_client(
  59. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  60. "that's how I was coded.\n\r");
  61. to_client(current_raw_prompt);
  62. return;
  63. }
  64. // easter-egg
  65. if (prompt == "[Pause]") {
  66. to_client(" \x1b[1;36mPAWS\x1b[0m\n\r");
  67. to_client(current_raw_prompt);
  68. return;
  69. }
  70. if (at_planet_prompt(prompt)) {
  71. // future: If activated at planet menu, activate the planet upgrade
  72. // script!
  73. to_client("\n\r\x1b[0mFUTURE: Activate the planet upgrade script.\n\r");
  74. to_client(current_raw_prompt);
  75. return;
  76. }
  77. //
  78. // The command prompt that we're looking for:
  79. //
  80. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  81. // the time, and the sector number vary...
  82. /*
  83. if (startswith(prompt, "Command [")) {
  84. // if (prompt.substr(0, 9) == "Command [") {
  85. // int len = prompt.length();
  86. if (endswith(prompt, "] (?=Help)? : ")) {
  87. // if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  88. proxy_activate();
  89. return;
  90. }
  91. }
  92. }
  93. */
  94. if (at_command_prompt(prompt)) {
  95. proxy_activate();
  96. return;
  97. }
  98. }
  99. // Ok...
  100. if (talk_direct) to_server(input);
  101. /*
  102. if (emit_client_input)
  103. emit_client_input(line);
  104. */
  105. }
  106. void Director::server_line(const std::string &line,
  107. const std::string &raw_line) {
  108. // check for if we entered game/left game
  109. if (line.find("TradeWars Game Server ") != std::string::npos) {
  110. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  111. /*
  112. There's a delay here when I save the game data.
  113. I've moved it futher down. Hide it at a prompt, so it isn't so
  114. noticeable.
  115. */
  116. // reset "active game" -- we're at the TWGS main menu
  117. }
  118. if (line.find("Selection (? for menu): ") != std::string::npos) {
  119. char ch = line[line.length() - 1];
  120. if (ch >= 'A' && ch < 'Q') {
  121. if ((game) && (game != ch)) {
  122. galaxy.save();
  123. }
  124. game = ch;
  125. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  126. // TODO: Load game data
  127. galaxy.game = game;
  128. galaxy.username = username;
  129. galaxy.load();
  130. // YAML loaded, set sensible default config values (if missing).
  131. if (!galaxy.config["display_lines"]) {
  132. galaxy.config["display_lines"] = 20;
  133. }
  134. galaxy.meta["help"]["display_lines"] =
  135. "Number of report lines to display";
  136. if (!galaxy.config["burnt_percent"]) {
  137. galaxy.config["burnt_percent"] = 40;
  138. }
  139. galaxy.meta["help"]["burnt_percent"] = "Ignore ports below this percent";
  140. }
  141. // not needed (handled by above Game Server check).
  142. if (ch == 'Q') {
  143. if (game) {
  144. // TODO: Save galaxy data
  145. galaxy.save();
  146. }
  147. game = 0;
  148. galaxy.reset();
  149. }
  150. }
  151. if (game) {
  152. // in-game parsing here.
  153. /*
  154. ____ _ _
  155. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  156. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  157. ___) | __/ | \ V / __/ | | |___| | | | | __/
  158. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  159. ____ _
  160. | _ \ __ _ _ __ ___(_)_ __ __ _
  161. | |_) / _` | '__/ __| | '_ \ / _` |
  162. | __/ (_| | | \__ \ | | | | (_| |
  163. |_| \__,_|_| |___/_|_| |_|\__, |
  164. |___/
  165. This is where all of the server lines are gleaned for all the
  166. information that we can get out of them.
  167. // When activating the computer
  168. SP: [Command [TL=00:00:00]:[926] (?=Help)? : ]
  169. Sector: 926
  170. CI: [c]
  171. SL: [Command [TL=00:00:00]:[926] (?=Help)? : C]
  172. SL: [<Computer>]
  173. SL: []
  174. SL: [<Computer activated>]
  175. SL: []
  176. SP: [Computer command [TL=00:00:00]:[926] (?=Help)? ]
  177. // deactivating the computer
  178. SL: [Computer command [TL=00:00:00]:[926] (?=Help)? Q]
  179. SL: []
  180. SL: [<Computer deactivated>]
  181. SL: []
  182. */
  183. if (line == "<Port>") {
  184. SL_parser = SF_portline;
  185. }
  186. /*
  187. if (startswith(line, " Items Status Trading % of max OnBoard"))
  188. SL_parser = SF_portline;
  189. */
  190. if (endswith(line, "Relative Density Scan")) {
  191. galaxy.dscan.reset(current_sector);
  192. SL_parser = SF_densityline;
  193. }
  194. if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
  195. if (line == ": ") SL_parser = SF_cimline;
  196. if (line == "<Info>") SL_parser = SF_infoline;
  197. if (startswith(line, "What sector is the port in? [")) {
  198. // Computer Port Report
  199. // SL: [What sector is the port in? [611] 4]
  200. size_t pos = line.rfind(' ');
  201. computer_port_sector = stoi(line.substr(pos));
  202. SL_parser = SF_computer_portline;
  203. }
  204. }
  205. if (SL_parser) {
  206. SL_parser(line);
  207. }
  208. /*
  209. if (emit_server_line) {
  210. emit_server_line(line);
  211. }
  212. */
  213. if (chain) {
  214. chain->server_line(line, raw_line);
  215. }
  216. }
  217. void Director::server_prompt(const std::string &prompt,
  218. const std::string &raw_prompt) {
  219. current_prompt = prompt;
  220. current_raw_prompt = raw_prompt;
  221. if (game) {
  222. if (prompt == "Selection (? for menu): ") {
  223. galaxy.save();
  224. game = 0;
  225. galaxy.reset();
  226. }
  227. // in-game parsing here.
  228. if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
  229. std::string sector_text;
  230. size_t before, after;
  231. before = prompt.find("]:[") + 3;
  232. after = prompt.find("] (?=Help)");
  233. sector_text = prompt.substr(before, after - before);
  234. current_sector = stoi(sector_text);
  235. BUGZ_LOG(fatal) << "Sector: " << sector_text;
  236. }
  237. }
  238. /*
  239. if (emit_server_prompt)
  240. emit_server_prompt(prompt);
  241. */
  242. if (chain) chain->server_prompt(prompt);
  243. }
  244. void Director::build_menu(void) {
  245. main_menu = std::make_shared<MenuDispatch>(*this);
  246. MenuDispatch *md = static_cast<MenuDispatch *>(&(*main_menu));
  247. md->menu_box_color = "\x1b[1;33;44m";
  248. md->menu_text_color = "\x1b[1;37;44m";
  249. md->menu_title = "Proxy Menu";
  250. md->menu_options_color = "\x1b[1;36;40m";
  251. md->menu_prompt =
  252. "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
  253. "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
  254. md->lazy = true;
  255. md->menu = {{"C", "Configure"},
  256. {"D", "Display Report"},
  257. {"E", "Export Data/Save"},
  258. {"I", "Information"},
  259. {"P", "Port CIM"},
  260. {"W", "Warp CIM"},
  261. {"T", "Trading Report (same as D)"},
  262. {"S", "Scripts"},
  263. {"X", "eXit"}};
  264. md->setNotify([this]() { this->menu_choice(); });
  265. cim = std::make_shared<CIMDispatch>(*this);
  266. cim->setNotify([this]() { this->cim_done(); });
  267. }
  268. void Director::proxy_activate(void) {
  269. active = true; // yes, set keep-alive timer.
  270. to_server(" "); // start keep-alive timer.
  271. // set other values we need
  272. talk_direct = false;
  273. show_client = false;
  274. /*
  275. Wait a minute .. this might be confusing.
  276. Shouldn't I send them the current prompt?
  277. Just in case we abort in the middle of something?!?
  278. */
  279. old_prompt = current_prompt;
  280. old_raw_prompt = current_raw_prompt;
  281. to_client("\x1b[0m\n\r");
  282. /*
  283. ╔══════════════════════════════╗
  284. ║ TradeWars Proxy Active ║
  285. ╚══════════════════════════════╝
  286. -=>
  287. */
  288. Boxes box(30, 1, true);
  289. box.boxcolor = "\x1b[1;33;44m";
  290. box.textcolor = "\x1b[1;33;44m";
  291. to_client(box.top());
  292. std::string output = " TradeWars Proxy \x1b[5mActive\x1b[0;1;33;44m ";
  293. to_client(box.row(output));
  294. to_client(box.bottom());
  295. chain = main_menu;
  296. main_menu->activate();
  297. /*
  298. // Using InputDispatch -- and see have_input
  299. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  300. chain = readline;
  301. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  302. id->prompt = "\x1b[0m\x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  303. id->max_length = 15;
  304. id->setNotify([this]() { this->have_input(); });
  305. readline->activate();
  306. */
  307. }
  308. void Director::menu_choice(void) {
  309. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  310. if (md) {
  311. if (md->input.empty()) {
  312. to_client("Menu aborted.\n\r");
  313. proxy_deactivate();
  314. return;
  315. } else {
  316. switch (md->input[0]) {
  317. case 'C': // configure
  318. config_edit();
  319. return;
  320. break;
  321. case 'D':
  322. case 'T': // display trading report
  323. {
  324. auto pptv = galaxy.find_best_trades();
  325. std::string output;
  326. galaxy.sort_port_pair_type(pptv);
  327. int max_display = 20;
  328. if (galaxy.config["display_lines"])
  329. max_display = galaxy.config["display_lines"].as<int>();
  330. else
  331. galaxy.config["display_lines"] = max_display;
  332. if ((max_display <= 0) || (max_display > 255)) {
  333. max_display = 255;
  334. galaxy.config["display_lines"] = 255;
  335. }
  336. const int per_line = 5;
  337. int count = 0;
  338. int line = 0;
  339. for (auto const &ppt : pptv) {
  340. output = str(boost::format("%1$5d:%2$-5d(%3$d) ") % ppt.s1 %
  341. ppt.s2 % ppt.type);
  342. to_client(output);
  343. ++count;
  344. if (count == per_line) {
  345. count = 0;
  346. to_client("\n\r");
  347. ++line;
  348. }
  349. if (line == max_display) break;
  350. }
  351. if (count != 0) to_client("\n\r");
  352. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  353. if ((line < 5) && (max_display > 5)) {
  354. // suggestion:
  355. to_client(
  356. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  357. }
  358. } break;
  359. case 'E': // Export Data/Save
  360. to_client("Saving...");
  361. galaxy.save();
  362. to_client("\rSaved....\n\r");
  363. break;
  364. case 'I': // Information
  365. information();
  366. break;
  367. case 'P': // Port CIM
  368. // Since we're adding/updating, we don't lose our
  369. // type 0 ports. Type 9 stays at 9.
  370. chain = cim;
  371. to_server("^RQ");
  372. {
  373. std::string text = str(boost::format("Port CIM Report (%1%)\n\r") %
  374. galaxy.ports.size());
  375. // to_client("Port CIM Report\n\r");
  376. to_client(text);
  377. }
  378. chain->activate();
  379. return;
  380. break;
  381. case 'W': // Warp CIM
  382. chain = cim;
  383. to_server("^IQ");
  384. {
  385. std::string text = str(boost::format("Warp CIM Report (%1%)\n\r") %
  386. galaxy.warps.size());
  387. // to_client("Warp CIM Report\n\r");
  388. to_client(text);
  389. }
  390. chain->activate();
  391. return;
  392. break;
  393. // case 'T': // Trading Report
  394. // break;
  395. case 'S': // Scripts
  396. {
  397. init_scripts_menu();
  398. chain = scripts_menu;
  399. chain->activate();
  400. return;
  401. } break;
  402. case 'X': // Exit
  403. proxy_deactivate();
  404. return;
  405. }
  406. /*
  407. std::string text = str(
  408. boost::format("Back from Menu [%1%] was selected.\n\r") %
  409. md->input);
  410. to_client(text);
  411. */
  412. md->activate();
  413. }
  414. }
  415. }
  416. MenuDispatch *Director::init_scripts_menu(void) {
  417. MenuDispatch *md;
  418. if (scripts_menu) {
  419. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  420. return md;
  421. } else {
  422. scripts_menu = std::make_shared<MenuDispatch>(*this);
  423. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  424. md->menu_box_color = "\x1b[0;32;40m";
  425. md->menu_text_color = "\x1b[1;32;40m";
  426. md->menu_title = "Scripts Menu";
  427. md->menu_options_color = "\x1b[1;32;40m";
  428. md->lazy = false;
  429. md->menu_prompt = " SCRIPT : ";
  430. md->menu = {{"!", "Terror"},
  431. {"T", "Trade"},
  432. {"S", "Safe Move"},
  433. {"U", "Upgrade Planet Pants"}};
  434. md->setNotify([this]() { this->scripts_done(); });
  435. return md;
  436. }
  437. }
  438. void Director::scripts_done(void) {
  439. // Was script selected? If so, run it!
  440. // otherwise, back to the menu we go...
  441. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  442. if (md) {
  443. if (md->input.empty()) {
  444. to_client("Scripts aborted.\n\r");
  445. scripts_menu.reset();
  446. proxy_deactivate();
  447. return;
  448. } else {
  449. switch (md->input[0]) {
  450. case 'T': // Trade
  451. {
  452. script = std::make_shared<ScriptTrader>(*this);
  453. ScriptTrader *ts = static_cast<ScriptTrader *>(&((*script)));
  454. ts->setNotify([this]() { this->proxy_deactivate(); });
  455. // Set parameters
  456. auto found = galaxy.find_trades(current_sector, false);
  457. if (found.empty()) {
  458. to_client(
  459. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  460. "or no ports around.\n\r");
  461. proxy_deactivate();
  462. return;
  463. }
  464. // sort first?
  465. galaxy.sort_port_pair_type(found);
  466. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  467. BUGZ_LOG(fatal) << found[0].s1 << "," << found[0].s2 << " : "
  468. << found[0].type;
  469. ts->port[0] = found[0].s1;
  470. ts->port[1] = found[0].s2;
  471. ts->type = found[0].type;
  472. chain = script;
  473. chain->activate();
  474. return;
  475. } break;
  476. case 'S': {
  477. script = std::make_shared<MoveDispatch>(*this);
  478. MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
  479. md->setNotify([this]() { this->proxy_deactivate(); });
  480. md->move_to = 1;
  481. chain = script;
  482. chain->activate();
  483. return;
  484. } break;
  485. case '!': {
  486. auto best = galaxy.find_closest(current_sector);
  487. if (best.type != 0) {
  488. std::string text =
  489. str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
  490. best.type % best.s1 % best.s2);
  491. to_client(text);
  492. } else {
  493. to_client("I don't see any best trades.\n\r");
  494. }
  495. } break;
  496. }
  497. }
  498. }
  499. proxy_activate();
  500. // And to end scripts, we do .. what exactly?
  501. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  502. // here?? probably do want to destroy scripts here. ;)
  503. // scripts_menu.reset();
  504. // proxy_deactivate();
  505. }
  506. /**
  507. * @brief Setup Config Input
  508. *
  509. * @return DispatchInput*
  510. */
  511. InputDispatch *Director::init_config_input(void) {
  512. InputDispatch *id;
  513. if (config_input) {
  514. // Yes, it has been setup before.
  515. id = dynamic_cast<InputDispatch *>(&(*config_input));
  516. id->prompt = "Config => ";
  517. id->max_length = 3;
  518. config_item.clear();
  519. return id;
  520. } else {
  521. // set it up
  522. config_input = std::make_shared<InputDispatch>(*this);
  523. id = static_cast<InputDispatch *>(&(*config_input));
  524. id->prompt = "Config => ";
  525. id->max_length = 3;
  526. id->setNotify([this]() { this->config_have_input(); });
  527. config_item.clear();
  528. return id;
  529. }
  530. }
  531. void Director::config_edit(void) {
  532. // display current config
  533. std::string menu_box_color = "\x1b[1;33;44m";
  534. std::string menu_text_color = "\x1b[1;37;44m";
  535. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  536. menu_text_color, 20, 1, true);
  537. for (auto line : abox) {
  538. to_client(line);
  539. }
  540. // to_client("Configuration:\n\r");
  541. int item = 1;
  542. for (auto const &cfg : galaxy.config) {
  543. std::string output = str(boost::format("%1$2d %2$20s: %3$s\n\r") % item %
  544. cfg.first % cfg.second);
  545. to_client(output);
  546. ++item;
  547. }
  548. to_client("Enter number to edit, blank to exit.\n\r");
  549. // setup call to config_input:
  550. InputDispatch *id = init_config_input();
  551. chain = config_input;
  552. id->activate();
  553. // to return to the menu:
  554. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  555. // md->activate();
  556. }
  557. void Director::config_have_input(void) {
  558. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  559. if (config_item.empty()) {
  560. // This is a config menu selection
  561. if (id->input.empty()) {
  562. // We're done here. Return to menu.
  563. chain = main_menu;
  564. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  565. md->activate();
  566. // destroy the input? yes.
  567. config_input.reset();
  568. return;
  569. } else {
  570. int item;
  571. try {
  572. item = stoi(id->input);
  573. } catch (const std::invalid_argument &e) {
  574. BUGZ_LOG(fatal) << e.what();
  575. item = 0;
  576. } catch (const std::out_of_range &e) {
  577. BUGZ_LOG(fatal) << e.what();
  578. item = 0;
  579. }
  580. if ((item < 1) || (item > (int)galaxy.config.size())) {
  581. // selection out of range - redisplay config menu
  582. config_edit();
  583. return;
  584. } else {
  585. int pos = 1;
  586. const YAML::Node &config = galaxy.config;
  587. for (auto const &c : config) {
  588. if (pos == item) {
  589. // got it!
  590. config_item = c.first.as<std::string>();
  591. std::string output =
  592. str(boost::format("%1% : %2%\n\r") % config_item %
  593. galaxy.meta["help"][config_item]);
  594. to_client(output);
  595. id->max_length = 30;
  596. id->prompt = "Change to => ";
  597. id->activate();
  598. return;
  599. };
  600. ++pos;
  601. }
  602. to_client("What? I didn't find that item?\n\r");
  603. config_edit();
  604. return;
  605. }
  606. }
  607. } else {
  608. // This is a config item edit
  609. if (id->input.empty()) {
  610. to_client("No change.\n\r");
  611. config_edit();
  612. return;
  613. } else {
  614. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  615. galaxy.config[config_item] = id->input;
  616. config_edit();
  617. return;
  618. }
  619. }
  620. }
  621. void Director::have_input(void) {
  622. ++count;
  623. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  624. if (id) {
  625. std::string output =
  626. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  627. to_client("\x1b[0m");
  628. to_client(output);
  629. } else {
  630. proxy_deactivate();
  631. return;
  632. }
  633. if (count > 3) {
  634. proxy_deactivate();
  635. } else {
  636. chain->activate();
  637. }
  638. }
  639. void Director::cim_done(void) {
  640. BUGZ_LOG(info) << "CIM done";
  641. chain = main_menu;
  642. main_menu->activate();
  643. }
  644. void Director::information(void) {
  645. std::string output;
  646. to_client("I currently know the following:\n\r");
  647. output = str(
  648. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  649. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  650. galaxy.meta.size());
  651. to_client(output);
  652. }
  653. void Director::proxy_deactivate(void) {
  654. active = false;
  655. // reset everything back to good state
  656. talk_direct = true;
  657. show_client = true;
  658. chain.reset();
  659. to_client("\n\r");
  660. to_client(current_raw_prompt);
  661. }
  662. /*
  663. Server Line Parsing Routines
  664. */
  665. void Director::SL_cimline(const std::string &line) {
  666. if (line == ": ENDINTERROG") {
  667. SL_parser = nullptr;
  668. return;
  669. }
  670. if (line == ": ") {
  671. // do I need to do anything special here for this?
  672. // Maybe -- We would save special ports that don't show up
  673. // (StarDock/Special) before. We don't know (at this point) if this is
  674. // warps or ports.
  675. return;
  676. }
  677. if (line.empty()) {
  678. SL_parser = nullptr;
  679. return;
  680. }
  681. // parse cimline
  682. // size_t pos = line.find('%');
  683. // std::string work = line;
  684. // if (pos == line.npos) {
  685. if (in(line, "%")) {
  686. // portcim
  687. struct port p = parse_portcim(line);
  688. if (p.sector == 0)
  689. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  690. else
  691. BUGZ_LOG(trace) << "portcim: " << p;
  692. galaxy.add_port(p);
  693. } else {
  694. // warpcim
  695. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  696. auto warps = split(line);
  697. sector_warps sw;
  698. for (auto const &w : warps) {
  699. if (sw.sector == 0) {
  700. sw.sector = stoi(w);
  701. } else {
  702. sw.add(stoi(w));
  703. }
  704. }
  705. BUGZ_LOG(trace) << "warpcim: " << sw;
  706. galaxy.add_warp(sw);
  707. }
  708. }
  709. void Director::SL_thiefline(const std::string &line) {
  710. size_t pos = line.find("Suddenly you're Busted!");
  711. bool busted = pos != line.npos;
  712. if (busted) {
  713. BUGZ_LOG(fatal) << "set bust";
  714. SL_parser = nullptr;
  715. } else {
  716. pos = line.find("(You realize the guards saw you last time!)");
  717. if (pos != line.npos) SL_parser = nullptr;
  718. }
  719. // Are those the two ways to exit from this state?
  720. }
  721. void Director::SL_sectorline(const std::string &line) {
  722. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  723. if (line.empty()) {
  724. SL_parser = nullptr;
  725. } else {
  726. /*
  727. sectorline: [Sector : 926 in The Federation.]
  728. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  729. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  730. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  731. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  732. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  733. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  734. What can we get from Traders : line? Can we get if they are hostile
  735. to us? We need to respond to "is powering up weapons" ... We can
  736. react faster then a person can!
  737. "phil is powering up weapons systems!"
  738. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  739. */
  740. if (in(line, "Sector :")) {
  741. current_sector = stoi(line.substr(10));
  742. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  743. }
  744. if (in(line, "Ports :")) {
  745. std::string port_class;
  746. size_t pos = line.find(", Class ");
  747. if (pos != std::string::npos) {
  748. pos += 8;
  749. int class_ = stoi(line.substr(pos));
  750. BUGZ_LOG(fatal) << "PORT: " << class_;
  751. galaxy.add_port(current_sector, class_);
  752. }
  753. }
  754. if (in(line, "Warps to Sector(s) :")) {
  755. std::string temp = line.substr(20);
  756. replace(temp, " - ", " ");
  757. // unexplored sectors ()
  758. // Should I track these?
  759. replace(temp, "(", "");
  760. replace(temp, ")", "");
  761. sector_warps sw;
  762. auto warps = split(temp);
  763. sw.sector = current_sector;
  764. // what if there is only one warp?
  765. for (auto const &w : warps) {
  766. sw.add(stoi(w));
  767. }
  768. BUGZ_LOG(fatal) << "WARPS: " << sw;
  769. galaxy.add_warp(sw);
  770. }
  771. }
  772. }
  773. void Director::SL_densityline(const std::string &line) {
  774. BUGZ_LOG(fatal) << "densityline: [" << line << "]";
  775. if (line.empty()) {
  776. SL_parser = nullptr;
  777. return;
  778. }
  779. /*
  780. // Ensure this really is a density scan and not something else
  781. if (!in(line, "Sector") || !in(line, "Warps") || !in(line, "NavHaz") ||
  782. !in(line, "Anom")) {
  783. BUGZ_LOG(fatal) << "densityline: Invalid line.";
  784. SL_parser = nullptr;
  785. return;
  786. }
  787. if (not galaxy.meta["density"]) {
  788. galaxy.meta["density"] = YAML::Node();
  789. }
  790. */
  791. /*
  792. 0 1 2 3 4 5 6 7 8 9 10 11 12
  793. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  794. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  795. // Cleaned up line
  796. 0 1 2 3 4 5 6 7 8 9
  797. "Sector 55 ==> 0 Warps 4 NavHaz 0 Anom No"
  798. "Sector 223 ==> 0 Warps 3 NavHaz 0 Anom No"
  799. */
  800. if (in(line, "==>")) {
  801. std::string work = line;
  802. replace(work, ":", "");
  803. bool known = !in(work, "(");
  804. replace(work, "(", "");
  805. replace(work, ")", "");
  806. replace(work, "%", "");
  807. auto dense = split(work);
  808. // Parse our data
  809. sector_type sector = std::stoi(dense.at(1));
  810. uint16_t density = std::stoi(dense.at(3));
  811. uint16_t warps = std::stoi(dense.at(5));
  812. uint16_t navhaz = std::stoi(dense.at(7));
  813. bool anom = in(dense.at(9), "Yes");
  814. struct density d = {sector, density, warps, navhaz, anom, known};
  815. galaxy.dscan.add_scan(d);
  816. // Commit data
  817. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  818. << " density=" << density << " warps=" << warps
  819. << " navhaz=" << navhaz << " anom=" << anom
  820. << " known=" << known << "}";
  821. /*
  822. if (galaxy.meta["density"][sector]) {
  823. galaxy.meta["density"][sector] = YAML::Node();
  824. }
  825. */
  826. galaxy.meta["density"][sector]["density"] = density;
  827. galaxy.meta["density"][sector]["warps"] = warps;
  828. galaxy.meta["density"][sector]["navhaz"] = navhaz;
  829. galaxy.meta["density"][sector]["anom"] = anom;
  830. galaxy.meta["density"][sector]["known"] = known;
  831. // Add a check to see if density is greater than 500
  832. // Add datetime stamp
  833. }
  834. }
  835. void Director::SL_portline(const std::string &line) {
  836. /*
  837. We take blank lines because we start at <Port>.
  838. Otherwise, we trigger on computer port requests.
  839. if (line.empty()) {
  840. SL_parser = nullptr;
  841. return;
  842. }
  843. */
  844. /*
  845. SL: [ Items Status Trading % of max OnBoard]
  846. SL: [ ----- ------ ------- -------- -------]
  847. SL: [Fuel Ore Buying 3000 100% 0]
  848. SL: [Organics Buying 3000 100% 0]
  849. SL: [Equipment Buying 3000 100% 0]
  850. SL: []
  851. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  852. SL: [A Cargo holds : 650 credits / next hold 0]
  853. SL: [B Fighters : 233 credits per fighter 75]
  854. SL: [C Shield Points : 116 credits per point 100]
  855. SL: []
  856. */
  857. // BUGZ_LOG(info) << "portline : " << line;
  858. if (in(line, "%")) {
  859. // size_t pos = line.find('%');
  860. // if (pos != line.npos) {
  861. // Ok, this is a valid portline
  862. std::string work = line;
  863. replace(work, "Fuel Ore", "Fuel");
  864. auto parts = split(work);
  865. if (parts[0] == "Items") return;
  866. char c = tolower(parts[0][0]);
  867. int pos;
  868. char foe[4] = "foe";
  869. for (pos = 0; pos < 3; ++pos) {
  870. if (c == foe[pos]) break;
  871. }
  872. int amount = stoi(parts[2]);
  873. int percent = stoi(parts[3]);
  874. // update port
  875. auto port = galaxy.ports.find(current_sector);
  876. if (port != galaxy.ports.end()) {
  877. port->second.amount[pos] = amount;
  878. port->second.percent[pos] = percent;
  879. }
  880. /*
  881. BUGZ_LOG(fatal) << "portline split:";
  882. for (auto const p : parts) {
  883. BUGZ_LOG(fatal) << p;
  884. }
  885. */
  886. // Here's the end:
  887. if (parts[0] == "Equipment") SL_parser = nullptr;
  888. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  889. }
  890. }
  891. void Director::SL_warpline(const std::string &line) {
  892. if (line.empty()) {
  893. SL_parser = nullptr;
  894. return;
  895. }
  896. // process warp line
  897. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  898. }
  899. void Director::SL_infoline(const std::string &line) {
  900. static int state;
  901. if (line == "<Info>") {
  902. state = 0;
  903. galaxy.meta["info"] = YAML::Node();
  904. }
  905. if (line.empty()) {
  906. ++state;
  907. if (state == 2) {
  908. SL_parser = nullptr;
  909. // clear out the existing ship data
  910. galaxy.meta["ship"] = YAML::Node();
  911. // process the parsed information in meta["info"]
  912. if (galaxy.meta["info"]["Total Holds"]) {
  913. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  914. replace(work, "Fuel Ore", "Fuel");
  915. auto parts = split(work, " - ");
  916. int total_holds = stoi(parts[0]);
  917. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  918. auto contents = split(parts[1]);
  919. for (auto const &hold : contents) {
  920. auto hold_amount = split(hold, "=");
  921. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  922. std::string key = hold_amount[0];
  923. str_tolower(key);
  924. // equipment = e
  925. // organics = o
  926. // fuel = f
  927. // colonists = c
  928. // empty = empty
  929. if (key != "empty") {
  930. key = key[0];
  931. }
  932. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  933. }
  934. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  935. }
  936. if (galaxy.meta["info"]["Turns to Warp"]) {
  937. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  938. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  939. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  940. }
  941. if (galaxy.meta["info"]["LongRange Scan"]) {
  942. std::string scanner_text =
  943. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  944. char scanner = scanner_text[0];
  945. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  946. galaxy.meta["ship"]["scanner"] = scanner;
  947. }
  948. // turns isn't ship specific
  949. if (galaxy.meta["info"]["Turns left"]) {
  950. // OR this could be "Unlimited" !!!
  951. std::string text = galaxy.meta["info"]["Turns left"].as<std::string>();
  952. if (text == "Unlimited") {
  953. galaxy.meta["turns"] = -1;
  954. } else {
  955. int turns =
  956. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  957. BUGZ_LOG(fatal) << "Turns left: " << turns;
  958. galaxy.meta["turns"] = turns;
  959. }
  960. }
  961. if (galaxy.meta["info"]["Current Sector"]) {
  962. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  963. BUGZ_LOG(fatal) << "Sector: " << sector;
  964. // it should already be sector ...
  965. current_sector = sector;
  966. }
  967. if (galaxy.meta["info"]["Credits"]) {
  968. std::string credit_text =
  969. galaxy.meta["info"]["Credits"].as<std::string>();
  970. replace(credit_text, ",", "");
  971. int credits = stoi(credit_text);
  972. galaxy.meta["credits"] = credits;
  973. BUGZ_LOG(fatal) << "Credits: " << credits;
  974. }
  975. }
  976. return;
  977. }
  978. // info to parse:
  979. size_t pos = line.find(" : ");
  980. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  981. std::string key = line.substr(0, pos);
  982. // Ferrengi ships don't have date built
  983. std::string value = line.substr(pos + 3);
  984. trim(key);
  985. trim(value);
  986. galaxy.meta["info"][key] = value;
  987. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  988. }
  989. }
  990. void Director::SL_computer_portline(const std::string &line) {
  991. if (startswith(line, "What sector is the port in?"))
  992. computer_port_done = false;
  993. if (line == "I have no information about a port in that sector.") {
  994. computer_port_sector = 0;
  995. SL_parser = nullptr;
  996. return;
  997. }
  998. if (!computer_port_done) {
  999. if (in(line, "Fuel Ore")) computer_port_done = true;
  1000. if (in(line, "Cargo holds")) {
  1001. // If I want to scan the class type 0 ports:
  1002. // computer_port_done = true;
  1003. // otherwise:
  1004. SL_parser = nullptr;
  1005. return;
  1006. }
  1007. }
  1008. if (computer_port_done) {
  1009. if (line.empty()) {
  1010. SL_parser = nullptr;
  1011. return;
  1012. }
  1013. // scan for items of interest
  1014. // SL: [Fuel Ore Buying 810 100% 0]
  1015. // SL: [Organics Buying 856 57% 0]
  1016. // SL: [Equipment Selling 922 44% 0]
  1017. std::string work = line;
  1018. replace(work, "Fuel Ore", "Fuel");
  1019. replace(work, "%", "");
  1020. auto parts = split(work);
  1021. char c = tolower(parts[0][0]);
  1022. int pos;
  1023. char foe[4] = "foe";
  1024. for (pos = 0; pos < 3; ++pos) {
  1025. if (c == foe[pos]) break;
  1026. }
  1027. int amount = stoi(parts[2]);
  1028. int percent = stoi(parts[3]);
  1029. // update port
  1030. auto port = galaxy.ports.find(computer_port_sector);
  1031. if (port != galaxy.ports.end()) {
  1032. BUGZ_LOG(info) << "COM PORT " << computer_port_sector << " " << c << " "
  1033. << amount << " " << percent;
  1034. port->second.amount[pos] = amount;
  1035. port->second.percent[pos] = percent;
  1036. }
  1037. }
  1038. }