galaxy.cpp 23 KB

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