Interface IGameFileExtension
Provides Snowflake.
Namespace: Snowflake.Model.Game.LibraryExtensions
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IGameFileExtension : IGameExtension
Properties
MediaRoot
The directory to store media such as boxarts, trailers, and screenshots.
Declaration
IIndelibleDirectory MediaRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
MiscRoot
The directory to store miscellaneous files related to the game.
Declaration
IIndelibleDirectory MiscRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
ProgramRoot
The directory to store game ROM files and other program data such as assets and game-specific BIOS files.
Declaration
IIndelibleDirectory ProgramRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
ResourceRoot
The directory to store resources required for the game to run.
Declaration
IIndelibleDirectory ResourceRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
Root
A read only view on the root path of the game directory context.
Declaration
IReadOnlyDirectory Root { get; }
Property Value
Type | Description |
---|---|
IRead |
RuntimeRoot
The directory to store temporary files during the execution of the game. This directory is cleared before an emulator is run, and the required files for the emulator can be copied here.
Declaration
IIndelibleDirectory RuntimeRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
SavesRoot
The directory to persist save files for a game.
Declaration
IIndelibleDirectory SavesRoot { get; }
Property Value
Type | Description |
---|---|
IIndelible |
Methods
GetFileInfo(IFile)
Gets the IFile
Declaration
IFileRecord GetFileInfo(IFile file)
Parameters
Returns
Type | Description |
---|---|
IFile |
The IFile |
GetFileInfoAsync(IFile)
Asynchronously gets the IFile
Declaration
Task<IFileRecord> GetFileInfoAsync(IFile file)
Parameters
Returns
Type | Description |
---|---|
System. |
The IFile |
GetFileRecords()
Gets the list of IFile
Declaration
IEnumerable<IFileRecord> GetFileRecords()
Returns
Type | Description |
---|---|
System. |
GetFileRecordsAsync()
Asynchronously gets the list of IFile
Declaration
IAsyncEnumerable<IFileRecord> GetFileRecordsAsync()
Returns
Type | Description |
---|---|
System. |
GetRuntimeLocation()
Gets a working scratch directory for an emulator instance within Runtime
Declaration
IDirectory GetRuntimeLocation()
Returns
Type | Description |
---|---|
IDirectory | A working scratch directory for an emulator running instance. This directory is guaranteed to be unique. Emulators are responsible for their own cleanup and are well advised to delete this directory after execution completes. |
RegisterFile(IFile, String)
Registers a IFile as IFile
Declaration
IFileRecord RegisterFile(IFile file, string mimetype)
Parameters
Type | Name | Description |
---|---|---|
IFile | file | The IFile to create a IFile |
System. |
mimetype | The mimetype of the IFile, required for IFile |
Returns
Type | Description |
---|---|
IFile |
The IFile |
RegisterFileAsync(IFile, String)
Asynchronously registers a IFile as IFile
Declaration
Task<IFileRecord> RegisterFileAsync(IFile file, string mimetype)
Parameters
Type | Name | Description |
---|---|---|
IFile | file | The IFile to create a IFile |
System. |
mimetype | The mimetype of the IFile, required for IFile |
Returns
Type | Description |
---|---|
System. |
The IFile |