galaxy.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. #include "galaxy.h"
  2. #include <algorithm> // sort
  3. #include <boost/format.hpp>
  4. #include <chrono>
  5. #include <exception>
  6. #include <fstream>
  7. #include <ostream>
  8. #include <set>
  9. #include <string>
  10. #include "config.h"
  11. #include "logging.h"
  12. #include "json.hpp"
  13. using json = nlohmann::json;
  14. // c++ default exceptions list
  15. // https://en.cppreference.com/w/cpp/error/exception
  16. std::ostream &operator<<(std::ostream &os, const port &p) {
  17. if (p.type == 0) {
  18. os << p.sector << ": " << (int)p.type;
  19. } else {
  20. os << p.sector << ": " << (int)p.type << " " << text_from_type(p.type)
  21. << " " << p.amount[0] << "," << p.amount[1] << "," << p.amount[2];
  22. }
  23. return os;
  24. }
  25. /**
  26. * Is port unknown?
  27. *
  28. * As in we haven't visited it, we don't know what it has?
  29. * We were checking percent to 0, but we've seen valid ports with 0 percent.
  30. * We now check amount. If this becomes an issue, we'll change to an unknown
  31. * flag.
  32. *
  33. * @return true
  34. * @return false
  35. */
  36. bool port::unknown(void) {
  37. for (int x = 0; x < 3; ++x) {
  38. if (amount[x] != 0) return false;
  39. }
  40. return true;
  41. }
  42. density_scan::density_scan() { reset(0); }
  43. void density_scan::reset(sector_type s) {
  44. sector = s;
  45. pos = 0;
  46. for (int x = 0; x < (int)d.size(); ++x) {
  47. d[x].sector = 0;
  48. }
  49. }
  50. void density_scan::add_scan(density den) {
  51. if (pos > (int)d.size()) {
  52. std::string message("density_scan::add_scan() exceeded max size ");
  53. message.append(std::to_string(d.size()));
  54. throw std::out_of_range(message);
  55. }
  56. d[pos] = den;
  57. ++pos;
  58. }
  59. density density_scan::find(sector_type sector) {
  60. for (int x = 0; x < pos; ++x) {
  61. if (d[x].sector == sector) return d[x];
  62. }
  63. BUGZ_LOG(fatal) << "density_scan::find failed: " << sector << " we have "
  64. << pos << " scans.";
  65. density den;
  66. den.sector = 0;
  67. return den;
  68. }
  69. bool operator==(const density lhs, const density rhs) {
  70. return ((lhs.sector == rhs.sector) && (lhs.density == rhs.density) &&
  71. (lhs.navhaz == rhs.navhaz) && (lhs.anomaly == rhs.anomaly) &&
  72. (lhs.warps == rhs.warps) && (lhs.known == rhs.known));
  73. }
  74. sector_warps::sector_warps() { sector = 0; }
  75. sector_warps::sector_warps(sector_type s, std::set<sector_type> w) {
  76. sector = s;
  77. warps = w;
  78. }
  79. void sector_warps::add(sector_type new_sector) {
  80. warps.insert(new_sector);
  81. /*
  82. for (int x = 0; x < MAX_WARPS; ++x) {
  83. if (warps[x] == new_sector) return;
  84. if (warps[x] == 0) {
  85. warps[x] = new_sector;
  86. return;
  87. }
  88. }
  89. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  90. MAX_WARPS % (int)sector);
  91. throw std::out_of_range(message);
  92. */
  93. }
  94. std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
  95. os << "Sector: " << warps.sector << " ";
  96. bool comma = false;
  97. for (auto const &warp : warps.warps) {
  98. if (comma)
  99. os << ",";
  100. else
  101. comma = true;
  102. os << warp;
  103. }
  104. return os;
  105. }
  106. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  107. // #define GTEST_DEBUG
  108. // TODO: fix this. I want some trace output, but I don't want
  109. // my logs flooded ...
  110. struct port parse_portcim(const std::string line) {
  111. struct port p;
  112. p.sector = std::stoi(line);
  113. // 20 - 1708 97% - 710 56% 287 15%
  114. static std::regex portrx(
  115. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  116. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  117. std::regex_constants::ECMAScript);
  118. // does it not understand {3} ??
  119. // NO, it does not, from regex101.com:
  120. // A repeated capturing group will only capture the last iteration. Put a
  121. // capturing group around the repeated group to capture all iterations or use
  122. // a non-capturing group instead if you're not interested in the data
  123. //
  124. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  125. // ]*",
  126. // std::regex_constants::ECMAScript);
  127. // sector + amount pct + amount pct + amount pct
  128. // 1 2 3 4 5 6 7 8 9 10
  129. #ifdef GTEST_DEBUG
  130. GTEST_COUT << "Sector: " << p.sector << std::endl;
  131. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  132. #endif
  133. buysell port_buysell;
  134. std::smatch matches;
  135. if (std::regex_match(line, matches, portrx)) {
  136. #ifdef GTEST_DEBUG
  137. for (size_t x = 1; x < matches.size(); ++x) {
  138. GTEST_COUT << x << " : " << matches[x] << std::endl;
  139. }
  140. #endif
  141. if (matches.size() != 11) {
  142. #ifdef GTEST_DEBUG
  143. GTEST_COUT << "Now you have 101 problems." << std::endl;
  144. #endif
  145. p.sector = 0;
  146. p.type = 0;
  147. return p;
  148. }
  149. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  150. p.sector = stoi(matches[1]);
  151. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  152. // for (int x = 1; x < 11; ++x) {
  153. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  154. // }
  155. for (int x = 0; x < 3; ++x) {
  156. int pos = x * 3;
  157. port_buysell.foe[x] = matches[pos + 2] == "-";
  158. p.amount[x] = stoi(matches[pos + 3]);
  159. p.percent[x] = stoi(matches[pos + 4]);
  160. }
  161. p.type = type_from_buysell(port_buysell);
  162. #ifdef GTEST_DEBUG
  163. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  164. #endif
  165. return p;
  166. } else {
  167. #ifdef GTEST_DEBUG
  168. GTEST_COUT << "regex_match failed." << std::endl;
  169. #endif
  170. p.type = 0;
  171. p.sector = 0;
  172. return p;
  173. }
  174. }
  175. Galaxy::Galaxy() { burnt_percent = 40; }
  176. Galaxy::~Galaxy() { BUGZ_LOG(fatal) << "Galaxy::~Galaxy()"; }
  177. void Galaxy::reset(void) {
  178. meta = json();
  179. config = json();
  180. ports.clear();
  181. warps.clear();
  182. }
  183. void Galaxy::add_warp(sector_warps sw) {
  184. auto pos = warps.find(sw.sector);
  185. if (pos == warps.end()) {
  186. // not found
  187. // sw.sort();
  188. warps[sw.sector] = sw;
  189. // BUGZ_LOG(info) << "add_warp NEW " << sw.sector;
  190. } else {
  191. // found!
  192. if (pos->second.warps == sw.warps) {
  193. // BUGZ_LOG(trace) << "add_warp: Yup, I already know about " << sw.sector;
  194. } else {
  195. BUGZ_LOG(info) << "add_warp: Warps don't match! Updating...";
  196. BUGZ_LOG(warning) << "Have: " << pos->second;
  197. BUGZ_LOG(warning) << "Got : " << sw;
  198. warps[sw.sector] = sw;
  199. }
  200. }
  201. }
  202. void Galaxy::add_port(sector_type sector, int port_type) {
  203. auto pos = ports.find(sector);
  204. if (pos == ports.end()) {
  205. // no such port.
  206. port p;
  207. p.sector = sector;
  208. p.type = port_type;
  209. for (int x = 0; x < 3; x++) {
  210. p.amount[x] = 0;
  211. p.percent[x] = 0;
  212. }
  213. // BUGZ_LOG(trace) << "add_port: " << sector << ", " << port_type << " : "
  214. // << p;
  215. ports[sector] = p;
  216. } else {
  217. // port was found, so:
  218. if (pos->second.type == port_type) {
  219. // BUGZ_LOG(trace) << "add_port: Yup, port " << sector << " is class " <<
  220. // port_type;
  221. } else {
  222. BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type
  223. << " >> set to " << port_type;
  224. pos->second.type = port_type;
  225. }
  226. }
  227. }
  228. void Galaxy::add_port(port p) {
  229. auto pos = ports.find(p.sector);
  230. if (pos == ports.end()) {
  231. // BUGZ_LOG(trace) << "add_port: NEW " << p;
  232. ports[p.sector] = p;
  233. } else {
  234. if (pos->second.type != p.type) {
  235. if ((pos->second.type == 9) && (p.type == 8)) {
  236. BUGZ_LOG(trace) << "add_port: StarDock " << p.sector;
  237. p.type = 9;
  238. ports[p.sector] = p;
  239. } else {
  240. BUGZ_LOG(fatal) << "add_port: " << pos->second << " NEW : " << p;
  241. ports[p.sector] = p;
  242. }
  243. } else {
  244. if (pos->second.amount != p.amount) {
  245. // BUGZ_LOG(info) << "add_port: UPDATE " << p.sector;
  246. pos->second = p;
  247. } else {
  248. // BUGZ_LOG(info) << "add_port: Yup " << p.sector;
  249. }
  250. }
  251. }
  252. }
  253. void Galaxy::load(void) {
  254. std::string basename = "galaxy";
  255. if (CONFIG["basename"]) {
  256. basename = CONFIG["basename"];
  257. }
  258. std::string filename =
  259. str(boost::format("%1%-%2%-%3%.json") % basename % game % username);
  260. // reset ?
  261. meta = json();
  262. config = json();
  263. ports.clear();
  264. warps.clear();
  265. if (file_exists(filename)) {
  266. BUGZ_LOG(fatal) << "Galaxy::load( " << filename << " )";
  267. json data;
  268. {
  269. std::ifstream fin(filename);
  270. data = json::parse(fin);
  271. }
  272. // YAML::Node data = YAML::LoadFile(filename);
  273. if (data["meta"]) {
  274. meta = data["meta"];
  275. } else {
  276. BUGZ_LOG(fatal) << "Missing meta data.";
  277. }
  278. meta["load_from"] = filename;
  279. meta["load_time"] = time_t_now(); // time_t
  280. if (data["config"]) {
  281. config = data["config"];
  282. } else {
  283. BUGZ_LOG(fatal) << "Missing config section.";
  284. }
  285. if (data["ports"]) {
  286. // const json &ports = data["ports"];
  287. for (auto const &port_iter : data["ports"].items() ) {
  288. port p;
  289. p.sector = sstoi(port_iter.key()); // first.as<int>();
  290. p.type = (int)port_iter.value()["class"];
  291. int x;
  292. if (p.type == 0) {
  293. // nothing to load for type = 0, set defaults.
  294. for (x = 0; x < 3; ++x) {
  295. p.amount[x] = 0;
  296. p.percent[x] = 0;
  297. }
  298. } else {
  299. x = 0;
  300. for (auto const &amount : port_iter.value()["amount"].items()) {
  301. p.amount[x] = sstoi(amount.value());
  302. ++x;
  303. }
  304. x = 0;
  305. for (auto const &pct : port_iter.value()["pct"].items()) {
  306. p.percent[x] = sstoi(pct.value());
  307. ++x;
  308. }
  309. }
  310. add_port(p);
  311. }
  312. } else {
  313. BUGZ_LOG(fatal) << "Missing ports section.";
  314. }
  315. if (data["warps"]) {
  316. // const json &warps = data["warps"];
  317. // if (warps.IsMap()) {
  318. for (auto const warp_iter : data["warps"].items()) {
  319. sector_warps sw;
  320. sw.sector = sstoi(warp_iter.key());
  321. for (auto const sector_iter : warp_iter.value().items()) {
  322. sw.add(sstoi(sector_iter.value()));
  323. }
  324. // BUGZ_LOG(trace) << "YAML warp: " << sw;
  325. add_warp(sw);
  326. }
  327. // }
  328. } else {
  329. BUGZ_LOG(fatal) << "Missing warps section.";
  330. }
  331. BUGZ_LOG(trace) << "YAML: meta keys: " << meta.size();
  332. BUGZ_LOG(trace) << "YAML: config keys: " << config.size();
  333. BUGZ_LOG(trace) << "YAML: warp keys: " << warps.size();
  334. BUGZ_LOG(trace) << "YAML: port keys: " << ports.size();
  335. } else {
  336. BUGZ_LOG(fatal) << "Missing: " << filename;
  337. }
  338. }
  339. void Galaxy::save(void) {
  340. std::string basename = "galaxy";
  341. if (CONFIG["basename"]) {
  342. basename = CONFIG["basename"];
  343. }
  344. std::string filename =
  345. str(boost::format("%1%-%2%-%3%.json") % basename % game % username);
  346. std::ofstream fout(filename);
  347. BUGZ_LOG(fatal) << "save: " << filename;
  348. int depth = 0;
  349. std::string depth_spacer;
  350. meta["save_to"] = filename;
  351. meta["save_time"] = time_t_now(); // time_t
  352. /* // testing sequence code
  353. meta["sequence"]["part"].push_back(1);
  354. meta["sequence"]["part"].push_back(2);
  355. meta["sequence"]["part"].push_back(3);
  356. meta["sequence"]["smeg"].push_back(0);
  357. */
  358. json output;
  359. output["meta"] = meta;
  360. output["config"] = config;
  361. BUGZ_LOG(trace) << "YAML meta: " << meta.size();
  362. // yaml_out(fout, depth, meta);
  363. BUGZ_LOG(trace) << "YAML config: " << config.size();
  364. BUGZ_LOG(trace) << "YAML warps: " << warps.size();
  365. // in config, I usually switch to doing flow instead. I'll keep this like
  366. // this for now.
  367. // yaml_out(fout, depth, config);
  368. for (auto const &warp : warps) {
  369. // fout << depth_spacer << warp.first << ": [";
  370. bool first = true;
  371. output["warps"][warp.first] = json::array();
  372. for (auto const &sector : warp.second.warps) {
  373. output["warps"][warp.first].push_back(sector);
  374. /*
  375. if (!first) {
  376. fout << ", ";
  377. } else
  378. first = false;
  379. fout << sector;
  380. */
  381. }
  382. // fout << "]" << std::endl;
  383. }
  384. BUGZ_LOG(trace) << "YAML ports: " << ports.size();
  385. // fout << "ports:" << std::endl;
  386. /*
  387. When saving to yaml, my sector_type is like char. So, it wants
  388. to save the values as a character. Cast to int.
  389. */
  390. for (auto const &port : ports) {
  391. output["ports"][port.first]["class"] = (int)port.second.type;
  392. /*
  393. fout << depth_spacer << port.second.sector
  394. << ": {class: " << (int)port.second.type;
  395. if (port.second.type == 0) {
  396. fout << "}" << std::endl;
  397. } else {
  398. */
  399. if (port.second.type != 0) {
  400. // write out the rest of the information
  401. // output["ports"][port.first]["amount"] = json::array{port.second.amount[0], port.second.amount[1], port.second.aount[2]};
  402. for (int x = 0; x < 3; x++) {
  403. output["ports"][port.first]["amount"][x] = port.second.amount[x];
  404. }
  405. /*
  406. fout << ", amount: [";
  407. for (int x = 0; x < 3; x++) {
  408. fout << port.second.amount[x];
  409. if (x != 2) fout << ", ";
  410. }
  411. fout << "], pct: [";
  412. for (int x = 0; x < 3; x++) {
  413. fout << (int)port.second.percent[x];
  414. if (x != 2) fout << ", ";
  415. }
  416. fout << "]}" << std::endl;
  417. */
  418. // output["ports"][port.first]["pct"] = json::array{port.second.percent[0], port.second.percent[1], port.second.percent[2]};
  419. for (int x = 0; x < 3; x++) {
  420. output["ports"][port.first]["pct"][x] = port.second.percent[x];
  421. }
  422. }
  423. }
  424. // the big data structures later on are the ones I really need to optimize
  425. // here. Writing out 20 lines isn't what is killing us!
  426. /*
  427. for (auto const & meta_data : meta ) {
  428. std::cerr << "key: " << meta_data.first << std::endl;
  429. if (meta_data.second.Type() == YAML::NodeType::Scalar) {
  430. fout << depth_spacer << meta_data.first << ": " << meta_data.second <<
  431. std::endl; } else {
  432. // nested structure
  433. std::cerr << "Nested: " << meta_data.first << std::endl;
  434. fout << depth_spacer << meta_data.first << ":" << std::endl;
  435. ++depth;
  436. depth_spacer.assign(depth *2, ' ');
  437. for (auto const &nested : meta_data.second) {
  438. if (nested.second.Type() == YAML::NodeType::Scalar) {
  439. fout << depth_spacer << nested.first << ": " << nested.second <<
  440. std::endl; } else { std::cerr << "double-Nested meta structure under key: " <<
  441. nested.first << std::endl;
  442. }
  443. }
  444. --depth;
  445. depth_spacer.assign(depth * 2, ' ');
  446. }
  447. }
  448. */
  449. fout << output;
  450. }
  451. std::vector<port_pair_type> Galaxy::find_trades(sector_type sector,
  452. bool highest) {
  453. std::vector<port_pair_type> pptv;
  454. // Does this sector have a port?
  455. auto port = ports.find(sector);
  456. if (port == ports.end()) return pptv;
  457. auto port_warps = warps.find(sector);
  458. // warps not found for port sector?
  459. if (port_warps == warps.end()) return pptv;
  460. for (auto const &s : port_warps->second.warps) {
  461. // only count the ports > our sector number -- so we don't have dups
  462. if (highest && (s < sector)) continue;
  463. // verify we have a way back
  464. {
  465. auto warpback = warps.find(s);
  466. // can we find that warp?
  467. if (warpback == warps.end()) continue;
  468. // does it link back to the port's sector?
  469. if (warpback->second.warps.find(sector) == warpback->second.warps.end())
  470. continue;
  471. }
  472. // Does this sector have a port?
  473. auto possible_port = ports.find(s);
  474. if (possible_port == ports.end()) continue;
  475. if (possible_port->second.type == 0) continue;
  476. // calculate trade type
  477. // int t = trade_type(port->second.type, possible_port->second.type);
  478. BUGZ_LOG(trace) << "find_trades: Port " << sector << ","
  479. << (int)port->second.type << " " << s
  480. << (int)possible_port->second.type;
  481. trade_type_result ttr = trade_type_info(
  482. sector, s); // port->second.type, possible_port->second.type);
  483. if ((ttr.type == NONE) || (ttr.type == FAIR_F)) continue;
  484. pptv.push_back(port_pair_type{ttr.type, ttr.trades, sector, s});
  485. BUGZ_LOG(trace) << "sector: " << sector << " and " << s
  486. << " tt:" << ttr.type;
  487. }
  488. return pptv;
  489. }
  490. bool compare_port_pair(const port_pair_type &ppt1, const port_pair_type &ppt2) {
  491. if (ppt1.type == ppt2.type) {
  492. return ppt1.s1 < ppt2.s1;
  493. } else {
  494. return (ppt1.type < ppt2.type);
  495. }
  496. }
  497. void Galaxy::sort_port_pair_type(std::vector<port_pair_type> &pptv) {
  498. sort(pptv.begin(), pptv.end(), compare_port_pair);
  499. }
  500. std::vector<port_pair_type> Galaxy::find_best_trades(void) {
  501. std::vector<port_pair_type> pptv;
  502. burnt_percent = config["burnt_percent"];
  503. if (burnt_percent > 90) {
  504. burnt_percent = 90;
  505. config["burnt_percent"] = 90;
  506. }
  507. if (burnt_percent < 10) {
  508. burnt_percent = 10;
  509. config["burnt_percent"] = 10;
  510. }
  511. for (auto const &pi : ports) {
  512. if (pi.second.type == 0) continue;
  513. sector_type sector = pi.second.sector;
  514. auto port_warps = warps.find(sector);
  515. if (port_warps == warps.end()) continue;
  516. std::vector<port_pair_type> ppt_sector = find_trades(sector, true);
  517. if (ppt_sector.empty()) continue;
  518. pptv.insert(pptv.end(), ppt_sector.begin(), ppt_sector.end());
  519. }
  520. return pptv;
  521. }
  522. /**
  523. * Find_closest trade
  524. *
  525. * This works by getting all of the ports we know of.
  526. * Then, we find the nearest.
  527. *
  528. * @param sector
  529. * @return port_pair_type
  530. */
  531. port_pair_type Galaxy::find_closest(int sector) {
  532. auto trades = find_best_trades();
  533. // int type, sector_type s1, s2;
  534. std::set<sector_type> seen;
  535. std::set<sector_type> current;
  536. current.insert(sector);
  537. bool found = false;
  538. bool added_new = false;
  539. int depth = 0;
  540. while (!found) {
  541. // is current list in any of the trades ?
  542. for (auto const &t : trades) {
  543. if (t.type > 2) continue;
  544. if (current.find(t.s1) != current.end()) {
  545. // found one!
  546. return t;
  547. }
  548. if (current.find(t.s2) != current.end()) {
  549. return t;
  550. }
  551. }
  552. ++depth;
  553. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  554. << " seen: " << seen.size();
  555. added_new = false;
  556. if (!found) {
  557. // update the seen
  558. seen.insert(current.begin(), current.end());
  559. auto look_in = current;
  560. current.clear();
  561. for (auto const &li : look_in) {
  562. auto wi = warps.find(li);
  563. if (wi == warps.end()) continue;
  564. for (auto const &w : wi->second.warps) {
  565. // have we already seen this sector?
  566. if (seen.find(w) != seen.end()) continue;
  567. // does it have a warp back to the original sector?
  568. auto warp_back = warps.find(w);
  569. if (warp_back != warps.end()) {
  570. if (warp_back->second.warps.find(li) !=
  571. warp_back->second.warps.end()) {
  572. // Ok, this links back to the original sector...
  573. current.insert(w);
  574. added_new = true;
  575. }
  576. }
  577. }
  578. }
  579. if (!added_new) {
  580. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  581. port_pair_type ppt;
  582. ppt.type = 0;
  583. return ppt;
  584. }
  585. }
  586. }
  587. port_pair_type ppt;
  588. ppt.type = 0;
  589. return ppt;
  590. }
  591. /**
  592. * Find closest and best trade
  593. *
  594. * @param sector
  595. * @param lowest_trade_type
  596. * @return port_pair_type
  597. */
  598. port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type,
  599. int burnt_percent) {
  600. // int type, sector_type s1, s2;
  601. BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
  602. std::vector<port_pair_type> vppt;
  603. std::set<sector_type> seen;
  604. std::set<sector_type> current;
  605. current.insert(sector);
  606. bool found = false;
  607. bool added_new = false;
  608. int depth = 0;
  609. while (!found) {
  610. /*
  611. for (auto const &t : trades) {
  612. if (t.type > 2) continue;
  613. if (current.find(t.s1) != current.end()) {
  614. // found one!
  615. return t;
  616. }
  617. if (current.find(t.s2) != current.end()) {
  618. return t;
  619. }
  620. }
  621. */
  622. ++depth;
  623. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  624. << " seen: " << seen.size();
  625. // search current for trades
  626. for (auto const &c : current) {
  627. auto port = ports.find(c);
  628. if (port == ports.end()) continue;
  629. if (port->second.type == 0) continue;
  630. auto port_warps = warps.find(c);
  631. if (port_warps == warps.end()) continue;
  632. for (auto const &s : port_warps->second.warps) {
  633. // verify we have a way back
  634. {
  635. auto warpback = warps.find(s);
  636. if (warpback == warps.end()) continue;
  637. if (warpback->second.warps.find(c) == warpback->second.warps.end())
  638. continue;
  639. }
  640. auto possible_port = ports.find(s);
  641. if (possible_port == ports.end()) continue;
  642. if (possible_port->second.type == 0) continue;
  643. trade_type_result ttr = trade_type_info(c, s, burnt_percent);
  644. if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
  645. // Ok! we found a trade that fits the criteria!
  646. vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});
  647. found = true;
  648. }
  649. }
  650. added_new = false;
  651. if (found) {
  652. // ok, we've found some trades, sort and return the best
  653. sort_port_pair_type(vppt);
  654. return port_pair_type{vppt[0]};
  655. } else {
  656. // update the seen
  657. seen.insert(current.begin(), current.end());
  658. auto look_in = current;
  659. current.clear();
  660. for (auto const &li : look_in) {
  661. auto wi = warps.find(li);
  662. if (wi == warps.end()) continue;
  663. for (auto const &w : wi->second.warps) {
  664. // have we already seen this sector?
  665. if (seen.find(w) != seen.end()) continue;
  666. // does it have a warp back to the original sector?
  667. auto warp_back = warps.find(w);
  668. if (warp_back != warps.end()) {
  669. if (warp_back->second.warps.find(li) !=
  670. warp_back->second.warps.end()) {
  671. // Ok, this links back to the original sector...
  672. current.insert(w);
  673. added_new = true;
  674. }
  675. }
  676. }
  677. }
  678. if (!added_new) {
  679. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  680. port_pair_type ppt;
  681. ppt.type = 0;
  682. return ppt;
  683. }
  684. }
  685. }
  686. port_pair_type ppt;
  687. ppt.type = 0;
  688. return ppt;
  689. }
  690. sector_type Galaxy::find_nearest_unexplored(sector_type sector) {
  691. // search the galaxy for unexplored
  692. std::set<sector_type> seen;
  693. std::set<sector_type> current;
  694. current.insert(sector);
  695. bool found = false;
  696. bool added_new = false;
  697. int depth = 0;
  698. while (!found) {
  699. ++depth;
  700. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  701. << " seen: " << seen.size();
  702. // search for warps
  703. for (auto const &c : current) {
  704. auto port_warps = warps.find(c);
  705. if (port_warps == warps.end()) return c;
  706. }
  707. // update the seen
  708. seen.insert(current.begin(), current.end());
  709. auto look_in = current;
  710. current.clear();
  711. for (auto const &li : look_in) {
  712. auto wi = warps.find(li);
  713. if (wi == warps.end()) return li;
  714. for (auto const &w : wi->second.warps) {
  715. // have we already seen this sector?
  716. if (seen.find(w) != seen.end()) continue;
  717. current.insert(w);
  718. added_new = true;
  719. }
  720. }
  721. if (!added_new) {
  722. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  723. found = false;
  724. }
  725. }
  726. return 0;
  727. }
  728. trade_type_result Galaxy::trade_type_info(sector_type port1, sector_type port2,
  729. int burnt_percent) {
  730. BUGZ_LOG(fatal) << "Trade_type_info(" << port1 << "," << port2 << ")";
  731. // This only gives us one trade_type per pair. There actually
  732. // should be multiple values returned here!
  733. // Like in case of BBB/SSS: return 3, 4 and 5.
  734. // NONE = 0
  735. // GOOD = 1 = OE PAIR
  736. // OK = 2 = ?? Pair
  737. // FAIR = 3 = B/S E
  738. // 4 = B/S O
  739. // 5 = B/S F
  740. buysell inv2;
  741. auto p1 = ports.find(port1);
  742. if (p1 == ports.end()) {
  743. BUGZ_LOG(fatal) << "Can't find port 1: " << (int)port1;
  744. return {NONE, inv2};
  745. }
  746. BUGZ_LOG(fatal) << "port 1: " << p1->first << " " << p1->second.sector << ", "
  747. << (int)p1->second.type;
  748. auto p2 = ports.find(port2);
  749. if (p2 == ports.end()) {
  750. BUGZ_LOG(fatal) << "Can't find port 2: " << (int)port2;
  751. return {NONE, inv2};
  752. }
  753. BUGZ_LOG(fatal) << "port 2: " << p2->first << " " << p2->second.sector << ", "
  754. << (int)p2->second.type;
  755. buysell bsp1 = get_buysell(p1->second.type);
  756. buysell bsp2 = get_buysell(p2->second.type);
  757. inv2 = invert_buysell(bsp2);
  758. int matches = 0; // or pos.size();
  759. std::vector<int> pos;
  760. // If we don't know how many holds the ship has, default to 300.
  761. int max_holds = 300;
  762. if (meta["ship"]["holds"]["total"]) {
  763. max_holds = meta["ship"]["holds"]["total"];
  764. }
  765. // find which FOE are flipped. Save index pos.
  766. for (int x = 0; x < 3; ++x) {
  767. inv2.foe[x] = (bsp1.foe[x] == inv2.foe[x]);
  768. // Ok, these are possible trades (B->S or S->B)
  769. // If known, check for burnt
  770. if (!p1->second.unknown()) {
  771. if (p1->second.percent[x] < burnt_percent) {
  772. BUGZ_LOG(fatal) << "Marking Port 1: " << x << " (burnt)";
  773. inv2.foe[x] = false;
  774. }
  775. if (p1->second.amount[x] < max_holds) {
  776. BUGZ_LOG(fatal) << "Marking Port 1: " << x << " (burnt/amount)";
  777. inv2.foe[x] = false;
  778. }
  779. } else {
  780. BUGZ_LOG(fatal) << "Port 1 : unknown / skip burnt checks";
  781. }
  782. if (!p2->second.unknown()) {
  783. if (p2->second.percent[x] < burnt_percent) {
  784. BUGZ_LOG(fatal) << "Marking Port 2: " << x << " (burnt)";
  785. inv2.foe[x] = false;
  786. }
  787. if (p2->second.amount[x] < max_holds) {
  788. BUGZ_LOG(fatal) << "Marking Port 2: " << x << " (burnt/amount)";
  789. inv2.foe[x] = false;
  790. }
  791. } else {
  792. BUGZ_LOG(fatal) << "Port 2 : unknown / skip burnt checks";
  793. }
  794. if (inv2.foe[x]) {
  795. matches++;
  796. pos.push_back(x);
  797. }
  798. }
  799. BUGZ_LOG(fatal) << "Matches: " << matches << " inv: " << inv2;
  800. if (matches > 1) {
  801. // Check for BEST
  802. // O != E for both ports, and O != O, and ORG/EQU in inv2 list
  803. if (inv2.foe[ORG] && inv2.foe[EQU] && (bsp1.foe[ORG] != bsp1.foe[EQU]) &&
  804. (bsp2.foe[ORG] != bsp2.foe[EQU]) && (bsp1.foe[ORG] != bsp2.foe[ORG])) {
  805. // verify that fuel isn't set.
  806. inv2.foe[FUEL] = false;
  807. BUGZ_LOG(fatal) << "result: " << BEST << " " << inv2;
  808. return trade_type_result{BEST, inv2};
  809. }
  810. if (matches == 3) {
  811. // This could be SBB / BSS (it's a pair, but not BEST)
  812. // Is it FO or FE ?
  813. if (bsp1.foe[FUEL] != bsp2.foe[EQU]) {
  814. // OK, FE
  815. inv2.foe[ORG] = false;
  816. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  817. return trade_type_result{OK, inv2};
  818. }
  819. if (bsp1.foe[FUEL] != bsp2.foe[ORG]) {
  820. // OK, FO
  821. inv2.foe[EQU] = false;
  822. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  823. return trade_type_result{OK, inv2};
  824. }
  825. // Ok, take the highest (EQU)
  826. inv2.foe[FUEL] = false;
  827. inv2.foe[ORG] = false;
  828. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  829. return trade_type_result{FAIR_E, inv2};
  830. }
  831. // 2 matches. but are they trade pairs?
  832. if (bsp1.foe[pos[matches - 1]] != bsp1.foe[pos[matches - 2]]) {
  833. // yes!
  834. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  835. return trade_type_result{OK, inv2};
  836. } else {
  837. // they are NOT. Use highest one. clear the lower flag
  838. inv2.foe[pos[0]] = false;
  839. switch (pos[1]) {
  840. case 0:
  841. BUGZ_LOG(fatal) << "result: " << FAIR_F << " " << inv2;
  842. return trade_type_result{FAIR_F, inv2};
  843. break;
  844. case 1:
  845. BUGZ_LOG(fatal) << "result: " << FAIR_O << " " << inv2;
  846. return trade_type_result{FAIR_O, inv2};
  847. break;
  848. case 2:
  849. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  850. return trade_type_result{FAIR_E, inv2};
  851. break;
  852. }
  853. }
  854. }
  855. if (matches == 1) {
  856. switch (pos[0]) {
  857. case 0:
  858. BUGZ_LOG(fatal) << "result: " << FAIR_F << " " << inv2;
  859. return trade_type_result{FAIR_F, inv2};
  860. break;
  861. case 1:
  862. BUGZ_LOG(fatal) << "result: " << FAIR_O << " " << inv2;
  863. return trade_type_result{FAIR_O, inv2};
  864. break;
  865. case 2:
  866. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  867. return trade_type_result{FAIR_E, inv2};
  868. break;
  869. }
  870. }
  871. // no matches.
  872. BUGZ_LOG(fatal) << "result: " << NONE << " " << inv2;
  873. return trade_type_result{NONE, inv2};
  874. }