director.cpp 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373
  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. std::string sector_text = std::to_string(sector);
  961. galaxy.meta["_density"][sector_text]["density"] = density;
  962. galaxy.meta["_density"][sector_text]["warps"] = warps;
  963. galaxy.meta["_density"][sector_text]["navhaz"] = navhaz;
  964. galaxy.meta["_density"][sector_text]["anom"] = anom;
  965. galaxy.meta["_density"][sector_text]["known"] = known;
  966. // Add a check to see if density is greater than 500
  967. // Add datetime stamp
  968. }
  969. }
  970. void Director::SL_portline(const std::string &line) {
  971. /*
  972. We take blank lines because we start at <Port>.
  973. Otherwise, we trigger on computer port requests.
  974. if (line.empty()) {
  975. SL_parser = nullptr;
  976. return;
  977. }
  978. */
  979. /*
  980. SL: [ Items Status Trading % of max OnBoard]
  981. SL: [ ----- ------ ------- -------- -------]
  982. SL: [Fuel Ore Buying 3000 100% 0]
  983. SL: [Organics Buying 3000 100% 0]
  984. SL: [Equipment Buying 3000 100% 0]
  985. SL: []
  986. SL: [Commerce report for: 03:51:56 PM Mon Oct 24, 2033 You can buy:]
  987. SL: [A Cargo holds : 650 credits / next hold 0]
  988. SL: [B Fighters : 233 credits per fighter 75]
  989. SL: [C Shield Points : 116 credits per point 100]
  990. SL: []
  991. */
  992. // BUGZ_LOG(info) << "portline : " << line;
  993. if (in(line, "%")) {
  994. // size_t pos = line.find('%');
  995. // if (pos != line.npos) {
  996. // Ok, this is a valid portline
  997. std::string work = line;
  998. replace(work, "Fuel Ore", "Fuel");
  999. auto parts = split(work);
  1000. if (parts[0] == "Items") return;
  1001. char c = tolower(parts[0][0]);
  1002. int pos;
  1003. char foe[4] = "foe";
  1004. for (pos = 0; pos < 3; ++pos) {
  1005. if (c == foe[pos]) break;
  1006. }
  1007. int amount = stoi(parts[2]);
  1008. int percent = stoi(parts[3]);
  1009. // update port
  1010. auto port = galaxy.ports.find(current_sector);
  1011. if (port != galaxy.ports.end()) {
  1012. port->second.amount[pos] = amount;
  1013. port->second.percent[pos] = percent;
  1014. }
  1015. /*
  1016. BUGZ_LOG(fatal) << "portline split:";
  1017. for (auto const p : parts) {
  1018. BUGZ_LOG(fatal) << p;
  1019. }
  1020. */
  1021. // Here's the end:
  1022. if (parts[0] == "Equipment") SL_parser = nullptr;
  1023. // BUGZ_LOG(fatal) << "portline split : [" << parts << "]";
  1024. }
  1025. }
  1026. void Director::SL_warpline(const std::string &line) {
  1027. if (line.empty()) {
  1028. SL_parser = nullptr;
  1029. return;
  1030. }
  1031. // process warp line
  1032. BUGZ_LOG(fatal) << "warpline: [" << line << "]";
  1033. }
  1034. void Director::SL_infoline(const std::string &line) {
  1035. static int state;
  1036. if (line == "<Info>") {
  1037. state = 0;
  1038. galaxy.meta["info"] = json();
  1039. }
  1040. if (line.empty()) {
  1041. ++state;
  1042. if (state == 2) {
  1043. SL_parser = nullptr;
  1044. // clear out the existing ship data
  1045. galaxy.meta["ship"] = json();
  1046. // process the parsed information in meta["info"]
  1047. if (galaxy.meta["info"].contains("Total Holds")) {
  1048. std::string work = galaxy.meta["info"]["Total Holds"];
  1049. replace(work, "Fuel Ore", "Fuel");
  1050. auto parts = split(work, " - ");
  1051. int total_holds = stoi(parts[0]);
  1052. BUGZ_LOG(fatal) << "total holds: " << total_holds;
  1053. auto contents = split(parts[1]);
  1054. for (auto const &hold : contents) {
  1055. auto hold_amount = split(hold, "=");
  1056. BUGZ_LOG(fatal) << hold_amount[0] << " with " << hold_amount[1];
  1057. std::string key = hold_amount[0];
  1058. str_tolower(key);
  1059. // equipment = e
  1060. // organics = o
  1061. // fuel = f
  1062. // colonists = c
  1063. // empty = empty
  1064. if (key != "empty") {
  1065. key = key[0];
  1066. }
  1067. galaxy.meta["ship"]["holds"][key] = stoi(hold_amount[1]);
  1068. }
  1069. galaxy.meta["ship"]["holds"]["total"] = total_holds;
  1070. }
  1071. if (galaxy.meta["info"].contains("Turns to Warp")) {
  1072. // Why is this saying that this is a string?
  1073. int warp_turns = sstoi(json_str(galaxy.meta["info"]["Turns to Warp"]));
  1074. // BUGZ_LOG(trace) << "Turns to Warp: " << warp_turns;
  1075. galaxy.meta["ship"]["warp_turns"] = warp_turns;
  1076. }
  1077. if (galaxy.meta["info"].contains("LongRange Scan")) {
  1078. std::string scanner_text =
  1079. galaxy.meta["info"]["LongRange Scan"].get<std::string>();
  1080. char scanner = scanner_text[0];
  1081. // BUGZ_LOG(trace) << "Scanner: " << scanner;
  1082. galaxy.meta["ship"]["scanner"] = scanner;
  1083. }
  1084. // turns isn't ship specific
  1085. if (galaxy.meta["info"].contains("Turns left")) {
  1086. // OR this could be "Unlimited" !!!
  1087. std::string text = galaxy.meta["info"]["Turns left"];
  1088. if (text == "Unlimited") {
  1089. galaxy.meta["turns"] = -1;
  1090. } else {
  1091. int turns =
  1092. stoi(text); // galaxy.meta["info"]["Turns left"].as<int>();
  1093. // BUGZ_LOG(trace) << "Turns left: " << turns;
  1094. galaxy.meta["turns"] = turns;
  1095. }
  1096. }
  1097. if (galaxy.meta["info"].contains("Current Sector")) {
  1098. int sector = sstoi(json_str(galaxy.meta["info"]["Current Sector"]));
  1099. // BUGZ_LOG(trace) << "Sector: " << sector;
  1100. // it should already be sector ...
  1101. current_sector = sector;
  1102. }
  1103. if (galaxy.meta["info"].contains("Credits")) {
  1104. std::string credit_text = galaxy.meta["info"]["Credits"];
  1105. replace(credit_text, ",", "");
  1106. int credits = stoi(credit_text);
  1107. galaxy.meta["credits"] = credits;
  1108. // BUGZ_LOG(trace) << "Credits: " << credits;
  1109. }
  1110. }
  1111. return;
  1112. }
  1113. // info to parse:
  1114. size_t pos = line.find(" : ");
  1115. if ((!endswith(line, " : ")) && (pos != line.npos)) {
  1116. std::string key = line.substr(0, pos);
  1117. // Ferrengi ships don't have date built
  1118. std::string value = line.substr(pos + 3);
  1119. trim(key);
  1120. trim(value);
  1121. galaxy.meta["info"][key] = value;
  1122. // BUGZ_LOG(trace) << "Info: " << key << " : " << value;
  1123. }
  1124. // [Corp # 1, Galaxy Stomping, Inc.]
  1125. if (startswith(line, "Corp ")) {
  1126. pos = line.find(", ");
  1127. if (pos != line.npos) {
  1128. galaxy.meta["info"]["Corp"] = line.substr(pos + 2);
  1129. }
  1130. }
  1131. }
  1132. void Director::SL_computer_portline(const std::string &line) {
  1133. if (startswith(line, "What sector is the port in?"))
  1134. computer_port_done = false;
  1135. if (line == "I have no information about a port in that sector.") {
  1136. computer_port_sector = 0;
  1137. SL_parser = nullptr;
  1138. return;
  1139. }
  1140. if (!computer_port_done) {
  1141. if (in(line, "Fuel Ore")) computer_port_done = true;
  1142. if (in(line, "Cargo holds")) {
  1143. // If I want to scan the class type 0 ports:
  1144. // computer_port_done = true;
  1145. // otherwise:
  1146. SL_parser = nullptr;
  1147. return;
  1148. }
  1149. }
  1150. if (computer_port_done) {
  1151. if (line.empty()) {
  1152. SL_parser = nullptr;
  1153. return;
  1154. }
  1155. // scan for items of interest
  1156. // SL: [Fuel Ore Buying 810 100% 0]
  1157. // SL: [Organics Buying 856 57% 0]
  1158. // SL: [Equipment Selling 922 44% 0]
  1159. std::string work = line;
  1160. replace(work, "Fuel Ore", "Fuel");
  1161. replace(work, "%", "");
  1162. auto parts = split(work);
  1163. char c = tolower(parts[0][0]);
  1164. int pos;
  1165. char foe[4] = "foe";
  1166. for (pos = 0; pos < 3; ++pos) {
  1167. if (c == foe[pos]) break;
  1168. }
  1169. int amount = stoi(parts[2]);
  1170. int percent = stoi(parts[3]);
  1171. // update port
  1172. auto port = galaxy.ports.find(computer_port_sector);
  1173. if (port != galaxy.ports.end()) {
  1174. BUGZ_LOG(trace) << "COM PORT " << computer_port_sector << " " << c << " "
  1175. << amount << " " << percent;
  1176. port->second.amount[pos] = amount;
  1177. port->second.percent[pos] = percent;
  1178. }
  1179. }
  1180. }
  1181. void Director::SL_planetline(const std::string &line) {
  1182. if (line == "Corporate command [TL=00:00:00]:[344] (?=Help)? Q" ||
  1183. line == "Computer command [TL=00:00:00]:[344] (?=Help)? Q") {
  1184. SL_parser = nullptr;
  1185. return;
  1186. }
  1187. if (in(line, "Class ") &&
  1188. (in(line, "Level ") || (endswith(line, "No Citadel")))) {
  1189. int level;
  1190. char c;
  1191. sector_type sector;
  1192. int number;
  1193. std::string name;
  1194. std::string work = line;
  1195. size_t pos = work.find('#');
  1196. std::string temp = work.substr(0, pos);
  1197. trim(temp);
  1198. sector = sstoi(temp);
  1199. work = work.substr(pos + 1);
  1200. number = sstoi(work);
  1201. pos = work.find(' ');
  1202. work = work.substr(pos + 1);
  1203. trim(work);
  1204. if (endswith(work, "No Citadel")) {
  1205. level = 0;
  1206. } else {
  1207. pos = work.rfind("Level ");
  1208. temp = work.substr(pos + 6);
  1209. level = sstoi(temp);
  1210. }
  1211. pos = work.rfind("Class ");
  1212. temp = work.substr(pos + 6);
  1213. c = temp[0];
  1214. work = work.substr(0, pos);
  1215. trim(work);
  1216. name = work;
  1217. /*
  1218. BUGZ_LOG(trace) << (int)sector << " # " << number << " Class " << c
  1219. << " Level " << level << " name: [" << name << "]";
  1220. */
  1221. planet p{sector, number, level, name, c};
  1222. galaxy.planets[number] = p;
  1223. }
  1224. /*
  1225. SL: [ 344 #4 Enjoy the Silence Class M, Earth Type Level 3] SL:
  1226. [ --- (4M) 1T 64 25 14T 693 277 2T 10M] SL: [
  1227. 344 #5 High There! Class L, Mountainous Level 2]
  1228. SL: [ --- (5M) 2T 0 6 25T 100 112 2T 6M]
  1229. ...
  1230. SL: [ --- (9M) 3T 64 31 39T 793 389 4T ---]
  1231. */
  1232. }