mirror of
https://github.com/ppy/osu
synced 2025-02-05 21:01:37 +00:00
33 lines
1.4 KiB
C#
33 lines
1.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using Newtonsoft.Json;
|
|
using osu.Game.IO.Serialization.Converters;
|
|
|
|
namespace osu.Game.IO.Serialization
|
|
{
|
|
public interface IJsonSerializable
|
|
{
|
|
}
|
|
|
|
public static class JsonSerializableExtensions
|
|
{
|
|
public static string Serialize(this IJsonSerializable obj) => JsonConvert.SerializeObject(obj, CreateGlobalSettings());
|
|
|
|
public static T Deserialize<T>(this string objString) => JsonConvert.DeserializeObject<T>(objString, CreateGlobalSettings());
|
|
|
|
public static void DeserializeInto<T>(this string objString, T target) => JsonConvert.PopulateObject(objString, target, CreateGlobalSettings());
|
|
|
|
public static T DeepClone<T>(this T obj) where T : IJsonSerializable => Deserialize<T>(Serialize(obj));
|
|
|
|
public static JsonSerializerSettings CreateGlobalSettings() => new JsonSerializerSettings
|
|
{
|
|
ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
|
|
Formatting = Formatting.Indented,
|
|
ObjectCreationHandling = ObjectCreationHandling.Replace,
|
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
|
|
Converters = new JsonConverter[] { new Vector2Converter() }
|
|
};
|
|
}
|
|
}
|