aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-26 15:58:39 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-26 15:58:39 +0200
commite0b1ddae296037376948a4c6f200d89e6d1ba81e (patch)
treef70e5a9b73e0b10e5c9fe263e146e9884474ac0f /src/crepe
parent2d67cf09b80297d13f642afd7db13dba53ca2b9b (diff)
WIP save manager
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/CMakeLists.txt2
-rw-r--r--src/crepe/Proxy.h23
-rw-r--r--src/crepe/Proxy.hpp19
-rw-r--r--src/crepe/ProxyHandler.h13
-rw-r--r--src/crepe/api/CMakeLists.txt3
-rw-r--r--src/crepe/api/SaveManager.cpp9
-rw-r--r--src/crepe/api/SaveManager.h39
-rw-r--r--src/crepe/api/SaveManager.hpp4
8 files changed, 112 insertions, 0 deletions
diff --git a/src/crepe/CMakeLists.txt b/src/crepe/CMakeLists.txt
index d938eb8..8e3a81c 100644
--- a/src/crepe/CMakeLists.txt
+++ b/src/crepe/CMakeLists.txt
@@ -31,6 +31,8 @@ target_sources(crepe PUBLIC FILE_SET HEADERS FILES
Collider.h
SDLContext.h
RenderSystem.h
+ Proxy.h
+ Proxy.hpp
)
add_subdirectory(api)
diff --git a/src/crepe/Proxy.h b/src/crepe/Proxy.h
new file mode 100644
index 0000000..97b8afa
--- /dev/null
+++ b/src/crepe/Proxy.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include <memory>
+
+#include "ProxyHandler.h"
+
+namespace crepe {
+
+template <typename T>
+class Proxy {
+public:
+ Proxy & operator = (const T &);
+ operator const T & () const;
+
+public:
+ Proxy(std::unique_ptr<ProxyHandler<T>> handler) : val(std::move(handler)) {}
+private:
+ std::unique_ptr<ProxyHandler<T>> val = nullptr;
+};
+
+}
+
+#include "Proxy.hpp"
diff --git a/src/crepe/Proxy.hpp b/src/crepe/Proxy.hpp
new file mode 100644
index 0000000..7f23716
--- /dev/null
+++ b/src/crepe/Proxy.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "Proxy.h"
+
+namespace crepe {
+
+template <typename T>
+Proxy<T> & Proxy<T>::operator = (const T & val) {
+ this->val->set(val);
+ return *this;
+}
+
+template <typename T>
+Proxy<T>::operator const T & () const {
+ return this->val->get();
+}
+
+}
+
diff --git a/src/crepe/ProxyHandler.h b/src/crepe/ProxyHandler.h
new file mode 100644
index 0000000..ff2be70
--- /dev/null
+++ b/src/crepe/ProxyHandler.h
@@ -0,0 +1,13 @@
+#pragma once
+
+namespace crepe {
+
+template <typename T>
+class ProxyHandler {
+public:
+ virtual void set(const T &) = 0;
+ virtual const T & get() = 0;
+};
+
+}
+
diff --git a/src/crepe/api/CMakeLists.txt b/src/crepe/api/CMakeLists.txt
index 0bb1263..97bc6b1 100644
--- a/src/crepe/api/CMakeLists.txt
+++ b/src/crepe/api/CMakeLists.txt
@@ -11,6 +11,7 @@ target_sources(crepe PUBLIC
Texture.cpp
AssetManager.cpp
Sprite.cpp
+ SaveManager.cpp
)
target_sources(crepe PUBLIC FILE_SET HEADERS FILES
@@ -28,4 +29,6 @@ target_sources(crepe PUBLIC FILE_SET HEADERS FILES
Texture.h
AssetManager.h
AssetManager.hpp
+ SaveManager.h
+ SaveManager.hpp
)
diff --git a/src/crepe/api/SaveManager.cpp b/src/crepe/api/SaveManager.cpp
new file mode 100644
index 0000000..a05e2c7
--- /dev/null
+++ b/src/crepe/api/SaveManager.cpp
@@ -0,0 +1,9 @@
+#include "SaveManager.h"
+
+using namespace crepe::api;
+
+SaveManager & SaveManager::get_instance() {
+ static SaveManager instance;
+ return instance;
+}
+
diff --git a/src/crepe/api/SaveManager.h b/src/crepe/api/SaveManager.h
new file mode 100644
index 0000000..37463ca
--- /dev/null
+++ b/src/crepe/api/SaveManager.h
@@ -0,0 +1,39 @@
+#pragma once
+
+#include "../Proxy.h"
+
+namespace crepe::api {
+
+class SaveManager {
+public:
+ //! Get a reference to a value and initialize it with a value if it does not yet exist
+ template <typename T>
+ Proxy<T> & get(const char * key, const T & default_value);
+
+ //! Get a reference to a value
+ template <typename T>
+ Proxy<T> & get(const char * key);
+
+ //! Set a value directly
+ template <typename T>
+ void set(const char * key, const T & value);
+
+ //! Check if the save file has a value for this \c key
+ bool has(const char * key);
+
+private:
+ SaveManager();
+ virtual ~SaveManager();
+
+public:
+ // singleton
+ static SaveManager & get_instance();
+ SaveManager(const SaveManager &) = delete;
+ SaveManager(SaveManager &&) = delete;
+ SaveManager & operator = (const SaveManager &) = delete;
+ SaveManager & operator = (SaveManager &&) = delete;
+};
+
+}
+
+#include "SaveManager.hpp"
diff --git a/src/crepe/api/SaveManager.hpp b/src/crepe/api/SaveManager.hpp
new file mode 100644
index 0000000..44f58ed
--- /dev/null
+++ b/src/crepe/api/SaveManager.hpp
@@ -0,0 +1,4 @@
+#pragma once
+
+#include "SaveManager.h"
+