director.cpp 40 KB

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