summaryrefslogtreecommitdiff
path: root/DSACore/DSA_Game/Save/Session.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-06-11 23:38:13 +0200
committerDennis Kobert <d-kobert@web.de>2019-06-11 23:38:13 +0200
commit2fa4a0e50ebfc97059c8b84dbd17e79f9afc8a8d (patch)
treec3b34ccb2737e347a73768536895cbbaab13cc01 /DSACore/DSA_Game/Save/Session.cs
parentec991104f56e90d7bb2878da2fe6ed4e585dfc46 (diff)
parentaf74efccf8d21e6151022b71f3cacd3fa83024ee (diff)
Merge branch 'rework-backend'
Diffstat (limited to 'DSACore/DSA_Game/Save/Session.cs')
-rw-r--r--DSACore/DSA_Game/Save/Session.cs47
1 files changed, 0 insertions, 47 deletions
diff --git a/DSACore/DSA_Game/Save/Session.cs b/DSACore/DSA_Game/Save/Session.cs
deleted file mode 100644
index b402656..0000000
--- a/DSACore/DSA_Game/Save/Session.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace DSACore.DSA_Game.Save
-{
- using System.IO;
- using Characters;
- using Newtonsoft.Json;
-
- public class Session
- {
- public static string DirectoryPath { get; set; } = Dsa.rootPath + @"sessions";
-
- public Dictionary<string, string> Relation { get; set; } = new Dictionary<string, string>(); // dictionary to match the char
-
- public List<SaveChar> Chars { get; set; } = new List<SaveChar>(); // list of all characters
-
- public string SessionName { get; set; }
-
- public static Session Load(string path)
- {
- try
- {
- return JsonConvert.DeserializeObject<Session>(File.ReadAllText(path)); // Deserialize Data and create Session Object
- }
- catch (Exception e)
- {
- // ignored
- Console.WriteLine($"Laden von Save-File {path} fehlgeschlagen."+ e);
- return null;
- }
- }
-
- public void Save(string path)
- {
- try
- {
- File.WriteAllText(path, JsonConvert.SerializeObject(this, Formatting.Indented)); // Deserialize Data and create CommandInfo Struct
- }
- catch (Exception e)
- {
- Console.WriteLine($"Speichern von Save-File {path} fehlgeschlagen.\n"+ e);
- // ignored
- }
- }
- }
-}