galaxy.cpp 11 KB

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