2019-01-09 20:03:27 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Newtonsoft.Json;
|
2019-01-11 03:09:51 +08:00
|
|
|
using Revitalize.Framework.Utilities.Serialization.ContractResolvers;
|
2019-01-11 15:24:55 +08:00
|
|
|
using StardewValley;
|
2019-01-13 03:25:45 +08:00
|
|
|
using StardewValley.Objects;
|
2019-01-09 20:03:27 +08:00
|
|
|
|
|
|
|
namespace Revitalize.Framework.Utilities
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Handles serialization of all objects in existence.
|
2019-01-11 11:20:14 +08:00
|
|
|
///
|
|
|
|
/// TODO: Make JConvert that has same settings to implement a toJSon string obj
|
2019-01-09 20:03:27 +08:00
|
|
|
/// </summary>
|
|
|
|
public class Serializer
|
|
|
|
{
|
|
|
|
private JsonSerializer serializer;
|
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// All files to be cleaned up after loading.
|
|
|
|
/// </summary>
|
|
|
|
private Dictionary<string, List<string>> filesToDelete = new Dictionary<string, List<string>>();
|
|
|
|
|
2019-01-13 03:25:45 +08:00
|
|
|
public List<Item> itemsToRemove = new List<Item>();
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-01-14 06:46:31 +08:00
|
|
|
private JsonSerializerSettings settings;
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-01-09 20:03:27 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Constructor.
|
|
|
|
/// </summary>
|
|
|
|
public Serializer()
|
|
|
|
{
|
|
|
|
this.serializer = new JsonSerializer();
|
|
|
|
this.serializer.Formatting = Formatting.Indented;
|
|
|
|
this.serializer.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
|
|
|
this.serializer.NullValueHandling = NullValueHandling.Include;
|
|
|
|
|
2019-01-11 03:09:51 +08:00
|
|
|
this.serializer.ContractResolver = new NetFieldContract();
|
|
|
|
|
2019-01-09 20:03:27 +08:00
|
|
|
this.addConverter(new Framework.Utilities.Serialization.Converters.RectangleConverter());
|
|
|
|
this.addConverter(new Framework.Utilities.Serialization.Converters.Texture2DConverter());
|
2019-01-11 10:15:31 +08:00
|
|
|
this.addConverter(new Framework.Utilities.Serialization.Converters.ItemCoverter());
|
2019-08-22 10:06:17 +08:00
|
|
|
//this.addConverter(new Framework.Utilities.Serialization.Converters.CustomObjectDataConverter());
|
2019-01-11 05:37:35 +08:00
|
|
|
//this.addConverter(new Framework.Utilities.Serialization.Converters.NetFieldConverter());
|
2019-01-09 20:03:27 +08:00
|
|
|
//this.addConverter(new Framework.Utilities.Serialization.Converters.Vector2Converter());
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-08-22 10:06:17 +08:00
|
|
|
//this.gatherAllFilesForCleanup();
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-01-14 06:46:31 +08:00
|
|
|
this.settings = new JsonSerializerSettings();
|
|
|
|
foreach(JsonConverter converter in this.serializer.Converters)
|
|
|
|
{
|
|
|
|
this.settings.Converters.Add(converter);
|
|
|
|
}
|
|
|
|
this.settings.Formatting = Formatting.Indented;
|
|
|
|
this.settings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
|
|
|
this.settings.NullValueHandling = NullValueHandling.Include;
|
|
|
|
this.settings.ContractResolver = new NetFieldContract();
|
2019-01-13 02:40:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Process all the save data for objects to be deleted by this mod.
|
|
|
|
/// </summary>
|
|
|
|
private void gatherAllFilesForCleanup()
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
if (!Directory.Exists(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"))) Directory.CreateDirectory(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"));
|
2019-01-13 03:25:45 +08:00
|
|
|
this.filesToDelete.Clear();
|
2019-01-13 02:40:47 +08:00
|
|
|
string[] directories = Directory.GetDirectories(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"));
|
|
|
|
foreach (string playerData in directories)
|
|
|
|
{
|
|
|
|
string objectPath = Path.Combine(playerData, "SavedObjectInformation");
|
|
|
|
string[] objectFiles = Directory.GetFiles(objectPath);
|
|
|
|
foreach (string file in objectFiles)
|
|
|
|
{
|
|
|
|
string playerName = new DirectoryInfo(objectPath).Parent.Name;
|
|
|
|
if (this.filesToDelete.ContainsKey(playerName)){
|
|
|
|
this.filesToDelete[playerName].Add(file);
|
|
|
|
//Revitalize.ModCore.log("Added File: " + file);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.filesToDelete.Add(playerName, new List<string>());
|
|
|
|
//Revitalize.ModCore.log("Added Player Key: " + playerName);
|
|
|
|
this.filesToDelete[playerName].Add(file);
|
|
|
|
//Revitalize.ModCore.log("Added File: " + file);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-22 10:06:17 +08:00
|
|
|
private void deleteFilesBeforeSave()
|
|
|
|
{
|
|
|
|
if (!Directory.Exists(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"))) Directory.CreateDirectory(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"));
|
|
|
|
this.filesToDelete.Clear();
|
|
|
|
string[] directories = Directory.GetDirectories(Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData"));
|
|
|
|
foreach (string playerData in directories)
|
|
|
|
{
|
|
|
|
string objectPath = Path.Combine(playerData, "SavedObjectInformation");
|
|
|
|
string[] objectFiles = Directory.GetFiles(objectPath);
|
|
|
|
foreach (string file in objectFiles)
|
|
|
|
{
|
|
|
|
string playerName = new DirectoryInfo(objectPath).Parent.Name;
|
|
|
|
if (playerName != this.getUniqueCharacterString()) return;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
File.Delete(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Called after load to deal with internal file cleanUp
|
|
|
|
/// </summary>
|
|
|
|
public void afterLoad()
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
this.deleteAllUnusedFiles();
|
|
|
|
this.removeNullObjects();
|
2019-01-13 03:25:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void returnToTitle()
|
|
|
|
{
|
2019-08-22 10:06:17 +08:00
|
|
|
//this.gatherAllFilesForCleanup();
|
2019-01-13 03:25:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void removeNullObjects()
|
|
|
|
{
|
|
|
|
List<Item> removalList = new List<Item>();
|
2019-05-16 03:42:48 +08:00
|
|
|
foreach(Item I in Game1.player.Items)
|
2019-01-13 03:25:45 +08:00
|
|
|
{
|
|
|
|
if (I == null) continue;
|
|
|
|
if (I.DisplayName.Contains("Revitalize.Framework") && (I is Chest))
|
|
|
|
{
|
|
|
|
removalList.Add(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
foreach(Item I in removalList)
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
Game1.player.Items.Remove(I);
|
2019-01-13 03:25:45 +08:00
|
|
|
}
|
2019-01-13 02:40:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Removes the file from all files that will be deleted.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="playerDirectory"></param>
|
|
|
|
/// <param name="fileName"></param>
|
|
|
|
private void removeFileFromDeletion(string playerDirectory, string fileName)
|
|
|
|
{
|
|
|
|
if (this.filesToDelete.ContainsKey(playerDirectory))
|
|
|
|
{
|
|
|
|
//Revitalize.ModCore.log("Removing from deletion: " + fileName);
|
|
|
|
this.filesToDelete[playerDirectory].Remove(fileName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Revitalize.ModCore.log("Found key: " + playerDirectory);
|
|
|
|
//Revitalize.ModCore.log("Found file: " + fileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Deletes unused object data.
|
|
|
|
/// </summary>
|
|
|
|
private void deleteAllUnusedFiles()
|
|
|
|
{
|
|
|
|
foreach(KeyValuePair<string,List<string>> pair in this.filesToDelete)
|
|
|
|
{
|
|
|
|
foreach (string file in pair.Value)
|
|
|
|
{
|
|
|
|
File.Delete(file);
|
|
|
|
}
|
|
|
|
}
|
2019-01-09 20:03:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Adds a new converter to the json serializer.
|
|
|
|
/// </summary>
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <param name="converter">The type of json converter to add to the Serializer.</param>
|
2019-01-09 20:03:27 +08:00
|
|
|
public void addConverter(JsonConverter converter)
|
|
|
|
{
|
|
|
|
this.serializer.Converters.Add(converter);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Deserializes an object from a .json file.
|
|
|
|
/// </summary>
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <typeparam name="T">The type of object to deserialize into.</typeparam>
|
|
|
|
/// <param name="p">The path to the file.</param>
|
|
|
|
/// <returns>An object of specified type T.</returns>
|
2019-01-09 20:03:27 +08:00
|
|
|
public T Deserialize<T>(string p)
|
|
|
|
{
|
|
|
|
string json = "";
|
|
|
|
foreach (string line in File.ReadLines(p))
|
|
|
|
{
|
|
|
|
json += line;
|
|
|
|
}
|
|
|
|
using (StreamReader sw = new StreamReader(p))
|
|
|
|
using (JsonReader reader = new JsonTextReader(sw))
|
|
|
|
{
|
2019-08-17 05:35:40 +08:00
|
|
|
|
|
|
|
var obj = this.serializer.Deserialize<T>(reader);
|
2019-01-09 20:03:27 +08:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Deserializes an object from a .json file.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="T">The type of object to deserialize into.</typeparam>
|
|
|
|
/// <param name="p">The path to the file.</param>
|
|
|
|
/// <returns>An object of specified type T.</returns>
|
2019-01-11 10:32:35 +08:00
|
|
|
public object Deserialize(string p,Type T)
|
|
|
|
{
|
|
|
|
string json = "";
|
|
|
|
foreach (string line in File.ReadLines(p))
|
|
|
|
{
|
|
|
|
json += line;
|
|
|
|
}
|
|
|
|
using (StreamReader sw = new StreamReader(p))
|
|
|
|
using (JsonReader reader = new JsonTextReader(sw))
|
|
|
|
{
|
|
|
|
object obj = this.serializer.Deserialize(reader,T);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 20:03:27 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Serializes an object to a .json file.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path"></param>
|
|
|
|
/// <param name="o"></param>
|
|
|
|
public void Serialize(string path, object o)
|
|
|
|
{
|
|
|
|
using (StreamWriter sw = new StreamWriter(path))
|
|
|
|
using (JsonWriter writer = new JsonTextWriter(sw))
|
|
|
|
{
|
|
|
|
this.serializer.Serialize(writer, o);
|
|
|
|
}
|
|
|
|
}
|
2019-01-11 15:24:55 +08:00
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Serialize a data structure into an file.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="fileName"></param>
|
|
|
|
/// <param name="obj"></param>
|
2019-01-11 15:24:55 +08:00
|
|
|
public void SerializeGUID(string fileName,object obj)
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
string path = Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData", Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID, "SavedObjectInformation", fileName + ".json");
|
2019-01-11 15:24:55 +08:00
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
2019-05-16 03:42:48 +08:00
|
|
|
this.Serialize(path, obj);
|
2019-01-11 15:24:55 +08:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Deserialze a file into it's proper data structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="T">The type of data structure to deserialze to.</typeparam>
|
|
|
|
/// <param name="fileName">The name of the file to deserialize from.</param>
|
|
|
|
/// <returns>A data structure object deserialize from a json string in a file.</returns>
|
2019-01-11 15:24:55 +08:00
|
|
|
public object DeserializeGUID(string fileName,Type T)
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
string path=Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData", Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID, "SavedObjectInformation", fileName + ".json");
|
|
|
|
this.removeFileFromDeletion((Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID), path);
|
|
|
|
return this.Deserialize(path, T);
|
2019-01-11 15:24:55 +08:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:40:47 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Deserialze a file into it's proper data structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="T">The type of data structure to deserialze to.</typeparam>
|
|
|
|
/// <param name="fileName">The name of the file to deserialize from.</param>
|
|
|
|
/// <returns>A data structure object deserialize from a json string in a file.</returns>
|
2019-01-11 15:24:55 +08:00
|
|
|
public T DeserializeGUID<T>(string fileName)
|
|
|
|
{
|
2019-05-16 03:42:48 +08:00
|
|
|
string path = Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "SaveData", Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID, "SavedObjectInformation", fileName + ".json");
|
2019-08-22 10:06:17 +08:00
|
|
|
//this.removeFileFromDeletion((Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID),path);
|
2019-01-13 02:40:47 +08:00
|
|
|
if (File.Exists(path))
|
|
|
|
{
|
2019-08-22 10:06:17 +08:00
|
|
|
//ModCore.log("Deseralizing file:" + path);
|
2019-05-16 03:42:48 +08:00
|
|
|
return this.Deserialize<T>(path);
|
2019-01-13 02:40:47 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-22 10:06:17 +08:00
|
|
|
throw new Exception("Can't deserialize file. Default returned. " + path);
|
2019-01-13 02:40:47 +08:00
|
|
|
}
|
2019-01-11 15:24:55 +08:00
|
|
|
}
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-01-14 06:46:31 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Converts objects to json form.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="o"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public string ToJSONString(object o)
|
|
|
|
{
|
|
|
|
return JsonConvert.SerializeObject(o, this.settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Converts from json form to objects.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
/// <param name="info"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public T DeserializeFromJSONString<T>(string info)
|
|
|
|
{
|
|
|
|
return JsonConvert.DeserializeObject<T>(info,this.settings);
|
|
|
|
}
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-01-14 06:46:31 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Converts from json form to objects.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="info"></param>
|
|
|
|
/// <param name="T"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public object DeserializeFromJSONString(string info, Type T)
|
|
|
|
{
|
|
|
|
return JsonConvert.DeserializeObject(info, T, this.settings);
|
|
|
|
}
|
2019-01-13 02:40:47 +08:00
|
|
|
|
2019-05-16 03:42:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
public T DeserializeContentFile<T>(string pathToFile)
|
|
|
|
{
|
|
|
|
if (File.Exists(pathToFile))
|
|
|
|
{
|
|
|
|
|
|
|
|
return this.Deserialize<T>(pathToFile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return default(T);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-17 05:35:40 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Serializes a content file if it doesn't already exist. If it does exist this does nothing as to not override the content file.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="fileName">The name to name the file. So a file named MyFile would be a MyFile.json</param>
|
|
|
|
/// <param name="obj">The actual to serialize.</param>
|
|
|
|
/// <param name="extensionFolder">The sub folder path inside of the Content folder for this mod.</param>
|
2019-05-16 03:42:48 +08:00
|
|
|
public void SerializeContentFile(string fileName, object obj,string extensionFolder)
|
|
|
|
{
|
|
|
|
string path = Path.Combine(Revitalize.ModCore.ModHelper.DirectoryPath, "Content", extensionFolder,fileName+ ".json");
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
|
|
|
if (File.Exists(path)) return;
|
|
|
|
this.Serialize(path, obj);
|
|
|
|
}
|
|
|
|
|
2019-08-22 10:06:17 +08:00
|
|
|
public void DayEnding_CleanUpFilesForDeletion(object o, StardewModdingAPI.Events.DayEndingEventArgs sender)
|
|
|
|
{
|
|
|
|
//ModCore.log("Day ending now delete files!");
|
|
|
|
this.deleteFilesBeforeSave();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the unique character path string.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
|
|
|
public string getUniqueCharacterString()
|
|
|
|
{
|
|
|
|
return Game1.player.Name + "_" + Game1.player.UniqueMultiplayerID;
|
|
|
|
}
|
2019-05-16 13:27:38 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// https://stackoverflow.com/questions/2742276/how-do-i-check-if-a-type-is-a-subtype-or-the-type-of-an-object
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="potentialBase"></param>
|
|
|
|
/// <param name="potentialDescendant"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public bool IsSameOrSubclass(Type potentialBase, Type potentialDescendant)
|
|
|
|
{
|
|
|
|
return potentialDescendant.IsSubclassOf(potentialBase)
|
|
|
|
|| potentialDescendant == potentialBase;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool IsSubclass(Type potentialBase, Type potentialDescendant)
|
|
|
|
{
|
|
|
|
return potentialDescendant.IsSubclassOf(potentialBase);
|
|
|
|
}
|
2019-01-09 20:03:27 +08:00
|
|
|
}
|
|
|
|
}
|