123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- using System;
- using System.IO;
- using System.Linq;
- using BepInEx.Logging;
- namespace BepInEx.Configuration
- {
- /// <summary>
- /// Container for a single setting of a <see cref="Configuration.ConfigFile"/>.
- /// Each config entry is linked to one config file.
- /// </summary>
- public sealed class ConfigEntry
- {
- internal ConfigEntry(ConfigFile configFile, ConfigDefinition definition, Type settingType, object defaultValue) : this(configFile, definition)
- {
- SetTypeAndDefaultValue(settingType, defaultValue, true);
- }
- internal ConfigEntry(ConfigFile configFile, ConfigDefinition definition)
- {
- ConfigFile = configFile ?? throw new ArgumentNullException(nameof(configFile));
- Definition = definition ?? throw new ArgumentNullException(nameof(definition));
- }
- internal void SetTypeAndDefaultValue(Type settingType, object defaultValue, bool uniqueDefaultValue)
- {
- if (settingType == null) throw new ArgumentNullException(nameof(settingType));
- if (settingType == SettingType)
- {
- if (uniqueDefaultValue)
- DefaultValue = defaultValue;
- return;
- }
- if (SettingType != null)
- {
- throw new ArgumentException($"Tried to define setting \"{Definition}\" as type {settingType.Name} " +
- $"while it was already defined as type {SettingType.Name}. Use the same " +
- "Type for all Wrappers of a single setting.");
- }
- if (defaultValue == null && settingType.IsValueType)
- throw new ArgumentException("defaultValue is null while settingType is a value type");
- if (defaultValue != null && !settingType.IsInstanceOfType(defaultValue))
- throw new ArgumentException("defaultValue can not be assigned to type " + settingType.Name);
- SettingType = settingType;
- DefaultValue = defaultValue;
- }
- private object _convertedValue;
- private string _serializedValue;
- /// <summary>
- /// Config file this entry is a part of.
- /// </summary>
- public ConfigFile ConfigFile { get; }
- /// <summary>
- /// Category and name of this setting. Used as a unique key for identification within a <see cref="Configuration.ConfigFile"/>.
- /// </summary>
- public ConfigDefinition Definition { get; }
- /// <summary>
- /// Description / metadata of this setting.
- /// </summary>
- public ConfigDescription Description { get; private set; }
- /// <summary>
- /// Type of the <see cref="Value"/> that this setting holds.
- /// </summary>
- public Type SettingType { get; private set; }
- /// <summary>
- /// Default value of this setting (set only if the setting was not changed before).
- /// </summary>
- public object DefaultValue { get; private set; }
- /// <summary>
- /// Is the type of this setting defined, and by extension can <see cref="Value"/> of this setting be accessed.
- /// Setting is defined when any <see cref="ConfigWrapper{T}"/> objects reference it.
- /// </summary>
- public bool IsDefined => SettingType != null;
- /// <summary>
- /// Get or set the value of the setting.
- /// Can't be used when <see cref="IsDefined"/> is false.
- /// </summary>
- public object Value
- {
- get
- {
- ProcessSerializedValue();
- return _convertedValue;
- }
- set => SetValue(value, true, this);
- }
- internal void SetValue(object newValue, bool fireEvent, object sender)
- {
- bool wasChanged = ProcessSerializedValue();
- newValue = ClampValue(newValue);
- wasChanged = wasChanged || !Equals(newValue, _convertedValue);
- if (wasChanged)
- {
- _convertedValue = newValue;
- if (fireEvent)
- OnSettingChanged(sender);
- }
- }
- /// <summary>
- /// Get the serialized representation of the value.
- /// </summary>
- public string GetSerializedValue()
- {
- if (_serializedValue != null)
- return _serializedValue;
- if (!IsDefined)
- return null;
- return TomlTypeConverter.ConvertToString(Value, SettingType);
- }
- /// <summary>
- /// Set the value by using its serialized form.
- /// </summary>
- public void SetSerializedValue(string newValue) => SetSerializedValue(newValue, true, this);
- internal void SetSerializedValue(string newValue, bool fireEvent, object sender)
- {
- string current = GetSerializedValue();
- if (string.Equals(current, newValue)) return;
- _serializedValue = newValue;
- if (!IsDefined) return;
- if (ProcessSerializedValue())
- {
- if (fireEvent)
- OnSettingChanged(sender);
- }
- }
- private bool ProcessSerializedValue()
- {
- if (!IsDefined)
- throw new InvalidOperationException("Can't get the value before the SettingType is specified");
- if (_serializedValue != null)
- {
- string value = _serializedValue;
- _serializedValue = null;
- if (value != "")
- {
- try
- {
- var newValue = TomlTypeConverter.ConvertToValue(value, SettingType);
- newValue = ClampValue(newValue);
- if (!Equals(newValue, _convertedValue))
- {
- _convertedValue = newValue;
- return true;
- }
- return false;
- }
- catch (Exception e)
- {
- Logger.Log(LogLevel.Warning, $"Config value of setting \"{Definition}\" could not be " +
- $"parsed and will be ignored. Reason: {e.Message}; Value: {value}");
- }
- }
- }
- if (_convertedValue == null && DefaultValue != null)
- {
- _convertedValue = DefaultValue;
- return true;
- }
- return false;
- }
- internal void SetDescription(ConfigDescription configDescription)
- {
- Description = configDescription;
- SetValue(ClampValue(Value), true, this);
- }
- private object ClampValue(object value)
- {
- if (Description?.AcceptableValues != null)
- return Description.AcceptableValues.Clamp(value);
- return value;
- }
- private void OnSettingChanged(object sender)
- {
- ConfigFile.OnSettingChanged(sender, this);
- }
- /// <summary>
- /// Write a description of this setting using all available metadata.
- /// </summary>
- public void WriteDescription(StreamWriter writer)
- {
- bool hasDescription = Description != null;
- bool hasType = SettingType != null;
- if (hasDescription)
- writer.WriteLine(Description.ToSerializedString());
- if (hasType)
- {
- writer.WriteLine("# Setting type: " + SettingType.Name);
- if (SettingType.IsEnum && SettingType.GetCustomAttributes(typeof(FlagsAttribute), true).Any())
- writer.WriteLine("# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)");
- writer.WriteLine("# Default value: " + DefaultValue);
- }
- if (hasDescription)
- {
- if (Description.AcceptableValues != null)
- {
- writer.WriteLine(Description.AcceptableValues.ToSerializedString());
- }
- else if (hasType)
- {
- if (SettingType == typeof(bool))
- writer.WriteLine("# Acceptable values: True, False");
- else if (SettingType.IsEnum)
- writer.WriteLine("# Acceptable values: " + string.Join(", ", Enum.GetNames(SettingType)));
- }
- }
- }
- }
- }
|