瀏覽代碼

Working save/load with meta.

Steve Thielemann 3 年之前
父節點
當前提交
91a96effe9
共有 3 個文件被更改,包括 62 次插入84 次删除
  1. 15 0
      director.cpp
  2. 42 83
      galaxy.cpp
  3. 5 1
      galaxy.h

+ 15 - 0
director.cpp

@@ -107,17 +107,26 @@ void Director::server_line(const std::string &line,
 
   if (line.find("TradeWars Game Server   ") != std::string::npos) {
     to_client("\rTradeWars Proxy v2++ READY (~ or ESC to activate)\n\r");
+    /*
+    There's a delay here when I save the game data.
+    I've moved it futher down.  Hide it at a prompt, so it isn't so noticeable.
+     */
+    /*
     if (game) {
       // TODO:  Save galaxy data
       galaxy.save();
     }
     game = 0;
+    */
     // reset "active game" -- we're at the TWGS main menu
   }
 
   if (line.find("Selection (? for menu): ") != std::string::npos) {
     char ch = line[line.length() - 1];
     if (ch >= 'A' && ch < 'Q') {
+      if ((game) && (game != ch) ) {
+        galaxy.save();
+      }
       game = ch;
       BUGZ_LOG(warning) << "GAME " << game << " activated!";
       // TODO:  Load game data
@@ -199,7 +208,13 @@ void Director::server_prompt(const std::string &prompt,
   current_prompt = prompt;
   current_raw_prompt = raw_prompt;
 
+ 
   if (game) {
+    if (prompt == "Selection (? for menu): ") {
+        galaxy.save();
+        game = 0;
+    }
+
     // in-game parsing here.
     if (startswith(prompt, "Command [") && endswith(prompt, "] (?=Help)? : ")) {
       std::string sector_text;

+ 42 - 83
galaxy.cpp

@@ -2,6 +2,7 @@
 
 #include <algorithm>  // sort
 #include <boost/format.hpp>
+#include <chrono>
 #include <exception>
 #include <fstream>
 #include <ostream>
@@ -235,25 +236,29 @@ void Galaxy::add_warp(sector_warps sw) {
   }
 }
 
-void Galaxy::add_port(sector_type sector, int port_class) {
+void Galaxy::add_port(sector_type sector, int port_type) {
   auto pos = ports.find(sector);
   if (pos == ports.end()) {
     // no such port.
     port p;
     p.sector = sector;
-    p.type = port_class;
-    for( int x= 0; x < 3; x++) {
-      p.amount[x ] = 0;
+    p.type = port_type;
+    for (int x = 0; x < 3; x++) {
+      p.amount[x] = 0;
       p.percent[x] = 0;
     }
-    BUGZ_LOG(info) << "add_port: " << sector << ", " << port_class << " : " << p;
+    BUGZ_LOG(trace) << "add_port: " << sector << ", " << port_type << " : "
+                    << p;
     ports[sector] = p;
   } else {
     // port was found, so:
-    if ( pos->second.type == port_class) {
-      BUGZ_LOG(info) << "add_port: Yup, port " << sector << " is class " << port_class;
+    if (pos->second.type == port_type) {
+      BUGZ_LOG(trace) << "add_port: Yup, port " << sector << " is class "
+                      << port_type;
     } else {
-      BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type << " >> set to " << port_class;
+      BUGZ_LOG(fatal) << "add_port: " << sector << " shows " << pos->second.type
+                      << " >> set to " << port_type;
+      pos->second.type = port_type;
     }
   }
 }
@@ -261,11 +266,11 @@ void Galaxy::add_port(sector_type sector, int port_class) {
 void Galaxy::add_port(port p) {
   auto pos = ports.find(p.sector);
   if (pos == ports.end()) {
-    BUGZ_LOG(info) << "add_port: NEW " << p;
+    BUGZ_LOG(trace) << "add_port: NEW " << p;
     ports[p.sector] = p;
   } else {
     if (pos->second.type != p.type) {
-      if ( (pos->second.type == 9) && (p.type == 8) ) {
+      if ((pos->second.type == 9) && (p.type == 8)) {
         BUGZ_LOG(info) << "add_port: StarDock " << p.sector;
         p.type = 9;
         ports[p.sector] = p;
@@ -274,91 +279,34 @@ void Galaxy::add_port(port p) {
         ports[p.sector] = p;
       }
     } else {
-      BUGZ_LOG(info) << "add_port: Yup " << p.sector;
-    }
-  }
-}
-
-#ifdef NO_NOT_EVER
-
-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);
-        }
+      if (pos->second.amount != p.amount) {
+        BUGZ_LOG(info) << "add_port: UPDATE " << p.sector;
+        pos->second = p;
+      } else {
+        BUGZ_LOG(info) << "add_port: Yup " << p.sector;
       }
-    } 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
-
-#endif
+}
 
 void Galaxy::load(void) {
   std::string filename =
       str(boost::format("galaxy-%1%-%2%.json") % game % username);
   // reset ?
-  config.clear();
+  meta = YAML::Node();
+  config = YAML::Node();
   ports.clear();
   warps.clear();
   if (file_exists(filename)) {
     YAML::Node data = YAML::LoadFile(filename);
+    if (config["meta"]) meta = config["meta"];
+    meta["load_from"] = filename;
+    std::chrono::_V2::system_clock::time_point now =
+        std::chrono::system_clock::now();
+
+    meta["load_time"] = std::chrono::system_clock::to_time_t(now);  // time_t
     if (data["config"]) {
+      config = data["config"];
     } else {
       BUGZ_LOG(fatal) << "YAML Missing config section.";
     }
@@ -392,7 +340,7 @@ void Galaxy::load(void) {
         for (auto const sector_iter : warp_iter.second) {
           sw.add(sector_iter.as<int>());
         }
-        BUGZ_LOG(fatal) << "YAML warp: " << sw;
+        // BUGZ_LOG(trace) << "YAML warp: " << sw;
         add_warp(sw);
       }
       // }
@@ -413,10 +361,21 @@ void Galaxy::save(void) {
   std::string filename =
       str(boost::format("galaxy-%1%-%2%.json") % game % username);
   YAML::Node data;
+  // add some information to meta before saving.
+  meta["save_to"] = filename;
+  std::chrono::_V2::system_clock::time_point now =
+      std::chrono::system_clock::now();
+  meta["save_time"] =
+      std::chrono::system_clock::to_time_t(now);  // time_t
+
+  data["meta"] = meta;
   BUGZ_LOG(fatal) << "YAML config: " << config.size();
+  data["config"] = config;
+  /*
   for (auto const &config_iter : config) {
     data["config"][config_iter.first] = config_iter.second;
   }
+  */
   BUGZ_LOG(fatal) << "YAML warps: " << warps.size();
   for (auto const &warp : warps) {
     for (auto const &sector : warp.second.warps) {

+ 5 - 1
galaxy.h

@@ -11,6 +11,8 @@
 #include <vector>
 #include <set>
 
+#include "yaml-cpp/yaml.h"
+
 enum PRODUCT { FUEL = 0, ORG = 1, EQUIP = 2 };
 
 // Class 0 : Special
@@ -169,7 +171,9 @@ class Galaxy {
  Galaxy();
  ~Galaxy();
 
-  std::map<std::string, std::string> config;
+  YAML::Node config;
+  YAML::Node meta;
+  
   // warps;
   // ports;
   std::map<sector_type, port> ports;