2024-07-03 10:30:12 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
2024-03-12 22:18:58 -04:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using SabreTools.Core.Tools;
|
|
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Core
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents an item that's backed by a DictionaryBase item
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public abstract class ModelBackedItem<T> where T : Models.Metadata.DictionaryBase
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Internal model wrapped by this DatItem
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonIgnore, XmlIgnore]
|
2024-07-03 10:30:12 -04:00
|
|
|
|
protected T _internal;
|
2024-03-12 22:18:58 -04:00
|
|
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
|
|
|
|
public ModelBackedItem()
|
|
|
|
|
|
{
|
2024-07-03 10:30:12 -04:00
|
|
|
|
_internal = (T)Activator.CreateInstance(typeof(T))!;
|
2024-03-12 22:18:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region Accessors
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <typeparam name="U">Type of the value to get from the internal model</typeparam>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public U? GetFieldValue<U>(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Get the value based on the type
|
2024-10-24 01:39:19 -04:00
|
|
|
|
return _internal.Read<U>(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public bool? GetBoolFieldValue(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Get the value based on the type
|
2024-10-24 01:39:19 -04:00
|
|
|
|
return _internal.ReadBool(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public double? GetDoubleFieldValue(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Try to parse directly
|
2024-10-24 01:39:19 -04:00
|
|
|
|
double? doubleValue = _internal.ReadDouble(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
if (doubleValue != null)
|
|
|
|
|
|
return doubleValue;
|
|
|
|
|
|
|
|
|
|
|
|
// Try to parse from the string
|
2024-10-24 01:39:19 -04:00
|
|
|
|
string? stringValue = _internal.ReadString(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return NumberHelper.ConvertToDouble(stringValue);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public long? GetInt64FieldValue(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Try to parse directly
|
2024-10-24 01:39:19 -04:00
|
|
|
|
long? longValue = _internal.ReadLong(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
if (longValue != null)
|
|
|
|
|
|
return longValue;
|
|
|
|
|
|
|
|
|
|
|
|
// Try to parse from the string
|
2024-10-24 01:39:19 -04:00
|
|
|
|
string? stringValue = _internal.ReadString(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return NumberHelper.ConvertToInt64(stringValue);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public string? GetStringFieldValue(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Get the value based on the type
|
2024-10-24 01:39:19 -04:00
|
|
|
|
return _internal.ReadString(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="fieldName">Field to retrieve</param>
|
|
|
|
|
|
/// <returns>Value from the field, if possible</returns>
|
|
|
|
|
|
public string[]? GetStringArrayFieldValue(string? fieldName)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null || !_internal.ContainsKey(fieldName))
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return default;
|
|
|
|
|
|
|
|
|
|
|
|
// Get the value based on the type
|
2024-10-24 01:39:19 -04:00
|
|
|
|
return _internal.ReadStringArray(fieldName);
|
2024-03-12 22:18:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Set the value from a field based on the type provided
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <typeparam name="U">Type of the value to set in the internal model</typeparam>
|
|
|
|
|
|
/// <param name="fieldName">Field to set</param>
|
|
|
|
|
|
/// <param name="value">Value to set</param>
|
|
|
|
|
|
/// <returns>True if the value was set, false otherwise</returns>
|
|
|
|
|
|
public bool SetFieldValue<U>(string? fieldName, U? value)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Invalid field cannot be processed
|
2024-10-24 01:39:19 -04:00
|
|
|
|
if (fieldName == null)
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
// Set the value based on the type
|
2024-10-24 01:39:19 -04:00
|
|
|
|
_internal[fieldName] = value;
|
2024-03-12 22:18:58 -04:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|