Class ConfigSection
- Namespace
- MonkeyLoader.Configuration
- Assembly
- MonkeyLoader.dll
Represents a section of a Config for any IConfigOwner.
public abstract class ConfigSection : INestedIdentifiable<Config>, INestedIdentifiable, IIdentifiableOwner<ConfigSection, IDefiningConfigKey>, IIdentifiableOwner<IDefiningConfigKey>, IIdentifiable, IPrioritizable
- Inheritance
-
ConfigSection
- Implements
- Derived
- Inherited Members
- Extension Methods
Remarks
Use your mod's Config instance to load sections.
Constructors
ConfigSection()
Creates a new config section instance.
protected ConfigSection()
Fields
keys
Stores the IDefiningConfigKeys tracked by this section.
protected readonly HashSet<IDefiningConfigKey> keys
Field Value
Properties
Config
Gets the Config that this section is a part of.
public Config Config { get; }
Property Value
Description
Gets a description of the config items found in this section.
public abstract string Description { get; }
Property Value
FullId
Gets the fully qualified unique identifier for this section.
public string FullId { get; }
Property Value
Remarks
HasChanges
Gets whether there are any config keys with unsaved changes in this section.
public bool HasChanges { get; }
Property Value
Id
Gets the mod-unique identifier of this section.
public abstract string Id { get; }
Property Value
IncompatibilityHandling
Gets the way that an incompatible saved configuration should be treated.
Error by default
protected virtual IncompatibleConfigHandling IncompatibilityHandling { get; }
Property Value
InternalAccessOnly
Gets whether only the owning mod should have access to this config item.
public virtual bool InternalAccessOnly { get; }
Property Value
Remarks
By default: false
.
Keys
Gets all the config keys of this section in order of their priority.
public IEnumerable<IDefiningConfigKey> Keys { get; }
Property Value
Name
Gets the name for this section.
public virtual string Name { get; }
Property Value
Priority
Gets the priority of this item. Use an agreed standard as a base.
public virtual int Priority { get; }
Property Value
- int
An interger used to sort the prioritizable items.
Higher comes first with the default comparer.
Remarks
Controls in which order the sections of a Config are listed.
Saveable
Gets whether this config section is allowed to be saved.
This can be false
if something went wrong while loading it.
public bool Saveable { get; }
Property Value
Version
Gets the semantic version for this config section.
This is used to check if the defined and saved configs are compatible.
public abstract Version Version { get; }
Property Value
Methods
DeserializeKey(IDefiningConfigKey, JObject, JsonSerializer)
Deserializes the given key
from the source
with the jsonSerializer
, if there is a value.
protected void DeserializeKey(IDefiningConfigKey key, JObject source, JsonSerializer jsonSerializer)
Parameters
key
IDefiningConfigKeyThe key to deserialize.
source
JObjectThe Newtonsoft.Json.Linq.JObject being deserialized from.
jsonSerializer
JsonSerializerThe Newtonsoft.Json.JsonSerializer to deserialize objects with.
Equals(object)
Checks if the given object can be considered equal to this one.
public override bool Equals(object obj)
Parameters
obj
objectThe other object.
Returns
- bool
true
if the other object is considered equal.
GetAutoConfigKeys()
Gets the IDefiningConfigKeys from all fields of this ConfigSection which have a Type derived from IDefiningConfigKey and don't have a IgnoreConfigKeyAttribute.
protected IEnumerable<IDefiningConfigKey> GetAutoConfigKeys()
Returns
- IEnumerable<IDefiningConfigKey>
The automatically tracked IDefiningConfigKeys.
GetConfigKeys()
Gets all IDefiningConfigKeys which should be tracked for this ConfigSection.
protected virtual IEnumerable<IDefiningConfigKey> GetConfigKeys()
Returns
- IEnumerable<IDefiningConfigKey>
All IDefiningConfigKeys to track.
Remarks
By default: Calls GetAutoConfigKeys().
GetDefinedKey(IConfigKey)
Gets the IDefiningConfigKey defined in this config section,
which matches the given templateKey
.
public IDefiningConfigKey GetDefinedKey(IConfigKey templateKey)
Parameters
templateKey
IConfigKeyThe config item to search for.
Returns
- IDefiningConfigKey
The matching item defined in this config section.
Exceptions
- KeyNotFoundException
When no matching item is defined in this config section.
GetDefinedKey<T>(IDefiningConfigKey<T>)
Gets the IDefiningConfigKey<T> defined in this config section,
which matches the given templateKey
.
public IDefiningConfigKey<T> GetDefinedKey<T>(IDefiningConfigKey<T> templateKey)
Parameters
templateKey
IDefiningConfigKey<T>The config item to search for.
Returns
- IDefiningConfigKey<T>
The matching item defined in this config section.
Type Parameters
T
Exceptions
- KeyNotFoundException
When no matching item is defined in this config section.
GetHashCode()
public override int GetHashCode()
Returns
OnItemChanged(IConfigKeyChangedEventArgs)
Invokes this config section's ItemChanged event, and passes the invocation on to the Config and MonkeyLoader it belongs to.
public void OnItemChanged(IConfigKeyChangedEventArgs configKeyChangedEventArgs)
Parameters
configKeyChangedEventArgs
IConfigKeyChangedEventArgsThe data for the event.
OnLoad(JObject, JsonSerializer)
Deserializes all keys of this
ConfigSection from the source
Newtonsoft.Json.Linq.JObject.
protected virtual void OnLoad(JObject source, JsonSerializer jsonSerializer)
Parameters
source
JObjectThe Newtonsoft.Json.Linq.JObject being deserialized from. May be empty for when file didn't have it yet.
jsonSerializer
JsonSerializerThe Newtonsoft.Json.JsonSerializer to deserialize objects with.
Remarks
By default: Deserializes all keys from the source
with the jsonSerializer
.
Exceptions
- ConfigLoadException
When the value for a key fails to deserialize.
OnSave(JObject, JsonSerializer)
Serializes all keys of this
ConfigSection to the result
Newtonsoft.Json.Linq.JObject.
protected virtual void OnSave(JObject result, JsonSerializer jsonSerializer)
Parameters
result
JObjectThe Newtonsoft.Json.Linq.JObject being serialized to.
jsonSerializer
JsonSerializerThe Newtonsoft.Json.JsonSerializer to serialize objects with.
Remarks
By default: Serializes all keys to the result
with the jsonSerializer
.
Reset()
Removes the value of all keys of this config section and resets them to their default.
public void Reset()
SerializeKey(IDefiningConfigKey, JObject, JsonSerializer)
Serializes the given key
to the result
with the jsonSerializer
, if the value can be gotten.
protected void SerializeKey(IDefiningConfigKey key, JObject result, JsonSerializer jsonSerializer)
Parameters
key
IDefiningConfigKeyThe key to serialize.
result
JObjectThe Newtonsoft.Json.Linq.JObject being serialized to.
jsonSerializer
JsonSerializerThe Newtonsoft.Json.JsonSerializer to serialize objects with.
ThrowKeyNotFound(IConfigKey)
Throws a KeyNotFoundException for the given key
in this config section.
protected void ThrowKeyNotFound(IConfigKey key)
Parameters
key
IConfigKeyThe key that wasn't found.
Exceptions
- KeyNotFoundException
Always.
TryGetDefinedKey(IConfigKey, out IDefiningConfigKey?)
Determines if this config section contains an item matching the templateKey
and returns the optional match as definingKey
.
public bool TryGetDefinedKey(IConfigKey templateKey, out IDefiningConfigKey? definingKey)
Parameters
templateKey
IConfigKeyThe config item to search for.
definingKey
IDefiningConfigKeyThe optional match for the searched item. Will also contain a match not from this config section.
Returns
- bool
true
if this config section contains the matching item; otherwise,false
.
TryGetDefinedKey<T>(ITypedConfigKey<T>, out IDefiningConfigKey<T>?)
Determines if this config section contains an item matching the typedTemplateKey
and returns the optional match as definingKey
.
public bool TryGetDefinedKey<T>(ITypedConfigKey<T> typedTemplateKey, out IDefiningConfigKey<T>? definingKey)
Parameters
typedTemplateKey
ITypedConfigKey<T>The config item to search for.
definingKey
IDefiningConfigKey<T>The optional match for the searched item. Will also contain a match not from this config section.
Returns
- bool
true
if this config section contains the matching item; otherwise,false
.
Type Parameters
T
Events
ItemChanged
Called when the value of one of this config's items gets changed.
public event ConfigKeyChangedEventHandler? ItemChanged
Event Type
Operators
operator ==(ConfigSection?, ConfigSection?)
Checks if two ConfigSections are equal.
public static bool operator ==(ConfigSection? left, ConfigSection? right)
Parameters
left
ConfigSectionThe first section.
right
ConfigSectionThe second section.
Returns
- bool
true
if they're considered equal.
operator !=(ConfigSection?, ConfigSection?)
Checks if two ConfigSections are unequal.
public static bool operator !=(ConfigSection? left, ConfigSection? right)
Parameters
left
ConfigSectionThe first section.
right
ConfigSectionThe second section.
Returns
- bool
true
if they're considered unequal.