|
|
@ -34,6 +34,11 @@ namespace IPA.Config.Stores.Converters |
|
|
|
null; |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="ValueConverter{T}"/> for objects normally serialized to config via <see cref="GeneratedExtension.Generated{T}(Config, bool)"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="T">the same type parameter that would be passed into <see cref="GeneratedExtension.Generated{T}(Config, bool)"/></typeparam>
|
|
|
|
/// <seealso cref="GeneratedExtension.Generated{T}(Config, bool)"/>
|
|
|
|
public class CustomObjectConverter<T> : ValueConverter<T> where T : class |
|
|
|
{ |
|
|
|
private interface IImpl |
|
|
@ -46,7 +51,7 @@ namespace IPA.Config.Stores.Converters |
|
|
|
private static readonly GeneratedStore.GeneratedStoreCreator creator = GeneratedStore.GetCreator(typeof(T)); |
|
|
|
|
|
|
|
public T FromValue(Value value, object parent) |
|
|
|
{ // lots of casting here, but it works i promise
|
|
|
|
{ // lots of casting here, but it works i promise (parent can be a non-IGeneratedStore, however it won't necessarily behave then)
|
|
|
|
var obj = creator(parent as GeneratedStore.IGeneratedStore) as U; |
|
|
|
obj.Deserialize(value); |
|
|
|
return obj; |
|
|
@ -64,15 +69,43 @@ namespace IPA.Config.Stores.Converters |
|
|
|
private static readonly IImpl impl = (IImpl)Activator.CreateInstance( |
|
|
|
typeof(Impl<>).MakeGenericType(GeneratedStore.GetGeneratedType(typeof(T)))); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Deserializes <paramref name="value"/> into a <typeparamref name="T"/> with the given <paramref name="parent"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="value">the <see cref="Value"/> to deserialize</param>
|
|
|
|
/// <param name="parent">the parent object that will own the deserialized value</param>
|
|
|
|
/// <returns>the deserialized value</returns>
|
|
|
|
/// <seealso cref="ValueConverter{T}.FromValue(Value, object)"/>
|
|
|
|
public static T Deserialize(Value value, object parent) |
|
|
|
=> impl.FromValue(value, parent); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Serializes <paramref name="obj"/> into a <see cref="Value"/> structure, given <paramref name="parent"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="obj">the object to serialize</param>
|
|
|
|
/// <param name="parent">the parent object that owns <paramref name="obj"/></param>
|
|
|
|
/// <returns>the <see cref="Value"/> tree that represents <paramref name="obj"/></returns>
|
|
|
|
/// <seealso cref="ValueConverter{T}.ToValue(T, object)"/>
|
|
|
|
public static Value Serialize(T obj, object parent) |
|
|
|
=> impl.ToValue(obj, parent); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Deserializes <paramref name="value"/> into a <typeparamref name="T"/> with the given <paramref name="parent"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="value">the <see cref="Value"/> to deserialize</param>
|
|
|
|
/// <param name="parent">the parent object that will own the deserialized value</param>
|
|
|
|
/// <returns>the deserialized value</returns>
|
|
|
|
/// <seealso cref="ValueConverter{T}.FromValue(Value, object)"/>
|
|
|
|
public override T FromValue(Value value, object parent) |
|
|
|
=> impl.FromValue(value, parent); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Serializes <paramref name="obj"/> into a <see cref="Value"/> structure, given <paramref name="parent"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="obj">the object to serialize</param>
|
|
|
|
/// <param name="parent">the parent object that owns <paramref name="obj"/></param>
|
|
|
|
/// <returns>the <see cref="Value"/> tree that represents <paramref name="obj"/></returns>
|
|
|
|
/// <seealso cref="ValueConverter{T}.ToValue(T, object)"/>
|
|
|
|
public override Value ToValue(T obj, object parent) |
|
|
|
=> impl.ToValue(obj, parent); |
|
|
|
} |
|
|
|