director.cpp 41 KB

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