director.cpp 35 KB

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