|
@@ -1,9 +1,15 @@
|
|
|
#include "galaxy.h"
|
|
|
|
|
|
+#include <algorithm> // sort
|
|
|
#include <boost/format.hpp>
|
|
|
#include <exception>
|
|
|
#include <ostream>
|
|
|
+#include <set>
|
|
|
#include <string>
|
|
|
+#include <fstream>
|
|
|
+
|
|
|
+#include "logging.h"
|
|
|
+#include "yaml-cpp/yaml.h"
|
|
|
|
|
|
// c++ default exceptions list
|
|
|
// https://en.cppreference.com/w/cpp/error/exception
|
|
@@ -66,6 +72,43 @@ std::ostream &operator<<(std::ostream &os, const sector_warps &warps) {
|
|
|
}
|
|
|
return os;
|
|
|
}
|
|
|
+
|
|
|
+bool sector_sort(sector_type st1, sector_type st2) {
|
|
|
+ /* Sort sectors, put 0's at the end. */
|
|
|
+ if (st1 == 0) return false;
|
|
|
+ if (st2 == 0) return false;
|
|
|
+ return (st1 < st2);
|
|
|
+}
|
|
|
+
|
|
|
+void sector_warps::sort(void) {
|
|
|
+ std::sort(&warps[0], &warps[MAX_WARPS], sector_sort);
|
|
|
+}
|
|
|
+
|
|
|
+bool sector_warps::operator==(const sector_warps &rhs) const {
|
|
|
+ /*
|
|
|
+ Comapre if the sector_warps are the same.
|
|
|
+ They do not need to be in the same order.
|
|
|
+ */
|
|
|
+ std::set<sector_type> contains;
|
|
|
+ if (sector == rhs.sector) {
|
|
|
+ int x;
|
|
|
+ for (x = 0; x < MAX_WARPS; ++x) {
|
|
|
+ if (warps[x] == 0) break;
|
|
|
+ contains.insert(warps[x]);
|
|
|
+ }
|
|
|
+ for (x = 0; x < MAX_WARPS; ++x) {
|
|
|
+ if (warps[0] == 0) break;
|
|
|
+ auto pos = contains.find(rhs.warps[x]);
|
|
|
+ if (pos == contains.end()) return false;
|
|
|
+ contains.erase(pos);
|
|
|
+ }
|
|
|
+ return contains.empty();
|
|
|
+ }
|
|
|
+
|
|
|
+ // sector number doesn't match!
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
#define GTEST_COUT std::cerr << "[ ] [ INFO ]"
|
|
|
// #define GTEST_DEBUG
|
|
|
|
|
@@ -140,3 +183,125 @@ struct port parse_portcim(const std::string line) {
|
|
|
return p;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+Galaxy::Galaxy() {}
|
|
|
+Galaxy::~Galaxy() { BUGZ_LOG(fatal) << "Galaxy::~Galaxy()"; }
|
|
|
+
|
|
|
+void Galaxy::add_warp(sector_warps sw) {
|
|
|
+ auto pos = warps.find(sw.sector);
|
|
|
+
|
|
|
+ if (pos == warps.end()) {
|
|
|
+ // not found
|
|
|
+ sw.sort();
|
|
|
+ warps[sw.sector] = sw;
|
|
|
+ BUGZ_LOG(info) << "add_warp NEW " << sw.sector;
|
|
|
+ } else {
|
|
|
+ // found!
|
|
|
+ if (pos->second == sw) {
|
|
|
+ BUGZ_LOG(trace) << "add_warp: Yup, I already know about " << sw.sector;
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(info) << "add_warp: Warps don't match! Updating...";
|
|
|
+ BUGZ_LOG(warning) << "Have: " << pos->second;
|
|
|
+ BUGZ_LOG(warning) << "Got : " << sw;
|
|
|
+ warps[sw.sector] = sw;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void Galaxy::add_port(sector_type sector, int port_class) {}
|
|
|
+void Galaxy::add_port(port p) {}
|
|
|
+
|
|
|
+namespace YAML {
|
|
|
+template <>
|
|
|
+struct convert<Galaxy> {
|
|
|
+ static Node encode(const Galaxy &rhs) {
|
|
|
+ Node node;
|
|
|
+ for (auto const &config_iter : rhs.config) {
|
|
|
+ node["config"][config_iter.first] = config_iter.second;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (auto const &warp : rhs.warps) {
|
|
|
+ for (int x = 0; x < MAX_WARPS; ++x) {
|
|
|
+ if (warp.second.warps[x] == 0) break;
|
|
|
+ node["warps"][warp.first].push_back(warp.second.warps[x]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ node.push_back(rhs.x);
|
|
|
+ node.push_back(rhs.y);
|
|
|
+ node.push_back(rhs.z);
|
|
|
+ return node;
|
|
|
+ */
|
|
|
+ return node;
|
|
|
+ }
|
|
|
+
|
|
|
+ static bool decode(const Node &node, Galaxy &rhs) {
|
|
|
+ if (!node.IsMap()) return false;
|
|
|
+ if (node["config"]) {
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(fatal) << "YAML missing config section.";
|
|
|
+ }
|
|
|
+ if (node["ports"]) {
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(fatal) << "YAML missing ports section.";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (node["warps"]) {
|
|
|
+ const Node &warps = node["warps"];
|
|
|
+ if (warps.IsMap()) {
|
|
|
+ for (auto const warp_iter : warps) {
|
|
|
+ sector_warps sw;
|
|
|
+ sw.sector = warp_iter.first.as<int>();
|
|
|
+ for (auto const sector_iter : warp_iter.second) {
|
|
|
+ sw.add(sector_iter.as<int>());
|
|
|
+ }
|
|
|
+ BUGZ_LOG(fatal) << "YAML warp: " << sw;
|
|
|
+ rhs.add_warp(sw);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(fatal) << "YAML missing warps section.";
|
|
|
+ }
|
|
|
+ /*
|
|
|
+ if(!node.IsSequence() || node.size() != 3) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ rhs.x = node[0].as<double>();
|
|
|
+ rhs.y = node[1].as<double>();
|
|
|
+ rhs.z = node[2].as<double>();
|
|
|
+ */
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+};
|
|
|
+} // namespace YAML
|
|
|
+
|
|
|
+void Galaxy::load(void) {
|
|
|
+ std::string filename =
|
|
|
+ str(boost::format("galaxy-%1%-%2%.json") % game % username);
|
|
|
+ // reset ?
|
|
|
+ config.clear();
|
|
|
+ ports.clear();
|
|
|
+ warps.clear();
|
|
|
+ if (file_exists(filename)) {
|
|
|
+ YAML::Node data = YAML::LoadFile(filename);
|
|
|
+ Galaxy g = data["galaxy"].as<Galaxy>();
|
|
|
+ BUGZ_LOG(fatal) << "YAML: config keys: " << g.config.size();
|
|
|
+ BUGZ_LOG(fatal) << "YAML: warp keys: " << g.warps.size();
|
|
|
+ BUGZ_LOG(fatal) << "YAML: port keys: " << g.ports.size();
|
|
|
+ // *this = data.as<Galaxy>();
|
|
|
+ } else {
|
|
|
+ BUGZ_LOG(fatal) << "Missing YAML: " << filename;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void Galaxy::save(void) {
|
|
|
+ std::string filename =
|
|
|
+ str(boost::format("galaxy-%1%-%2%.json") % game % username);
|
|
|
+ YAML::Node data;
|
|
|
+ data["galaxy"] = *this;
|
|
|
+ std::ofstream fout(filename);
|
|
|
+ fout << data << std::endl;
|
|
|
+ BUGZ_LOG(fatal) << "YAML: " << filename;
|
|
|
+}
|