diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs b/BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs index 5a964b4a3b..445f5d63d7 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs @@ -2,6 +2,9 @@ namespace BizHawk.Emulation.Common { + /// + /// This service manages the communication from the core to the Code/Data logging tool + /// public interface ICodeDataLogger : IEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs index c539991bab..7ae28f0648 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs @@ -2,6 +2,13 @@ namespace BizHawk.Emulation.Common { + /// + /// This service manages debugging capabilities from the core to the client. Tools such as the debugger make use of this, as well as lua scripting + /// This service specifically maanges getting/setting cpu registers, managing breakpoints, and stepping through cpu instructions + /// Providing a disassembly is managed by another service, these are aspects outside of the disassembler that are essential to debugging tools + /// Tools like the debugger will gracefully degrade based on the availability of each component of this service, + /// it is expected that any of these features will throw a NotImplementedException if not implemented, and the client will manage accordingly + /// public interface IDebuggable : IEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs index 74a2dc6f76..1b0491719f 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs @@ -4,6 +4,11 @@ using System.Collections.Generic; namespace BizHawk.Emulation.Common { + /// + /// This service provides the means to generate disassembly by the core for a given cpu and memory domain + /// Tools such the debugger use this, but also lua scripting, and tools like trace logging and code data logging can make use of this tool + /// If unavailable the debugger tool will still be avilable but disable the disassembly window but still be available if the IDebuggable service is available + /// public interface IDisassemblable : IEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs index a5425614ea..af89c15e6c 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs @@ -1,7 +1,7 @@ namespace BizHawk.Emulation.Common { /// - /// Specifies an interface to returning the state of a LED drive light such as on Disk and CD Drives + /// Specifies an interface for returning the state of a LED drive light such as on Disk and CD Drives /// public interface IDriveLight : IEmulatorService { diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs index fdb9259a8e..2fef85bf74 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs @@ -1,5 +1,13 @@ namespace BizHawk.Emulation.Common { + /// + /// This service specifices the interaction of the client and the core in terms of the state of input polling + /// A lag frame is a frame in which input was not polled + /// Input callbacks fire whenever input is polled + /// This service is used for the lag counter on the front end, if available. In addition lua script makes use of input callbacks as well as reporting lag status + /// Setters for both the count and lag flag are used by tools who offer custom notions of lag + /// Additionally, movie support could in theory make use of input callbacks + /// public interface IInputPollable : IEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs index a2e9f3e8d3..e6d658c907 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs @@ -1,5 +1,9 @@ namespace BizHawk.Emulation.Common { + /// + /// This service is use by link cable capable cores to manage the status of the link cable + /// If available the client will display the link cable status + /// public interface ILinkable : ISpecializedEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs b/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs index c5054def69..1e293dcbf2 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs @@ -5,9 +5,11 @@ namespace BizHawk.Emulation.Common /// /// The list of all avaialble memory domains /// A memory domain is a byte array that respresents a distinct part of the emulated system. - /// All cores sould implement a CheatDomain that represents the standard cpu bus range used for cheats for that system, + /// All cores sould implement a SystemBus that represents the standard cpu bus range used for cheats for that system, /// In order to have a cheat system available for the core /// All domains should implement both peek and poke. However, if something isn't developed it should throw NotImplementedException rather than silently fail + /// If this service is available the client will expose many RAM related tools such as the Hex Editor, Ram Search/Watch, and Cheats + /// In addition, this is an essential service for effective lua scripting /// public interface IMemoryDomains : IEnumerable, IEmulatorService { diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs index 6857cb1570..5a6dd777c2 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs @@ -1,5 +1,9 @@ namespace BizHawk.Emulation.Common { + /// + /// This service provides the means for a core to specify region information to the client, such NTSC vs PAL + /// If provided the client will use this to asses FPS and also use it to calculate movie times + /// public interface IRegionable : IEmulatorService { DisplayType Region { get; } diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs b/BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs index a1a290c3e3..7447674e23 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs @@ -1,5 +1,12 @@ namespace BizHawk.Emulation.Common { + /// + /// This service provdes the system by which a client can request SRam data to be stored by the client + /// SaveRam encompasses things like battery backed ram, memory cards, and data saved to disk drives + /// If available the client will provide features like sram-anchored movies, and ways to clear SaveRam + /// In addition save files and such will be automatically loaded when loading a ROM + /// + /// public interface ISaveRam : IEmulatorService { /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs index 79a121196a..c3eccb9157 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs @@ -4,6 +4,15 @@ using System.Reflection; namespace BizHawk.Emulation.Common { + /// + /// This service provides mechanism for the client to set sync and non-sync related settings to the core + /// Settings are settings that can changge during the lifetime of the core and do not affect potential movie sync + /// Sync Settings do not change during the lifetime of the core and affect movie sync + /// If available, Sync settings are stored in movie files and automatically applied when the movie is loaded + /// If this service is available the client can provide UI for the user to manage these settings + /// + /// The Type of the object that represent regular settings (settings that can be changed during the lifespan of a core instance + /// The Type of the object that represents sync settings (settings that can not change during hte lifespan of the core and are required for movie sync public interface ISettable : IEmulatorService { // in addition to these methods, it's expected that the constructor or Load() method diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs index 69b443ff22..3504205144 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs @@ -3,7 +3,10 @@ namespace BizHawk.Emulation.Common { /// - /// Savestate handling methods + /// This service manages the logic of sending and receiving savestates from the core + /// If this service is available, client apps will expose features for making savestates and that utilize savestates (such as rewind)) + /// If unavailable these options will not be exposed + /// Additionally many tools depends on savestates such as TAStudio, these will only be available if this service is implmeented /// public interface IStatable : IEmulatorService { diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs index 1d750a97ee..81bfa53472 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs @@ -3,12 +3,11 @@ namespace BizHawk.Emulation.Common { /// - /// Allows the cpu to dump trace info to a trace stream + /// This service allows the core to dump a cpu trace to the client + /// If available the Trace Logger tool will be available on the client /// public interface ITraceable : IEmulatorService { - // TODO: would it be faster (considering both disk and screen output) to keep the data as a List directly? - bool Enabled { get; set; } /// diff --git a/BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs b/BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs index a2bc7af35e..ed48f277ec 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs @@ -1,5 +1,9 @@ namespace BizHawk.Emulation.Common { + /// + /// This service provides the ability to pass video output to the client + /// If available the client will display video output to the user + /// public interface IVideoProvider : IEmulatorService { int[] GetVideoBuffer();