director.cpp 41 KB

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