aboutsummaryrefslogtreecommitdiff
path: root/primedev/mods/modsavefiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'primedev/mods/modsavefiles.h')
-rw-r--r--primedev/mods/modsavefiles.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/primedev/mods/modsavefiles.h b/primedev/mods/modsavefiles.h
new file mode 100644
index 00000000..f9d39723
--- /dev/null
+++ b/primedev/mods/modsavefiles.h
@@ -0,0 +1,16 @@
+#pragma once
+int GetMaxSaveFolderSize();
+bool ContainsInvalidChars(std::string str);
+
+class SaveFileManager
+{
+public:
+ template <ScriptContext context> void SaveFileAsync(fs::path file, std::string content);
+ template <ScriptContext context> int LoadFileAsync(fs::path file);
+ template <ScriptContext context> void DeleteFileAsync(fs::path file);
+ // Future proofed in that if we ever get multi-threaded SSDs this code will take advantage of them.
+ std::mutex fileMutex;
+
+private:
+ int m_iLastRequestHandle = 0;
+};