director.cpp 36 KB

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