director.cpp 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365
  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(fatal) << "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. BUGZ_LOG(fatal) << "no meta port_CIM value seen.";
  319. }
  320. chain = main_menu;
  321. main_menu->activate();
  322. /*
  323. // Using InputDispatch -- and see have_input
  324. std::shared_ptr<Dispatch> readline = std::make_shared<InputDispatch>(*this);
  325. chain = readline;
  326. InputDispatch *id = static_cast<InputDispatch *>(&(*readline));
  327. id->prompt = "\x1b[0m\x1b[1;33;44m-=>\x1b[0m \x1b[1;37;44m";
  328. id->max_length = 15;
  329. id->setNotify([this]() { this->have_input(); });
  330. readline->activate();
  331. */
  332. }
  333. void Director::menu_choice(void) {
  334. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  335. if (md) {
  336. if (md->input.empty()) {
  337. to_client("Menu aborted.\n\r");
  338. proxy_deactivate();
  339. return;
  340. } else {
  341. switch (md->input[0]) {
  342. case 'C': // configure
  343. config_edit();
  344. return;
  345. break;
  346. case 'D':
  347. case 'T': // display trading report
  348. {
  349. auto pptv = galaxy.find_best_trades();
  350. std::string output;
  351. galaxy.sort_port_pair_type(pptv);
  352. int max_display = 20;
  353. if (galaxy.config.contains("display_lines"))
  354. max_display = galaxy.config["display_lines"].get<int>();
  355. else
  356. galaxy.config["display_lines"] = max_display;
  357. if ((max_display <= 0) || (max_display > 255)) {
  358. max_display = 255;
  359. galaxy.config["display_lines"] = 255;
  360. }
  361. const int per_line = 5;
  362. int count = 0;
  363. int line = 0;
  364. std::string display_line;
  365. ANSIColor by{1, 33}; // yellow
  366. ANSIColor cyan{36}; // cyan
  367. ANSIColor bg{1, 32}; // bright green
  368. ANSIColor bb{1, 34}; // bright blue
  369. for (auto const &ppt : pptv) {
  370. output =
  371. str(boost::format("%1%%2$5d%3%:%4%%5$-5d%3%(%6%%7$d%3%) ") %
  372. by() % ppt.s1 % cyan() % bg() % ppt.s2 % bb() % ppt.type);
  373. display_line.append(output);
  374. ++count;
  375. if (count == per_line) {
  376. count = 0;
  377. display_line.append("\n\r");
  378. to_client(display_line);
  379. display_line.clear();
  380. ++line;
  381. }
  382. if (line == max_display) break;
  383. }
  384. if (count != 0) {
  385. display_line.append("\n\r");
  386. to_client(display_line);
  387. display_line.clear();
  388. }
  389. // We got < 5 lines, and max_display is > 5. Offer suggestion:
  390. if ((line < 5) && (max_display > 5)) {
  391. // suggestion:
  392. to_client(
  393. "HINT: For more lines, try reducing the burnt_percent?\n\r");
  394. }
  395. } break;
  396. case 'E': // Export Data/Save
  397. to_client("Saving...");
  398. galaxy.save();
  399. to_client("\rSaved....\n\r");
  400. break;
  401. case 'I': // Information
  402. information();
  403. break;
  404. case 'P': // Port CIM
  405. // Since we're adding/updating, we don't lose our
  406. // type 0 ports. Type 9 stays at 9.
  407. galaxy.meta["port_CIM"] = (int)time_t_now();
  408. chain = cim;
  409. to_server("^RQ", "Director::Port CIM");
  410. {
  411. std::string text = str(boost::format("Port CIM Report (%1%)\n\r") %
  412. galaxy.ports.size());
  413. // to_client("Port CIM Report\n\r");
  414. to_client(text);
  415. }
  416. chain->activate();
  417. return;
  418. break;
  419. case 'W': // Warp CIM
  420. chain = cim;
  421. to_server("^IQ", "Director::Warp CIM");
  422. {
  423. std::string text = str(boost::format("Warp CIM Report (%1%)\n\r") %
  424. galaxy.warps.size());
  425. // to_client("Warp CIM Report\n\r");
  426. to_client(text);
  427. }
  428. chain->activate();
  429. return;
  430. break;
  431. // case 'T': // Trading Report
  432. // break;
  433. case 'S': // Scripts
  434. {
  435. init_scripts_menu();
  436. chain = scripts_menu;
  437. chain->activate();
  438. return;
  439. } break;
  440. case 'X': // Exit
  441. proxy_deactivate();
  442. return;
  443. }
  444. /*
  445. std::string text = str(
  446. boost::format("Back from Menu [%1%] was selected.\n\r") %
  447. md->input);
  448. to_client(text);
  449. */
  450. md->activate();
  451. }
  452. }
  453. }
  454. MenuDispatch *Director::init_scripts_menu(void) {
  455. MenuDispatch *md;
  456. if (scripts_menu) {
  457. md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  458. return md;
  459. } else {
  460. scripts_menu = std::make_shared<MenuDispatch>(*this, "MenuScripts");
  461. md = static_cast<MenuDispatch *>(&(*scripts_menu));
  462. md->menu_box_color = "\x1b[0;32;40m";
  463. md->menu_text_color = "\x1b[1;32;40m";
  464. md->menu_title = "Scripts Menu";
  465. md->menu_options_color = "\x1b[1;32;40m";
  466. md->lazy = false;
  467. ANSIColor by{1, 33};
  468. ANSIColor cyan{36};
  469. ANSIColor bg{1, 32};
  470. std::string prompt = by() + "S" + cyan() + "cript " + by() + "M" + cyan() +
  471. "enu " + bg() + "=>" + reset() + " ";
  472. md->menu_prompt = prompt; // " SCRIPT : ";
  473. md->menu = {{"!", "Terror"},
  474. {"T", "Trade"},
  475. {"S", "Safe Move"},
  476. {"C", "Closest Trade"},
  477. {"N", "Nearest Unexplored"},
  478. {"V", "Voyager Explorer"},
  479. {"E", "Explorer"},
  480. {"U", "Upgrade Planet Pants"},
  481. {"X", "Exit Scripts"}};
  482. md->setNotify([this]() { this->scripts_done(); });
  483. return md;
  484. }
  485. }
  486. void Director::scripts_done(void) {
  487. // Was script selected? If so, run it!
  488. // otherwise, back to the menu we go...
  489. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*scripts_menu));
  490. if (md) {
  491. if (md->input.empty()) {
  492. to_client("Scripts aborted.\n\r");
  493. scripts_menu.reset();
  494. proxy_deactivate();
  495. return;
  496. } else {
  497. switch (md->input[0]) {
  498. case 'T': // Trade
  499. {
  500. script = std::make_shared<TraderDispatch>(*this, "TraderDirector");
  501. TraderDispatch *ts = static_cast<TraderDispatch *>(&((*script)));
  502. ts->setNotify([this]() { this->proxy_deactivate(); });
  503. // Locate best trades
  504. auto found = galaxy.find_trades(current_sector, false);
  505. if (found.empty()) {
  506. to_client(
  507. "No Trades found. Port burnt (CONFIG: lower burnt_percent?) "
  508. "or no ports around.\n\r");
  509. proxy_deactivate();
  510. return;
  511. }
  512. // sort first?
  513. galaxy.sort_port_pair_type(found);
  514. BUGZ_LOG(fatal) << "Found " << found.size() << " possible trade(s).";
  515. BUGZ_LOG(fatal) << "Best: " << found[0].s1 << "," << found[0].s2
  516. << " : " << found[0].type;
  517. // Set parameters
  518. ts->port[0] = found[0].s1;
  519. ts->port[1] = found[0].s2;
  520. ts->type = found[0].type;
  521. ts->trades = found[0].trades;
  522. chain = script;
  523. chain->activate();
  524. return;
  525. } break;
  526. case 'S': {
  527. script = std::make_shared<MoveDispatch>(*this, "MoveDirector");
  528. MoveDispatch *md = static_cast<MoveDispatch *>(&((*script)));
  529. md->setNotify([this]() { this->proxy_deactivate(); });
  530. md->move_to = 1;
  531. chain = script;
  532. chain->activate();
  533. return;
  534. } break;
  535. case '!': {
  536. script = std::make_shared<ScriptTerror>(*this, "TerrorDirector");
  537. ScriptTerror *st = static_cast<ScriptTerror *>(&(*script));
  538. st->setNotify([this]() {
  539. script.reset();
  540. this->proxy_deactivate();
  541. });
  542. chain = script;
  543. chain->activate();
  544. return;
  545. } break;
  546. // }
  547. case 'C': {
  548. auto best = galaxy.find_closest(current_sector);
  549. if (best.type != 0) {
  550. std::string text =
  551. str(boost::format("Best/Closest: %1% with %2% & %3%\n\r") %
  552. best.type % best.s1 % best.s2);
  553. to_client(text);
  554. } else {
  555. to_client("I don't see any best trades.\n\r");
  556. }
  557. } break;
  558. case 'N': {
  559. sector_type s = galaxy.find_nearest_unexplored(current_sector);
  560. if (s != 0) {
  561. std::string text = str(boost::format("Sector: %1%\n\r") % s);
  562. to_client(text);
  563. } else {
  564. to_client("I don't see any unexplored.\n\r");
  565. }
  566. } break;
  567. case 'V': {
  568. script = std::make_shared<ScriptVoyager>(*this, "VoyagerDirector");
  569. ScriptVoyager *sv = static_cast<ScriptVoyager *>(&(*script));
  570. sv->setNotify([this]() {
  571. script.reset();
  572. this->proxy_deactivate();
  573. });
  574. chain = script;
  575. chain->activate();
  576. return;
  577. } break;
  578. case 'E': {
  579. script = std::make_shared<ScriptExplore>(*this, "ExploreDirector");
  580. ScriptExplore *se = static_cast<ScriptExplore *>(&(*script));
  581. se->setNotify([this]() {
  582. script.reset();
  583. this->proxy_deactivate();
  584. });
  585. chain = script;
  586. chain->activate();
  587. return;
  588. } break;
  589. case 'U': {
  590. script = std::make_shared<ScriptPlanet>(*this, "PlanetDirector");
  591. ScriptPlanet *sp = static_cast<ScriptPlanet *>(&(*script));
  592. sp->setNotify([this]() {
  593. script.reset();
  594. this->proxy_deactivate();
  595. });
  596. chain = script;
  597. chain->activate();
  598. return;
  599. } break;
  600. case 'Q':
  601. chain = main_menu;
  602. main_menu->activate();
  603. return;
  604. break;
  605. }
  606. }
  607. }
  608. proxy_activate();
  609. // And to end scripts, we do .. what exactly?
  610. // DEBUG: Ok, why does everything work OK if I reset the scripts_menu
  611. // here?? probably do want to destroy scripts here. ;)
  612. // scripts_menu.reset();
  613. // proxy_deactivate();
  614. }
  615. /**
  616. * @brief Setup Config Input
  617. *
  618. * @return DispatchInput*
  619. */
  620. InputDispatch *Director::init_config_input(void) {
  621. InputDispatch *id;
  622. if (config_input) {
  623. // Yes, it has been setup before.
  624. id = dynamic_cast<InputDispatch *>(&(*config_input));
  625. ANSIColor by{1, 33};
  626. ANSIColor cyan{36};
  627. ANSIColor bg{1, 32};
  628. std::string prompt =
  629. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  630. id->prompt = prompt; // "Config => ";
  631. id->numeric = true;
  632. id->max_length = 3;
  633. config_item.clear();
  634. return id;
  635. } else {
  636. // set it up
  637. config_input = std::make_shared<InputDispatch>(*this, "InputDirector");
  638. id = static_cast<InputDispatch *>(&(*config_input));
  639. ANSIColor by{1, 33};
  640. ANSIColor cyan{36};
  641. ANSIColor bg{1, 32};
  642. std::string prompt =
  643. by() + "C" + cyan() + "onfig " + bg() + "=>" + reset() + " ";
  644. id->prompt = prompt; // "Config => ";
  645. id->numeric = true;
  646. id->max_length = 3;
  647. id->setNotify([this]() { this->config_have_input(); });
  648. config_item.clear();
  649. return id;
  650. }
  651. }
  652. void Director::config_edit(void) {
  653. // display current config
  654. std::string menu_box_color = "\x1b[1;33;44m";
  655. std::string menu_text_color = "\x1b[1;37;44m";
  656. auto abox = Boxes::alert(" Configuration: ", menu_box_color,
  657. menu_text_color, 20, 1, true);
  658. for (auto line : abox) {
  659. to_client(line);
  660. }
  661. // to_client("Configuration:\n\r");
  662. int item = 1;
  663. ANSIColor number(COLOR::CYAN);
  664. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  665. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  666. for (auto const &cfg : galaxy.config.items()) {
  667. // for (auto const &cfg : galaxy.config) {
  668. std::string output =
  669. str(boost::format("%1%%2$2d %3%%4$20s: %5%%6$s%7%\n\r") % number() %
  670. item % key() % cfg.key() % value() % cfg.value() % reset());
  671. to_client(output);
  672. ++item;
  673. }
  674. std::string message =
  675. number() + "Enter number to edit, " + key() + "blank to exit.\n\r";
  676. // to_client("Enter number to edit, blank to exit.\n\r");
  677. to_client(message);
  678. // setup call to config_input:
  679. InputDispatch *id = init_config_input();
  680. chain = config_input;
  681. id->activate();
  682. // to return to the menu:
  683. // MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  684. // md->activate();
  685. }
  686. void Director::config_have_input(void) {
  687. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*config_input));
  688. if (config_item.empty()) {
  689. // This is a config menu selection
  690. if (id->input.empty()) {
  691. // We're done here. Return to menu.
  692. chain = main_menu;
  693. MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
  694. md->activate();
  695. // destroy the input? yes.
  696. config_input.reset();
  697. return;
  698. } else {
  699. int item = sstoi(id->input);
  700. if ((item < 1) || (item > (int)galaxy.config.size())) {
  701. // selection out of range - redisplay config menu
  702. to_client("What? I didn't see that item.\n\r");
  703. config_edit();
  704. return;
  705. } else {
  706. int pos = 1;
  707. for (auto const &c : galaxy.config.items()) {
  708. if (pos == item) {
  709. // got it!
  710. ANSIColor key(COLOR::GREEN, ATTR::BOLD);
  711. ANSIColor value(COLOR::BLUE, ATTR::BOLD);
  712. config_item = c.key();
  713. std::string output =
  714. str(boost::format("%1%%2% : %3%%4%\n\r") % key() % config_item %
  715. value() % galaxy.meta["help"][config_item]);
  716. to_client(output);
  717. id->max_length = 30;
  718. id->numeric = false;
  719. ANSIColor by{1, 33};
  720. ANSIColor cyan{36};
  721. ANSIColor bg{1, 32};
  722. std::string prompt =
  723. by() + "C" + cyan() + "hange to " + bg() + "=>" + reset() + " ";
  724. id->prompt = prompt;
  725. id->activate();
  726. return;
  727. };
  728. ++pos;
  729. }
  730. to_client("What? I didn't find that item?\n\r");
  731. config_edit();
  732. return;
  733. }
  734. }
  735. } else {
  736. // This is a config item edit
  737. if (id->input.empty()) {
  738. to_client("No change.\n\r");
  739. config_edit();
  740. return;
  741. } else {
  742. BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
  743. galaxy.config[config_item] = id->input;
  744. config_edit();
  745. return;
  746. }
  747. }
  748. }
  749. void Director::have_input(void) {
  750. ++count;
  751. InputDispatch *id = dynamic_cast<InputDispatch *>(&(*chain));
  752. if (id) {
  753. std::string output =
  754. str(boost::format("Your Input (%2%): [%1%]\n\r") % id->input % count);
  755. to_client("\x1b[0m");
  756. to_client(output);
  757. } else {
  758. proxy_deactivate();
  759. return;
  760. }
  761. if (count > 3) {
  762. proxy_deactivate();
  763. } else {
  764. chain->activate();
  765. }
  766. }
  767. void Director::cim_done(void) {
  768. BUGZ_LOG(info) << "CIM done";
  769. chain = main_menu;
  770. main_menu->activate();
  771. }
  772. void Director::information(void) {
  773. std::string output;
  774. to_client("I currently know the following:\n\r");
  775. output = str(
  776. boost::format("Ports: %1%, Sectors: %2%, Config: %3%, Meta: %4%\n\r") %
  777. galaxy.ports.size() % galaxy.warps.size() % galaxy.config.size() %
  778. galaxy.meta.size());
  779. to_client(output);
  780. }
  781. void Director::proxy_deactivate(void) {
  782. active = false;
  783. // reset everything back to good state
  784. talk_direct = true;
  785. show_client = true;
  786. chain.reset();
  787. to_client("\n\r");
  788. to_client(current_raw_prompt);
  789. }
  790. /*
  791. Server Line Parsing Routines
  792. */
  793. void Director::SL_cimline(const std::string &line) {
  794. if (line == ": ENDINTERROG") {
  795. SL_parser = nullptr;
  796. return;
  797. }
  798. if (line == ": ") {
  799. // do I need to do anything special here for this?
  800. // Maybe -- We would save special ports that don't show up
  801. // (StarDock/Special) before. We don't know (at this point) if this is
  802. // warps or ports.
  803. return;
  804. }
  805. if (line.empty()) {
  806. SL_parser = nullptr;
  807. return;
  808. }
  809. // parse cimline
  810. // size_t pos = line.find('%');
  811. // std::string work = line;
  812. // if (pos == line.npos) {
  813. if (in(line, "%")) {
  814. // portcim
  815. struct port p = parse_portcim(line);
  816. if (p.sector == 0)
  817. BUGZ_LOG(fatal) << "portcim: FAIL [" << line << "]";
  818. else
  819. BUGZ_LOG(trace) << "portcim: " << p;
  820. galaxy.add_port(p);
  821. } else {
  822. // warpcim
  823. // BUGZ_LOG(fatal) << "warpcim: [" << line << "]";
  824. auto warps = split(line);
  825. sector_warps sw;
  826. for (auto const &w : warps) {
  827. if (sw.sector == 0) {
  828. sw.sector = stoi(w);
  829. } else {
  830. sw.add(stoi(w));
  831. }
  832. }
  833. BUGZ_LOG(trace) << "warpcim: " << sw;
  834. galaxy.add_warp(sw);
  835. }
  836. }
  837. void Director::SL_thiefline(const std::string &line) {
  838. size_t pos = line.find("Suddenly you're Busted!");
  839. bool busted = pos != line.npos;
  840. if (busted) {
  841. BUGZ_LOG(fatal) << "set bust";
  842. SL_parser = nullptr;
  843. } else {
  844. pos = line.find("(You realize the guards saw you last time!)");
  845. if (pos != line.npos) SL_parser = nullptr;
  846. }
  847. // Are those the two ways to exit from this state?
  848. }
  849. void Director::SL_sectorline(const std::string &line) {
  850. BUGZ_LOG(fatal) << "sectorline: [" << line << "]";
  851. if (line.empty()) {
  852. SL_parser = nullptr;
  853. } else {
  854. /*
  855. sectorline: [Sector : 926 in The Federation.]
  856. sectorline: [Beacon : FedSpace, FedLaw Enforced]
  857. sectorline: [Ports : Stargate Alpha I, Class 9 (Special) (StarDock)]
  858. sectorline: [Traders : Civilian phil, w/ 30 ftrs,]
  859. sectorline: [ in Star Stomper (Sverdlov Merchant Cruiser)]
  860. sectorline: [Warps to Sector(s) : 70 - 441 - 575 - 600 - 629 - 711]
  861. sectorline: [Warps to Sector(s) : 70 - (475) - 569]
  862. What can we get from Traders : line? Can we get if they are hostile
  863. to us? We need to respond to "is powering up weapons" ... We can
  864. react faster then a person can!
  865. "phil is powering up weapons systems!"
  866. Also the auto-attack ones Ferrengi -- we need to auto-respond Retreat.
  867. */
  868. if (in(line, "Sector :")) {
  869. current_sector = stoi(line.substr(10));
  870. BUGZ_LOG(warning) << "SECTOR: " << current_sector;
  871. }
  872. if (in(line, "Ports :")) {
  873. std::string port_class;
  874. size_t pos = line.find(", Class ");
  875. if (pos != std::string::npos) {
  876. pos += 8;
  877. int class_ = stoi(line.substr(pos));
  878. BUGZ_LOG(fatal) << "PORT: " << class_;
  879. galaxy.add_port(current_sector, class_);
  880. }
  881. }
  882. if (in(line, "Warps to Sector(s) :")) {
  883. std::string temp = line.substr(20);
  884. replace(temp, " - ", " ");
  885. // unexplored sectors ()
  886. // Should I track these?
  887. replace(temp, "(", "");
  888. replace(temp, ")", "");
  889. sector_warps sw;
  890. auto warps = split(temp);
  891. sw.sector = current_sector;
  892. // what if there is only one warp?
  893. for (auto const &w : warps) {
  894. sw.add(stoi(w));
  895. }
  896. BUGZ_LOG(fatal) << "WARPS: " << sw;
  897. galaxy.add_warp(sw);
  898. }
  899. }
  900. }
  901. void Director::SL_densityline(const std::string &line) {
  902. BUGZ_LOG(fatal) << "densityline: [" << line << "]";
  903. if (line.empty()) {
  904. SL_parser = nullptr;
  905. return;
  906. }
  907. /*
  908. // Ensure this really is a density scan and not something else
  909. if (!in(line, "Sector") || !in(line, "Warps") || !in(line, "NavHaz") ||
  910. !in(line, "Anom")) {
  911. BUGZ_LOG(fatal) << "densityline: Invalid line.";
  912. SL_parser = nullptr;
  913. return;
  914. }
  915. if (not galaxy.meta["density"]) {
  916. galaxy.meta["density"] = YAML::Node();
  917. }
  918. */
  919. /*
  920. 0 1 2 3 4 5 6 7 8 9 10 11 12
  921. "Sector 55 ==> 0 Warps : 4 NavHaz : 0% Anom : No"
  922. "Sector ( 223) ==> 0 Warps : 3 NavHaz : 0% Anom : No"
  923. SL: [Sector ( 1704) ==> 10,350 Warps : 4 NavHaz : 0% Anom :
  924. No]
  925. */
  926. if (in(line, "==>")) {
  927. std::string work = line;
  928. replace(work, ":", "");
  929. bool known = !in(work, "(");
  930. replace(work, "(", "");
  931. replace(work, ")", "");
  932. replace(work, "%", "");
  933. replace(work, ",", "");
  934. auto dense = split(work);
  935. // Parse our data
  936. sector_type sector = std::stoi(dense.at(1));
  937. uint16_t density = std::stoi(dense.at(3));
  938. uint16_t warps = std::stoi(dense.at(5));
  939. uint16_t navhaz = std::stoi(dense.at(7));
  940. bool anom = in(dense.at(9), "Yes");
  941. struct density d = {sector, density, warps, navhaz, anom, known};
  942. galaxy.dscan.add_scan(d);
  943. // Commit data
  944. BUGZ_LOG(warning) << "densityline: {sector=" << sector
  945. << " density=" << density << " warps=" << warps
  946. << " navhaz=" << navhaz << " anom=" << anom
  947. << " known=" << known << "}";
  948. /*
  949. if (galaxy.meta["density"][sector]) {
  950. galaxy.meta["density"][sector] = YAML::Node();
  951. }
  952. */
  953. // what(): [json.exception.type_error.305] cannot use operator[] with a
  954. // numeric argument with object numeric argument with object
  955. std::string sector_text = std::to_string(sector);
  956. galaxy.meta["_density"][sector_text]["density"] = density;
  957. galaxy.meta["_density"][sector_text]["warps"] = warps;
  958. galaxy.meta["_density"][sector_text]["navhaz"] = navhaz;
  959. galaxy.meta["_density"][sector_text]["anom"] = anom;
  960. galaxy.meta["_density"][sector_text]["known"] = known;
  961. // Add a check to see if density is greater than 500
  962. // Add datetime stamp
  963. }
  964. }
  965. void Director::SL_portline(const std::string &line) {
  966. /*
  967. We take blank lines because we start at <Port>.
  968. Otherwise, we trigger on computer port requests.
  969. if (line.empty()) {
  970. SL_parser = nullptr;
  971. return;
  972. }
  973. */
  974. /*
  975. SL: [ Items Status Trading % of max OnBoard]
  976. SL: [ ----- ------ ------- -------- -------]
  977. SL: [Fuel Ore Buying 3000 100% 0]
  978. SL: [Organics Buying 3000 100% 0]
  979. SL: [Equipment Buying 3000 100% 0]
  980. SL: []
  981. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  982. SL: [A Cargo holds : 650 credits / next hold 0]
  983. SL: [B Fighters : 233 credits per fighter 75]
  984. SL: [C Shield Points : 116 credits per point 100]
  985. SL: []
  986. */
  987. // BUGZ_LOG(info) << "portline : " << line;
  988. if (in(line, "%")) {
  989. // size_t pos = line.find('%');
  990. // if (pos != line.npos) {
  991. // Ok, this is a valid portline
  992. std::string work = line;
  993. replace(work, "Fuel Ore", "Fuel");
  994. auto parts = split(work);
  995. if (parts[0] == "Items") return;
  996. char c = tolower(parts[0][0]);
  997. int pos;
  998. char foe[4] = "foe";
  999. for (pos = 0; pos < 3; ++pos) {
  1000. if (c == foe[pos]) break;
  1001. }
  1002. int amount = stoi(parts[2]);
  1003. int percent = stoi(parts[3]);
  1004. // update port
  1005. auto port = galaxy.ports.find(current_sector);
  1006. if (port != galaxy.ports.end()) {
  1007. port->second.amount[pos] = amount;
  1008. port->second.percent[pos] = percent;
  1009. }
  1010. /*
  1011. BUGZ_LOG(fatal) << "portline split:";
  1012. for (auto const p : parts) {
  1013. BUGZ_LOG(fatal) << p;
  1014. }
  1015. */
  1016. // Here's the end:
  1017. if (parts[0] == "Equipment") SL_parser = nullptr;
  1018. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  1019. }
  1020. }
  1021. void Director::SL_warpline(const std::string &line) {
  1022. if (line.empty()) {
  1023. SL_parser = nullptr;
  1024. return;
  1025. }
  1026. // process warp line
  1027. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  1028. }
  1029. void Director::SL_infoline(const std::string &line) {
  1030. static int state;
  1031. if (line == "<Info>") {
  1032. state = 0;
  1033. galaxy.meta["info"] = json();
  1034. }
  1035. if (line.empty()) {
  1036. ++state;
  1037. if (state == 2) {
  1038. SL_parser = nullptr;
  1039. // clear out the existing ship data
  1040. galaxy.meta["ship"] = json();
  1041. // process the parsed information in meta["info"]
  1042. if (galaxy.meta["info"].contains("Total Holds")) {
  1043. std::string work = galaxy.meta["info"]["Total Holds"];
  1044. replace(work, "Fuel Ore", "Fuel");
  1045. auto parts = split(work, " - ");
  1046. int total_holds = stoi(parts[0]);
  1047. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  1048. auto contents = split(parts[1]);
  1049. for (auto const &hold : contents) {
  1050. auto hold_amount = split(hold, "=");
  1051. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  1052. std::string key = hold_amount[0];
  1053. str_tolower(key);
  1054. // equipment = e
  1055. // organics = o
  1056. // fuel = f
  1057. // colonists = c
  1058. // empty = empty
  1059. if (key != "empty") {
  1060. key = key[0];
  1061. }
  1062. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  1063. }
  1064. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  1065. }
  1066. if (galaxy.meta["info"].contains("Turns to Warp")) {
  1067. // Why is this saying that this is a string?
  1068. int warp_turns = sstoi(json_str(galaxy.meta["info"]["Turns to Warp"]));
  1069. BUGZ_LOG(fatal) << "Turns to Warp: " << warp_turns;
  1070. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  1071. }
  1072. if (galaxy.meta["info"].contains("LongRange Scan")) {
  1073. std::string scanner_text =
  1074. galaxy.meta["info"]["LongRange Scan"].get<std::string>();
  1075. char scanner = scanner_text[0];
  1076. BUGZ_LOG(fatal) << "Scanner: " << scanner;
  1077. galaxy.meta["ship"]["scanner"] = scanner;
  1078. }
  1079. // turns isn't ship specific
  1080. if (galaxy.meta["info"].contains("Turns left")) {
  1081. // OR this could be "Unlimited" !!!
  1082. std::string text = galaxy.meta["info"]["Turns left"];
  1083. if (text == "Unlimited") {
  1084. galaxy.meta["turns"] = -1;
  1085. } else {
  1086. int turns =
  1087. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  1088. BUGZ_LOG(fatal) << "Turns left: " << turns;
  1089. galaxy.meta["turns"] = turns;
  1090. }
  1091. }
  1092. if (galaxy.meta["info"].contains("Current Sector")) {
  1093. int sector = sstoi(json_str(galaxy.meta["info"]["Current Sector"]));
  1094. BUGZ_LOG(fatal) << "Sector: " << sector;
  1095. // it should already be sector ...
  1096. current_sector = sector;
  1097. }
  1098. if (galaxy.meta["info"].contains("Credits")) {
  1099. std::string credit_text = galaxy.meta["info"]["Credits"];
  1100. replace(credit_text, ",", "");
  1101. int credits = stoi(credit_text);
  1102. galaxy.meta["credits"] = credits;
  1103. BUGZ_LOG(fatal) << "Credits: " << credits;
  1104. }
  1105. }
  1106. return;
  1107. }
  1108. // info to parse:
  1109. size_t pos = line.find(" : ");
  1110. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  1111. std::string key = line.substr(0, pos);
  1112. // Ferrengi ships don't have date built
  1113. std::string value = line.substr(pos + 3);
  1114. trim(key);
  1115. trim(value);
  1116. galaxy.meta["info"][key] = value;
  1117. BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
  1118. }
  1119. // [Corp # 1, Galaxy Stomping, Inc.]
  1120. if (startswith(line, "Corp ")) {
  1121. pos = line.find(", ");
  1122. if (pos != line.npos) {
  1123. galaxy.meta["info"]["Corp"] = line.substr(pos + 2);
  1124. }
  1125. }
  1126. }
  1127. void Director::SL_computer_portline(const std::string &line) {
  1128. if (startswith(line, "What sector is the port in?"))
  1129. computer_port_done = false;
  1130. if (line == "I have no information about a port in that sector.") {
  1131. computer_port_sector = 0;
  1132. SL_parser = nullptr;
  1133. return;
  1134. }
  1135. if (!computer_port_done) {
  1136. if (in(line, "Fuel Ore")) computer_port_done = true;
  1137. if (in(line, "Cargo holds")) {
  1138. // If I want to scan the class type 0 ports:
  1139. // computer_port_done = true;
  1140. // otherwise:
  1141. SL_parser = nullptr;
  1142. return;
  1143. }
  1144. }
  1145. if (computer_port_done) {
  1146. if (line.empty()) {
  1147. SL_parser = nullptr;
  1148. return;
  1149. }
  1150. // scan for items of interest
  1151. // SL: [Fuel Ore Buying 810 100% 0]
  1152. // SL: [Organics Buying 856 57% 0]
  1153. // SL: [Equipment Selling 922 44% 0]
  1154. std::string work = line;
  1155. replace(work, "Fuel Ore", "Fuel");
  1156. replace(work, "%", "");
  1157. auto parts = split(work);
  1158. char c = tolower(parts[0][0]);
  1159. int pos;
  1160. char foe[4] = "foe";
  1161. for (pos = 0; pos < 3; ++pos) {
  1162. if (c == foe[pos]) break;
  1163. }
  1164. int amount = stoi(parts[2]);
  1165. int percent = stoi(parts[3]);
  1166. // update port
  1167. auto port = galaxy.ports.find(computer_port_sector);
  1168. if (port != galaxy.ports.end()) {
  1169. BUGZ_LOG(info) << "COM PORT " << computer_port_sector << " " << c << " "
  1170. << amount << " " << percent;
  1171. port->second.amount[pos] = amount;
  1172. port->second.percent[pos] = percent;
  1173. }
  1174. }
  1175. }
  1176. void Director::SL_planetline(const std::string &line) {
  1177. if (line == "Corporate command [TL=00:00:00]:[344] (?=Help)? Q" ||
  1178. line == "Computer command [TL=00:00:00]:[344] (?=Help)? Q") {
  1179. SL_parser = nullptr;
  1180. return;
  1181. }
  1182. if (in(line, "Class ") &&
  1183. (in(line, "Level ") || (endswith(line, "No Citadel")))) {
  1184. int level;
  1185. char c;
  1186. sector_type sector;
  1187. int number;
  1188. std::string name;
  1189. std::string work = line;
  1190. size_t pos = work.find('#');
  1191. std::string temp = work.substr(0, pos);
  1192. trim(temp);
  1193. sector = sstoi(temp);
  1194. work = work.substr(pos + 1);
  1195. number = sstoi(work);
  1196. pos = work.find(' ');
  1197. work = work.substr(pos + 1);
  1198. trim(work);
  1199. if (endswith(work, "No Citadel")) {
  1200. level = 0;
  1201. } else {
  1202. pos = work.rfind("Level ");
  1203. temp = work.substr(pos + 6);
  1204. level = sstoi(temp);
  1205. }
  1206. pos = work.rfind("Class ");
  1207. temp = work.substr(pos + 6);
  1208. c = temp[0];
  1209. work = work.substr(0, pos);
  1210. trim(work);
  1211. name = work;
  1212. BUGZ_LOG(warning) << (int)sector << " # " << number << " Class " << c
  1213. << " Level " << level << " name: [" << name << "]";
  1214. planet p{sector, number, level, name, c};
  1215. galaxy.planets[number] = p;
  1216. }
  1217. /*
  1218. SL: [ 344 #4 Enjoy the Silence Class M, Earth Type Level 3] SL:
  1219. [ --- (4M) 1T 64 25 14T 693 277 2T 10M] SL: [
  1220. 344 #5 High There! Class L, Mountainous Level 2]
  1221. SL: [ --- (5M) 2T 0 6 25T 100 112 2T 6M]
  1222. ...
  1223. SL: [ --- (9M) 3T 64 31 39T 793 389 4T ---]
  1224. */
  1225. }