using System.IO; using System.Runtime.Serialization.Formatters.Binary; using System.Threading.Tasks; using UnityEngine; using Newtonsoft.Json; public static class SaveSystem { private static readonly string Path = $"{Application.persistentDataPath}/saves"; public static void SaveToBinary(string fileName, T data) { if (!Directory.Exists(Path)) { Directory.CreateDirectory(Path); } using var stream = new FileStream($"{Path}/{fileName}", FileMode.Create); byte[] buffer = ObjectToByteArray(data); stream.Write(buffer, 0, buffer.Length); } public static T LoadFromBinary(string fileName) { if (!Directory.Exists($"{Path}") || !File.Exists($"{Path}/{fileName}")) { return default; } using var stream = new FileStream($"{Path}/{fileName}", FileMode.Open); var buffer = new byte[stream.Length]; stream.Read(buffer, 0, buffer.Length); return ByteArrayToObject(buffer); } public static async Task SaveToBinaryAsync(string fileName, T data) { if (!Directory.Exists(Path)) { Directory.CreateDirectory(Path); } using var stream = new FileStream($"{Path}/{fileName}", FileMode.Create); byte[] buffer = ObjectToByteArray(data); await stream.WriteAsync(buffer, 0, buffer.Length); } public static async Task LoadFromBinaryAsync(string fileName) { if (!Directory.Exists($"{Path}") || !File.Exists($"{Path}/{fileName}")) { return default; } using var stream = new FileStream($"{Path}/{fileName}", FileMode.Open); var buffer = new byte[stream.Length]; await stream.ReadAsync(buffer, 0, buffer.Length); return ByteArrayToObject(buffer); } public static void SaveToJson(string fileName, T data) { if (!Directory.Exists(Path)) { Directory.CreateDirectory(Path); } using var outputFile = new StreamWriter($"{Path}/{fileName}"); var json = JsonConvert.SerializeObject(data); outputFile.Write(json); } public static async Task SaveToJsonAsync(string fileName, T data) { if (!Directory.Exists(Path)) { Directory.CreateDirectory(Path); } using var outputFile = new StreamWriter($"{Path}/{fileName}"); var json = JsonConvert.SerializeObject(data); await outputFile.WriteAsync(json); } public static T LoadFromJson(string fileName) { if (!Directory.Exists($"{Path}") || !File.Exists($"{Path}/{fileName}")) { return default; } using var inputFile = new StreamReader($"{Path}/{fileName}"); var json = inputFile.ReadToEnd(); return JsonConvert.DeserializeObject(json); } public static async Task LoadFromJsonAsync(string fileName) { if (!Directory.Exists($"{Path}") || !File.Exists($"{Path}/{fileName}")) { return default; } using var inputFile = new StreamReader($"{Path}/{fileName}"); var json = await inputFile.ReadToEndAsync(); return JsonConvert.DeserializeObject(json); } public static void Delete(string fileName) { if (!File.Exists($"{Path}/{fileName}")) { return; } File.Delete($"{Path}/{fileName}"); } public static Task DeleteAsync(string fileName) { if (!File.Exists($"{Path}/{fileName}")) { return Task.CompletedTask; } File.Delete($"{Path}/{fileName}"); return Task.CompletedTask; } private static byte[] ObjectToByteArray(System.Object obj) { var binaryFormatter = new BinaryFormatter(); using var stream = new MemoryStream(); binaryFormatter.Serialize(stream, obj); return stream.ToArray(); } private static T ByteArrayToObject(byte[] arr) { var binaryFormatter = new BinaryFormatter(); using var stream = new MemoryStream(); stream.Write(arr, 0, arr.Length); stream.Position = 0; return (T) binaryFormatter.Deserialize(stream); } }