director.cpp 38 KB

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