2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-03-19 11:07:13 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-04-06 06:54:50 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2021-03-19 11:07:13 +00:00
|
|
|
|
using osu.Framework.IO.Serialization;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-06 06:54:50 +00:00
|
|
|
|
namespace osu.Game.IO.Serialization
|
|
|
|
|
{
|
|
|
|
|
public static class JsonSerializableExtensions
|
|
|
|
|
{
|
2021-08-31 05:38:35 +00:00
|
|
|
|
public static string Serialize(this object obj) => JsonConvert.SerializeObject(obj, CreateGlobalSettings());
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-12-05 15:37:37 +00:00
|
|
|
|
public static T Deserialize<T>(this string objString) => JsonConvert.DeserializeObject<T>(objString, CreateGlobalSettings());
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-12-06 18:39:43 +00:00
|
|
|
|
public static void DeserializeInto<T>(this string objString, T target) => JsonConvert.PopulateObject(objString, target, CreateGlobalSettings());
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-12-05 15:37:37 +00:00
|
|
|
|
public static JsonSerializerSettings CreateGlobalSettings() => new JsonSerializerSettings
|
2017-04-06 06:54:50 +00:00
|
|
|
|
{
|
2017-12-05 15:37:37 +00:00
|
|
|
|
ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
|
|
|
|
|
Formatting = Formatting.Indented,
|
|
|
|
|
ObjectCreationHandling = ObjectCreationHandling.Replace,
|
|
|
|
|
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
|
2021-03-19 11:07:13 +00:00
|
|
|
|
Converters = new List<JsonConverter> { new Vector2Converter() },
|
2021-09-29 02:26:37 +00:00
|
|
|
|
ContractResolver = new SnakeCaseKeyContractResolver()
|
2017-12-05 15:37:37 +00:00
|
|
|
|
};
|
2017-04-06 06:54:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|