galaxy.cpp 21 KB

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