C# Class Nexus.Client.Games.Morrowind.MorrowindGameMode

Provides information required for the programme to manage Morrowind plugins and mods.
Inheritance: Nexus.Client.Games.Gamebryo.GamebryoGameModeBase
Exibir arquivo Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
GetActivePluginLogSerializer ( IPluginOrderLog p_polPluginOrderLog ) : IActivePluginLogSerializer

Gets the serailizer that serializes and deserializes the list of active plugins for this game mode.

GetModFormatAdjustedPath ( IModFormat p_mftModFormat, string p_strPath ) : string

Adjusts the given path to be relative to the installation path of the game mode.

This is basically a hack to allow older FOMod/OMods to work. Older FOMods assumed the installation path of Fallout games to be <games>/data, but this new manager specifies the installation path to be <games>. This breaks the older FOMods, so this method can detect the older FOMods (or other mod formats that needs massaging), and adjusts the given path to be relative to the new instaalation path to make things work.

GetPluginOrderLogSerializer ( ) : IPluginOrderLogSerializer

Gets the serializer that serializes and deserializes the plugin order for this game mode.

MorrowindGameMode ( IEnvironmentInfo p_eifEnvironmentInfo, FileUtil p_futFileUtility ) : System.IO

A simple constructor that initializes the object with the given values.

SortPlugins ( IList p_lstPlugins ) : string[]

Sorts the plugins.

Protected Methods

Method Description
CreateGameModeDescriptor ( ) : IGameModeDescriptor

Creates a game mode descriptor for the current game mode.

CreateSettingsFileContainer ( ) : GamebryoSettingsFiles

Instantiates the container to use to store the list of settings files.

SetupPluginManagement ( FileUtil p_futFileUtility ) : void

Setup for the plugin management libraries.

SetupSettingsFiles ( ) : void

Adds the settings files to the game mode's list.

Method Details

CreateGameModeDescriptor() protected method

Creates a game mode descriptor for the current game mode.
protected CreateGameModeDescriptor ( ) : IGameModeDescriptor
return IGameModeDescriptor

CreateSettingsFileContainer() protected method

Instantiates the container to use to store the list of settings files.
protected CreateSettingsFileContainer ( ) : GamebryoSettingsFiles
return Nexus.Client.Games.Gamebryo.GamebryoSettingsFiles

GetActivePluginLogSerializer() public method

Gets the serailizer that serializes and deserializes the list of active plugins for this game mode.
public GetActivePluginLogSerializer ( IPluginOrderLog p_polPluginOrderLog ) : IActivePluginLogSerializer
p_polPluginOrderLog IPluginOrderLog The tracking plugin order for the current game mode.
return IActivePluginLogSerializer

GetModFormatAdjustedPath() public method

Adjusts the given path to be relative to the installation path of the game mode.
This is basically a hack to allow older FOMod/OMods to work. Older FOMods assumed the installation path of Fallout games to be <games>/data, but this new manager specifies the installation path to be <games>. This breaks the older FOMods, so this method can detect the older FOMods (or other mod formats that needs massaging), and adjusts the given path to be relative to the new instaalation path to make things work.
public GetModFormatAdjustedPath ( IModFormat p_mftModFormat, string p_strPath ) : string
p_mftModFormat IModFormat The mod format for which to adjust the path.
p_strPath string The path to adjust
return string

GetPluginOrderLogSerializer() public method

Gets the serializer that serializes and deserializes the plugin order for this game mode.
public GetPluginOrderLogSerializer ( ) : IPluginOrderLogSerializer
return IPluginOrderLogSerializer

MorrowindGameMode() public method

A simple constructor that initializes the object with the given values.
public MorrowindGameMode ( IEnvironmentInfo p_eifEnvironmentInfo, FileUtil p_futFileUtility ) : System.IO
p_eifEnvironmentInfo IEnvironmentInfo The application's environment info.
p_futFileUtility Nexus.Client.Util.FileUtil The file utility class to be used by the game mode.
return System.IO

SetupPluginManagement() protected method

Setup for the plugin management libraries.
protected SetupPluginManagement ( FileUtil p_futFileUtility ) : void
p_futFileUtility Nexus.Client.Util.FileUtil
return void

SetupSettingsFiles() protected method

Adds the settings files to the game mode's list.
protected SetupSettingsFiles ( ) : void
return void

SortPlugins() public method

Sorts the plugins.
public SortPlugins ( IList p_lstPlugins ) : string[]
p_lstPlugins IList The list of plugin to order.
return string[]