director.cpp 41 KB

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