From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- dsa/DSALib/DSA_Game/Save/Session.cs | 51 +++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 dsa/DSALib/DSA_Game/Save/Session.cs (limited to 'dsa/DSALib/DSA_Game/Save/Session.cs') diff --git a/dsa/DSALib/DSA_Game/Save/Session.cs b/dsa/DSALib/DSA_Game/Save/Session.cs new file mode 100644 index 0000000..62aa8f6 --- /dev/null +++ b/dsa/DSALib/DSA_Game/Save/Session.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.IO; +using DSALib.DSA_Game.Characters; +using Newtonsoft.Json; + +namespace DSALib.DSA_Game.Save +{ + public class Session + { + public static string DirectoryPath { get; set; } = Dsa.rootPath + @"sessions"; + + public Dictionary Relation { get; set; } = + new Dictionary(); // dictionary to match the char + + public List Chars { get; set; } = new List(); // list of all characters + + public string SessionName { get; set; } + + public static Session Load(string path) + { + try + { + return + JsonConvert.DeserializeObject( + 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 + } + } + } +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf