director.cpp 46 KB

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