mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
44 lines
1.7 KiB
C#
44 lines
1.7 KiB
C#
using NewHorizons.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NewHorizons.External.Configs
|
|
{
|
|
public class Config
|
|
{
|
|
public Config(Dictionary<string, object> dict)
|
|
{
|
|
if (dict == null) return;
|
|
|
|
foreach (var item in dict)
|
|
{
|
|
var property = GetType().GetProperty(item.Key, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
|
|
|
|
if (property == null) property = GetType().GetProperty(item.Key.ToCamelCase(), System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
|
|
if (property == null) property = GetType().GetProperty(item.Key.ToTitleCase(), System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
|
|
|
|
if (property != null)
|
|
{
|
|
if (property.PropertyType.BaseType == typeof(Module))
|
|
{
|
|
if (property.GetValue(this) == null)
|
|
{
|
|
var module = Activator.CreateInstance(property.PropertyType);
|
|
property.SetValue(this, module);
|
|
}
|
|
((Module)property.GetValue(this)).Build(item.Value as Dictionary<string, object>);
|
|
}
|
|
else
|
|
{
|
|
property.SetValue(this, Convert.ChangeType(item.Value, property.PropertyType));
|
|
}
|
|
}
|
|
else Logger.LogError($"{item.Key} {item.Value} is not valid. Is your config formatted correctly?");
|
|
}
|
|
}
|
|
}
|
|
}
|