director.cpp 39 KB

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