galaxy.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  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. int trade_type(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. // O != E for both ports, and O != O
  47. if ((p1.foe[ORG] != p1.foe[EQU]) && (p2.foe[ORG] != p2.foe[EQU]) &&
  48. (p1.foe[ORG] != p2.foe[ORG])) {
  49. return 1;
  50. }
  51. buysell inv2 = invert_buysell(p2);
  52. int matches = 0; // or pos.size();
  53. std::vector<int> pos;
  54. // find which FOE are flipped. Save index pos.
  55. for (int x = 0; x < 3; ++x) {
  56. inv2.foe[x] = (p1.foe[x] == inv2.foe[x]);
  57. if (inv2.foe[x]) {
  58. matches++;
  59. pos.push_back(x);
  60. }
  61. }
  62. if (matches > 1) {
  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 3;
  68. }
  69. return 2;
  70. }
  71. if (matches == 1) {
  72. if (inv2.foe[FUEL])
  73. return 4;
  74. return 3;
  75. }
  76. return 0;
  77. }
  78. /*
  79. // adding this breaks test-galaxy's port = {2, 2, {1,2,3}, {1,2,3}} code.
  80. port::port() {
  81. sector = 0;
  82. type = 0;
  83. for (int x = 0; x < 3; x++) {
  84. amount[x] = 0;
  85. percent[x] = 0;
  86. }
  87. }
  88. */
  89. sector_warps::sector_warps() {
  90. sector = 0;
  91. // for (int x = 0; x < MAX_WARPS; ++x) warps[x] = 0;
  92. }
  93. void sector_warps::add(sector_type new_sector) {
  94. warps.insert(new_sector);
  95. /*
  96. for (int x = 0; x < MAX_WARPS; ++x) {
  97. if (warps[x] == new_sector) return;
  98. if (warps[x] == 0) {
  99. warps[x] = new_sector;
  100. return;
  101. }
  102. }
  103. std::string message = str(boost::format("More then MAX %1% sectors for %2%") %
  104. MAX_WARPS % (int)sector);
  105. throw std::out_of_range(message);
  106. */
  107. }
  108. std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
  109. os << "Sector: " << warps.sector << " ";
  110. bool comma = false;
  111. for (auto const &warp : warps.warps) {
  112. if (comma)
  113. os << ",";
  114. else
  115. comma = true;
  116. os << warp;
  117. }
  118. /*
  119. for (int x = 0; x < MAX_WARPS; ++x) {
  120. if (warps.warps[x] != 0) {
  121. if (x != 0) os << ",";
  122. os << warps.warps[x];
  123. }
  124. }
  125. */
  126. return os;
  127. }
  128. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  129. // #define GTEST_DEBUG
  130. // TODO: fix this. I want some trace output, but I don't want
  131. // my logs flooded ...
  132. struct port parse_portcim(const std::string line) {
  133. struct port p;
  134. p.sector = std::stoi(line);
  135. // 20 - 1708 97% - 710 56% 287 15%
  136. static std::regex portrx(
  137. "[ ]*([0-9]+) (.)[ ]+([0-9]+)[ ]+([0-9]+%) (.)[ "
  138. "]+([0-9]+)[ ]+([0-9]+%) (.)[ ]+([0-9]+)[ ]+([0-9]+%)[ ]*",
  139. std::regex_constants::ECMAScript);
  140. // does it not understand {3} ??
  141. // NO, it does not, from regex101.com:
  142. // A repeated capturing group will only capture the last iteration. Put a
  143. // capturing group around the repeated group to capture all iterations or use
  144. // a non-capturing group instead if you're not interested in the data
  145. //
  146. // static std::regex portrx("[ ]*([0-9]+)( (.)[ ]+([0-9]+)[ ]+([0-9]+%)){3}[
  147. // ]*",
  148. // std::regex_constants::ECMAScript);
  149. // sector + amount pct + amount pct + amount pct
  150. // 1 2 3 4 5 6 7 8 9 10
  151. #ifdef GTEST_DEBUG
  152. GTEST_COUT << "Sector: " << p.sector << std::endl;
  153. GTEST_COUT << "Line: [" << line << "]" << std::endl;
  154. #endif
  155. buysell port_buysell;
  156. std::smatch matches;
  157. if (std::regex_match(line, matches, portrx)) {
  158. #ifdef GTEST_DEBUG
  159. for (size_t x = 1; x < matches.size(); ++x) {
  160. GTEST_COUT << x << " : " << matches[x] << std::endl;
  161. }
  162. #endif
  163. if (matches.size() != 11) {
  164. #ifdef GTEST_DEBUG
  165. GTEST_COUT << "Now you have 101 problems." << std::endl;
  166. #endif
  167. p.sector = 0;
  168. p.type = 0;
  169. return p;
  170. }
  171. // GTEST_COUT << "matches: " << matches.size() << std::endl;
  172. p.sector = stoi(matches[1]);
  173. // GTEST_COUT << "sector: " << matches[1] << std::endl;
  174. // for (int x = 1; x < 11; ++x) {
  175. // GTEST_COUT << x << " : " << matches[x] << std::endl;
  176. // }
  177. for (int x = 0; x < 3; ++x) {
  178. int pos = x * 3;
  179. port_buysell.foe[x] = matches[pos + 2] == "-";
  180. p.amount[x] = stoi(matches[pos + 3]);
  181. p.percent[x] = stoi(matches[pos + 4]);
  182. }
  183. p.type = type_from_buysell(port_buysell);
  184. #ifdef GTEST_DEBUG
  185. GTEST_COUT << "port is type " << (int)p.type << std::endl;
  186. #endif
  187. return p;
  188. } else {
  189. #ifdef GTEST_DEBUG
  190. GTEST_COUT << "regex_match failed." << std::endl;
  191. #endif
  192. p.type = 0;
  193. p.sector = 0;
  194. return p;
  195. }
  196. }
  197. Galaxy::Galaxy() {}
  198. Galaxy::~Galaxy() { BUGZ_LOG(fatal) << "Galaxy::~Galaxy()"; }
  199. void Galaxy::reset(void) {
  200. meta = YAML::Node();
  201. config = YAML::Node();
  202. ports.clear();
  203. warps.clear();
  204. }
  205. void Galaxy::add_warp(sector_warps sw) {
  206. auto pos = warps.find(sw.sector);
  207. if (pos == warps.end()) {
  208. // not found
  209. // sw.sort();
  210. warps[sw.sector] = sw;
  211. BUGZ_LOG(info) << "add_warp NEW " << sw.sector;
  212. } else {
  213. // found!
  214. if (pos->second.warps == sw.warps) {
  215. BUGZ_LOG(trace) << "add_warp: Yup, I already know about " << sw.sector;
  216. } else {
  217. BUGZ_LOG(info) << "add_warp: Warps don't match! Updating...";
  218. BUGZ_LOG(warning) << "Have: " << pos->second;
  219. BUGZ_LOG(warning) << "Got : " << sw;
  220. warps[sw.sector] = sw;
  221. }
  222. }
  223. }
  224. void Galaxy::add_port(sector_type sector, int port_type) {
  225. auto pos = ports.find(sector);
  226. if (pos == ports.end()) {
  227. // no such port.
  228. port p;
  229. p.sector = sector;
  230. p.type = port_type;
  231. for (int x = 0; x < 3; x++) {
  232. p.amount[x] = 0;
  233. p.percent[x] = 0;
  234. }
  235. BUGZ_LOG(trace) << "add_port: " << sector << ", " << port_type << " : "
  236. << p;
  237. ports[sector] = p;
  238. } else {
  239. // port was found, so:
  240. if (pos->second.type == port_type) {
  241. BUGZ_LOG(trace) << "add_port: Yup, port " << sector << " is class "
  242. << port_type;
  243. } else {
  244. BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type
  245. << " >> set to " << port_type;
  246. pos->second.type = port_type;
  247. }
  248. }
  249. }
  250. void Galaxy::add_port(port p) {
  251. auto pos = ports.find(p.sector);
  252. if (pos == ports.end()) {
  253. BUGZ_LOG(trace) << "add_port: NEW " << p;
  254. ports[p.sector] = p;
  255. } else {
  256. if (pos->second.type != p.type) {
  257. if ((pos->second.type == 9) && (p.type == 8)) {
  258. BUGZ_LOG(info) << "add_port: StarDock " << p.sector;
  259. p.type = 9;
  260. ports[p.sector] = p;
  261. } else {
  262. BUGZ_LOG(fatal) << "add_port: " << pos->second << " NEW : " << p;
  263. ports[p.sector] = p;
  264. }
  265. } else {
  266. if (pos->second.amount != p.amount) {
  267. BUGZ_LOG(info) << "add_port: UPDATE " << p.sector;
  268. pos->second = p;
  269. } else {
  270. BUGZ_LOG(info) << "add_port: Yup " << p.sector;
  271. }
  272. }
  273. }
  274. }
  275. void Galaxy::load(void) {
  276. std::string filename =
  277. str(boost::format("galaxy-%1%-%2%.json") % game % username);
  278. // reset ?
  279. meta = YAML::Node();
  280. config = YAML::Node();
  281. ports.clear();
  282. warps.clear();
  283. if (file_exists(filename)) {
  284. YAML::Node data = YAML::LoadFile(filename);
  285. if (config["meta"]) meta = config["meta"];
  286. meta["load_from"] = filename;
  287. std::chrono::_V2::system_clock::time_point now =
  288. std::chrono::system_clock::now();
  289. meta["load_time"] = std::chrono::system_clock::to_time_t(now); // time_t
  290. if (data["config"]) {
  291. config = data["config"];
  292. } else {
  293. BUGZ_LOG(fatal) << "YAML Missing config section.";
  294. }
  295. if (data["ports"]) {
  296. const YAML::Node ports = data["ports"];
  297. for (auto const &port_iter : ports) {
  298. port p;
  299. p.sector = port_iter.first.as<int>();
  300. p.type = port_iter.second["class"].as<int>();
  301. int x = 0;
  302. for (auto const &amount : port_iter.second["amount"]) {
  303. p.amount[x] = amount.as<int>();
  304. ++x;
  305. }
  306. x = 0;
  307. for (auto const &pct : port_iter.second["pct"]) {
  308. p.percent[x] = pct.as<int>();
  309. ++x;
  310. }
  311. add_port(p);
  312. }
  313. } else {
  314. BUGZ_LOG(fatal) << "YAML Missing ports section.";
  315. }
  316. if (data["warps"]) {
  317. const YAML::Node &warps = data["warps"];
  318. // if (warps.IsMap()) {
  319. for (auto const warp_iter : warps) {
  320. sector_warps sw;
  321. sw.sector = warp_iter.first.as<int>();
  322. for (auto const sector_iter : warp_iter.second) {
  323. sw.add(sector_iter.as<int>());
  324. }
  325. // BUGZ_LOG(trace) << "YAML warp: " << sw;
  326. add_warp(sw);
  327. }
  328. // }
  329. } else {
  330. BUGZ_LOG(fatal) << "YAML Missing warps section.";
  331. }
  332. BUGZ_LOG(fatal) << "YAML: config keys: " << config.size();
  333. BUGZ_LOG(fatal) << "YAML: warp keys: " << warps.size();
  334. BUGZ_LOG(fatal) << "YAML: port keys: " << ports.size();
  335. } else {
  336. BUGZ_LOG(fatal) << "Missing YAML: " << filename;
  337. }
  338. }
  339. void Galaxy::save(void) {
  340. std::string filename =
  341. str(boost::format("galaxy-%1%-%2%.json") % game % username);
  342. YAML::Node data;
  343. // add some information to meta before saving.
  344. meta["save_to"] = filename;
  345. std::chrono::_V2::system_clock::time_point now =
  346. std::chrono::system_clock::now();
  347. meta["save_time"] =
  348. std::chrono::system_clock::to_time_t(now); // time_t
  349. data["meta"] = meta;
  350. BUGZ_LOG(fatal) << "YAML config: " << config.size();
  351. data["config"] = config;
  352. /*
  353. for (auto const &config_iter : config) {
  354. data["config"][config_iter.first] = config_iter.second;
  355. }
  356. */
  357. BUGZ_LOG(fatal) << "YAML warps: " << warps.size();
  358. for (auto const &warp : warps) {
  359. for (auto const &sector : warp.second.warps) {
  360. data["warps"][warp.first].push_back(sector);
  361. }
  362. /*
  363. for (int x = 0; x < MAX_WARPS; ++x) {
  364. if (warp.second.warps[x] == 0) break;
  365. data["warps"][warp.first].push_back(warp.second.warps[x]);
  366. }
  367. */
  368. }
  369. BUGZ_LOG(fatal) << "YAML ports: " << ports.size();
  370. /*
  371. When saving to yaml, my sector_type is like char. So, it wants
  372. to save the values as a character. Cast to int.
  373. */
  374. for (auto const &port : ports) {
  375. data["ports"][port.second.sector]["class"] = (int)port.second.type;
  376. for (int x = 0; x < 3; x++) {
  377. data["ports"][port.second.sector]["amount"].push_back(
  378. (int)port.second.amount[x]);
  379. data["ports"][port.second.sector]["pct"].push_back(
  380. (int)port.second.percent[x]);
  381. }
  382. }
  383. std::ofstream fout(filename);
  384. fout << data << std::endl;
  385. BUGZ_LOG(fatal) << "YAML: " << filename;
  386. }