galaxy.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  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 "yaml-cpp/yaml.h"
  13. // c++ default exceptions list
  14. // https://en.cppreference.com/w/cpp/error/exception
  15. std::ostream &operator<<(std::ostream &os, const port &p) {
  16. if (p.type == 0) {
  17. os << p.sector << ": " << (int)p.type;
  18. } else {
  19. os << p.sector << ": " << (int)p.type << " " << text_from_type(p.type)
  20. << " " << p.amount[0] << "," << p.amount[1] << "," << p.amount[2];
  21. }
  22. return os;
  23. }
  24. bool port::unknown(void) {
  25. for (int x = 0; x < 3; ++x) {
  26. if (amount[x] != 0) return false;
  27. }
  28. return true;
  29. }
  30. density_scan::density_scan() { reset(0); }
  31. void density_scan::reset(sector_type s) {
  32. sector = s;
  33. pos = 0;
  34. for (int x = 0; x < (int)d.size(); ++x) {
  35. d[x].sector = 0;
  36. }
  37. }
  38. void density_scan::add_scan(density den) {
  39. if (pos > (int)d.size()) {
  40. std::string message("density_scan::add_scan() exceeded max size ");
  41. message.append(std::to_string(d.size()));
  42. throw std::out_of_range(message);
  43. }
  44. d[pos] = den;
  45. ++pos;
  46. }
  47. density density_scan::find(sector_type sector) {
  48. for (int x = 0; x < pos; ++x) {
  49. if (d[x].sector == sector) return d[x];
  50. }
  51. BUGZ_LOG(fatal) << "density_scan::find failed: " << sector << " we have "
  52. << pos << " scans.";
  53. density den;
  54. den.sector = 0;
  55. return den;
  56. }
  57. bool operator==(const density lhs, const density rhs) {
  58. return ((lhs.sector == rhs.sector) && (lhs.density == rhs.density) &&
  59. (lhs.navhaz == rhs.navhaz) && (lhs.anomaly == rhs.anomaly) &&
  60. (lhs.warps == rhs.warps));
  61. }
  62. trade_type_result trade_type_info(port_type port1, port_type port2) {
  63. // This only gives us one trade_type per pair. There actually
  64. // should be multiple values returned here!
  65. // Like in case of BBB/SSS: return 3, 4 and 5.
  66. // NONE = 0
  67. // GOOD = 1 = OE PAIR
  68. // OK = 2 = ?? Pair
  69. // FAIR = 3 = B/S E
  70. // 4 = B/S O
  71. // 5 = B/S F
  72. buysell p1 = get_buysell(port1);
  73. buysell p2 = get_buysell(port2);
  74. buysell inv2 = invert_buysell(p2);
  75. int matches = 0; // or pos.size();
  76. std::vector<int> pos;
  77. // find which FOE are flipped. Save index pos.
  78. for (int x = 0; x < 3; ++x) {
  79. inv2.foe[x] = (p1.foe[x] == inv2.foe[x]);
  80. if (inv2.foe[x]) {
  81. matches++;
  82. pos.push_back(x);
  83. }
  84. }
  85. if (matches > 1) {
  86. // O != E for both ports, and O != O
  87. if ((p1.foe[ORG] != p1.foe[EQU]) && (p2.foe[ORG] != p2.foe[EQU]) &&
  88. (p1.foe[ORG] != p2.foe[ORG])) {
  89. return trade_type_result{1, inv2};
  90. }
  91. // at least 2 matches. but are they trade pairs?
  92. // I can tell by comparing the last two positions in the same port.
  93. if (p1.foe[pos[matches - 1]] == p1.foe[pos[matches - 2]]) {
  94. // they are NOT.
  95. return trade_type_result{3, inv2};
  96. }
  97. return trade_type_result{2, inv2};
  98. }
  99. if (matches == 1) {
  100. if (inv2.foe[FUEL]) return trade_type_result{4, inv2};
  101. return trade_type_result{3, inv2};
  102. }
  103. return trade_type_result{0, inv2};
  104. }
  105. int trade_type(port_type port1, port_type port2) {
  106. trade_type_result r = trade_type_info(port1, port2);
  107. return r.type;
  108. }
  109. sector_warps::sector_warps() {
  110. sector = 0;
  111. }
  112. void sector_warps::add(sector_type new_sector) {
  113. warps.insert(new_sector);
  114. /*
  115. for (int x = 0; x < MAX_WARPS; ++x) {
  116. if (warps[x] == new_sector) return;
  117. if (warps[x] == 0) {
  118. warps[x] = new_sector;
  119. return;
  120. }
  121. }
  122. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  123. MAX_WARPS % (int)sector);
  124. throw std::out_of_range(message);
  125. */
  126. }
  127. std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
  128. os << "Sector: " << warps.sector << " ";
  129. bool comma = false;
  130. for (auto const &warp : warps.warps) {
  131. if (comma)
  132. os << ",";
  133. else
  134. comma = true;
  135. os << warp;
  136. }
  137. return os;
  138. }
  139. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  140. // #define GTEST_DEBUG
  141. // TODO: fix this. I want some trace output, but I don't want
  142. // my logs flooded ...
  143. struct port parse_portcim(const std::string line) {
  144. struct port p;
  145. p.sector = std::stoi(line);
  146. // 20 - 1708 97% - 710 56% 287 15%
  147. static std::regex portrx(
  148. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  149. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  150. std::regex_constants::ECMAScript);
  151. // does it not understand {3} ??
  152. // NO, it does not, from regex101.com:
  153. // A repeated capturing group will only capture the last iteration. Put a
  154. // capturing group around the repeated group to capture all iterations or use
  155. // a non-capturing group instead if you're not interested in the data
  156. //
  157. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  158. // ]*",
  159. // std::regex_constants::ECMAScript);
  160. // sector + amount pct + amount pct + amount pct
  161. // 1 2 3 4 5 6 7 8 9 10
  162. #ifdef GTEST_DEBUG
  163. GTEST_COUT << "Sector: " << p.sector << std::endl;
  164. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  165. #endif
  166. buysell port_buysell;
  167. std::smatch matches;
  168. if (std::regex_match(line, matches, portrx)) {
  169. #ifdef GTEST_DEBUG
  170. for (size_t x = 1; x < matches.size(); ++x) {
  171. GTEST_COUT << x << " : " << matches[x] << std::endl;
  172. }
  173. #endif
  174. if (matches.size() != 11) {
  175. #ifdef GTEST_DEBUG
  176. GTEST_COUT << "Now you have 101 problems." << std::endl;
  177. #endif
  178. p.sector = 0;
  179. p.type = 0;
  180. return p;
  181. }
  182. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  183. p.sector = stoi(matches[1]);
  184. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  185. // for (int x = 1; x < 11; ++x) {
  186. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  187. // }
  188. for (int x = 0; x < 3; ++x) {
  189. int pos = x * 3;
  190. port_buysell.foe[x] = matches[pos + 2] == "-";
  191. p.amount[x] = stoi(matches[pos + 3]);
  192. p.percent[x] = stoi(matches[pos + 4]);
  193. }
  194. p.type = type_from_buysell(port_buysell);
  195. #ifdef GTEST_DEBUG
  196. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  197. #endif
  198. return p;
  199. } else {
  200. #ifdef GTEST_DEBUG
  201. GTEST_COUT << "regex_match failed." << std::endl;
  202. #endif
  203. p.type = 0;
  204. p.sector = 0;
  205. return p;
  206. }
  207. }
  208. Galaxy::Galaxy() { burnt_percent = 40; }
  209. Galaxy::~Galaxy() { BUGZ_LOG(fatal) << "Galaxy::~Galaxy()"; }
  210. void Galaxy::reset(void) {
  211. meta = YAML::Node();
  212. config = YAML::Node();
  213. ports.clear();
  214. warps.clear();
  215. }
  216. void Galaxy::add_warp(sector_warps sw) {
  217. auto pos = warps.find(sw.sector);
  218. if (pos == warps.end()) {
  219. // not found
  220. // sw.sort();
  221. warps[sw.sector] = sw;
  222. // BUGZ_LOG(info) << "add_warp NEW " << sw.sector;
  223. } else {
  224. // found!
  225. if (pos->second.warps == sw.warps) {
  226. // BUGZ_LOG(trace) << "add_warp: Yup, I already know about " << sw.sector;
  227. } else {
  228. BUGZ_LOG(info) << "add_warp: Warps don't match! Updating...";
  229. BUGZ_LOG(warning) << "Have: " << pos->second;
  230. BUGZ_LOG(warning) << "Got : " << sw;
  231. warps[sw.sector] = sw;
  232. }
  233. }
  234. }
  235. void Galaxy::add_port(sector_type sector, int port_type) {
  236. auto pos = ports.find(sector);
  237. if (pos == ports.end()) {
  238. // no such port.
  239. port p;
  240. p.sector = sector;
  241. p.type = port_type;
  242. for (int x = 0; x < 3; x++) {
  243. p.amount[x] = 0;
  244. p.percent[x] = 0;
  245. }
  246. // BUGZ_LOG(trace) << "add_port: " << sector << ", " << port_type << " : "
  247. // << p;
  248. ports[sector] = p;
  249. } else {
  250. // port was found, so:
  251. if (pos->second.type == port_type) {
  252. // BUGZ_LOG(trace) << "add_port: Yup, port " << sector << " is class " <<
  253. // port_type;
  254. } else {
  255. BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type
  256. << " >> set to " << port_type;
  257. pos->second.type = port_type;
  258. }
  259. }
  260. }
  261. void Galaxy::add_port(port p) {
  262. auto pos = ports.find(p.sector);
  263. if (pos == ports.end()) {
  264. // BUGZ_LOG(trace) << "add_port: NEW " << p;
  265. ports[p.sector] = p;
  266. } else {
  267. if (pos->second.type != p.type) {
  268. if ((pos->second.type == 9) && (p.type == 8)) {
  269. BUGZ_LOG(trace) << "add_port: StarDock " << p.sector;
  270. p.type = 9;
  271. ports[p.sector] = p;
  272. } else {
  273. BUGZ_LOG(fatal) << "add_port: " << pos->second << " NEW : " << p;
  274. ports[p.sector] = p;
  275. }
  276. } else {
  277. if (pos->second.amount != p.amount) {
  278. // BUGZ_LOG(info) << "add_port: UPDATE " << p.sector;
  279. pos->second = p;
  280. } else {
  281. // BUGZ_LOG(info) << "add_port: Yup " << p.sector;
  282. }
  283. }
  284. }
  285. }
  286. void Galaxy::load(void) {
  287. std::string basename = "galaxy";
  288. if (CONFIG["basename"]) {
  289. basename = CONFIG["basename"].as<std::string>();
  290. }
  291. std::string filename =
  292. str(boost::format("%1%-%2%-%3%.yaml") % basename % game % username);
  293. // reset ?
  294. meta = YAML::Node();
  295. config = YAML::Node();
  296. ports.clear();
  297. warps.clear();
  298. if (file_exists(filename)) {
  299. YAML::Node data = YAML::LoadFile(filename);
  300. if (config["meta"]) meta = config["meta"];
  301. meta["load_from"] = filename;
  302. std::chrono::_V2::system_clock::time_point now =
  303. std::chrono::system_clock::now();
  304. meta["load_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  305. if (data["config"]) {
  306. config = data["config"];
  307. } else {
  308. BUGZ_LOG(fatal) << "YAML Missing config section.";
  309. }
  310. if (data["ports"]) {
  311. const YAML::Node ports = data["ports"];
  312. for (auto const &port_iter : ports) {
  313. port p;
  314. p.sector = port_iter.first.as<int>();
  315. p.type = port_iter.second["class"].as<int>();
  316. int x;
  317. if (p.type == 0) {
  318. // nothing to load for type = 0, set defaults.
  319. for (x = 0; x < 3; ++x) {
  320. p.amount[x] = 0;
  321. p.percent[x] = 0;
  322. }
  323. } else {
  324. x = 0;
  325. for (auto const &amount : port_iter.second["amount"]) {
  326. p.amount[x] = amount.as<int>();
  327. ++x;
  328. }
  329. x = 0;
  330. for (auto const &pct : port_iter.second["pct"]) {
  331. p.percent[x] = pct.as<int>();
  332. ++x;
  333. }
  334. }
  335. add_port(p);
  336. }
  337. } else {
  338. BUGZ_LOG(fatal) << "YAML Missing ports section.";
  339. }
  340. if (data["warps"]) {
  341. const YAML::Node &warps = data["warps"];
  342. // if (warps.IsMap()) {
  343. for (auto const warp_iter : warps) {
  344. sector_warps sw;
  345. sw.sector = warp_iter.first.as<int>();
  346. for (auto const sector_iter : warp_iter.second) {
  347. sw.add(sector_iter.as<int>());
  348. }
  349. // BUGZ_LOG(trace) << "YAML warp: " << sw;
  350. add_warp(sw);
  351. }
  352. // }
  353. } else {
  354. BUGZ_LOG(fatal) << "YAML Missing warps section.";
  355. }
  356. BUGZ_LOG(fatal) << "YAML: config keys: " << config.size();
  357. BUGZ_LOG(fatal) << "YAML: warp keys: " << warps.size();
  358. BUGZ_LOG(fatal) << "YAML: port keys: " << ports.size();
  359. } else {
  360. BUGZ_LOG(fatal) << "Missing YAML: " << filename;
  361. }
  362. }
  363. void Galaxy::save(void) {
  364. std::string basename = "galaxy";
  365. if (CONFIG["basename"]) {
  366. basename = CONFIG["basename"].as<std::string>();
  367. }
  368. std::string filename =
  369. str(boost::format("%1%-%2%-%3%.yaml") % basename % game % username);
  370. std::ofstream fout(filename);
  371. fout << "%YAML 1.2" << std::endl << "---" << std::endl;
  372. BUGZ_LOG(fatal) << "YAML: " << filename;
  373. int depth = 0;
  374. std::string depth_spacer;
  375. meta["save_to"] = filename;
  376. std::chrono::_V2::system_clock::time_point now =
  377. std::chrono::system_clock::now();
  378. meta["save_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  379. // meta:
  380. fout << "meta:" << std::endl;
  381. ++depth;
  382. depth_spacer.assign(depth * 2, ' ');
  383. std::function<void(std::ofstream & of, int depth, const YAML::Node &n)>
  384. yaml_out;
  385. yaml_out = [&yaml_out](std::ofstream &of, int yaml_depth,
  386. const YAML::Node &n) {
  387. std::string yaml_spacer;
  388. yaml_spacer.assign(yaml_depth * 2, ' ');
  389. for (auto const &data : n) {
  390. if (data.second.Type() == YAML::NodeType::Scalar) {
  391. of << yaml_spacer << data.first << ": " << data.second << std::endl;
  392. } else if (data.second.Type() == YAML::NodeType::Map) {
  393. // nested
  394. of << yaml_spacer << data.first << ":" << std::endl;
  395. yaml_out(of, yaml_depth + 1, data.second);
  396. } else if (data.second.Type() == YAML::NodeType::Sequence) {
  397. // sequence
  398. BUGZ_LOG(fatal) << "Ignoring Sequence... " << data.first;
  399. } else {
  400. BUGZ_LOG(fatal) << "Unsupported NodeType: " << data.second.Type();
  401. }
  402. }
  403. };
  404. yaml_out(fout, depth, meta);
  405. BUGZ_LOG(fatal) << "YAML config: " << config.size();
  406. fout << "config:" << std::endl;
  407. // in config, I usually switch to doing flow instead. I'll keep this like
  408. // this for now.
  409. yaml_out(fout, depth, config);
  410. BUGZ_LOG(fatal) << "YAML warps: " << warps.size();
  411. fout << "warps:" << std::endl;
  412. for (auto const &warp : warps) {
  413. fout << depth_spacer << warp.first << ": [";
  414. bool first = true;
  415. for (auto const &sector : warp.second.warps) {
  416. if (!first) {
  417. fout << ", ";
  418. } else
  419. first = false;
  420. fout << sector;
  421. }
  422. fout << "]" << std::endl;
  423. }
  424. BUGZ_LOG(fatal) << "YAML ports: " << ports.size();
  425. fout << "ports:" << std::endl;
  426. /*
  427. When saving to yaml, my sector_type is like char. So, it wants
  428. to save the values as a character. Cast to int.
  429. */
  430. for (auto const &port : ports) {
  431. fout << depth_spacer << port.second.sector
  432. << ": {class: " << (int)port.second.type;
  433. if (port.second.type == 0) {
  434. fout << "}" << std::endl;
  435. } else {
  436. // write out the rest of the information
  437. fout << ", amount: [";
  438. for (int x = 0; x < 3; x++) {
  439. fout << port.second.amount[x];
  440. if (x != 2) fout << ", ";
  441. }
  442. fout << "], pct: [";
  443. for (int x = 0; x < 3; x++) {
  444. fout << (int)port.second.percent[x];
  445. if (x != 2) fout << ", ";
  446. }
  447. fout << "]}" << std::endl;
  448. }
  449. }
  450. // the big data structures later on are the ones I really need to optimize
  451. // here. Writing out 20 lines isn't what is killing us!
  452. /*
  453. for (auto const & meta_data : meta ) {
  454. std::cerr << "key: " << meta_data.first << std::endl;
  455. if (meta_data.second.Type() == YAML::NodeType::Scalar) {
  456. fout << depth_spacer << meta_data.first << ": " << meta_data.second <<
  457. std::endl; } else {
  458. // nested structure
  459. std::cerr << "Nested: " << meta_data.first << std::endl;
  460. fout << depth_spacer << meta_data.first << ":" << std::endl;
  461. ++depth;
  462. depth_spacer.assign(depth *2, ' ');
  463. for (auto const &nested : meta_data.second) {
  464. if (nested.second.Type() == YAML::NodeType::Scalar) {
  465. fout << depth_spacer << nested.first << ": " << nested.second <<
  466. std::endl; } else { std::cerr << "double-Nested meta structure under key: " <<
  467. nested.first << std::endl;
  468. }
  469. }
  470. --depth;
  471. depth_spacer.assign(depth * 2, ' ');
  472. }
  473. }
  474. */
  475. #ifdef YAML_NODE_SLOW_OUTPUT
  476. YAML::Node data;
  477. // add some information to meta before saving.
  478. meta["save_to"] = filename;
  479. std::chrono::_V2::system_clock::time_point now =
  480. std::chrono::system_clock::now();
  481. meta["save_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  482. data["meta"] = meta;
  483. // data["meta"].SetStyle(YAML::EmitterStyle::Flow);
  484. BUGZ_LOG(fatal) << "YAML config: " << config.size();
  485. data["config"] = config;
  486. data["config"].SetStyle(YAML::EmitterStyle::Flow);
  487. /*
  488. for (auto const &config_iter : config) {
  489. data["config"][config_iter.first] = config_iter.second;
  490. }
  491. */
  492. BUGZ_LOG(fatal) << "YAML warps: " << warps.size();
  493. for (auto const &warp : warps) {
  494. for (auto const &sector : warp.second.warps) {
  495. data["warps"][warp.first].push_back(sector);
  496. }
  497. data["warps"][warp.first].SetStyle(YAML::EmitterStyle::Flow);
  498. /*
  499. for (int x = 0; x < MAX_WARPS; ++x) {
  500. if (warp.second.warps[x] == 0) break;
  501. data["warps"][warp.first].push_back(warp.second.warps[x]);
  502. }
  503. */
  504. }
  505. BUGZ_LOG(fatal) << "YAML ports: " << ports.size();
  506. /*
  507. When saving to yaml, my sector_type is like char. So, it wants
  508. to save the values as a character. Cast to int.
  509. */
  510. for (auto const &port : ports) {
  511. data["ports"][port.second.sector]["class"] = (int)port.second.type;
  512. if (port.second.type == 0) {
  513. data["ports"][port.second.sector].SetStyle(YAML::EmitterStyle::Flow);
  514. } else {
  515. // nothing to save for type = 0
  516. for (int x = 0; x < 3; x++) {
  517. data["ports"][port.second.sector]["amount"].push_back(
  518. (int)port.second.amount[x]);
  519. data["ports"][port.second.sector]["pct"].push_back(
  520. (int)port.second.percent[x]);
  521. }
  522. data["ports"][port.second.sector]["amount"].SetStyle(
  523. YAML::EmitterStyle::Flow);
  524. data["ports"][port.second.sector]["pct"].SetStyle(
  525. YAML::EmitterStyle::Flow);
  526. data["ports"][port.second.sector].SetStyle(YAML::EmitterStyle::Flow);
  527. }
  528. }
  529. std::ofstream fout(filename);
  530. fout << data << std::endl;
  531. BUGZ_LOG(fatal) << "YAML: " << filename;
  532. #endif
  533. }
  534. std::vector<port_pair_type> Galaxy::find_trades(sector_type sector,
  535. bool highest) {
  536. std::vector<port_pair_type> pptv;
  537. // Does this sector have a port?
  538. auto port = ports.find(sector);
  539. if (port == ports.end()) return pptv;
  540. auto port_warps = warps.find(sector);
  541. // warps not found for port sector?
  542. if (port_warps == warps.end()) return pptv;
  543. for (auto const &s : port_warps->second.warps) {
  544. // only count the ports > our sector number -- so we don't have dups
  545. if (highest && (s < sector)) continue;
  546. // verify we have a way back
  547. {
  548. auto warpback = warps.find(s);
  549. // can we find that warp?
  550. if (warpback == warps.end()) continue;
  551. // does it link back to the port's sector?
  552. if (warpback->second.warps.find(sector) == warpback->second.warps.end())
  553. continue;
  554. }
  555. // Does this sector have a port?
  556. auto possible_port = ports.find(s);
  557. if (possible_port == ports.end()) continue;
  558. if (possible_port->second.type == 0) continue;
  559. // calculate trade type
  560. // int t = trade_type(port->second.type, possible_port->second.type);
  561. BUGZ_LOG(trace) << "find_trades: Port " << sector << ","
  562. << (int)port->second.type << " " << s
  563. << (int)possible_port->second.type;
  564. trade_type_result ttr =
  565. trade_type_info(port->second.type, possible_port->second.type);
  566. if ((ttr.type == 0) || (ttr.type == 4)) continue;
  567. bool burnt = false;
  568. for (int x = 0; x < 3; ++x) {
  569. if (ttr.trades.foe[x]) {
  570. // if port isn't unknown, check to see if it's burnt out.
  571. if (!possible_port->second.unknown())
  572. if (possible_port->second.percent[x] < burnt_percent) burnt = true;
  573. if (!port->second.unknown())
  574. if (port->second.percent[x] < burnt_percent) burnt = true;
  575. }
  576. }
  577. if (burnt) continue;
  578. pptv.push_back(port_pair_type{ttr.type, sector, s});
  579. BUGZ_LOG(trace) << "sector: " << sector << " and " << s
  580. << " tt:" << ttr.type;
  581. }
  582. return pptv;
  583. }
  584. bool compare_port_pair(const port_pair_type &ppt1, const port_pair_type &ppt2) {
  585. if (ppt1.type == ppt2.type) {
  586. return ppt1.s1 < ppt2.s1;
  587. } else {
  588. return (ppt1.type < ppt2.type);
  589. }
  590. }
  591. void Galaxy::sort_port_pair_type(std::vector<port_pair_type> &pptv) {
  592. sort(pptv.begin(), pptv.end(), compare_port_pair);
  593. }
  594. std::vector<port_pair_type> Galaxy::find_best_trades(void) {
  595. std::vector<port_pair_type> pptv;
  596. burnt_percent = config["burnt_percent"].as<int>();
  597. if (burnt_percent > 90) {
  598. burnt_percent = 90;
  599. config["burnt_percent"] = 90;
  600. }
  601. if (burnt_percent < 10) {
  602. burnt_percent = 10;
  603. config["burnt_percent"] = 10;
  604. }
  605. for (auto const &pi : ports) {
  606. if (pi.second.type == 0) continue;
  607. sector_type sector = pi.second.sector;
  608. auto port_warps = warps.find(sector);
  609. if (port_warps == warps.end()) continue;
  610. std::vector<port_pair_type> ppt_sector = find_trades(sector, true);
  611. if (ppt_sector.empty()) continue;
  612. pptv.insert(pptv.end(), ppt_sector.begin(), ppt_sector.end());
  613. }
  614. return pptv;
  615. }
  616. port_pair_type Galaxy::find_closest(int sector) {
  617. auto trades = find_best_trades();
  618. // int type, sector_type s1, s2;
  619. std::set<sector_type> seen;
  620. std::set<sector_type> current;
  621. current.insert(sector);
  622. bool found = false;
  623. bool added_new = false;
  624. int depth = 0;
  625. while (!found) {
  626. // is current list in any of the trades ?
  627. for (auto const &t : trades) {
  628. if (t.type > 2) continue;
  629. if (current.find(t.s1) != current.end()) {
  630. // found one!
  631. return t;
  632. }
  633. if (current.find(t.s2) != current.end()) {
  634. return t;
  635. }
  636. }
  637. ++depth;
  638. BUGZ_LOG(info) << "depth: " << depth << " current:" << current.size()
  639. << " seen: " << seen.size();
  640. added_new = false;
  641. if (!found) {
  642. // update the seen
  643. seen.insert(current.begin(), current.end());
  644. auto look_in = current;
  645. current.clear();
  646. for (auto const &li : look_in) {
  647. auto wi = warps.find(li);
  648. if (wi == warps.end()) continue;
  649. for (auto const &w : wi->second.warps) {
  650. // have we already seen this sector?
  651. if (seen.find(w) != seen.end()) continue;
  652. // does it have a warp back to the original sector?
  653. auto warp_back = warps.find(w);
  654. if (warp_back != warps.end()) {
  655. if (warp_back->second.warps.find(li) !=
  656. warp_back->second.warps.end()) {
  657. // Ok, this links back to the original sector...
  658. current.insert(w);
  659. added_new = true;
  660. }
  661. }
  662. }
  663. }
  664. if (!added_new) {
  665. BUGZ_LOG(warning) << "No new sectors added. We're done!";
  666. port_pair_type ppt;
  667. ppt.type = 0;
  668. return ppt;
  669. }
  670. }
  671. }
  672. port_pair_type ppt;
  673. ppt.type = 0;
  674. return ppt;
  675. }