galaxy.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  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 "logging.h"
  11. #include "yaml-cpp/yaml.h"
  12. // c++ default exceptions list
  13. // https://en.cppreference.com/w/cpp/error/exception
  14. bool buysell::operator==(const buysell &rhs) const {
  15. return ((foe[0] == rhs.foe[0]) && (foe[1] == rhs.foe[1]) &&
  16. (foe[2] == rhs.foe[2]));
  17. }
  18. std::ostream &operator<<(std::ostream &os, const buysell &bs) {
  19. os << bs.foe[0] << bs.foe[1] << bs.foe[2];
  20. return os;
  21. }
  22. bool buysell_text::operator==(const buysell_text &rhs) const {
  23. return ((txt[0] == rhs.txt[0]) && (txt[1] == rhs.txt[1]) &&
  24. (txt[2] == rhs.txt[2]));
  25. }
  26. std::ostream &operator<<(std::ostream &os, const buysell_text &bst) {
  27. os << '"' << bst.txt[0] << bst.txt[1] << bst.txt[2] << '"';
  28. return os;
  29. }
  30. std::ostream &operator<<(std::ostream &os, const port &p) {
  31. if (p.type == 0) {
  32. os << p.sector << ": " << (int)p.type;
  33. } else {
  34. os << p.sector << ": " << (int)p.type << " " << text_from_type(p.type)
  35. << " " << p.amount[0] << "," << p.amount[1] << "," << p.amount[2];
  36. }
  37. return os;
  38. }
  39. trade_type_result trade_type_info(port_type port1, port_type port2) {
  40. // NONE = 0
  41. // GOOD = 1 = OE PAIR
  42. // OK = 2 = ?? Pair
  43. // FAIR = 3 = B / S
  44. buysell p1 = get_buysell(port1);
  45. buysell p2 = get_buysell(port2);
  46. buysell inv2 = invert_buysell(p2);
  47. int matches = 0; // or pos.size();
  48. std::vector<int> pos;
  49. // find which FOE are flipped. Save index pos.
  50. for (int x = 0; x < 3; ++x) {
  51. inv2.foe[x] = (p1.foe[x] == inv2.foe[x]);
  52. if (inv2.foe[x]) {
  53. matches++;
  54. pos.push_back(x);
  55. }
  56. }
  57. if (matches > 1) {
  58. // O != E for both ports, and O != O
  59. if ((p1.foe[ORG] != p1.foe[EQU]) && (p2.foe[ORG] != p2.foe[EQU]) &&
  60. (p1.foe[ORG] != p2.foe[ORG])) {
  61. return trade_type_result{1, inv2};
  62. }
  63. // at least 2 matches. but are they trade pairs?
  64. // I can tell by comparing the last two positions in the same port.
  65. if (p1.foe[pos[matches - 1]] == p1.foe[pos[matches - 2]]) {
  66. // they are NOT.
  67. return trade_type_result{3, inv2};
  68. }
  69. return trade_type_result{2, inv2};
  70. }
  71. if (matches == 1) {
  72. if (inv2.foe[FUEL]) return trade_type_result{4, inv2};
  73. return trade_type_result{3, inv2};
  74. }
  75. return trade_type_result{0, inv2};
  76. }
  77. int trade_type(port_type port1, port_type port2) {
  78. trade_type_result r = trade_type_info(port1, port2);
  79. return r.type;
  80. }
  81. /*
  82. // adding this breaks test-galaxy's port = {2, 2, {1,2,3}, {1,2,3}} code.
  83. port::port() {
  84. sector = 0;
  85. type = 0;
  86. for (int x = 0; x < 3; x++) {
  87. amount[x] = 0;
  88. percent[x] = 0;
  89. }
  90. }
  91. */
  92. sector_warps::sector_warps() {
  93. sector = 0;
  94. // for (int x = 0; x < MAX_WARPS; ++x) warps[x] = 0;
  95. }
  96. void sector_warps::add(sector_type new_sector) {
  97. warps.insert(new_sector);
  98. /*
  99. for (int x = 0; x < MAX_WARPS; ++x) {
  100. if (warps[x] == new_sector) return;
  101. if (warps[x] == 0) {
  102. warps[x] = new_sector;
  103. return;
  104. }
  105. }
  106. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  107. MAX_WARPS % (int)sector);
  108. throw std::out_of_range(message);
  109. */
  110. }
  111. std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
  112. os << "Sector: " << warps.sector << " ";
  113. bool comma = false;
  114. for (auto const &warp : warps.warps) {
  115. if (comma)
  116. os << ",";
  117. else
  118. comma = true;
  119. os << warp;
  120. }
  121. /*
  122. for (int x = 0; x < MAX_WARPS; ++x) {
  123. if (warps.warps[x] != 0) {
  124. if (x != 0) os << ",";
  125. os << warps.warps[x];
  126. }
  127. }
  128. */
  129. return os;
  130. }
  131. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  132. // #define GTEST_DEBUG
  133. // TODO: fix this. I want some trace output, but I don't want
  134. // my logs flooded ...
  135. struct port parse_portcim(const std::string line) {
  136. struct port p;
  137. p.sector = std::stoi(line);
  138. // 20 - 1708 97% - 710 56% 287 15%
  139. static std::regex portrx(
  140. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  141. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  142. std::regex_constants::ECMAScript);
  143. // does it not understand {3} ??
  144. // NO, it does not, from regex101.com:
  145. // A repeated capturing group will only capture the last iteration. Put a
  146. // capturing group around the repeated group to capture all iterations or use
  147. // a non-capturing group instead if you're not interested in the data
  148. //
  149. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  150. // ]*",
  151. // std::regex_constants::ECMAScript);
  152. // sector + amount pct + amount pct + amount pct
  153. // 1 2 3 4 5 6 7 8 9 10
  154. #ifdef GTEST_DEBUG
  155. GTEST_COUT << "Sector: " << p.sector << std::endl;
  156. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  157. #endif
  158. buysell port_buysell;
  159. std::smatch matches;
  160. if (std::regex_match(line, matches, portrx)) {
  161. #ifdef GTEST_DEBUG
  162. for (size_t x = 1; x < matches.size(); ++x) {
  163. GTEST_COUT << x << " : " << matches[x] << std::endl;
  164. }
  165. #endif
  166. if (matches.size() != 11) {
  167. #ifdef GTEST_DEBUG
  168. GTEST_COUT << "Now you have 101 problems." << std::endl;
  169. #endif
  170. p.sector = 0;
  171. p.type = 0;
  172. return p;
  173. }
  174. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  175. p.sector = stoi(matches[1]);
  176. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  177. // for (int x = 1; x < 11; ++x) {
  178. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  179. // }
  180. for (int x = 0; x < 3; ++x) {
  181. int pos = x * 3;
  182. port_buysell.foe[x] = matches[pos + 2] == "-";
  183. p.amount[x] = stoi(matches[pos + 3]);
  184. p.percent[x] = stoi(matches[pos + 4]);
  185. }
  186. p.type = type_from_buysell(port_buysell);
  187. #ifdef GTEST_DEBUG
  188. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  189. #endif
  190. return p;
  191. } else {
  192. #ifdef GTEST_DEBUG
  193. GTEST_COUT << "regex_match failed." << std::endl;
  194. #endif
  195. p.type = 0;
  196. p.sector = 0;
  197. return p;
  198. }
  199. }
  200. Galaxy::Galaxy() { burnt_percent = 40; }
  201. Galaxy::~Galaxy() { BUGZ_LOG(fatal) << "Galaxy::~Galaxy()"; }
  202. void Galaxy::reset(void) {
  203. meta = YAML::Node();
  204. config = YAML::Node();
  205. ports.clear();
  206. warps.clear();
  207. }
  208. void Galaxy::add_warp(sector_warps sw) {
  209. auto pos = warps.find(sw.sector);
  210. if (pos == warps.end()) {
  211. // not found
  212. // sw.sort();
  213. warps[sw.sector] = sw;
  214. // BUGZ_LOG(info) << "add_warp NEW " << sw.sector;
  215. } else {
  216. // found!
  217. if (pos->second.warps == sw.warps) {
  218. // BUGZ_LOG(trace) << "add_warp: Yup, I already know about " << sw.sector;
  219. } else {
  220. BUGZ_LOG(info) << "add_warp: Warps don't match! Updating...";
  221. BUGZ_LOG(warning) << "Have: " << pos->second;
  222. BUGZ_LOG(warning) << "Got : " << sw;
  223. warps[sw.sector] = sw;
  224. }
  225. }
  226. }
  227. void Galaxy::add_port(sector_type sector, int port_type) {
  228. auto pos = ports.find(sector);
  229. if (pos == ports.end()) {
  230. // no such port.
  231. port p;
  232. p.sector = sector;
  233. p.type = port_type;
  234. for (int x = 0; x < 3; x++) {
  235. p.amount[x] = 0;
  236. p.percent[x] = 0;
  237. }
  238. // BUGZ_LOG(trace) << "add_port: " << sector << ", " << port_type << " : "
  239. // << p;
  240. ports[sector] = p;
  241. } else {
  242. // port was found, so:
  243. if (pos->second.type == port_type) {
  244. // BUGZ_LOG(trace) << "add_port: Yup, port " << sector << " is class " <<
  245. // port_type;
  246. } else {
  247. BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type
  248. << " >> set to " << port_type;
  249. pos->second.type = port_type;
  250. }
  251. }
  252. }
  253. void Galaxy::add_port(port p) {
  254. auto pos = ports.find(p.sector);
  255. if (pos == ports.end()) {
  256. // BUGZ_LOG(trace) << "add_port: NEW " << p;
  257. ports[p.sector] = p;
  258. } else {
  259. if (pos->second.type != p.type) {
  260. if ((pos->second.type == 9) && (p.type == 8)) {
  261. BUGZ_LOG(trace) << "add_port: StarDock " << p.sector;
  262. p.type = 9;
  263. ports[p.sector] = p;
  264. } else {
  265. BUGZ_LOG(fatal) << "add_port: " << pos->second << " NEW : " << p;
  266. ports[p.sector] = p;
  267. }
  268. } else {
  269. if (pos->second.amount != p.amount) {
  270. // BUGZ_LOG(info) << "add_port: UPDATE " << p.sector;
  271. pos->second = p;
  272. } else {
  273. // BUGZ_LOG(info) << "add_port: Yup " << p.sector;
  274. }
  275. }
  276. }
  277. }
  278. void Galaxy::load(void) {
  279. std::string filename =
  280. str(boost::format("galaxy-%1%-%2%.yaml") % game % username);
  281. // reset ?
  282. meta = YAML::Node();
  283. config = YAML::Node();
  284. ports.clear();
  285. warps.clear();
  286. if (file_exists(filename)) {
  287. YAML::Node data = YAML::LoadFile(filename);
  288. if (config["meta"]) meta = config["meta"];
  289. meta["load_from"] = filename;
  290. std::chrono::_V2::system_clock::time_point now =
  291. std::chrono::system_clock::now();
  292. meta["load_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  293. if (data["config"]) {
  294. config = data["config"];
  295. } else {
  296. BUGZ_LOG(fatal) << "YAML Missing config section.";
  297. }
  298. if (data["ports"]) {
  299. const YAML::Node ports = data["ports"];
  300. for (auto const &port_iter : ports) {
  301. port p;
  302. p.sector = port_iter.first.as<int>();
  303. p.type = port_iter.second["class"].as<int>();
  304. int x;
  305. if (p.type == 0) {
  306. // nothing to load for type = 0, set defaults.
  307. for (x = 0; x < 3; ++x) {
  308. p.amount[x] = 0;
  309. p.percent[x] = 0;
  310. }
  311. } else {
  312. x = 0;
  313. for (auto const &amount : port_iter.second["amount"]) {
  314. p.amount[x] = amount.as<int>();
  315. ++x;
  316. }
  317. x = 0;
  318. for (auto const &pct : port_iter.second["pct"]) {
  319. p.percent[x] = pct.as<int>();
  320. ++x;
  321. }
  322. }
  323. add_port(p);
  324. }
  325. } else {
  326. BUGZ_LOG(fatal) << "YAML Missing ports section.";
  327. }
  328. if (data["warps"]) {
  329. const YAML::Node &warps = data["warps"];
  330. // if (warps.IsMap()) {
  331. for (auto const warp_iter : warps) {
  332. sector_warps sw;
  333. sw.sector = warp_iter.first.as<int>();
  334. for (auto const sector_iter : warp_iter.second) {
  335. sw.add(sector_iter.as<int>());
  336. }
  337. // BUGZ_LOG(trace) << "YAML warp: " << sw;
  338. add_warp(sw);
  339. }
  340. // }
  341. } else {
  342. BUGZ_LOG(fatal) << "YAML Missing warps section.";
  343. }
  344. BUGZ_LOG(fatal) << "YAML: config keys: " << config.size();
  345. BUGZ_LOG(fatal) << "YAML: warp keys: " << warps.size();
  346. BUGZ_LOG(fatal) << "YAML: port keys: " << ports.size();
  347. } else {
  348. BUGZ_LOG(fatal) << "Missing YAML: " << filename;
  349. }
  350. }
  351. void Galaxy::save(void) {
  352. std::string filename =
  353. str(boost::format("galaxy-%1%-%2%.yaml") % game % username);
  354. YAML::Node data;
  355. // add some information to meta before saving.
  356. meta["save_to"] = filename;
  357. std::chrono::_V2::system_clock::time_point now =
  358. std::chrono::system_clock::now();
  359. meta["save_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  360. data["meta"] = meta;
  361. // data["meta"].SetStyle(YAML::EmitterStyle::Flow);
  362. BUGZ_LOG(fatal) << "YAML config: " << config.size();
  363. data["config"] = config;
  364. data["config"].SetStyle(YAML::EmitterStyle::Flow);
  365. /*
  366. for (auto const &config_iter : config) {
  367. data["config"][config_iter.first] = config_iter.second;
  368. }
  369. */
  370. BUGZ_LOG(fatal) << "YAML warps: " << warps.size();
  371. for (auto const &warp : warps) {
  372. for (auto const &sector : warp.second.warps) {
  373. data["warps"][warp.first].push_back(sector);
  374. }
  375. data["warps"][warp.first].SetStyle(YAML::EmitterStyle::Flow);
  376. /*
  377. for (int x = 0; x < MAX_WARPS; ++x) {
  378. if (warp.second.warps[x] == 0) break;
  379. data["warps"][warp.first].push_back(warp.second.warps[x]);
  380. }
  381. */
  382. }
  383. BUGZ_LOG(fatal) << "YAML ports: " << ports.size();
  384. /*
  385. When saving to yaml, my sector_type is like char. So, it wants
  386. to save the values as a character. Cast to int.
  387. */
  388. for (auto const &port : ports) {
  389. data["ports"][port.second.sector]["class"] = (int)port.second.type;
  390. if (port.second.type == 0) {
  391. data["ports"][port.second.sector].SetStyle(YAML::EmitterStyle::Flow);
  392. } else {
  393. // nothing to save for type = 0
  394. for (int x = 0; x < 3; x++) {
  395. data["ports"][port.second.sector]["amount"].push_back(
  396. (int)port.second.amount[x]);
  397. data["ports"][port.second.sector]["pct"].push_back(
  398. (int)port.second.percent[x]);
  399. }
  400. data["ports"][port.second.sector]["amount"].SetStyle(
  401. YAML::EmitterStyle::Flow);
  402. data["ports"][port.second.sector]["pct"].SetStyle(
  403. YAML::EmitterStyle::Flow);
  404. data["ports"][port.second.sector].SetStyle(YAML::EmitterStyle::Flow);
  405. }
  406. }
  407. std::ofstream fout(filename);
  408. fout << data << std::endl;
  409. BUGZ_LOG(fatal) << "YAML: " << filename;
  410. }
  411. std::vector<port_pair_type> Galaxy::find_trades(sector_type sector,
  412. bool highest) {
  413. std::vector<port_pair_type> pptv;
  414. // Does this sector have a port?
  415. auto port = ports.find(sector);
  416. if (port == ports.end()) return pptv;
  417. auto port_warps = warps.find(sector);
  418. // warps not found for port sector?
  419. if (port_warps == warps.end()) return pptv;
  420. for (auto const &s : port_warps->second.warps) {
  421. // only count the ports > our sector number -- so we don't have dups
  422. if (highest && (s < sector)) continue;
  423. // verify we have a way back
  424. {
  425. auto warpback = warps.find(s);
  426. // can we find that warp?
  427. if (warpback == warps.end()) continue;
  428. // does it link back to the port's sector?
  429. if (warpback->second.warps.find(sector) == warpback->second.warps.end())
  430. continue;
  431. }
  432. // Does this sector have a port?
  433. auto possible_port = ports.find(s);
  434. if (possible_port == ports.end()) continue;
  435. // calculate trade type
  436. // int t = trade_type(port->second.type, possible_port->second.type);
  437. trade_type_result ttr =
  438. trade_type_info(port->second.type, possible_port->second.type);
  439. if ((ttr.type == 0) || (ttr.type == 4)) continue;
  440. // Are any of the trade pairs burnt out? FUTURE: Are the lines we're
  441. // interested in burnt? TODO: Are the ports unknown? (all percent=0?)
  442. bool burnt = false;
  443. for (int x = 0; x < 3; ++x) {
  444. if (ttr.trades.foe[x]) {
  445. if ((possible_port->second.percent[0] != 0) ||
  446. (possible_port->second.percent[1] != 0) ||
  447. (possible_port->second.percent[2] != 0))
  448. if (possible_port->second.percent[x] < burnt_percent) burnt = true;
  449. if ((port->second.percent[0] != 0) || (port->second.percent[1] != 0) ||
  450. (port->second.percent[2] != 0))
  451. if (port->second.percent[x] < burnt_percent) burnt = true;
  452. }
  453. }
  454. if (burnt) continue;
  455. /*
  456. if ((possible_port->second.percent[0] < burnt_percent) ||
  457. (possible_port->second.percent[1] < burnt_percent) ||
  458. (possible_port->second.percent[2] < burnt_percent))
  459. continue;
  460. */
  461. pptv.push_back(port_pair_type{ttr.type, sector, s});
  462. BUGZ_LOG(trace) << "sector: " << sector << " and " << s
  463. << " tt:" << ttr.type;
  464. }
  465. return pptv;
  466. }
  467. bool compare_port_pair(const port_pair_type &ppt1, const port_pair_type &ppt2) {
  468. if (ppt1.type == ppt2.type) {
  469. return ppt1.s1 < ppt2.s1;
  470. } else {
  471. return (ppt1.type < ppt2.type);
  472. }
  473. }
  474. void Galaxy::sort_port_pair_type(std::vector<port_pair_type> &pptv) {
  475. sort(pptv.begin(), pptv.end(), compare_port_pair);
  476. }
  477. std::vector<port_pair_type> Galaxy::find_best_trades(void) {
  478. std::vector<port_pair_type> pptv;
  479. burnt_percent = config["burnt_percent"].as<int>();
  480. if (burnt_percent > 90) {
  481. burnt_percent = 90;
  482. config["burnt_percent"] = 90;
  483. }
  484. if (burnt_percent < 10) {
  485. burnt_percent = 10;
  486. config["burnt_percent"] = 10;
  487. }
  488. for (auto const &pi : ports) {
  489. if (pi.second.type == 0) continue;
  490. sector_type sector = pi.second.sector;
  491. auto port_warps = warps.find(sector);
  492. if (port_warps == warps.end()) continue;
  493. std::vector<port_pair_type> ppt_sector = find_trades(sector, true);
  494. if (ppt_sector.empty()) continue;
  495. pptv.insert(pptv.end(), ppt_sector.begin(), ppt_sector.end());
  496. }
  497. return pptv;
  498. }