160 lines
2.9 KiB
C#
160 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BizHawk.MultiClient
|
|
{
|
|
public class NewCheatList : IEnumerable<NewCheat>
|
|
{
|
|
private List<NewCheat> _cheatList = new List<NewCheat>();
|
|
private string _currentFileName = String.Empty;
|
|
private bool _changes = false;
|
|
|
|
public NewCheatList() { }
|
|
|
|
public IEnumerator<NewCheat> GetEnumerator()
|
|
{
|
|
return _cheatList.GetEnumerator();
|
|
}
|
|
|
|
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
|
{
|
|
return GetEnumerator();
|
|
}
|
|
|
|
public NewCheat this[int index]
|
|
{
|
|
get { return _cheatList[index]; }
|
|
}
|
|
|
|
public int Count
|
|
{
|
|
get { return _cheatList.Count; }
|
|
}
|
|
|
|
public void Update()
|
|
{
|
|
_cheatList.ForEach(x => x.Pulse());
|
|
}
|
|
|
|
public void Add(NewCheat c)
|
|
{
|
|
_changes = true;
|
|
_cheatList.Add(c);
|
|
}
|
|
|
|
public void Remove(NewCheat c)
|
|
{
|
|
_changes = true;
|
|
_cheatList.Remove(c);
|
|
}
|
|
|
|
public bool Changes
|
|
{
|
|
get { return _changes; }
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
_changes = true;
|
|
_cheatList.Clear();
|
|
}
|
|
|
|
public void DisableAll()
|
|
{
|
|
_changes = true;
|
|
_cheatList.ForEach(x => x.Enabled = false);
|
|
}
|
|
|
|
public void EnableAll()
|
|
{
|
|
_changes = true;
|
|
_cheatList.ForEach(x => x.Enabled = true);
|
|
}
|
|
|
|
public bool IsActive(MemoryDomain domain, int address)
|
|
{
|
|
foreach (var cheat in _cheatList)
|
|
{
|
|
if (cheat.IsSeparator)
|
|
{
|
|
continue;
|
|
}
|
|
else if (cheat.Domain == domain && cheat.Contains(address) && cheat.Enabled)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void Freeze(MemoryDomain domain, int address, Watch.WatchSize size, int value, bool? bigendian = null)
|
|
{
|
|
var exists = _cheatList.Any(x => x.Domain == domain && x.Address == address && x.Size == size);
|
|
if (!exists)
|
|
{
|
|
bool endian = false;
|
|
if (bigendian.HasValue)
|
|
{
|
|
endian = bigendian.Value;
|
|
}
|
|
else
|
|
{
|
|
switch(domain.Endian)
|
|
{
|
|
default:
|
|
case Endian.Unknown:
|
|
case Endian.Little:
|
|
bigendian = false;
|
|
break;
|
|
case Endian.Big:
|
|
bigendian = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
Watch w = Watch.GenerateWatch(domain, address, size, Watch.DisplayType.Unsigned, String.Empty, endian);
|
|
_cheatList.Add(new NewCheat(w, compare: null, enabled: true));
|
|
}
|
|
}
|
|
|
|
public bool Save()
|
|
{
|
|
if (!String.IsNullOrWhiteSpace(_currentFileName))
|
|
{
|
|
return SaveFile();
|
|
}
|
|
else
|
|
{
|
|
return SaveAs();
|
|
}
|
|
}
|
|
|
|
public void Load()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string CurrentFileName
|
|
{
|
|
get { return _currentFileName; }
|
|
}
|
|
|
|
#region privates
|
|
|
|
private bool SaveFile()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private bool SaveAs()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|