director.cpp 42 KB

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