misc cleanups
This commit is contained in:
parent
fd31922788
commit
46a7e64911
|
@ -8,17 +8,11 @@ namespace BizHawk.Client.Common
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class SystemInfo
|
public sealed class SystemInfo
|
||||||
{
|
{
|
||||||
#region Fields
|
|
||||||
|
|
||||||
private const JoypadButton UpDownLeftRight = JoypadButton.Up | JoypadButton.Down | JoypadButton.Left | JoypadButton.Right;
|
private const JoypadButton UpDownLeftRight = JoypadButton.Up | JoypadButton.Down | JoypadButton.Left | JoypadButton.Right;
|
||||||
private const JoypadButton StandardButtons = JoypadButton.A | JoypadButton.B | JoypadButton.Start | JoypadButton.Select | UpDownLeftRight;
|
private const JoypadButton StandardButtons = JoypadButton.A | JoypadButton.B | JoypadButton.Start | JoypadButton.Select | UpDownLeftRight;
|
||||||
|
|
||||||
private static readonly List<SystemInfo> AllSystemInfos = new List<SystemInfo>();
|
private static readonly List<SystemInfo> AllSystemInfos = new List<SystemInfo>();
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region cTor(s)
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="SystemInfo"/> class
|
/// Initializes a new instance of the <see cref="SystemInfo"/> class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -36,8 +30,6 @@ namespace BizHawk.Client.Common
|
||||||
AllSystemInfos.Add(this);
|
AllSystemInfos.Add(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Methods
|
#region Methods
|
||||||
|
|
||||||
#region Get SystemInfo
|
#region Get SystemInfo
|
||||||
|
@ -268,23 +260,11 @@ namespace BizHawk.Client.Common
|
||||||
return base.Equals(obj);
|
return base.Equals(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the hashcode for current instance
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>This instance hashcode</returns>
|
|
||||||
public override int GetHashCode()
|
|
||||||
{
|
|
||||||
return base.GetHashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a <see cref="string"/> representation of current <see cref="SystemInfo"/>
|
/// Returns a <see cref="string"/> representation of current <see cref="SystemInfo"/>
|
||||||
/// In fact, return the same as DisplayName property
|
/// In fact, return the same as DisplayName property
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override string ToString()
|
public override string ToString() => DisplayName;
|
||||||
{
|
|
||||||
return DisplayName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Determine if two <see cref="SystemInfo"/> are equals.
|
/// Determine if two <see cref="SystemInfo"/> are equals.
|
||||||
|
|
|
@ -108,7 +108,7 @@ namespace BizHawk.Client.Common.movie.import
|
||||||
|
|
||||||
// 020 16-byte md5sum of the ROM used
|
// 020 16-byte md5sum of the ROM used
|
||||||
byte[] md5 = r.ReadBytes(16);
|
byte[] md5 = r.ReadBytes(16);
|
||||||
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
|
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
|
||||||
|
|
||||||
// 030 4-byte little-endian unsigned int: version of the emulator used
|
// 030 4-byte little-endian unsigned int: version of the emulator used
|
||||||
uint emuVersion = r.ReadUInt32();
|
uint emuVersion = r.ReadUInt32();
|
||||||
|
|
|
@ -85,7 +85,7 @@ namespace BizHawk.Client.Common
|
||||||
byte[] md5 = DecodeBlob(blob);
|
byte[] md5 = DecodeBlob(blob);
|
||||||
if (md5 != null && md5.Length == 16)
|
if (md5 != null && md5.Length == 16)
|
||||||
{
|
{
|
||||||
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
|
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace BizHawk.Client.Common
|
||||||
internal abstract class MovieImporter : IMovieImport
|
internal abstract class MovieImporter : IMovieImport
|
||||||
{
|
{
|
||||||
protected const string EmulationOrigin = "emuOrigin";
|
protected const string EmulationOrigin = "emuOrigin";
|
||||||
protected const string MD5 = "MD5";
|
protected const string Md5 = "MD5";
|
||||||
protected const string MovieOrigin = "MovieOrigin";
|
protected const string MovieOrigin = "MovieOrigin";
|
||||||
|
|
||||||
public ImportResult Import(string path)
|
public ImportResult Import(string path)
|
||||||
|
|
|
@ -91,7 +91,7 @@ namespace BizHawk.Client.Common.movie.import
|
||||||
|
|
||||||
// 00e4-00f3: binary: rom MD5 digest
|
// 00e4-00f3: binary: rom MD5 digest
|
||||||
byte[] md5 = r.ReadBytes(16);
|
byte[] md5 = r.ReadBytes(16);
|
||||||
Result.Movie.HeaderEntries[MD5] = md5.BytesToHexString().ToLower();
|
Result.Movie.HeaderEntries[Md5] = md5.BytesToHexString().ToLower();
|
||||||
|
|
||||||
var ss = new SMS.SmsSyncSettings
|
var ss = new SMS.SmsSyncSettings
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,15 +32,9 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
public string Message { get; set; }
|
public string Message { get; set; }
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString() => Frame.ToString() + '\t' + Message;
|
||||||
{
|
|
||||||
return Frame.ToString() + '\t' + Message;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override int GetHashCode()
|
public override int GetHashCode() => Frame.GetHashCode();
|
||||||
{
|
|
||||||
return Frame.GetHashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
public override bool Equals(object obj)
|
public override bool Equals(object obj)
|
||||||
{
|
{
|
||||||
|
|
|
@ -114,7 +114,7 @@ namespace BizHawk.Client.Common
|
||||||
cheat.Changed += CheatChanged;
|
cheat.Changed += CheatChanged;
|
||||||
if (Contains(cheat))
|
if (Contains(cheat))
|
||||||
{
|
{
|
||||||
_cheatList.Remove(Global.CheatList.FirstOrDefault(c => c.Domain == cheat.Domain && c.Address == cheat.Address));
|
_cheatList.Remove(this.FirstOrDefault(c => c.Domain == cheat.Domain && c.Address == cheat.Address));
|
||||||
}
|
}
|
||||||
|
|
||||||
_cheatList.Add(cheat);
|
_cheatList.Add(cheat);
|
||||||
|
|
|
@ -87,10 +87,7 @@ namespace BizHawk.Client.Common
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ignore that stuff
|
/// Ignore that stuff
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override bool Poke(string value)
|
public override bool Poke(string value) => false;
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ignore that stuff
|
/// Ignore that stuff
|
||||||
|
|
|
@ -45,17 +45,17 @@ namespace BizHawk.Client.Common
|
||||||
/// </summary>
|
/// </summary>
|
||||||
static WatchList()
|
static WatchList()
|
||||||
{
|
{
|
||||||
// Initialize mapping of columns to comparers for sorting.
|
// Initialize mapping of columns to comparer for sorting.
|
||||||
WatchComparers = new Dictionary<string, IComparer<Watch>>
|
WatchComparers = new Dictionary<string, IComparer<Watch>>
|
||||||
{
|
{
|
||||||
{ Address, new WatchAddressComparer() },
|
[Address] = new WatchAddressComparer(),
|
||||||
{ Value, new WatchValueComparer() },
|
[Value] = new WatchValueComparer(),
|
||||||
{ Prev, new WatchPreviousValueComparer() },
|
[Prev] = new WatchPreviousValueComparer(),
|
||||||
{ ChangesCol, new WatchChangeCountComparer() },
|
[ChangesCol] = new WatchChangeCountComparer(),
|
||||||
{ Diff, new WatchValueDifferenceComparer() },
|
[Diff] = new WatchValueDifferenceComparer(),
|
||||||
{ Type, new WatchFullDisplayTypeComparer() },
|
[Type] = new WatchFullDisplayTypeComparer(),
|
||||||
{ Domain, new WatchDomainComparer() },
|
[Domain] = new WatchDomainComparer(),
|
||||||
{ Notes, new WatchNoteComparer() }
|
[Notes] = new WatchNoteComparer()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -410,8 +410,7 @@ namespace BizHawk.Client.Common
|
||||||
}
|
}
|
||||||
|
|
||||||
var isBizHawkWatch = true; // Hack to support .wch files from other emulators
|
var isBizHawkWatch = true; // Hack to support .wch files from other emulators
|
||||||
using (var sr = file.OpenText())
|
using var sr = file.OpenText();
|
||||||
{
|
|
||||||
string line;
|
string line;
|
||||||
|
|
||||||
if (!append)
|
if (!append)
|
||||||
|
@ -516,8 +515,6 @@ namespace BizHawk.Client.Common
|
||||||
}
|
}
|
||||||
|
|
||||||
CurrentFileName = path;
|
CurrentFileName = path;
|
||||||
}
|
|
||||||
|
|
||||||
Changes = append;
|
Changes = append;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue