Table of Contents

Namespace MonkeyLoader.Configuration

Classes

Config

The configuration for a mod. Each mod has exactly one configuration.
The configuration object will never be reassigned once initialized.

ConfigKey

Represents a identifier-only config item, which can be used to get or set the values of defining keys with the same Id.

ConfigKeyChangedEventArgs<T>

Represents the data for the ItemChanged and AnyConfigChanged events.

ConfigKeyComponent

Contains helper methods to work with config key entities and their components.
These are mostly extension methods that proxy calls to Components

ConfigKeyDefaultConstant<T>

Implements a component that provides a default value for IDefiningConfigKey<T>s by using a provided unmanaged value.

ConfigKeyDefault<T>

Implements a components that provide a default value for IDefiningConfigKey<T>s by using a provided factory function to generate the value.

ConfigKeyDescription

Implements a basic description component for IDefiningConfigKeys.

ConfigKeyPriority

Implements a priority component for IDefiningConfigKeys.

ConfigKeyRange

Contains some IConfigKeyRange<T> presets.

ConfigKeyRange<T>

Implements a range component for IDefiningConfigKey<T>s using min and max values with a IComparer<T>.

ConfigKeyValidator

Contains some IConfigKeyValidator<T> presets.

ConfigKeyValidator<T>

Implements a validator component for IDefiningConfigKey<T>s using Predicate<T>s.
Multiple IConfigKeyValidator<T> instances on one config key must all validate successfully.

ConfigKey<T>

Represents a identifier-only config item, which can be used to get or set the values of defining keys with the same Id.

ConfigLoadException

Represents an Exception encountered while loading a configuration file.

ConfigSection

Represents a section of a Config for any IConfigOwner.

DefiningConfigKey<T>

Represents the typed definition for a config item.

ExpandoConfigSection

Represents a section of a Config for any IConfigOwner, which additional config items can be added to dynamically.

IgnoreConfigKeyAttribute

Marks a field of type DefiningConfigKey<T> on a class deriving from ConfigSection to be excluded from the fields returned by GetAutoConfigKeys().

IgnoreJsonConverterAttribute

Indicates that a Newtonsoft.Json.JsonConverter or Newtonsoft.Json.JsonConverter<T> derived class in a game tooling library isn't to be included in the list of converters for the JsonSerializer.

SingletonConfigSection<TConfigSection>

Represents a section of a Config for any IConfigOwner, of which there can only ever be once instance.
This is primarily useful for public config sections which others mods should be able to access.

SingletonExpandoConfigSection<TConfigSection>

Represents a section of a Config for any IConfigOwner, which additional config items can be added to dynamically and of which there can only ever be once instance.
This is primarily useful for public config sections which others mods should be able to access.

Interfaces

IConfigKey

Defines a name-only config item, which can be used to get or set the values of defining keys with the same name.

IConfigKeyChangedEventArgs

Represents a non-generic ConfigKeyChangedEventArgs<T>.

IConfigKeyComponent<TKey>

A component of a IDefiningConfigKey, e.g. description or range. A component cannot be removed from a config key once it was added.

IConfigKeyDefault<T>

Defines the interface for components that provide a default value for IDefiningConfigKey<T>s.

IConfigKeyDescription

Defines the interface for description components for IDefiningConfigKeys.

IConfigKeyPriority

Defines the interface for priority components for IDefiningConfigKeys.

IConfigKeyRange<T>

Defines the interface for range components for IDefiningConfigKey<T>s.

IConfigKeyValidator<T>

Defines the interface for validator components for IDefiningConfigKey<T>s.
Multiple components of this type on one config key must all validate successfully.

IConfigOwner

Interface to let mods and the loader own Configs.

IDefiningConfigKey

Defines the definition for a config item.

IDefiningConfigKey<T>

Defines the typed definition for a config item.

ITypedConfigKey

Defines a name-only typed config item, which can be used to get or set the values of defining keys with the same name.

ITypedConfigKey<T>

Defines a name-only typed config item, which can be used to get or set the values of defining keys with the same name.

Enums

IncompatibleConfigHandling

Defines options for the handling of incompatible configuration versions.

Delegates

ConfigKeyChangedEventHandler

The delegate that is called for configuration change events.

ConfigKeyChangedEventHandler<T>

The delegate that is called for a DefiningConfigKey<T>'s changed event.