galaxy.cpp 10 KB

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