director.cpp 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  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") proxy_deactivate();
  46. return;
  47. } else if (input == "\x1b" || input == "~") {
  48. std::string &prompt = current_prompt;
  49. BUGZ_LOG(trace) << "ACTIVATE prompt shows: [" << prompt << "]";
  50. if (prompt == "Selection (? for menu): ") {
  51. to_client(
  52. "\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! (Maybe). If I can figure out what planet it is/and where.
  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. // Inject our proxy activation message
  95. to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
  96. /*
  97. There's a delay here when I save the game data.
  98. I've moved it futher down. Hide it at a prompt, so it isn't so
  99. noticeable.
  100. */
  101. // reset "active game" -- we're at the TWGS main menu
  102. }
  103. if (line.find("Selection (? for menu): ") != std::string::npos) {
  104. char ch = line[line.length() - 1];
  105. if (ch >= 'A' && ch < 'Q') {
  106. if ((game) && (game != ch)) {
  107. galaxy.save();
  108. }
  109. game = ch;
  110. BUGZ_LOG(warning) << "GAME " << game << " activated!";
  111. // TODO: Load game data
  112. galaxy.game = game;
  113. galaxy.username = username;
  114. galaxy.load();
  115. // YAML loaded, set sensible default config values (if missing).
  116. if (!galaxy.config["display_lines"]) {
  117. galaxy.config["display_lines"] = 20;
  118. }
  119. galaxy.meta["help"]["display_lines"] =
  120. "Number of report lines to display";
  121. if (!galaxy.config["burnt_percent"]) {
  122. galaxy.config["burnt_percent"] = 40;
  123. }
  124. galaxy.meta["help"]["burnt_percent"] =
  125. "Don't display ports in report below this percent";
  126. }
  127. // not needed (handled by above Game Server check).
  128. if (ch == 'Q') {
  129. if (game) {
  130. // TODO: Save galaxy data
  131. galaxy.save();
  132. }
  133. game = 0;
  134. galaxy.reset();
  135. }
  136. }
  137. if (game) {
  138. // in-game parsing here.
  139. /*
  140. ____ _ _
  141. / ___| ___ _ ____ _____ _ __ | | (_)_ __ ___
  142. \___ \ / _ \ '__\ \ / / _ \ '__| | | | | '_ \ / _ \
  143. ___) | __/ | \ V / __/ | | |___| | | | | __/
  144. |____/ \___|_| \_/ \___|_| |_____|_|_| |_|\___|
  145. ____ _
  146. | _ \ __ _ _ __ ___(_)_ __ __ _
  147. | |_) / _` | '__/ __| | '_ \ / _` |
  148. | __/ (_| | | \__ \ | | | | (_| |
  149. |_| \__,_|_| |___/_|_| |_|\__, |
  150. |___/
  151. This is where all of the server lines are gleaned for all the
  152. information that we can get out of them.
  153. // When activating the computer
  154. SP: [Command [TL=00:00:00]:[926] (?=Help)? : ]
  155. Sector: 926
  156. CI: [c]
  157. SL: [Command [TL=00:00:00]:[926] (?=Help)? : C]
  158. SL: [<Computer>]
  159. SL: []
  160. SL: [<Computer activated>]
  161. SL: []
  162. SP: [Computer command [TL=00:00:00]:[926] (?=Help)? ]
  163. // deactivating the computer
  164. SL: [Computer command [TL=00:00:00]:[926] (?=Help)? Q]
  165. SL: []
  166. SL: [<Computer deactivated>]
  167. SL: []
  168. */
  169. if (line == "<Port>") {
  170. SL_parser = SF_portline;
  171. }
  172. /*
  173. if (startswith(line, " Items Status Trading % of max OnBoard"))
  174. SL_parser = SF_portline;
  175. */
  176. if (endswith(line, "Relative Density Scan")) {
  177. galaxy.dscan.reset(current_sector);
  178. SL_parser = SF_densityline;
  179. }
  180. if (startswith(line, "Sector : ")) SL_parser = SF_sectorline;
  181. if (line == ": ") SL_parser = SF_cimline;
  182. if (line == "<Info>") SL_parser = SF_infoline;
  183. if (startswith(line, "What sector is the port in? [")) {
  184. // Computer Port Report
  185. // SL: [What sector is the port in? [611] 4]
  186. size_t pos = line.rfind(' ');
  187. computer_port_sector = stoi(line.substr(pos));
  188. SL_parser = SF_computer_portline;
  189. }
  190. }
  191. if (SL_parser) {
  192. SL_parser(line);
  193. }
  194. if (chain) {
  195. chain->server_line(line, raw_line);
  196. }
  197. }
  198. void Director::server_prompt(const std::string &prompt,
  199. const std::string &raw_prompt) {
  200. current_prompt = prompt;
  201. current_raw_prompt = raw_prompt;
  202. if (game) {
  203. if (prompt == "Selection (? for menu): ") {
  204. galaxy.save();
  205. game = 0;
  206. galaxy.reset();
  207. }
  208. // in-game parsing here.
  209. if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
  210. std::string sector_text;
  211. size_t before, after;
  212. before = prompt.find("]:[") + 3;
  213. after = prompt.find("] (?=Help)");
  214. sector_text = prompt.substr(before, after - before);
  215. current_sector = stoi(sector_text);
  216. BUGZ_LOG(info) << "current_sector = " << current_sector;
  217. }
  218. }
  219. /*
  220. if (emit_server_prompt)
  221. emit_server_prompt(prompt);
  222. */
  223. if (chain) 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}; // yellow
  330. ANSIColor cyan{36}; // cyan
  331. ANSIColor bg{1, 32}; // bright green
  332. ANSIColor bb{1, 34}; // bright blue
  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. {"N", "Nearest Unexplored"},
  441. {"U", "Upgrade Planet Pants"},
  442. {"X", "Exit Scripts"}};
  443. md->setNotify([this]() { this->scripts_done(); });
  444. return md;
  445. }
  446. }
  447. void Director::scripts_done(void) {
  448. // Was script selected? If so, run it!
  449. // otherwise, back to the menu we go...
  450. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  451. if (md) {
  452. if (md->input.empty()) {
  453. to_client("Scripts aborted.\n\r");
  454. scripts_menu.reset();
  455. proxy_deactivate();
  456. return;
  457. } else {
  458. switch (md->input[0]) {
  459. case 'T': // Trade
  460. {
  461. script = std::make_shared<TraderDispatch>(*this);
  462. TraderDispatch *ts = static_cast<TraderDispatch *>(&((*script)));
  463. ts->setNotify([this]() { this->proxy_deactivate(); });
  464. // Locate best trades
  465. auto found = galaxy.find_trades(current_sector, false);
  466. if (found.empty()) {
  467. to_client(
  468. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  469. "or no ports around.\n\r");
  470. proxy_deactivate();
  471. return;
  472. }
  473. // sort first?
  474. galaxy.sort_port_pair_type(found);
  475. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  476. BUGZ_LOG(fatal) << "Best: " << found[0].s1 << "," << found[0].s2
  477. << " : " << found[0].type;
  478. // Set parameters
  479. ts->port[0] = found[0].s1;
  480. ts->port[1] = found[0].s2;
  481. ts->type = found[0].type;
  482. ts->trades = found[0].trades;
  483. chain = script;
  484. chain->activate();
  485. return;
  486. } break;
  487. case 'S': {
  488. script = std::make_shared<MoveDispatch>(*this);
  489. MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
  490. md->setNotify([this]() { this->proxy_deactivate(); });
  491. md->move_to = 1;
  492. chain = script;
  493. chain->activate();
  494. return;
  495. } break;
  496. case '!': {
  497. script = std::make_shared<ScriptTerror>(*this);
  498. ScriptTerror *st = static_cast<ScriptTerror *>(&(*script));
  499. st->setNotify([this]() {
  500. script.reset();
  501. this->proxy_deactivate();
  502. });
  503. chain = script;
  504. chain->activate();
  505. return;
  506. } break;
  507. // }
  508. case 'C': {
  509. auto best = galaxy.find_closest(current_sector);
  510. if (best.type != 0) {
  511. std::string text =
  512. str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
  513. best.type % best.s1 % best.s2);
  514. to_client(text);
  515. } else {
  516. to_client("I don't see any best trades.\n\r");
  517. }
  518. } break;
  519. case 'N': {
  520. sector_type s = galaxy.find_nearest_unexplored(current_sector);
  521. if (s != 0) {
  522. std::string text = str(boost::format("Sector: %1%\n\r") % s);
  523. to_client(text);
  524. } else {
  525. to_client("I don't see any unexplored.\n\r");
  526. }
  527. } break;
  528. case 'Q':
  529. chain = main_menu;
  530. main_menu->activate();
  531. return;
  532. break;
  533. }
  534. }
  535. }
  536. proxy_activate();
  537. // And to end scripts, we do .. what exactly?
  538. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  539. // here?? probably do want to destroy scripts here. ;)
  540. // scripts_menu.reset();
  541. // proxy_deactivate();
  542. }
  543. /**
  544. * @brief Setup Config Input
  545. *
  546. * @return DispatchInput*
  547. */
  548. InputDispatch *Director::init_config_input(void) {
  549. InputDispatch *id;
  550. if (config_input) {
  551. // Yes, it has been setup before.
  552. id = dynamic_cast<InputDispatch *>(&(*config_input));
  553. ANSIColor by{1, 33};
  554. ANSIColor cyan{36};
  555. ANSIColor bg{1, 32};
  556. std::string prompt =
  557. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  558. id->prompt = prompt; // "Config => ";
  559. id->numeric = true;
  560. id->max_length = 3;
  561. config_item.clear();
  562. return id;
  563. } else {
  564. // set it up
  565. config_input = std::make_shared<InputDispatch>(*this);
  566. id = static_cast<InputDispatch *>(&(*config_input));
  567. ANSIColor by{1, 33};
  568. ANSIColor cyan{36};
  569. ANSIColor bg{1, 32};
  570. std::string prompt =
  571. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  572. id->prompt = prompt; // "Config => ";
  573. id->numeric = true;
  574. id->max_length = 3;
  575. id->setNotify([this]() { this->config_have_input(); });
  576. config_item.clear();
  577. return id;
  578. }
  579. }
  580. void Director::config_edit(void) {
  581. // display current config
  582. std::string menu_box_color = "\x1b[1;33;44m";
  583. std::string menu_text_color = "\x1b[1;37;44m";
  584. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  585. menu_text_color, 20, 1, true);
  586. for (auto line : abox) {
  587. to_client(line);
  588. }
  589. // to_client("Configuration:\n\r");
  590. int item = 1;
  591. ANSIColor number(COLOR::CYAN);
  592. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  593. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  594. for (auto const &cfg : galaxy.config) {
  595. std::string output =
  596. str(boost::format("%1%%2$2d %3%%4$20s: %5%%6$s%7%\n\r") % number() %
  597. item % key() % cfg.first % value() % cfg.second % reset());
  598. to_client(output);
  599. ++item;
  600. }
  601. std::string message =
  602. number() + "Enter number to edit, " + key() + "blank to exit.\n\r";
  603. // to_client("Enter number to edit, blank to exit.\n\r");
  604. to_client(message);
  605. // setup call to config_input:
  606. InputDispatch *id = init_config_input();
  607. chain = config_input;
  608. id->activate();
  609. // to return to the menu:
  610. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  611. // md->activate();
  612. }
  613. void Director::config_have_input(void) {
  614. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  615. if (config_item.empty()) {
  616. // This is a config menu selection
  617. if (id->input.empty()) {
  618. // We're done here. Return to menu.
  619. chain = main_menu;
  620. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  621. md->activate();
  622. // destroy the input? yes.
  623. config_input.reset();
  624. return;
  625. } else {
  626. int item = sstoi(id->input);
  627. if ((item < 1) || (item > (int)galaxy.config.size())) {
  628. // selection out of range - redisplay config menu
  629. to_client("What? I didn't see that item.\n\r");
  630. config_edit();
  631. return;
  632. } else {
  633. int pos = 1;
  634. const YAML::Node &config = galaxy.config;
  635. for (auto const &c : config) {
  636. if (pos == item) {
  637. // got it!
  638. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  639. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  640. config_item = c.first.as<std::string>();
  641. std::string output =
  642. str(boost::format("%1%%2% : %3%%4%\n\r") % key() % config_item %
  643. value() % galaxy.meta["help"][config_item]);
  644. to_client(output);
  645. id->max_length = 30;
  646. id->numeric = false;
  647. ANSIColor by{1, 33};
  648. ANSIColor cyan{36};
  649. ANSIColor bg{1, 32};
  650. std::string prompt =
  651. by() + "C" + cyan() + "hange to " + bg() + "=>" + reset() + " ";
  652. id->prompt = prompt;
  653. id->activate();
  654. return;
  655. };
  656. ++pos;
  657. }
  658. to_client("What? I didn't find that item?\n\r");
  659. config_edit();
  660. return;
  661. }
  662. }
  663. } else {
  664. // This is a config item edit
  665. if (id->input.empty()) {
  666. to_client("No change.\n\r");
  667. config_edit();
  668. return;
  669. } else {
  670. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  671. galaxy.config[config_item] = id->input;
  672. config_edit();
  673. return;
  674. }
  675. }
  676. }
  677. void Director::have_input(void) {
  678. ++count;
  679. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  680. if (id) {
  681. std::string output =
  682. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  683. to_client("\x1b[0m");
  684. to_client(output);
  685. } else {
  686. proxy_deactivate();
  687. return;
  688. }
  689. if (count > 3) {
  690. proxy_deactivate();
  691. } else {
  692. chain->activate();
  693. }
  694. }
  695. void Director::cim_done(void) {
  696. BUGZ_LOG(info) << "CIM done";
  697. chain = main_menu;
  698. main_menu->activate();
  699. }
  700. void Director::information(void) {
  701. std::string output;
  702. to_client("I currently know the following:\n\r");
  703. output = str(
  704. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  705. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  706. galaxy.meta.size());
  707. to_client(output);
  708. }
  709. void Director::proxy_deactivate(void) {
  710. active = false;
  711. // reset everything back to good state
  712. talk_direct = true;
  713. show_client = true;
  714. chain.reset();
  715. to_client("\n\r");
  716. to_client(current_raw_prompt);
  717. }
  718. /*
  719. Server Line Parsing Routines
  720. */
  721. void Director::SL_cimline(const std::string &line) {
  722. if (line == ": ENDINTERROG") {
  723. SL_parser = nullptr;
  724. return;
  725. }
  726. if (line == ": ") {
  727. // do I need to do anything special here for this?
  728. // Maybe -- We would save special ports that don't show up
  729. // (StarDock/Special) before. We don't know (at this point) if this is
  730. // warps or ports.
  731. return;
  732. }
  733. if (line.empty()) {
  734. SL_parser = nullptr;
  735. return;
  736. }
  737. // parse cimline
  738. // size_t pos = line.find('%');
  739. // std::string work = line;
  740. // if (pos == line.npos) {
  741. if (in(line, "%")) {
  742. // portcim
  743. struct port p = parse_portcim(line);
  744. if (p.sector == 0)
  745. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  746. else
  747. BUGZ_LOG(trace) << "portcim: " << p;
  748. galaxy.add_port(p);
  749. } else {
  750. // warpcim
  751. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  752. auto warps = split(line);
  753. sector_warps sw;
  754. for (auto const &w : warps) {
  755. if (sw.sector == 0) {
  756. sw.sector = stoi(w);
  757. } else {
  758. sw.add(stoi(w));
  759. }
  760. }
  761. BUGZ_LOG(trace) << "warpcim: " << sw;
  762. galaxy.add_warp(sw);
  763. }
  764. }
  765. void Director::SL_thiefline(const std::string &line) {
  766. size_t pos = line.find("Suddenly you're Busted!");
  767. bool busted = pos != line.npos;
  768. if (busted) {
  769. BUGZ_LOG(fatal) << "set bust";
  770. SL_parser = nullptr;
  771. } else {
  772. pos = line.find("(You realize the guards saw you last time!)");
  773. if (pos != line.npos) SL_parser = nullptr;
  774. }
  775. // Are those the two ways to exit from this state?
  776. }
  777. void Director::SL_sectorline(const std::string &line) {
  778. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  779. if (line.empty()) {
  780. SL_parser = nullptr;
  781. } else {
  782. /*
  783. sectorline: [Sector : 926 in The Federation.]
  784. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  785. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  786. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  787. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  788. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  789. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  790. What can we get from Traders : line? Can we get if they are hostile
  791. to us? We need to respond to "is powering up weapons" ... We can
  792. react faster then a person can!
  793. "phil is powering up weapons systems!"
  794. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  795. */
  796. if (in(line, "Sector :")) {
  797. current_sector = stoi(line.substr(10));
  798. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  799. }
  800. if (in(line, "Ports :")) {
  801. std::string port_class;
  802. size_t pos = line.find(", Class ");
  803. if (pos != std::string::npos) {
  804. pos += 8;
  805. int class_ = stoi(line.substr(pos));
  806. BUGZ_LOG(fatal) << "PORT: " << class_;
  807. galaxy.add_port(current_sector, class_);
  808. }
  809. }
  810. if (in(line, "Warps to Sector(s) :")) {
  811. std::string temp = line.substr(20);
  812. replace(temp, " - ", " ");
  813. // unexplored sectors ()
  814. // Should I track these?
  815. replace(temp, "(", "");
  816. replace(temp, ")", "");
  817. sector_warps sw;
  818. auto warps = split(temp);
  819. sw.sector = current_sector;
  820. // what if there is only one warp?
  821. for (auto const &w : warps) {
  822. sw.add(stoi(w));
  823. }
  824. BUGZ_LOG(fatal) << "WARPS: " << sw;
  825. galaxy.add_warp(sw);
  826. }
  827. }
  828. }
  829. void Director::SL_densityline(const std::string &line) {
  830. BUGZ_LOG(fatal) << "densityline: [" << line << "]";
  831. if (line.empty()) {
  832. SL_parser = nullptr;
  833. return;
  834. }
  835. /*
  836. // Ensure this really is a density scan and not something else
  837. if (!in(line, "Sector") || !in(line, "Warps") || !in(line, "NavHaz") ||
  838. !in(line, "Anom")) {
  839. BUGZ_LOG(fatal) << "densityline: Invalid line.";
  840. SL_parser = nullptr;
  841. return;
  842. }
  843. if (not galaxy.meta["density"]) {
  844. galaxy.meta["density"] = YAML::Node();
  845. }
  846. */
  847. /*
  848. 0 1 2 3 4 5 6 7 8 9 10 11 12
  849. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  850. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  851. // Cleaned up line
  852. 0 1 2 3 4 5 6 7 8 9
  853. "Sector 55 ==> 0 Warps 4 NavHaz 0 Anom No"
  854. "Sector 223 ==> 0 Warps 3 NavHaz 0 Anom No"
  855. */
  856. if (in(line, "==>")) {
  857. std::string work = line;
  858. replace(work, ":", "");
  859. bool known = !in(work, "(");
  860. replace(work, "(", "");
  861. replace(work, ")", "");
  862. replace(work, "%", "");
  863. auto dense = split(work);
  864. // Parse our data
  865. sector_type sector = std::stoi(dense.at(1));
  866. uint16_t density = std::stoi(dense.at(3));
  867. uint16_t warps = std::stoi(dense.at(5));
  868. uint16_t navhaz = std::stoi(dense.at(7));
  869. bool anom = in(dense.at(9), "Yes");
  870. struct density d = {sector, density, warps, navhaz, anom, known};
  871. galaxy.dscan.add_scan(d);
  872. // Commit data
  873. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  874. << " density=" << density << " warps=" << warps
  875. << " navhaz=" << navhaz << " anom=" << anom
  876. << " known=" << known << "}";
  877. /*
  878. if (galaxy.meta["density"][sector]) {
  879. galaxy.meta["density"][sector] = YAML::Node();
  880. }
  881. */
  882. galaxy.meta["density"][sector]["density"] = density;
  883. galaxy.meta["density"][sector]["warps"] = warps;
  884. galaxy.meta["density"][sector]["navhaz"] = navhaz;
  885. galaxy.meta["density"][sector]["anom"] = anom;
  886. galaxy.meta["density"][sector]["known"] = known;
  887. // Add a check to see if density is greater than 500
  888. // Add datetime stamp
  889. }
  890. }
  891. void Director::SL_portline(const std::string &line) {
  892. /*
  893. We take blank lines because we start at <Port>.
  894. Otherwise, we trigger on computer port requests.
  895. if (line.empty()) {
  896. SL_parser = nullptr;
  897. return;
  898. }
  899. */
  900. /*
  901. SL: [ Items Status Trading % of max OnBoard]
  902. SL: [ ----- ------ ------- -------- -------]
  903. SL: [Fuel Ore Buying 3000 100% 0]
  904. SL: [Organics Buying 3000 100% 0]
  905. SL: [Equipment Buying 3000 100% 0]
  906. SL: []
  907. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  908. SL: [A Cargo holds : 650 credits / next hold 0]
  909. SL: [B Fighters : 233 credits per fighter 75]
  910. SL: [C Shield Points : 116 credits per point 100]
  911. SL: []
  912. */
  913. // BUGZ_LOG(info) << "portline : " << line;
  914. if (in(line, "%")) {
  915. // size_t pos = line.find('%');
  916. // if (pos != line.npos) {
  917. // Ok, this is a valid portline
  918. std::string work = line;
  919. replace(work, "Fuel Ore", "Fuel");
  920. auto parts = split(work);
  921. if (parts[0] == "Items") return;
  922. char c = tolower(parts[0][0]);
  923. int pos;
  924. char foe[4] = "foe";
  925. for (pos = 0; pos < 3; ++pos) {
  926. if (c == foe[pos]) break;
  927. }
  928. int amount = stoi(parts[2]);
  929. int percent = stoi(parts[3]);
  930. // update port
  931. auto port = galaxy.ports.find(current_sector);
  932. if (port != galaxy.ports.end()) {
  933. port->second.amount[pos] = amount;
  934. port->second.percent[pos] = percent;
  935. }
  936. /*
  937. BUGZ_LOG(fatal) << "portline split:";
  938. for (auto const p : parts) {
  939. BUGZ_LOG(fatal) << p;
  940. }
  941. */
  942. // Here's the end:
  943. if (parts[0] == "Equipment") SL_parser = nullptr;
  944. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  945. }
  946. }
  947. void Director::SL_warpline(const std::string &line) {
  948. if (line.empty()) {
  949. SL_parser = nullptr;
  950. return;
  951. }
  952. // process warp line
  953. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  954. }
  955. void Director::SL_infoline(const std::string &line) {
  956. static int state;
  957. if (line == "<Info>") {
  958. state = 0;
  959. galaxy.meta["info"] = YAML::Node();
  960. }
  961. if (line.empty()) {
  962. ++state;
  963. if (state == 2) {
  964. SL_parser = nullptr;
  965. // clear out the existing ship data
  966. galaxy.meta["ship"] = YAML::Node();
  967. // process the parsed information in meta["info"]
  968. if (galaxy.meta["info"]["Total Holds"]) {
  969. std::string work = galaxy.meta["info"]["Total Holds"].as<std::string>();
  970. replace(work, "Fuel Ore", "Fuel");
  971. auto parts = split(work, " - ");
  972. int total_holds = stoi(parts[0]);
  973. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  974. auto contents = split(parts[1]);
  975. for (auto const &hold : contents) {
  976. auto hold_amount = split(hold, "=");
  977. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  978. std::string key = hold_amount[0];
  979. str_tolower(key);
  980. // equipment = e
  981. // organics = o
  982. // fuel = f
  983. // colonists = c
  984. // empty = empty
  985. if (key != "empty") {
  986. key = key[0];
  987. }
  988. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  989. }
  990. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  991. }
  992. if (galaxy.meta["info"]["Turns to Warp"]) {
  993. int warp_turns = galaxy.meta["info"]["Turns to Warp"].as<int>();
  994. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  995. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  996. }
  997. if (galaxy.meta["info"]["LongRange Scan"]) {
  998. std::string scanner_text =
  999. galaxy.meta["info"]["LongRange Scan"].as<std::string>();
  1000. char scanner = scanner_text[0];
  1001. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  1002. galaxy.meta["ship"]["scanner"] = scanner;
  1003. }
  1004. // turns isn't ship specific
  1005. if (galaxy.meta["info"]["Turns left"]) {
  1006. // OR this could be "Unlimited" !!!
  1007. std::string text = galaxy.meta["info"]["Turns left"].as<std::string>();
  1008. if (text == "Unlimited") {
  1009. galaxy.meta["turns"] = -1;
  1010. } else {
  1011. int turns =
  1012. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  1013. BUGZ_LOG(fatal) << "Turns left: " << turns;
  1014. galaxy.meta["turns"] = turns;
  1015. }
  1016. }
  1017. if (galaxy.meta["info"]["Current Sector"]) {
  1018. int sector = galaxy.meta["info"]["Current Sector"].as<int>();
  1019. BUGZ_LOG(fatal) << "Sector: " << sector;
  1020. // it should already be sector ...
  1021. current_sector = sector;
  1022. }
  1023. if (galaxy.meta["info"]["Credits"]) {
  1024. std::string credit_text =
  1025. galaxy.meta["info"]["Credits"].as<std::string>();
  1026. replace(credit_text, ",", "");
  1027. int credits = stoi(credit_text);
  1028. galaxy.meta["credits"] = credits;
  1029. BUGZ_LOG(fatal) << "Credits: " << credits;
  1030. }
  1031. }
  1032. return;
  1033. }
  1034. // info to parse:
  1035. size_t pos = line.find(" : ");
  1036. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  1037. std::string key = line.substr(0, pos);
  1038. // Ferrengi ships don't have date built
  1039. std::string value = line.substr(pos + 3);
  1040. trim(key);
  1041. trim(value);
  1042. galaxy.meta["info"][key] = value;
  1043. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  1044. }
  1045. }
  1046. void Director::SL_computer_portline(const std::string &line) {
  1047. if (startswith(line, "What sector is the port in?"))
  1048. computer_port_done = false;
  1049. if (line == "I have no information about a port in that sector.") {
  1050. computer_port_sector = 0;
  1051. SL_parser = nullptr;
  1052. return;
  1053. }
  1054. if (!computer_port_done) {
  1055. if (in(line, "Fuel Ore")) computer_port_done = true;
  1056. if (in(line, "Cargo holds")) {
  1057. // If I want to scan the class type 0 ports:
  1058. // computer_port_done = true;
  1059. // otherwise:
  1060. SL_parser = nullptr;
  1061. return;
  1062. }
  1063. }
  1064. if (computer_port_done) {
  1065. if (line.empty()) {
  1066. SL_parser = nullptr;
  1067. return;
  1068. }
  1069. // scan for items of interest
  1070. // SL: [Fuel Ore Buying 810 100% 0]
  1071. // SL: [Organics Buying 856 57% 0]
  1072. // SL: [Equipment Selling 922 44% 0]
  1073. std::string work = line;
  1074. replace(work, "Fuel Ore", "Fuel");
  1075. replace(work, "%", "");
  1076. auto parts = split(work);
  1077. char c = tolower(parts[0][0]);
  1078. int pos;
  1079. char foe[4] = "foe";
  1080. for (pos = 0; pos < 3; ++pos) {
  1081. if (c == foe[pos]) break;
  1082. }
  1083. int amount = stoi(parts[2]);
  1084. int percent = stoi(parts[3]);
  1085. // update port
  1086. auto port = galaxy.ports.find(computer_port_sector);
  1087. if (port != galaxy.ports.end()) {
  1088. BUGZ_LOG(info) << "COM PORT " << computer_port_sector << " " << c << " "
  1089. << amount << " " << percent;
  1090. port->second.amount[pos] = amount;
  1091. port->second.percent[pos] = percent;
  1092. }
  1093. }
  1094. }