galaxy.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950
  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 "json.hpp"
  12. #include "logging.h"
  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.contains("basename")) {
  256. basename = json_str(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.contains("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.contains("config")) {
  281. config = data["config"];
  282. } else {
  283. BUGZ_LOG(fatal) << "Missing config section.";
  284. }
  285. if (data.contains("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 = port_iter.value()["class"].get<int>();
  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] = amount.value().get<int>();
  302. ++x;
  303. }
  304. x = 0;
  305. for (auto const &pct : port_iter.value()["pct"].items()) {
  306. p.percent[x] = pct.value().get<int>();
  307. ++x;
  308. }
  309. }
  310. add_port(p);
  311. }
  312. } else {
  313. BUGZ_LOG(fatal) << "Missing ports section.";
  314. }
  315. if (data.contains("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(sector_iter.value().get<int>());
  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.contains("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. // For now, we'll delete this manually.
  353. // FUTURE: delete all keys starting with _.
  354. if (meta.contains("density")) {
  355. meta.erase("density");
  356. }
  357. // clean meta data
  358. {
  359. // build vector of things to delete, don't invalidate your iterator. (UB)
  360. std::vector<std::string> to_delete;
  361. for (auto m : meta.items()) {
  362. if (m.key()[0] == '_') {
  363. to_delete.push_back(m.key());
  364. }
  365. }
  366. for (auto key : to_delete) {
  367. BUGZ_LOG(fatal) << "erasing meta key: [" << m.key() << "]";
  368. meta.erase(m.key());
  369. }
  370. }
  371. /* // testing sequence code
  372. meta["sequence"]["part"].push_back(1);
  373. meta["sequence"]["part"].push_back(2);
  374. meta["sequence"]["part"].push_back(3);
  375. meta["sequence"]["smeg"].push_back(0);
  376. */
  377. json output;
  378. output["meta"] = meta;
  379. output["config"] = config;
  380. BUGZ_LOG(trace) << "YAML meta: " << meta.size();
  381. // yaml_out(fout, depth, meta);
  382. BUGZ_LOG(trace) << "YAML config: " << config.size();
  383. BUGZ_LOG(trace) << "YAML warps: " << warps.size();
  384. // in config, I usually switch to doing flow instead. I'll keep this like
  385. // this for now.
  386. // yaml_out(fout, depth, config);
  387. for (auto const &warp : warps) {
  388. // fout << depth_spacer << warp.first << ": [";
  389. // bool first = true;
  390. std::string warp_text = std::to_string(warp.first);
  391. // output["warps"][warp.first] = json::array();
  392. for (auto const &sector : warp.second.warps) {
  393. output["warps"][warp_text].push_back(sector);
  394. /*
  395. if (!first) {
  396. fout << ", ";
  397. } else
  398. first = false;
  399. fout << sector;
  400. */
  401. }
  402. // fout << "]" << std::endl;
  403. }
  404. BUGZ_LOG(trace) << "YAML ports: " << ports.size();
  405. // fout << "ports:" << std::endl;
  406. for (auto const &port : ports) {
  407. std::string port_text = std::to_string(port.first);
  408. output["ports"][port_text]["class"] = (int)port.second.type;
  409. if (port.second.type != 0) {
  410. // write out the rest of the information
  411. // output["ports"][port.first]["amount"] =
  412. // json::array{port.second.amount[0], port.second.amount[1],
  413. // port.second.aount[2]};
  414. for (int x = 0; x < 3; x++) {
  415. // output["ports"][port.first]["amount"][x] = port.second.amount[x];
  416. output["ports"][port_text]["amount"].push_back(port.second.amount[x]);
  417. }
  418. // output["ports"][port.first]["pct"] =
  419. // json::array{port.second.percent[0], port.second.percent[1],
  420. // port.second.percent[2]};
  421. for (int x = 0; x < 3; x++) {
  422. // output["ports"][port.first]["pct"][x] = port.second.percent[x];
  423. output["ports"][port_text]["pct"].push_back(port.second.percent[x]);
  424. }
  425. }
  426. }
  427. fout << output;
  428. }
  429. std::vector<port_pair_type> Galaxy::find_trades(sector_type sector,
  430. bool highest) {
  431. std::vector<port_pair_type> pptv;
  432. // Does this sector have a port?
  433. auto port = ports.find(sector);
  434. if (port == ports.end()) return pptv;
  435. auto port_warps = warps.find(sector);
  436. // warps not found for port sector?
  437. if (port_warps == warps.end()) return pptv;
  438. for (auto const &s : port_warps->second.warps) {
  439. // only count the ports > our sector number -- so we don't have dups
  440. if (highest && (s < sector)) continue;
  441. // verify we have a way back
  442. {
  443. auto warpback = warps.find(s);
  444. // can we find that warp?
  445. if (warpback == warps.end()) continue;
  446. // does it link back to the port's sector?
  447. if (warpback->second.warps.find(sector) == warpback->second.warps.end())
  448. continue;
  449. }
  450. // Does this sector have a port?
  451. auto possible_port = ports.find(s);
  452. if (possible_port == ports.end()) continue;
  453. if (possible_port->second.type == 0) continue;
  454. // calculate trade type
  455. // int t = trade_type(port->second.type, possible_port->second.type);
  456. BUGZ_LOG(trace) << "find_trades: Port " << sector << ","
  457. << (int)port->second.type << " " << s
  458. << (int)possible_port->second.type;
  459. trade_type_result ttr = trade_type_info(
  460. sector, s); // port->second.type, possible_port->second.type);
  461. if ((ttr.type == NONE) || (ttr.type == FAIR_F)) continue;
  462. pptv.push_back(port_pair_type{ttr.type, ttr.trades, sector, s});
  463. BUGZ_LOG(trace) << "sector: " << sector << " and " << s
  464. << " tt:" << ttr.type;
  465. }
  466. return pptv;
  467. }
  468. bool compare_port_pair(const port_pair_type &ppt1, const port_pair_type &ppt2) {
  469. if (ppt1.type == ppt2.type) {
  470. return ppt1.s1 < ppt2.s1;
  471. } else {
  472. return (ppt1.type < ppt2.type);
  473. }
  474. }
  475. void Galaxy::sort_port_pair_type(std::vector<port_pair_type> &pptv) {
  476. sort(pptv.begin(), pptv.end(), compare_port_pair);
  477. }
  478. std::vector<port_pair_type> Galaxy::find_best_trades(void) {
  479. std::vector<port_pair_type> pptv;
  480. burnt_percent = json_int(config["burnt_percent"]);
  481. if (burnt_percent > 90) {
  482. burnt_percent = 90;
  483. config["burnt_percent"] = 90;
  484. }
  485. if (burnt_percent < 10) {
  486. burnt_percent = 10;
  487. config["burnt_percent"] = 10;
  488. }
  489. for (auto const &pi : ports) {
  490. if (pi.second.type == 0) continue;
  491. sector_type sector = pi.second.sector;
  492. auto port_warps = warps.find(sector);
  493. if (port_warps == warps.end()) continue;
  494. std::vector<port_pair_type> ppt_sector = find_trades(sector, true);
  495. if (ppt_sector.empty()) continue;
  496. pptv.insert(pptv.end(), ppt_sector.begin(), ppt_sector.end());
  497. }
  498. return pptv;
  499. }
  500. /**
  501. * Find_closest trade
  502. *
  503. * This works by getting all of the ports we know of.
  504. * Then, we find the nearest.
  505. *
  506. * @param sector
  507. * @return port_pair_type
  508. */
  509. port_pair_type Galaxy::find_closest(int sector) {
  510. auto trades = find_best_trades();
  511. // int type, sector_type s1, s2;
  512. std::set<sector_type> seen;
  513. std::set<sector_type> current;
  514. current.insert(sector);
  515. bool found = false;
  516. bool added_new = false;
  517. int depth = 0;
  518. while (!found) {
  519. // is current list in any of the trades ?
  520. for (auto const &t : trades) {
  521. if (t.type > 2) continue;
  522. if (current.find(t.s1) != current.end()) {
  523. // found one!
  524. return t;
  525. }
  526. if (current.find(t.s2) != current.end()) {
  527. return t;
  528. }
  529. }
  530. ++depth;
  531. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  532. << " seen: " << seen.size();
  533. added_new = false;
  534. if (!found) {
  535. // update the seen
  536. seen.insert(current.begin(), current.end());
  537. auto look_in = current;
  538. current.clear();
  539. for (auto const &li : look_in) {
  540. auto wi = warps.find(li);
  541. if (wi == warps.end()) continue;
  542. for (auto const &w : wi->second.warps) {
  543. // have we already seen this sector?
  544. if (seen.find(w) != seen.end()) continue;
  545. // does it have a warp back to the original sector?
  546. auto warp_back = warps.find(w);
  547. if (warp_back != warps.end()) {
  548. if (warp_back->second.warps.find(li) !=
  549. warp_back->second.warps.end()) {
  550. // Ok, this links back to the original sector...
  551. current.insert(w);
  552. added_new = true;
  553. }
  554. }
  555. }
  556. }
  557. if (!added_new) {
  558. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  559. port_pair_type ppt;
  560. ppt.type = 0;
  561. return ppt;
  562. }
  563. }
  564. }
  565. port_pair_type ppt;
  566. ppt.type = 0;
  567. return ppt;
  568. }
  569. /**
  570. * Find closest and best trade
  571. *
  572. * @param sector
  573. * @param lowest_trade_type
  574. * @return port_pair_type
  575. */
  576. port_pair_type Galaxy::find_closest_trade(int sector, int lowest_trade_type,
  577. int burnt_percent) {
  578. // int type, sector_type s1, s2;
  579. BUGZ_LOG(fatal) << "find_closest_trade(" << sector << ")";
  580. std::vector<port_pair_type> vppt;
  581. std::set<sector_type> seen;
  582. std::set<sector_type> current;
  583. current.insert(sector);
  584. bool found = false;
  585. bool added_new = false;
  586. int depth = 0;
  587. while (!found) {
  588. ++depth;
  589. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  590. << " seen: " << seen.size();
  591. // search current for trades
  592. for (auto const &c : current) {
  593. auto port = ports.find(c);
  594. if (port == ports.end()) continue;
  595. if (port->second.type == 0) continue;
  596. auto port_warps = warps.find(c);
  597. if (port_warps == warps.end()) continue;
  598. for (auto const &s : port_warps->second.warps) {
  599. // verify we have a way back
  600. {
  601. auto warpback = warps.find(s);
  602. if (warpback == warps.end()) continue;
  603. if (warpback->second.warps.find(c) == warpback->second.warps.end())
  604. continue;
  605. }
  606. auto possible_port = ports.find(s);
  607. if (possible_port == ports.end()) continue;
  608. if (possible_port->second.type == 0) continue;
  609. trade_type_result ttr = trade_type_info(c, s, burnt_percent);
  610. if ((ttr.type == NONE) || (ttr.type > lowest_trade_type)) continue;
  611. // Ok! we found a trade that fits the criteria!
  612. vppt.push_back(port_pair_type{ttr.type, ttr.trades, c, s});
  613. found = true;
  614. }
  615. }
  616. added_new = false;
  617. if (found) {
  618. // ok, we've found some trades, sort and return the best
  619. sort_port_pair_type(vppt);
  620. return port_pair_type{vppt[0]};
  621. } else {
  622. // update the seen
  623. seen.insert(current.begin(), current.end());
  624. auto look_in = current;
  625. current.clear();
  626. for (auto const &li : look_in) {
  627. auto wi = warps.find(li);
  628. if (wi == warps.end()) continue;
  629. for (auto const &w : wi->second.warps) {
  630. // have we already seen this sector?
  631. if (seen.find(w) != seen.end()) continue;
  632. // does it have a warp back to the original sector?
  633. auto warp_back = warps.find(w);
  634. if (warp_back != warps.end()) {
  635. if (warp_back->second.warps.find(li) !=
  636. warp_back->second.warps.end()) {
  637. // Ok, this links back to the original sector...
  638. current.insert(w);
  639. added_new = true;
  640. }
  641. }
  642. }
  643. }
  644. if (!added_new) {
  645. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  646. port_pair_type ppt;
  647. ppt.type = 0;
  648. return ppt;
  649. }
  650. }
  651. }
  652. port_pair_type ppt;
  653. ppt.type = 0;
  654. return ppt;
  655. }
  656. sector_type Galaxy::find_nearest_unexplored(sector_type sector) {
  657. // search the galaxy for unexplored
  658. std::set<sector_type> seen;
  659. std::set<sector_type> current;
  660. current.insert(sector);
  661. bool found = false;
  662. bool added_new = false;
  663. int depth = 0;
  664. while (!found) {
  665. ++depth;
  666. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  667. << " seen: " << seen.size();
  668. // search for warps
  669. for (auto const &c : current) {
  670. auto port_warps = warps.find(c);
  671. if (port_warps == warps.end()) return c;
  672. }
  673. // update the seen
  674. seen.insert(current.begin(), current.end());
  675. auto look_in = current;
  676. current.clear();
  677. for (auto const &li : look_in) {
  678. auto wi = warps.find(li);
  679. if (wi == warps.end()) return li;
  680. for (auto const &w : wi->second.warps) {
  681. // have we already seen this sector?
  682. if (seen.find(w) != seen.end()) continue;
  683. current.insert(w);
  684. added_new = true;
  685. }
  686. }
  687. if (!added_new) {
  688. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  689. found = false;
  690. }
  691. }
  692. return 0;
  693. }
  694. trade_type_result Galaxy::trade_type_info(sector_type port1, sector_type port2,
  695. int burnt_percent) {
  696. BUGZ_LOG(fatal) << "Trade_type_info(" << port1 << "," << port2 << ")";
  697. // This only gives us one trade_type per pair. There actually
  698. // should be multiple values returned here!
  699. // Like in case of BBB/SSS: return 3, 4 and 5.
  700. // NONE = 0
  701. // GOOD = 1 = OE PAIR
  702. // OK = 2 = ?? Pair
  703. // FAIR = 3 = B/S E
  704. // 4 = B/S O
  705. // 5 = B/S F
  706. buysell inv2;
  707. auto p1 = ports.find(port1);
  708. if (p1 == ports.end()) {
  709. BUGZ_LOG(fatal) << "Can't find port 1: " << (int)port1;
  710. return {NONE, inv2};
  711. }
  712. BUGZ_LOG(fatal) << "port 1: " << p1->first << " " << p1->second.sector << ", "
  713. << (int)p1->second.type;
  714. auto p2 = ports.find(port2);
  715. if (p2 == ports.end()) {
  716. BUGZ_LOG(fatal) << "Can't find port 2: " << (int)port2;
  717. return {NONE, inv2};
  718. }
  719. BUGZ_LOG(fatal) << "port 2: " << p2->first << " " << p2->second.sector << ", "
  720. << (int)p2->second.type;
  721. buysell bsp1 = get_buysell(p1->second.type);
  722. buysell bsp2 = get_buysell(p2->second.type);
  723. inv2 = invert_buysell(bsp2);
  724. int matches = 0; // or pos.size();
  725. std::vector<int> pos;
  726. // If we don't know how many holds the ship has, default to 300.
  727. int max_holds = 300;
  728. if (meta["ship"]["holds"].contains("total")) {
  729. max_holds = json_int(meta["ship"]["holds"]["total"]);
  730. }
  731. // find which FOE are flipped. Save index pos.
  732. for (int x = 0; x < 3; ++x) {
  733. inv2.foe[x] = (bsp1.foe[x] == inv2.foe[x]);
  734. // Ok, these are possible trades (B->S or S->B)
  735. // If known, check for burnt
  736. if (!p1->second.unknown()) {
  737. if (p1->second.percent[x] < burnt_percent) {
  738. BUGZ_LOG(fatal) << "Marking Port 1: " << x << " (burnt)";
  739. inv2.foe[x] = false;
  740. }
  741. if (p1->second.amount[x] < max_holds) {
  742. BUGZ_LOG(fatal) << "Marking Port 1: " << x << " (burnt/amount)";
  743. inv2.foe[x] = false;
  744. }
  745. } else {
  746. BUGZ_LOG(fatal) << "Port 1 : unknown / skip burnt checks";
  747. }
  748. if (!p2->second.unknown()) {
  749. if (p2->second.percent[x] < burnt_percent) {
  750. BUGZ_LOG(fatal) << "Marking Port 2: " << x << " (burnt)";
  751. inv2.foe[x] = false;
  752. }
  753. if (p2->second.amount[x] < max_holds) {
  754. BUGZ_LOG(fatal) << "Marking Port 2: " << x << " (burnt/amount)";
  755. inv2.foe[x] = false;
  756. }
  757. } else {
  758. BUGZ_LOG(fatal) << "Port 2 : unknown / skip burnt checks";
  759. }
  760. if (inv2.foe[x]) {
  761. matches++;
  762. pos.push_back(x);
  763. }
  764. }
  765. BUGZ_LOG(fatal) << "Matches: " << matches << " inv: " << inv2;
  766. if (matches > 1) {
  767. // Check for BEST
  768. // O != E for both ports, and O != O, and ORG/EQU in inv2 list
  769. if (inv2.foe[ORG] && inv2.foe[EQU] && (bsp1.foe[ORG] != bsp1.foe[EQU]) &&
  770. (bsp2.foe[ORG] != bsp2.foe[EQU]) && (bsp1.foe[ORG] != bsp2.foe[ORG])) {
  771. // verify that fuel isn't set.
  772. inv2.foe[FUEL] = false;
  773. BUGZ_LOG(fatal) << "result: " << BEST << " " << inv2;
  774. return trade_type_result{BEST, inv2};
  775. }
  776. if (matches == 3) {
  777. // This could be SBB / BSS (it's a pair, but not BEST)
  778. // Is it FO or FE ?
  779. if (bsp1.foe[FUEL] != bsp2.foe[EQU]) {
  780. // OK, FE
  781. inv2.foe[ORG] = false;
  782. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  783. return trade_type_result{OK, inv2};
  784. }
  785. if (bsp1.foe[FUEL] != bsp2.foe[ORG]) {
  786. // OK, FO
  787. inv2.foe[EQU] = false;
  788. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  789. return trade_type_result{OK, inv2};
  790. }
  791. // Ok, take the highest (EQU)
  792. inv2.foe[FUEL] = false;
  793. inv2.foe[ORG] = false;
  794. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  795. return trade_type_result{FAIR_E, inv2};
  796. }
  797. // 2 matches. but are they trade pairs?
  798. if (bsp1.foe[pos[matches - 1]] != bsp1.foe[pos[matches - 2]]) {
  799. // yes!
  800. BUGZ_LOG(fatal) << "result: " << OK << " " << inv2;
  801. return trade_type_result{OK, inv2};
  802. } else {
  803. // they are NOT. Use highest one. clear the lower flag
  804. inv2.foe[pos[0]] = false;
  805. switch (pos[1]) {
  806. case 0:
  807. BUGZ_LOG(fatal) << "result: " << FAIR_F << " " << inv2;
  808. return trade_type_result{FAIR_F, inv2};
  809. break;
  810. case 1:
  811. BUGZ_LOG(fatal) << "result: " << FAIR_O << " " << inv2;
  812. return trade_type_result{FAIR_O, inv2};
  813. break;
  814. case 2:
  815. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  816. return trade_type_result{FAIR_E, inv2};
  817. break;
  818. }
  819. }
  820. }
  821. if (matches == 1) {
  822. switch (pos[0]) {
  823. case 0:
  824. BUGZ_LOG(fatal) << "result: " << FAIR_F << " " << inv2;
  825. return trade_type_result{FAIR_F, inv2};
  826. break;
  827. case 1:
  828. BUGZ_LOG(fatal) << "result: " << FAIR_O << " " << inv2;
  829. return trade_type_result{FAIR_O, inv2};
  830. break;
  831. case 2:
  832. BUGZ_LOG(fatal) << "result: " << FAIR_E << " " << inv2;
  833. return trade_type_result{FAIR_E, inv2};
  834. break;
  835. }
  836. }
  837. // no matches.
  838. BUGZ_LOG(fatal) << "result: " << NONE << " " << inv2;
  839. return trade_type_result{NONE, inv2};
  840. }