delete all regions

This commit is contained in:
nattthebear 2020-05-14 17:33:40 -04:00
parent 0b14755ac3
commit e566d8e258
344 changed files with 2200 additions and 2200 deletions

View File

@ -429,7 +429,7 @@ namespace Jellyfish.Virtu
return CC;
}
#region Core Operand Actions
private void GetAddressAbs() // abs
{
@ -622,9 +622,9 @@ namespace Jellyfish.Virtu
_memory.WriteZeroPage(EA, data);
}
#endregion
#region Core OpCode Actions
private void ExecuteAdc65N02(int data, int cc)
{
if ((RP & Pd) == 0x0)
@ -1333,9 +1333,9 @@ namespace Jellyfish.Virtu
RP = RP & ~(Pn | Pz) | DataPnz[RA];
CC += cc;
}
#endregion
#region 6502 OpCode Actions
private void Execute65X02And21() // and (zpg, x)
{
GetAddressZpgIndX();
@ -2069,9 +2069,9 @@ namespace Jellyfish.Virtu
ExecuteTya(2);
}
#endregion
#region 65N02 OpCode Actions
private void Execute65N02Adc61() // adc (zpg, x)
{
@ -2733,9 +2733,9 @@ namespace Jellyfish.Virtu
ExecuteSbc65N02(ReadAbsX(), 4);
}
#endregion
#region 65C02 OpCode Actions
private void Execute65C02Adc61() // adc (zpg, x)
{
GetAddressZpgIndX();
@ -3419,7 +3419,7 @@ namespace Jellyfish.Virtu
WriteAbs(ExecuteTsb(ReadAbs(), 6));
}
#endregion
private bool Is65C02
{

View File

@ -280,7 +280,7 @@ namespace Jellyfish.Virtu
MapRegionD0FF();
}
#region Core Read & Write
public int ReadOpcode(int address)
{
@ -336,9 +336,9 @@ namespace Jellyfish.Virtu
_zeroPage[address] = (byte)data;
}
#endregion
#region Read Actions
private int ReadIoRegionC0CF(int address)
{
@ -794,9 +794,9 @@ namespace Jellyfish.Virtu
return _romRegionE0FF[address - 0xE000];
}
#endregion
#region Write Actions
private void WriteIoRegionC0C0(int address, byte data)
{
@ -1702,9 +1702,9 @@ namespace Jellyfish.Virtu
{
}
#endregion
#region Softswitch Actions
private void MapRegion0001()
{
if (!IsZeroPageAux)
@ -2070,7 +2070,7 @@ namespace Jellyfish.Virtu
}
}
#endregion
private static int SetBit7(int data, bool value)
{

View File

@ -216,7 +216,7 @@ namespace Jellyfish.Virtu
DirtyScreenText();
}
#region Draw Methods
private void DrawText40(int data, int x, int y)
{
@ -737,9 +737,9 @@ namespace Jellyfish.Virtu
}
}
#endregion
#region Flush Methods
private void FlushRowMode0(int y)
{
int address = (_memory.IsVideoPage2 ? 0x0800 : 0x0400) + AddressOffset[y];
@ -951,7 +951,7 @@ namespace Jellyfish.Virtu
FlushRowMode2(y); // text80
}
}
#endregion
private void FlushRowEvent()
{

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -196,7 +196,7 @@
}
#endregion
private System.Windows.Forms.ComboBox comboBoxSystemSelect;
private System.Windows.Forms.Label label1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -724,7 +724,7 @@
}
#endregion
private System.Windows.Forms.Panel filterPanel;
private System.Windows.Forms.Label whereLabel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -177,7 +177,7 @@
}
#endregion
private System.Windows.Forms.Label label_Watch1;
private System.Windows.Forms.Label label_Watch2;

View File

@ -420,7 +420,7 @@ namespace NLua
}
}
#region Globals auto-complete
private readonly List<string> globals = new List<string>();
private bool globalsSorted;
@ -460,7 +460,7 @@ namespace NLua
// If the type is a class or an interface and recursion hasn't been running too long, list the members
else if ((type.IsClass || type.IsInterface) && type != typeof(string) && recursionCounter < 2)
{
#region Methods
foreach (MethodInfo method in type.GetMethods(BindingFlags.Public | BindingFlags.Instance))
{
if (
@ -482,9 +482,9 @@ namespace NLua
globals.Add(command);
}
}
#endregion
#region Fields
foreach (FieldInfo field in type.GetFields(BindingFlags.Public | BindingFlags.Instance))
{
if (
@ -496,9 +496,9 @@ namespace NLua
registerGlobal(path + "." + field.Name, field.FieldType, recursionCounter + 1);
}
}
#endregion
#region Properties
foreach (PropertyInfo property in type.GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
if (
@ -512,7 +512,7 @@ namespace NLua
registerGlobal(path + "." + property.Name, property.PropertyType, recursionCounter + 1);
}
}
#endregion
}
// Otherwise simply add the element to the list
else globals.Add(path);
@ -520,7 +520,7 @@ namespace NLua
// List will need to be sorted on next access
globalsSorted = false;
}
#endregion
@ -726,7 +726,7 @@ namespace NLua
* or userdata
*/
#region lua debug functions
/// <summary>
/// lua hook calback delegate
@ -960,7 +960,7 @@ namespace NLua
translator.push(luaState, value);
}
#endregion
List<int> scheduledDisposes = new List<int>();
@ -1089,7 +1089,7 @@ namespace NLua
translator.pushFunction(luaState,function);
}
#region IDisposable Members
public virtual void Dispose()
{
@ -1104,7 +1104,7 @@ namespace NLua
System.GC.WaitForPendingFinalizers();
}
#endregion
}
/// <summary>

View File

@ -6,7 +6,7 @@ namespace NLua
{
public static class LuaRegistrationHelper
{
#region Tagged instance methods
/// <summary>
/// Registers all public instance methods in an object tagged with <see cref="LuaGlobalAttribute"/> as Lua global functions
/// </summary>
@ -14,10 +14,10 @@ namespace NLua
/// <param name="o">The object to get the methods from</param>
public static void TaggedInstanceMethods(Lua lua, object o)
{
#region Sanity checks
if (lua == null) throw new ArgumentNullException("lua");
if (o == null) throw new ArgumentNullException("o");
#endregion
foreach (MethodInfo method in o.GetType().GetMethods(BindingFlags.Instance | BindingFlags.Public))
{
@ -30,9 +30,9 @@ namespace NLua
}
}
}
#endregion
#region Tagged static methods
/// <summary>
/// Registers all public static methods in a class tagged with <see cref="LuaGlobalAttribute"/> as Lua global functions
/// </summary>
@ -40,11 +40,11 @@ namespace NLua
/// <param name="type">The class type to get the methods from</param>
public static void TaggedStaticMethods(Lua lua, Type type)
{
#region Sanity checks
if (lua == null) throw new ArgumentNullException("lua");
if (type == null) throw new ArgumentNullException("type");
if (!type.IsClass) throw new ArgumentException("The type must be a class!", "type");
#endregion
foreach (MethodInfo method in type.GetMethods(BindingFlags.Static | BindingFlags.Public))
{
@ -57,9 +57,9 @@ namespace NLua
}
}
}
#endregion
#region Enumeration
/// <summary>
/// Registers an enumeration's values for usage as a Lua variable table
/// </summary>
@ -68,9 +68,9 @@ namespace NLua
[SuppressMessage("Microsoft.Design", "CA1004:GenericMethodsShouldProvideTypeParameter", Justification = "The type parameter is used to select an enum type")]
public static void Enumeration<T>(Lua lua)
{
#region Sanity checks
if (lua == null) throw new ArgumentNullException("lua");
#endregion
Type type = typeof(T);
if (!type.IsEnum) throw new ArgumentException("The type must be an enumeration!");
@ -85,6 +85,6 @@ namespace NLua
lua[path] = values[i];
}
}
#endregion
}
}

View File

@ -12,7 +12,7 @@ namespace Cyotek.Drawing.BitmapFont
public static class BitmapFontLoader
{
#region  Public Class Methods
/// <summary>
/// Loads a bitmap font from an XML file.
@ -115,9 +115,9 @@ namespace Cyotek.Drawing.BitmapFont
return font;
}
#endregion  Public Class Methods
#region  Private Class Methods
/// <summary>
/// Creates a Padding object from a string representation
@ -165,6 +165,6 @@ namespace Cyotek.Drawing.BitmapFont
return result;
}
#endregion  Private Class Methods
}
}

View File

@ -6,16 +6,16 @@ namespace Cyotek.Drawing.BitmapFont
{
public struct Character
{
#region  Public Methods
public override string ToString()
{
return this.Char.ToString();
}
#endregion  Public Methods
#region  Public Properties
public int Channel { get; set; }
@ -29,6 +29,6 @@ namespace Cyotek.Drawing.BitmapFont
public int XAdvance { get; set; }
#endregion  Public Properties
}
}

View File

@ -4,7 +4,7 @@ namespace Cyotek.Drawing.BitmapFont
{
public struct Kerning
{
#region  Public Constructors
public Kerning(char firstCharacter, char secondCharacter, int amount)
: this()
@ -14,18 +14,18 @@ namespace Cyotek.Drawing.BitmapFont
this.Amount = amount;
}
#endregion  Public Constructors
#region  Public Methods
public override string ToString()
{
return string.Format("{0} to {1} = {2}", this.FirstCharacter, this.SecondCharacter, this.Amount);
}
#endregion  Public Methods
#region  Public Properties
public char FirstCharacter { get; set; }
@ -33,6 +33,6 @@ namespace Cyotek.Drawing.BitmapFont
public int Amount { get; set; }
#endregion  Public Properties
}
}

View File

@ -4,7 +4,7 @@ namespace Cyotek.Drawing.BitmapFont
{
public struct Padding
{
#region  Public Constructors
public Padding(int left, int top, int right, int bottom)
: this()
@ -15,18 +15,18 @@ namespace Cyotek.Drawing.BitmapFont
this.Bottom = bottom;
}
#endregion  Public Constructors
#region  Public Methods
public override string ToString()
{
return string.Format("{0}, {1}, {2}, {3}", this.Left, this.Top, this.Right, this.Bottom);
}
#endregion  Public Methods
#region  Public Properties
public int Top { get; set; }
@ -36,6 +36,6 @@ namespace Cyotek.Drawing.BitmapFont
public int Bottom { get; set; }
#endregion  Public Properties
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -41,7 +41,7 @@
}
#endregion
}

View File

@ -114,7 +114,7 @@ namespace BizHawk.Client.Common
return ((int) u << sh) >> sh;
}
#region Endian Handling
private uint ReadUnsignedLittle(long addr, int size, string domain = null)
{
@ -152,9 +152,9 @@ namespace BizHawk.Client.Common
else WriteUnsignedLittle(addr, value, size, domain);
}
#endregion
#region Unique Library Methods
public void SetBigEndian(bool enabled = true) => _isBigEndian = enabled;
@ -210,9 +210,9 @@ namespace BizHawk.Client.Common
return hasher.ComputeHash(data).BytesToHexString();
}
#endregion
#region Common Special and Legacy Methods
public uint ReadByte(long addr, string domain = null) => ReadUnsignedByte(addr, domain);
@ -272,9 +272,9 @@ namespace BizHawk.Client.Common
d.PokeUint(addr, BitConverter.ToUInt32(BitConverter.GetBytes((float) value), 0), _isBigEndian);
}
#endregion
#region 1 Byte
public int ReadS8(long addr, string domain = null) => (sbyte) ReadUnsignedByte(addr, domain);
@ -284,9 +284,9 @@ namespace BizHawk.Client.Common
public void WriteU8(long addr, uint value, string domain = null) => WriteUnsignedByte(addr, value, domain);
#endregion
#region 2 Byte
public int ReadS16(long addr, string domain = null) => (short) ReadSigned(addr, 2, domain);
@ -296,9 +296,9 @@ namespace BizHawk.Client.Common
public void WriteU16(long addr, uint value, string domain = null) => WriteUnsigned(addr, value, 2, domain);
#endregion
#region 3 Byte
public int ReadS24(long addr, string domain = null) => ReadSigned(addr, 3, domain);
@ -308,9 +308,9 @@ namespace BizHawk.Client.Common
public void WriteU24(long addr, uint value, string domain = null) => WriteUnsigned(addr, value, 3, domain);
#endregion
#region 4 Byte
public int ReadS32(long addr, string domain = null) => ReadSigned(addr, 4, domain);
@ -320,6 +320,6 @@ namespace BizHawk.Client.Common
public void WriteU32(long addr, uint value, string domain = null) => WriteUnsigned(addr, value, 4, domain);
#endregion
}
}

View File

@ -2,24 +2,24 @@
{
public interface IComm : IExternalApi
{
#region Sockets
string SocketServerScreenShot();
string SocketServerScreenShotResponse();
string SocketServerSend(string SendString);
string SocketServerResponse();
bool SocketServerSuccessful();
void SocketServerSetTimeout(int timeout);
#endregion
#region MemoryMappedFiles
void MmfSetFilename(string filename);
string MmfGetFilename();
int MmfScreenshot();
int MmfWrite(string mmf_filename, string outputString);
string MmfRead(string mmf_filename, int expectedSize);
#endregion
#region HTTP
string HttpTest();
string HttpTestGet();
string HttpGet(string url);
@ -30,6 +30,6 @@
void HttpSetGetUrl(string url);
string HttpGetPostUrl();
string HttpGetGetUrl();
#endregion
}
}

View File

@ -6,21 +6,21 @@ namespace BizHawk.Client.Common
{
public interface IGui : IDisposable, IExternalApi
{
#region Gui API
void ToggleCompositingMode();
ImageAttributes GetAttributes();
void SetAttributes(ImageAttributes a);
void DrawNew(string name, bool clear = true);
void DrawFinish();
bool HasGUISurface { get; }
#endregion
#region Helpers
void SetPadding(int all);
void SetPadding(int x, int y);
void SetPadding(int l, int t, int r, int b);
(int Left, int Top, int Right, int Bottom) GetPadding();
#endregion
void AddMessage(string message);
void ClearGraphics();

View File

@ -6,51 +6,51 @@ namespace BizHawk.Client.Common
{
void SetBigEndian(bool enabled = true);
#region Domains
List<string> GetMemoryDomainList();
uint GetMemoryDomainSize(string name = "");
string GetCurrentMemoryDomain();
uint GetCurrentMemoryDomainSize();
bool UseMemoryDomain(string domain);
string HashRegion(long addr, int count, string domain = null);
#endregion
#region Read
#region Special and Legacy Methods
uint ReadByte(long addr, string domain = null);
List<byte> ReadByteRange(long addr, int length, string domain = null);
float ReadFloat(long addr, string domain = null);
#endregion
#region Signed
int ReadS8(long addr, string domain = null);
int ReadS16(long addr, string domain = null);
int ReadS24(long addr, string domain = null);
int ReadS32(long addr, string domain = null);
#endregion
#region Unsigned
uint ReadU8(long addr, string domain = null);
uint ReadU16(long addr, string domain = null);
uint ReadU24(long addr, string domain = null);
uint ReadU32(long addr, string domain = null);
#endregion
#endregion
#region Write
#region Special and Legacy Methods
void WriteByte(long addr, uint value, string domain = null);
void WriteByteRange(long addr, List<byte> memoryblock, string domain = null);
void WriteFloat(long addr, double value, string domain = null);
#endregion
#region Signed
void WriteS8(long addr, int value, string domain = null);
void WriteS16(long addr, int value, string domain = null);
void WriteS24(long addr, int value, string domain = null);
void WriteS32(long addr, int value, string domain = null);
#endregion
#region Unigned
void WriteU8(long addr, uint value, string domain = null);
void WriteU16(long addr, uint value, string domain = null);
void WriteU24(long addr, uint value, string domain = null);
void WriteU32(long addr, uint value, string domain = null);
#endregion
#endregion
}
}

View File

@ -13,7 +13,7 @@ namespace BizHawk.Client.Common
{
public class QuickBmpFile
{
#region Structs
[StructLayout(LayoutKind.Sequential, Pack = 1)]
private class BITMAPFILEHEADER
@ -86,7 +86,7 @@ namespace BizHawk.Client.Common
BI_PNG = 5
}
#endregion
private static unsafe byte[] GetBytes(object o)
{

View File

@ -30,9 +30,9 @@ namespace BizHawk.Client.Common
AllSystemInfos.Add(this);
}
#region Methods
#region Get SystemInfo
/// <summary>
/// Gets the <see cref="SystemInfo"/> instance for Apple II
@ -235,7 +235,7 @@ namespace BizHawk.Client.Common
public static SystemInfo Sgb { get; } = new SystemInfo("SGB", CoreSystem.SuperGameBoy, 4);
#endregion Get SystemInfo
/// <summary>
/// Get a <see cref="SystemInfo"/> by its <see cref="CoreSystem"/>
@ -294,9 +294,9 @@ namespace BizHawk.Client.Common
return !(system1 == system2);
}
#endregion
#region Properties
/// <summary>
/// Gets <see cref="JoypadButton"/> available for this system
@ -318,6 +318,6 @@ namespace BizHawk.Client.Common
/// </summary>
public CoreSystem System { get; }
#endregion
}
}

View File

@ -21,7 +21,7 @@ namespace BizHawk.Client.Common
public override string Name => "memory";
#region Unique Library Methods
[LuaMethodExample("local nlmemget = memory.getmemorydomainlist();")]
[LuaMethod("getmemorydomainlist", "Returns a string of the memory domains for the loaded platform core. List will be a single string delimited by line feeds")]
@ -52,9 +52,9 @@ namespace BizHawk.Client.Common
[LuaMethod("hash_region", "Returns a hash as a string of a region of memory, starting from addr, through count bytes. If the domain is unspecified, it uses the current region.")]
public string HashRegion(int addr, int count, string domain = null) => APIs.Mem.HashRegion(addr, count, domain);
#endregion
#region Common Special and Legacy Methods
[LuaMethodExample("local uimemrea = memory.readbyte( 0x100, mainmemory.getname( ) );")]
[LuaMethod("readbyte", "gets the value from the given address as an unsigned byte")]
@ -120,9 +120,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteFloat(addr, value, domain);
}
#endregion
#region 1 Byte
[LuaMethodExample("local inmemrea = memory.read_s8( 0x100, mainmemory.getname( ) );")]
[LuaMethod("read_s8", "read signed byte")]
@ -140,9 +140,9 @@ namespace BizHawk.Client.Common
[LuaMethod("write_u8", "write unsigned byte")]
public void WriteU8(int addr, uint value, string domain = null) => APIs.Mem.WriteU8(addr, value, domain);
#endregion
#region 2 Byte
[LuaMethodExample("local inmemrea = memory.read_s16_le( 0x100, mainmemory.getname( ) );")]
[LuaMethod("read_s16_le", "read signed 2 byte value, little endian")]
@ -208,9 +208,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU16(addr, value, domain);
}
#endregion
#region 3 Byte
[LuaMethodExample("local inmemrea = memory.read_s24_le( 0x100, mainmemory.getname( ) );")]
[LuaMethod("read_s24_le", "read signed 24 bit value, little endian")]
@ -276,9 +276,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU24(addr, value, domain);
}
#endregion
#region 4 Byte
[LuaMethodExample("local inmemrea = memory.read_s32_le( 0x100, mainmemory.getname( ) );")]
[LuaMethod("read_s32_le", "read signed 4 byte value, little endian")]
@ -344,6 +344,6 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU32(addr, value, domain);
}
#endregion
}
}

View File

@ -32,7 +32,7 @@ namespace BizHawk.Client.Common
public override string Name => "event";
#region Events Library Helpers
public void CallExitEvent(LuaFile luaFile)
{
@ -127,7 +127,7 @@ namespace BizHawk.Client.Common
Log($"{scope} is not an available scope for {Emulator.Attributes().CoreName}");
}
#endregion
[LuaMethodExample("local steveonf = event.onframeend(\r\n\tfunction()\r\n\t\tconsole.log( \"Calls the given lua function at the end of each frame, after all emulation and drawing has completed. Note: this is the default behavior of lua scripts\" );\r\n\tend\r\n\t, \"Frame name\" );")]

View File

@ -40,7 +40,7 @@ namespace BizHawk.Client.Common
}
}
#region Unique Library Methods
[LuaMethodExample("local stmaiget = mainmemory.getname( );")]
[LuaMethod("getname", "returns the name of the domain defined as main memory for the given core")]
@ -56,9 +56,9 @@ namespace BizHawk.Client.Common
return (uint)Domain.Size;
}
#endregion
#region Common Special and Legacy Methods
[LuaMethodExample("local uimairea = mainmemory.readbyte( 0x100 );")]
[LuaMethod("readbyte", "gets the value from the given address as an unsigned byte")]
@ -124,9 +124,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteFloat(addr, value, Domain.Name);
}
#endregion
#region 1 Byte
[LuaMethodExample("local inmairea = mainmemory.read_s8( 0x100 );")]
[LuaMethod("read_s8", "read signed byte")]
@ -144,9 +144,9 @@ namespace BizHawk.Client.Common
[LuaMethod("write_u8", "write unsigned byte")]
public void WriteU8(int addr, uint value) => APIs.Mem.WriteU8(addr, value, Domain.Name);
#endregion
#region 2 Byte
[LuaMethodExample("local inmairea = mainmemory.read_s16_le( 0x100 );")]
[LuaMethod("read_s16_le", "read signed 2 byte value, little endian")]
@ -212,9 +212,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU16(addr, value, Domain.Name);
}
#endregion
#region 3 Byte
[LuaMethodExample("local inmairea = mainmemory.read_s24_le( 0x100 );")]
[LuaMethod("read_s24_le", "read signed 24 bit value, little endian")]
@ -280,9 +280,9 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU24(addr, value, Domain.Name);
}
#endregion
#region 4 Byte
[LuaMethodExample("local inmairea = mainmemory.read_s32_le( 0x100 );")]
[LuaMethod("read_s32_le", "read signed 4 byte value, little endian")]
@ -348,6 +348,6 @@ namespace BizHawk.Client.Common
APIs.Mem.WriteU32(addr, value, Domain.Name);
}
#endregion
}
}

View File

@ -41,16 +41,16 @@ namespace BizHawk.Client.Common
.ToList();
}
#region IController Implementation
public ControllerDefinition Definition => _type;
public bool IsPressed(string button) => _myBoolButtons[button];
public float AxisValue(string name) => _myAxisControls[name];
#endregion
#region IMovieController Implementation
public void SetFrom(IController source)
{
@ -146,7 +146,7 @@ namespace BizHawk.Client.Common
_myAxisControls[buttonName] = value;
}
#endregion
private class ControlMap
{

View File

@ -81,7 +81,7 @@ namespace BizHawk.Client.Common
}
}
#region Log Editing
public void AppendFrame(IController source)
{
@ -165,7 +165,7 @@ namespace BizHawk.Client.Common
Changes = true;
}
#endregion
protected void SetFrameAt(int frameNum, string frame)
{

View File

@ -7,7 +7,7 @@ namespace BizHawk.Client.Common
{
internal class BkmControllerAdapter : IController
{
#region IController Implementation
public ControllerDefinition Definition { get; set; }
@ -21,7 +21,7 @@ namespace BizHawk.Client.Common
return _myFloatControls[name];
}
#endregion
/// <summary>
/// latches all buttons from the supplied mnemonic string

View File

@ -33,7 +33,7 @@ namespace BizHawk.Client.Common
// TODO: consider other event handlers, switching modes?
public interface IMovie
{
#region Status
/// <summary>
/// Gets the current movie mode
@ -44,9 +44,9 @@ namespace BizHawk.Client.Common
bool Changes { get; }
#endregion
#region Properties
string Name { get; }
@ -120,9 +120,9 @@ namespace BizHawk.Client.Common
/// </summary>
ILogEntryGenerator LogGeneratorInstance(IController source);
#endregion
#region File Handling API
// Filename of the movie, settable by the client
string Filename { get; set; }
@ -165,9 +165,9 @@ namespace BizHawk.Client.Common
/// <param name="errorMessage">Returns an error message, if any</param>
bool ExtractInputLog(TextReader reader, out string errorMessage);
#endregion
#region Mode Handling API
/// <summary>
/// Tells the movie to start recording from the beginning.
@ -202,9 +202,9 @@ namespace BizHawk.Client.Common
/// </summary>
void FinishedMode();
#endregion
#region Editing API
/// <summary>
/// Replaces the given frame's input with an empty frame
@ -243,7 +243,7 @@ namespace BizHawk.Client.Common
/// <returns>A controller state representing the specified frame of input, if frame is out of range, will return null</returns>
IMovieController GetInputState(int frame);
#endregion
}
public static class MovieExtensions

View File

@ -282,7 +282,7 @@ namespace BizHawk.Client.Common
}
}
#region Change History
private bool AddMovieAction(string name)
{
@ -380,10 +380,10 @@ namespace BizHawk.Client.Common
}
}
#endregion
}
#region Classes
public interface IMovieAction
{
@ -748,5 +748,5 @@ namespace BizHawk.Client.Common
}
}
#endregion
}

View File

@ -325,7 +325,7 @@ namespace BizHawk.Client.Common
Changes = true;
}
#region Events and Handlers
public event PropertyChangedEventHandler PropertyChanged;
@ -358,6 +358,6 @@ namespace BizHawk.Client.Common
public void ClearChanges() => Changes = false;
public void FlagChanges() => Changes = true;
#endregion
}
}

View File

@ -41,7 +41,7 @@ namespace BizHawk.Client.Common.RamSearchEngine
CompareValue = compareValue;
}
#region API
public IEnumerable<long> OutOfRangeAddress => _watchList
.Where(watch => watch.Address >= Domain.Size)
@ -313,9 +313,9 @@ namespace BizHawk.Client.Common.RamSearchEngine
}
}
#endregion
#region Undo API
public bool UndoEnabled { get; set; }
@ -350,9 +350,9 @@ namespace BizHawk.Client.Common.RamSearchEngine
return _watchList.Count;
}
#endregion
#region Comparisons
private IEnumerable<IMiniWatch> ComparePrevious(IEnumerable<IMiniWatch> watchList)
{
@ -599,7 +599,7 @@ namespace BizHawk.Client.Common.RamSearchEngine
throw new InvalidCastException();
}
#endregion
private long SignExtendAsNeeded(long val)
{

View File

@ -50,9 +50,9 @@ namespace BizHawk.Client.Common
}
}
#region Methods
#region Static
/// <summary>
/// Generate sa <see cref="Watch"/> from a given string
@ -146,7 +146,7 @@ namespace BizHawk.Client.Common
};
}
#region Operators
/// <summary>
/// Equality operator between two <see cref="Watch"/>
@ -255,11 +255,11 @@ namespace BizHawk.Client.Common
return a.CompareTo(b) >= 0;
}
#endregion Operators
#endregion Static
#region Abstracts
/// <summary>
/// Gets a list a <see cref="DisplayType"/> that can be used for this <see cref="Watch"/>
@ -277,9 +277,9 @@ namespace BizHawk.Client.Common
/// </summary>
public abstract void Update();
#endregion Abstracts
#region Protected
protected byte GetByte(bool bypassFreeze = false)
{
@ -365,7 +365,7 @@ namespace BizHawk.Client.Common
}
}
#endregion Protected
/// <summary>
/// Sets the number of changes to 0
@ -375,7 +375,7 @@ namespace BizHawk.Client.Common
ChangeCount = 0;
}
#region IEquatable<Watch>
/// <summary>
/// Determines if this <see cref="Watch"/> is equals to another
@ -394,9 +394,9 @@ namespace BizHawk.Client.Common
Size == other.Size;
}
#endregion IEquatable<Watch>
#region IEquatable<Cheat>
/// <summary>
/// Determines if this <see cref="Watch"/> is equals to an instance of <see cref="Cheat"/>
@ -411,9 +411,9 @@ namespace BizHawk.Client.Common
&& Size == other.Size;
}
#endregion IEquatable<Cheat>
#region IComparable<Watch>
/// <summary>
/// Compares two <see cref="Watch"/> together and determine which one comes first.
@ -442,7 +442,7 @@ namespace BizHawk.Client.Common
return Address.CompareTo(other.Address);
}
#endregion IComparable<Watch>
/// <summary>
/// Determines if this object is Equals to another
@ -499,11 +499,11 @@ namespace BizHawk.Client.Common
/// <returns>A well formatted string representation</returns>
public virtual string ToDisplayString() => $"{Notes}: {ValueString}";
#endregion
#region Properties
#region Abstracts
/// <summary>
/// Gets a string representation of difference
@ -551,7 +551,7 @@ namespace BizHawk.Client.Common
/// </summary>
public abstract string PreviousStr { get; }
#endregion Abstracts
/// <summary>
/// Gets the address in the <see cref="MemoryDomain"/>
@ -631,7 +631,7 @@ namespace BizHawk.Client.Common
/// </summary>
public WatchSize Size { get; }
#endregion
// TODO: Replace all the following stuff by implementing ISerializable
public static string DisplayTypeToString(DisplayType type)

View File

@ -19,7 +19,7 @@ namespace BizHawk.Client.Common
public sealed partial class WatchList
: IList<Watch>
{
#region Fields
public const string Address = "AddressColumn";
public const string Value = "ValueColumn";
@ -36,9 +36,9 @@ namespace BizHawk.Client.Common
private readonly string _systemId;
private IMemoryDomains _memoryDomains;
#endregion
#region cTor(s)
/// <summary>
/// Static constructor for the <see cref="WatchList"/> class.
@ -71,11 +71,11 @@ namespace BizHawk.Client.Common
_systemId = systemId;
}
#endregion
#region Methods
#region ICollection<Watch>
/// <summary>
/// Adds a <see cref="Watch"/> into the current collection
@ -135,9 +135,9 @@ namespace BizHawk.Client.Common
return result;
}
#endregion
#region IList<Watch>
/// <summary>
/// Determines the zero-base position of the specified <see cref="Watch"/>
@ -170,9 +170,9 @@ namespace BizHawk.Client.Common
Changes = true;
}
#endregion IList<Watch>
#region IEnumerable<Watch>
/// <summary>
/// Returns an enumerator that iterates through the collection
@ -192,7 +192,7 @@ namespace BizHawk.Client.Common
return GetEnumerator();
}
#endregion IEnumerable<Watch>
/// <summary>
/// Add an existing collection of <see cref="Watch"/> into the current one
@ -284,11 +284,11 @@ namespace BizHawk.Client.Common
});
}
#endregion
#region Propeties
#region ICollection<Watch>
/// <summary>
/// Gets the number of elements contained in this <see cref="WatchList"/>
@ -301,9 +301,9 @@ namespace BizHawk.Client.Common
/// </summary>
public bool IsReadOnly => false;
#endregion ICollection<Watch>
#region IList<Watch>
/// <summary>
/// Gets or sets element at the specified index
@ -316,7 +316,7 @@ namespace BizHawk.Client.Common
set => _watchList[index] = value;
}
#endregion IList<Watch>
/// <summary>
/// Gets or sets a value indicating whether the collection has changed or not
@ -333,9 +333,9 @@ namespace BizHawk.Client.Common
/// </summary>
public int WatchCount => _watchList.Count(watch => !watch.IsSeparator);
#endregion
#region File handling logic - probably needs to be its own class
public bool Load(string path, bool append)
{
@ -519,6 +519,6 @@ namespace BizHawk.Client.Common
return true;
}
#endregion
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -84,7 +84,7 @@
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Button button1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -105,7 +105,7 @@
}
#endregion
public System.Windows.Forms.RichTextBox textBox1;
private System.Windows.Forms.TabControl tabControl1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -270,7 +270,7 @@
}
#endregion
private System.Windows.Forms.Button ExitButton;
private System.Windows.Forms.Panel lblMagicDragArea;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -157,7 +157,7 @@
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ListBox listBox1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -138,7 +138,7 @@
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -164,7 +164,7 @@
}
#endregion
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.TrackBar threadsBar;

View File

@ -15,7 +15,7 @@ namespace BizHawk.Client.EmuHawk
{
// this code isn't really any good for general purpose nut creation
#region simple buffer reuser
public class ReusableBufferPool<T>
{
@ -84,9 +84,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region binary write helpers
/// <summary>
/// variable length value, unsigned
@ -183,9 +183,9 @@ namespace BizHawk.Client.EmuHawk
stream.Write(b, 0, 4);
}
#endregion
#region CRC calculator
private static readonly uint[] CrcTable =
{
@ -211,7 +211,7 @@ namespace BizHawk.Client.EmuHawk
return crc;
}
#endregion
/// <summary>
/// writes a single packet out, including CheckSums
@ -303,7 +303,7 @@ namespace BizHawk.Client.EmuHawk
}
}
#region fields
/// <summary>
/// stores basic AV parameters
@ -354,9 +354,9 @@ namespace BizHawk.Client.EmuHawk
readonly ReusableBufferPool<byte> _bufferPool = new ReusableBufferPool<byte>(12);
#endregion
#region header writers
/// <summary>
/// write out the main header
@ -442,7 +442,7 @@ namespace BizHawk.Client.EmuHawk
header.Flush();
}
#endregion
/// <summary>
/// stores a single frame with syncpoint, in mux-ready form

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -56,7 +56,7 @@
}
#endregion
private System.Windows.Forms.Button btnExport;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -275,7 +275,7 @@
}
#endregion
private System.Windows.Forms.CheckBox checkBoxResize;
private System.Windows.Forms.ListBox listBox1;

View File

@ -22,7 +22,7 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public static class ClientApi
{
#region Fields
private static IEmulator Emulator { get; set; }
private static IVideoProvider VideoProvider { get; set; }
@ -60,9 +60,9 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public static event StateSavedEventHandler StateSaved;
#endregion
#region cTor(s)
/// <summary>
/// Static stuff initialization
@ -80,11 +80,11 @@ namespace BizHawk.Client.EmuHawk
VideoProvider = emu.AsVideoProviderOrDefault();
}
#endregion
#region Methods
#region Helpers
private static void InvokeMainFormMethod(string name, object[] paramList = null)
{
@ -114,9 +114,9 @@ namespace BizHawk.Client.EmuHawk
MainFormClass.GetField(name).SetValue(ClientMainFormInstance, value);
}
#endregion
#region Public
/// <summary>
/// THE FrameAdvance stuff
/// </summary>
@ -393,7 +393,7 @@ namespace BizHawk.Client.EmuHawk
{
InvokeMainFormMethod("UnpauseEmulator");
}
#endregion Public
/// <summary>
/// Gets all current inputs for each joypad and store
@ -690,9 +690,9 @@ namespace BizHawk.Client.EmuHawk
return (int)t.GetField("Y").GetValue(o);
}
#endregion
#region Properties
/// <summary>
/// Gets current emulated system
@ -749,6 +749,6 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
}
}

View File

@ -9,16 +9,16 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public sealed class Joypad
{
#region Fields
private JoypadButton _pressedButtons;
private float _analogX;
private float _analogY;
private int _player;
#endregion
#region cTor(s)
/// <summary>
/// Initialize a new instance of <see cref="Joypad"/>
@ -37,9 +37,9 @@ namespace BizHawk.Client.EmuHawk
_player = player;
}
#endregion
#region Methods
/// <summary>
/// Add specified input to current ones
@ -68,9 +68,9 @@ namespace BizHawk.Client.EmuHawk
_pressedButtons ^= input;
}
#endregion
#region Properties
/// <summary>
/// Gets or sets X value for Analog stick
@ -112,6 +112,6 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public SystemInfo System { get; }
#endregion
}
}

View File

@ -28,7 +28,7 @@ namespace BizHawk.Client.EmuHawk
public string SocketServerGetInfo() => GlobalWin.socketServer.GetInfo();
#region MemoryMappedFile
public void MmfSetFilename(string filename) => GlobalWin.memoryMappedFiles.Filename = filename;
@ -40,9 +40,9 @@ namespace BizHawk.Client.EmuHawk
public string MmfRead(string mmf_filename, int expectedSize) => GlobalWin.memoryMappedFiles.ReadFromFile(mmf_filename, expectedSize);
#endregion
#region HTTP
public string HttpTest() => string.Join("\n", GlobalWin.httpCommunication.TestGet(), GlobalWin.httpCommunication.SendScreenshot(), "done testing");
@ -64,6 +64,6 @@ namespace BizHawk.Client.EmuHawk
public string HttpGetGetUrl() => GlobalWin.httpCommunication.GetUrl;
#endregion
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -236,7 +236,7 @@
}
#endregion
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button btnCancel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -204,7 +204,7 @@
}
#endregion
private System.Windows.Forms.Button OK;
private System.Windows.Forms.PictureBox pictureBox1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -97,7 +97,7 @@
}
#endregion
private System.Windows.Forms.Label CoreNameLabel;
private System.Windows.Forms.Label CoreAuthorLabel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -144,7 +144,7 @@
}
#endregion
private System.Windows.Forms.TreeView CoreTree;
private System.Windows.Forms.TabControl tabControl1;

View File

@ -12,7 +12,7 @@ namespace BizHawk.Client.EmuHawk
{
public partial class CoreFeatureAnalysis : ToolFormBase, IToolFormAutoConfig
{
#region ConfigPersist
private class CoreInfo
{
@ -106,7 +106,7 @@ namespace BizHawk.Client.EmuHawk
[ConfigPersist]
private Dictionary<string, CoreInfo> KnownCores { get; set; }
#endregion
// ReSharper disable once UnusedAutoPropertyAccessor.Local
[RequiredService]

View File

@ -1,33 +1,33 @@
namespace BizHawk.Client.EmuHawk
{
partial class ExceptionBox
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
namespace BizHawk.Client.EmuHawk
{
partial class ExceptionBox
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.btnOK = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
@ -134,16 +134,16 @@
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TextBox txtException;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button btnCopy;
private ExceptionBox.MyLabel lblDone;
}
}
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TextBox txtException;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button btnCopy;
private ExceptionBox.MyLabel lblDone;
}
}

View File

@ -36,8 +36,8 @@ namespace BizHawk.Client.EmuHawk
private int _rowCount;
private SizeF _charSize;
private int[] _horizontalColumnTops; // Updated on paint, contains one extra item to allow inference of last column height
private int[] _horizontalColumnTops; // Updated on paint, contains one extra item to allow inference of last column height
private RollColumn _columnDown;
private RollColumn _columnResizing;
@ -178,7 +178,7 @@ namespace BizHawk.Client.EmuHawk
base.OnDoubleClick(e);
}
#region Properties
/// <summary>
/// Gets or sets the amount of left and right padding on the text inside a cell
@ -400,9 +400,9 @@ namespace BizHawk.Client.EmuHawk
[Category("Behavior")]
public bool Rotatable { get; set; }
#endregion
#region Event Handlers
/// <summary>
/// Fire the <see cref="QueryItemText"/> event which requests the text for the passed cell
@ -556,9 +556,9 @@ namespace BizHawk.Client.EmuHawk
public int NewDisplayIndex { get; }
}
#endregion
#region Api
private int? _lastSelectedRow;
@ -962,9 +962,9 @@ namespace BizHawk.Client.EmuHawk
public string RotateHotkeyStr => "Ctrl+Shift+F";
#endregion
#region Mouse and Key Events
private bool _columnDownMoved;
private int _previousX; // TODO: move me
@ -1549,9 +1549,9 @@ namespace BizHawk.Client.EmuHawk
base.OnKeyDown(e);
}
#endregion
#region Change Events
protected override void OnResize(EventArgs e)
{
@ -1634,9 +1634,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region Helpers
private void DoColumnReorder()
{
@ -2093,6 +2093,6 @@ namespace BizHawk.Client.EmuHawk
return (VisibleRows + 1) * LagFramesToHide;
}
#endregion
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -122,7 +122,7 @@
}
#endregion
private System.Windows.Forms.CheckBox chkBx;
private System.Windows.Forms.Button btn1;

View File

@ -125,7 +125,7 @@ namespace BizHawk.Client.EmuHawk
return instance;
}
#region Enumerable to Enumerable<T>
/// <summary>
/// Converts the outdated IEnumerable Controls property to an <see cref="IEnumerable{T}"/> like .NET should have done a long time ago
@ -141,7 +141,7 @@ namespace BizHawk.Client.EmuHawk
return tabControl.TabPages.Cast<TabPage>();
}
#endregion
}
public static class FormExtensions

View File

@ -15,7 +15,7 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
public class OTK_GamePad
{
#region Static Members
/// <remarks>They don't have a way to query this for some reason. 4 is the minimum promised.</remarks>
private const int MAX_GAMEPADS = 4;
@ -45,7 +45,7 @@ namespace BizHawk.Client.EmuHawk
{
lock (_syncObj)
{
if (initialized)
if (initialized)
foreach (var device in Devices) yield return device;
}
@ -77,9 +77,9 @@ namespace BizHawk.Client.EmuHawk
return num * 10000.0f;
}
#endregion
#region Instance Members
/// <summary>The GUID as detected by OpenTK.Input.Joystick (or if that failed, a random one generated on construction)</summary>
public readonly Guid Guid;
@ -367,7 +367,7 @@ namespace BizHawk.Client.EmuHawk
_gamePadCapabilities?.HasRightVibrationMotor == true ? right : 0
);
#endregion
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -165,7 +165,7 @@
}
#endregion
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnClear;

View File

@ -9,7 +9,7 @@
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -3914,7 +3914,7 @@
}
#endregion
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem OpenRomMenuItem;

View File

@ -32,7 +32,7 @@ namespace BizHawk.Client.EmuHawk
{
public partial class MainForm
{
#region File Menu
private void FileSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -685,9 +685,9 @@ namespace BizHawk.Client.EmuHawk
_exitCode = exitCode;
}
#endregion
#region Emulation Menu
private void EmulationMenuItem_DropDownOpened(object sender, EventArgs e)
{
@ -736,9 +736,9 @@ namespace BizHawk.Client.EmuHawk
HardReset();
}
#endregion
#region View
private void ViewSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -857,9 +857,9 @@ namespace BizHawk.Client.EmuHawk
Tools.Load<LogWindow>();
}
#endregion
#region Config
private void ConfigSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1378,9 +1378,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region Tools
private void ToolsSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1535,9 +1535,9 @@ namespace BizHawk.Client.EmuHawk
form.ShowDialog();
}
#endregion
#region NES
private void NesSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1720,9 +1720,9 @@ namespace BizHawk.Client.EmuHawk
Tools.Load<BarcodeEntry>();
}
#endregion
#region PCE
private void PceSettingsMenuItem_Click(object sender, EventArgs e)
{
@ -1744,9 +1744,9 @@ namespace BizHawk.Client.EmuHawk
Tools.Load<PCESoundDebugger>();
}
#endregion
#region SMS
private void SmsSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1763,9 +1763,9 @@ namespace BizHawk.Client.EmuHawk
Tools.Load<SmsVdpViewer>();
}
#endregion
#region TI83
private void Ti83SubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1826,18 +1826,18 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region Atari
private void AtariSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Atari 2600 Settings");
}
#endregion
#region Atari7800
private void A7800SubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1864,9 +1864,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region GB
private void GbSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1901,9 +1901,9 @@ namespace BizHawk.Client.EmuHawk
Tools.Load<GBPrinterView>();
}
#endregion
#region GBA
private void GbaCoreSettingsMenuItem_Click(object sender, EventArgs e)
{
@ -1920,9 +1920,9 @@ namespace BizHawk.Client.EmuHawk
GbaGpuViewerMenuItem.Enabled = !OSTailoredCode.IsUnixHost;
}
#endregion
#region NDS
private void NDSSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1944,9 +1944,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region PSX
private void PsxSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -1987,9 +1987,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region SNES
private void SnesSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2040,9 +2040,9 @@ namespace BizHawk.Client.EmuHawk
GenericCoreConfig.DoDialog(this, "Snes9x Settings");
}
#endregion
#region Coleco
private void ColecoSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2084,9 +2084,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region N64
private void N64SubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2157,18 +2157,18 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region Saturn
private void SaturnPreferencesMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Saturn Settings");
}
#endregion
#region DGB
private void DgbSettingsMenuItem_Click(object sender, EventArgs e)
{
@ -2183,63 +2183,63 @@ namespace BizHawk.Client.EmuHawk
GenericCoreConfig.DoDialog(this, "Gameboy Settings");
}
#endregion
#region GB3x
private void GB3xSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Gameboy Settings");
}
#endregion
#region GB4x
private void GB4xSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Gameboy Settings");
}
#endregion
#region GGL
private void GgSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Game Gear Settings");
}
#endregion
#region Vectrex
private void VectrexSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Vectrex Settings", true, false);
}
#endregion
#region MSX
private void MsxSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "MSX Settings");
}
#endregion
#region O2Hawk
private void O2HawkSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Odyssey Settings");
}
#endregion
#region GEN
private void GenVdpViewerMenuItem_Click(object sender, EventArgs e)
{
@ -2251,18 +2251,18 @@ namespace BizHawk.Client.EmuHawk
GenericCoreConfig.DoDialog(this, "Genesis Settings");
}
#endregion
#region Wondersawn
private void WonderSwanSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "WonderSwan Settings");
}
#endregion
#region Apple II
private void AppleIISettingsMenuItem_Click(object sender, EventArgs e)
{
@ -2303,9 +2303,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region C64
private void C64SubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2346,9 +2346,9 @@ namespace BizHawk.Client.EmuHawk
GenericCoreConfig.DoDialog(this, "C64 Settings");
}
#endregion
#region Intv
private void IntVSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2364,35 +2364,35 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region VirtualBoy
private void VirtualBoySettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "VirtualBoy Settings");
}
#endregion
#region NeoGeoPocket
private void NeoGeoSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "NeoPop Settings");
}
#endregion
#region PC-FX
private void PCFXSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "PC-FX Settings");
}
#endregion
#region ZXSpectrum
private void ZXSpectrumControllerConfigurationMenuItem_Click(object sender, EventArgs e)
{
@ -2542,9 +2542,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region AmstradCPC
private void AmstradCpcCoreEmulationSettingsMenuItem_Click(object sender, EventArgs e)
{
@ -2660,17 +2660,17 @@ namespace BizHawk.Client.EmuHawk
}
#endregion
#region Arcade
private void ArcadeSettingsMenuItem_Click(object sender, EventArgs e)
{
GenericCoreConfig.DoDialog(this, "Arcade Settings");
}
#endregion
#region Help
private void HelpSubMenu_DropDownOpened(object sender, EventArgs e)
{
@ -2698,9 +2698,9 @@ namespace BizHawk.Client.EmuHawk
form.ShowDialog();
}
#endregion
#region Context Menu
private void MainFormContextMenu_Opening(object sender, System.ComponentModel.CancelEventArgs e)
{
@ -2914,9 +2914,9 @@ namespace BizHawk.Client.EmuHawk
FrameBufferResized();
}
#endregion
#region Status Bar
private void DumpStatusButton_Click(object sender, EventArgs e)
{
@ -3031,9 +3031,9 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
#region Form Events
private void MainForm_Activated(object sender, EventArgs e)
{
@ -3168,6 +3168,6 @@ namespace BizHawk.Client.EmuHawk
}
}
#endregion
}
}

View File

@ -41,7 +41,7 @@ namespace BizHawk.Client.EmuHawk
private readonly string[] _nonArchive = { ".ISO", ".CUE", ".CCD" };
#region Loaders
private void LoadCdl(string filename, string archive = null)
{
@ -127,7 +127,7 @@ namespace BizHawk.Client.EmuHawk
((RamWatch) Tools.Get<RamWatch>()).LoadWatchFile(new FileInfo(filename), false);
}
#endregion
private void ProcessFileList(IEnumerable<string> fileList, ref Dictionary<LoadOrdering, List<FileInformation>> sortedFiles, string archive = null)
{

View File

@ -36,7 +36,7 @@ namespace BizHawk.Client.EmuHawk
{
public partial class MainForm : Form
{
#region Constructors and Initialization, and Tear down
private void MainForm_Load(object sender, EventArgs e)
{
@ -634,9 +634,9 @@ namespace BizHawk.Client.EmuHawk
base.Dispose(disposing);
}
#endregion
#region Pause
private bool _emulatorPaused;
public bool EmulatorPaused
@ -668,9 +668,9 @@ namespace BizHawk.Client.EmuHawk
public bool Paused { get; }
}
#endregion
#region Properties
public string CurrentlyOpenRom { get; private set; } // todo - delete me and use only args instead
public LoadRomArgs CurrentlyOpenRomArgs { get; private set; }
@ -726,9 +726,9 @@ namespace BizHawk.Client.EmuHawk
private bool IsTurboSeeking => PauseOnFrame.HasValue && Config.TurboSeek;
public bool IsTurboing => InputManager.ClientControls["Turbo"] || IsTurboSeeking;
#endregion
#region Public Methods
public void AddOnScreenMessage(string message)
{
@ -1427,9 +1427,9 @@ namespace BizHawk.Client.EmuHawk
return true;
}
#endregion
#region Private variables
private Size _lastVideoSize = new Size(-1, -1), _lastVirtualSize = new Size(-1, -1);
private readonly SaveSlotManager _stateSlots = new SaveSlotManager();
@ -1496,9 +1496,9 @@ namespace BizHawk.Client.EmuHawk
// countdown for saveram autoflushing
public int AutoFlushSaveRamIn { get; set; }
#endregion
#region Private methods
private void SetStatusBar()
{
@ -2804,9 +2804,9 @@ namespace BizHawk.Client.EmuHawk
AddOnScreenMessage($"Config file loaded: {iniPath}");
}
#endregion
#region Frame Loop
private void StepRunLoop_Throttle()
{
@ -3098,9 +3098,9 @@ namespace BizHawk.Client.EmuHawk
_framesSinceLastFpsUpdate = 0;
}
#endregion
#region AVI Stuff
/// <summary>
/// start AVI recording, unattended
@ -3459,9 +3459,9 @@ namespace BizHawk.Client.EmuHawk
return null;
}
#endregion
#region Scheduled for refactor
public string SaveStatePrefix()
{
@ -3998,9 +3998,9 @@ namespace BizHawk.Client.EmuHawk
Rewinder.Clear();
}
#endregion
#region Tool Control API
// TODO: move me
public IControlMainform Master { get; private set; }
@ -4449,6 +4449,6 @@ namespace BizHawk.Client.EmuHawk
return isRewinding;
}
#endregion
}
}

View File

@ -1,33 +1,33 @@
namespace BizHawk.Client.EmuHawk
{
partial class OpenAdvancedChooser
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
namespace BizHawk.Client.EmuHawk
{
partial class OpenAdvancedChooser
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnLibretroLaunchNoGame = new System.Windows.Forms.Button();
@ -206,22 +206,22 @@
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnLibretroLaunchNoGame;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnSetLibretroCore;
private System.Windows.Forms.TextBox txtLibretroCore;
private System.Windows.Forms.Button btnLibretroLaunchGame;
private System.Windows.Forms.GroupBox groupBox3;
}
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnLibretroLaunchNoGame;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnSetLibretroCore;
private System.Windows.Forms.TextBox txtLibretroCore;
private System.Windows.Forms.Button btnLibretroLaunchGame;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Button btnClassicLaunchGame;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnMAMELaunchGame;
}
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -222,7 +222,7 @@
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button OkBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -295,7 +295,7 @@
}
#endregion
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Button OkBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -133,7 +133,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -1,33 +1,33 @@
namespace BizHawk.Client.EmuHawk
{
partial class A7800FilterSettings
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
namespace BizHawk.Client.EmuHawk
{
partial class A7800FilterSettings
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.OkBtn = new System.Windows.Forms.Button();
this.CancelBtn = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
@ -107,14 +107,14 @@
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox Port1ComboBox;
private System.Windows.Forms.Label label1;
}
}
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox Port1ComboBox;
private System.Windows.Forms.Label label1;
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -169,7 +169,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -199,7 +199,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -123,7 +123,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -150,7 +150,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -31,6 +31,6 @@
components = new System.ComponentModel.Container();
}
#endregion
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -126,7 +126,7 @@
}
#endregion
private AnalogRangeConfig AnalogRange;
private System.Windows.Forms.NumericUpDown XNumeric;

View File

@ -2,7 +2,7 @@
{
partial class AutofireConfig
{
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -160,7 +160,7 @@
}
#endregion
private BizHawk.WinForms.Controls.SzButtonEx btnDialogOK;
private BizHawk.WinForms.Controls.SzButtonEx btnDialogCancel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -133,7 +133,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -312,7 +312,7 @@
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage NormalControlsTab;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -156,7 +156,7 @@
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label labelButtonName;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -61,7 +61,7 @@
}
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem clearToolStripMenuItem;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -1010,7 +1010,7 @@
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOk;

View File

@ -1,33 +1,33 @@
namespace BizHawk.Client.EmuHawk
{
partial class EmuHawkOptions
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
namespace BizHawk.Client.EmuHawk
{
partial class EmuHawkOptions
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.OkBtn = new System.Windows.Forms.Button();
this.CancelBtn = new System.Windows.Forms.Button();
@ -618,37 +618,37 @@
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox BackupSRamCheckbox;
private System.Windows.Forms.CheckBox FrameAdvSkipLagCheckbox;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.CheckBox LuaDuringTurboCheckbox;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.CheckBox cbMoviesOnDisk;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.CheckBox cbSkipWaterboxIntegrityChecks;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.RadioButton LuaInterfaceRadio;
private System.Windows.Forms.RadioButton NLuaRadio;
private System.Windows.Forms.CheckBox AutosaveSRAMCheckbox;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton3;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton2;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.NumericUpDown AutosaveSRAMtextBox;
private System.Windows.Forms.Label label10;
}
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox BackupSRamCheckbox;
private System.Windows.Forms.CheckBox FrameAdvSkipLagCheckbox;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.CheckBox LuaDuringTurboCheckbox;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.CheckBox cbMoviesOnDisk;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.CheckBox cbSkipWaterboxIntegrityChecks;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.RadioButton LuaInterfaceRadio;
private System.Windows.Forms.RadioButton NLuaRadio;
private System.Windows.Forms.CheckBox AutosaveSRAMCheckbox;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton3;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton2;
private System.Windows.Forms.RadioButton AutosaveSRAMradioButton1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.NumericUpDown AutosaveSRAMtextBox;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.CheckBox HandleAlternateKeyboardLayoutsCheckBox;
private System.Windows.Forms.CheckBox NeverAskSaveCheckbox;
@ -669,5 +669,5 @@
private System.Windows.Forms.CheckBox StartFullScreenCheckbox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.CheckBox SingleInstanceModeCheckbox;
}
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -122,7 +122,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -64,7 +64,7 @@
}
#endregion
private System.Windows.Forms.Label FileExtensionLabel;
private System.Windows.Forms.ComboBox PlatformDropdown;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -385,7 +385,7 @@
}
#endregion
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.ListView lvFirmwares;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -208,7 +208,7 @@
}
#endregion
private System.Windows.Forms.ColumnHeader colHash;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -207,7 +207,7 @@
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButton2;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -326,7 +326,7 @@
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -135,7 +135,7 @@
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -137,7 +137,7 @@
}
#endregion
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.Button buttonDefaults;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -84,7 +84,7 @@
}
#endregion
private GBPrefControl gbPrefControl1;
private System.Windows.Forms.Button buttonOK;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -154,7 +154,7 @@
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -236,7 +236,7 @@
}
#endregion
private System.Windows.Forms.Label label38;
private System.Windows.Forms.CheckBox AutoTabCheckBox;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -133,7 +133,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -22,7 +22,7 @@
_dropdownMenu.Dispose();
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -89,7 +89,7 @@
}
#endregion
private System.Windows.Forms.Button btnSpecial;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -712,7 +712,7 @@
}
#endregion
private System.Windows.Forms.Button OK;
private System.Windows.Forms.GroupBox MessageTypeBox;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -80,7 +80,7 @@
}
#endregion
private System.Windows.Forms.CheckBox EnabledCheckbox;
private System.Windows.Forms.ComboBox PakTypeDropdown;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -124,7 +124,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -4675,7 +4675,7 @@
}
#endregion
private System.Windows.Forms.TabControl N64plugintabcontrol;
private System.Windows.Forms.TabPage N64vpluginglobaltab;

View File

@ -1,33 +1,33 @@
namespace BizHawk.Client.EmuHawk
{
partial class NdsSettings
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
namespace BizHawk.Client.EmuHawk
{
partial class NdsSettings
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.chkBootToFirmware = new System.Windows.Forms.CheckBox();
this.btnCancel = new System.Windows.Forms.Button();
@ -261,24 +261,24 @@
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox chkBootToFirmware;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.ToolTip ttipFirmware;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cbxFavColor;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown numBirthDay;
private System.Windows.Forms.NumericUpDown numBirthMonth;
private System.Windows.Forms.Button btnDefault;
private System.Windows.Forms.DateTimePicker dtpStartupTime;
private System.Windows.Forms.Label label4;
}
}
private System.Windows.Forms.CheckBox chkBootToFirmware;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.ToolTip ttipFirmware;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cbxFavColor;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown numBirthDay;
private System.Windows.Forms.NumericUpDown numBirthMonth;
private System.Windows.Forms.Button btnDefault;
private System.Windows.Forms.DateTimePicker dtpStartupTime;
private System.Windows.Forms.Label label4;
}
}

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -484,7 +484,7 @@
}
#endregion
private System.Windows.Forms.Button OK;
private System.Windows.Forms.Button Cancel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -112,7 +112,7 @@
}
#endregion
private System.Windows.Forms.Button OK;
private System.Windows.Forms.Button Cancel;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -197,7 +197,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -171,7 +171,7 @@
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.Button CancelBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -153,7 +153,7 @@
}
#endregion
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Button OkBtn;

View File

@ -20,7 +20,7 @@
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
@ -153,7 +153,7 @@
}
#endregion
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.GroupBox groupBox1;

Some files were not shown because too many files have changed in this diff Show More