feat: add save system class
This commit is contained in:
parent
26eb87ccb7
commit
4684b31576
8
Assets/_Scripts/Systems/SaveSystem.meta
generated
Normal file
8
Assets/_Scripts/Systems/SaveSystem.meta
generated
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4f939cb7b60259b3ebee72c45d71f2d2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
8
Assets/_Scripts/Systems/SaveSystem/PlayerData.cs
Normal file
8
Assets/_Scripts/Systems/SaveSystem/PlayerData.cs
Normal file
@ -0,0 +1,8 @@
|
||||
[System.Serializable]
|
||||
public class PlayerData
|
||||
{
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
|
||||
public int HighScore { get; set; }
|
||||
}
|
11
Assets/_Scripts/Systems/SaveSystem/PlayerData.cs.meta
generated
Normal file
11
Assets/_Scripts/Systems/SaveSystem/PlayerData.cs.meta
generated
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 89eb7b496b46c2935a7ffba56bc751dd
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
125
Assets/_Scripts/Systems/SaveSystem/SaveSystem.cs
Normal file
125
Assets/_Scripts/Systems/SaveSystem/SaveSystem.cs
Normal file
@ -0,0 +1,125 @@
|
||||
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<T>(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<T>(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<T>(buffer);
|
||||
}
|
||||
|
||||
public static async Task SaveToBinaryAsync<T>(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<T> LoadFromBinaryAsync<T>(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<T>(buffer);
|
||||
}
|
||||
|
||||
public static void SaveToJson<T>(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<T>(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<T>(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<T>(json);
|
||||
}
|
||||
|
||||
public static async Task<T> LoadFromJsonAsync<T>(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<T>(json);
|
||||
}
|
||||
|
||||
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<T>(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);
|
||||
}
|
||||
}
|
11
Assets/_Scripts/Systems/SaveSystem/SaveSystem.cs.meta
generated
Normal file
11
Assets/_Scripts/Systems/SaveSystem/SaveSystem.cs.meta
generated
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e6f13b469d7bf838695d0abb771b6a4e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Loading…
Reference in New Issue
Block a user