Fix path exceptions for various systems like GBC, and also clean up some terrible hacky code and do it in a nicer way
This commit is contained in:
parent
42d93afe57
commit
a71837c3aa
|
@ -16,7 +16,7 @@ namespace BizHawk.MultiClient
|
||||||
public void ResolveDefaults()
|
public void ResolveDefaults()
|
||||||
{
|
{
|
||||||
PathEntries.ResolveWithDefaults();
|
PathEntries.ResolveWithDefaults();
|
||||||
HotkeyBindings.ResolveWithDefaults();
|
HotkeyBindings.ResolveWithDefaults();
|
||||||
}
|
}
|
||||||
|
|
||||||
//Path Settings ************************************/
|
//Path Settings ************************************/
|
||||||
|
@ -449,7 +449,7 @@ namespace BizHawk.MultiClient
|
||||||
public int TI83KeyPadWndy = -1;
|
public int TI83KeyPadWndy = -1;
|
||||||
public bool TI83ToolTips = true;
|
public bool TI83ToolTips = true;
|
||||||
|
|
||||||
public BindingCollection HotkeyBindings = new BindingCollection();
|
public BindingCollection HotkeyBindings = new BindingCollection();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -604,8 +604,8 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public BindingCollection()
|
public BindingCollection()
|
||||||
{
|
{
|
||||||
Bindings = new List<Binding>();
|
Bindings = new List<Binding>();
|
||||||
Bindings.AddRange(DefaultValues);
|
Bindings.AddRange(DefaultValues);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Add(Binding b)
|
public void Add(Binding b)
|
||||||
|
@ -631,41 +631,41 @@ namespace BizHawk.MultiClient
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ResolveWithDefaults()
|
public void ResolveWithDefaults()
|
||||||
{
|
{
|
||||||
//Add missing entries
|
//Add missing entries
|
||||||
foreach (Binding default_binding in DefaultValues)
|
foreach (Binding default_binding in DefaultValues)
|
||||||
{
|
{
|
||||||
var binding = Bindings.FirstOrDefault(x => x.DisplayName == default_binding.DisplayName);
|
var binding = Bindings.FirstOrDefault(x => x.DisplayName == default_binding.DisplayName);
|
||||||
if (binding == null)
|
if (binding == null)
|
||||||
{
|
{
|
||||||
Bindings.Add(default_binding);
|
Bindings.Add(default_binding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Binding> entriesToRemove = new List<Binding>();
|
List<Binding> entriesToRemove = new List<Binding>();
|
||||||
|
|
||||||
//Remove entries that no longer exist in defaults
|
//Remove entries that no longer exist in defaults
|
||||||
foreach (Binding entry in Bindings)
|
foreach (Binding entry in Bindings)
|
||||||
{
|
{
|
||||||
var binding = DefaultValues.FirstOrDefault(x => x.DisplayName == entry.DisplayName);
|
var binding = DefaultValues.FirstOrDefault(x => x.DisplayName == entry.DisplayName);
|
||||||
if (binding == null)
|
if (binding == null)
|
||||||
{
|
{
|
||||||
entriesToRemove.Add(entry);
|
entriesToRemove.Add(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (Binding entry in entriesToRemove)
|
foreach (Binding entry in entriesToRemove)
|
||||||
{
|
{
|
||||||
Bindings.Remove(entry);
|
Bindings.Remove(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<Binding> DefaultValues
|
public static List<Binding> DefaultValues
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return new List<Binding>()
|
return new List<Binding>()
|
||||||
{
|
{
|
||||||
//General
|
//General
|
||||||
new Binding() { DisplayName = "Frame Advance", Bindings = "F", TabGroup = "General", DefaultBinding = "F", Ordinal = 0 },
|
new Binding() { DisplayName = "Frame Advance", Bindings = "F", TabGroup = "General", DefaultBinding = "F", Ordinal = 0 },
|
||||||
|
@ -785,8 +785,8 @@ namespace BizHawk.MultiClient
|
||||||
new Binding() { DisplayName = "X Down Large", Bindings = "", TabGroup = "Analog", DefaultBinding = "", Ordinal = 7 },
|
new Binding() { DisplayName = "X Down Large", Bindings = "", TabGroup = "Analog", DefaultBinding = "", Ordinal = 7 },
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Binding
|
public class Binding
|
||||||
|
@ -800,43 +800,43 @@ namespace BizHawk.MultiClient
|
||||||
public Binding() { }
|
public Binding() { }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class PathEntryCollection : IEnumerable<PathEntry>
|
public class PathEntryCollection : IEnumerable<PathEntry>
|
||||||
{
|
{
|
||||||
public List<PathEntry> Paths { get; private set; }
|
public List<PathEntry> Paths { get; private set; }
|
||||||
|
|
||||||
public PathEntryCollection()
|
public PathEntryCollection()
|
||||||
{
|
{
|
||||||
Paths = new List<PathEntry>();
|
Paths = new List<PathEntry>();
|
||||||
Paths.AddRange(DefaultValues);
|
Paths.AddRange(DefaultValues);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Add(PathEntry p)
|
public void Add(PathEntry p)
|
||||||
{
|
{
|
||||||
Paths.Add(p);
|
Paths.Add(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerator<PathEntry> GetEnumerator()
|
public IEnumerator<PathEntry> GetEnumerator()
|
||||||
{
|
{
|
||||||
return Paths.GetEnumerator();
|
return Paths.GetEnumerator();
|
||||||
}
|
}
|
||||||
|
|
||||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
||||||
{
|
{
|
||||||
return GetEnumerator();
|
return GetEnumerator();
|
||||||
}
|
}
|
||||||
|
|
||||||
public PathEntry this[string system, string type]
|
public PathEntry this[string system, string type]
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return Paths.FirstOrDefault(x => x.System == system && x.Type == type);
|
return Paths.FirstOrDefault(x => x.System.Contains(system) && x.Type == type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ResolveWithDefaults()
|
public void ResolveWithDefaults()
|
||||||
{
|
{
|
||||||
//Add missing entries
|
//Add missing entries
|
||||||
foreach(PathEntry defaultpath in DefaultValues)
|
foreach (PathEntry defaultpath in DefaultValues)
|
||||||
{
|
{
|
||||||
var path = Paths.FirstOrDefault(x => x.System == defaultpath.System && x.Type == defaultpath.Type);
|
var path = Paths.FirstOrDefault(x => x.System == defaultpath.System && x.Type == defaultpath.Type);
|
||||||
if (path == null)
|
if (path == null)
|
||||||
|
@ -861,6 +861,14 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
Paths.Remove(entry);
|
Paths.Remove(entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Add missing displaynames
|
||||||
|
var missingDisplayPaths = Paths.Where(x => x.SystemDisplayName == null).ToList();
|
||||||
|
foreach (PathEntry path in missingDisplayPaths)
|
||||||
|
{
|
||||||
|
path.SystemDisplayName = DefaultValues.FirstOrDefault(x => x.System == path.System).SystemDisplayName;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Some frequently requested paths, made into a property for convenience
|
//Some frequently requested paths, made into a property for convenience
|
||||||
|
@ -878,154 +886,155 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
return new List<PathEntry>()
|
return new List<PathEntry>()
|
||||||
{
|
{
|
||||||
new PathEntry() { System = "Global", Type = "Movies", Path = Path.Combine(".", "Movies"), Ordinal = 0 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Movies", Path = Path.Combine(".", "Movies"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "Global", Type = "Movie backups", Path = Path.Combine(".", "Movies", "backup"), Ordinal = 1 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Movie backups", Path = Path.Combine(".", "Movies", "backup"), Ordinal = 1 },
|
||||||
new PathEntry() { System = "Global", Type = "Lua", Path = Path.Combine(".", "Lua"), Ordinal = 2 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Lua", Path = Path.Combine(".", "Lua"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "Global", Type = "Watch (.wch)", Path = ".", Ordinal = 3 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Watch (.wch)", Path = ".", Ordinal = 3 },
|
||||||
new PathEntry() { System = "Global", Type = "A/V Dumps", Path = ".", Ordinal = 4 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "A/V Dumps", Path = ".", Ordinal = 4 },
|
||||||
new PathEntry() { System = "Global", Type = "Debug Logs", Path = ".", Ordinal = 5 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Debug Logs", Path = ".", Ordinal = 5 },
|
||||||
new PathEntry() { System = "Global", Type = "Firmware", Path = Path.Combine(".", "Firmware"), Ordinal = 6 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Firmware", Path = Path.Combine(".", "Firmware"), Ordinal = 6 },
|
||||||
new PathEntry() { System = "Global", Type = "Base ROM", Path = ".", Ordinal = 6 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Base ROM", Path = ".", Ordinal = 6 },
|
||||||
new PathEntry() { System = "Global", Type = "Base", Path = ".", Ordinal = 6 },
|
new PathEntry() { System = "Global_NULL", SystemDisplayName="Global", Type = "Base", Path = ".", Ordinal = 6 },
|
||||||
|
|
||||||
new PathEntry() { System = "INTV", Type = "Base", Path = Path.Combine(".", "Intellivision"), Ordinal = 0 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Base", Path = Path.Combine(".", "Intellivision"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "INTV", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "INTV", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "INTV", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "INTV", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "INTV", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
new PathEntry() { System = "INTV", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
new PathEntry() { System = "INTV", SystemDisplayName="Intellivision", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
||||||
|
|
||||||
new PathEntry() { System = "NES", Type = "Base", Path = Path.Combine(".", "NES"), Ordinal = 0 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Base", Path = Path.Combine(".", "NES"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "NES", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "NES", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "NES", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "NES", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "NES", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
new PathEntry() { System = "NES", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
new PathEntry() { System = "NES", SystemDisplayName="NES", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
||||||
|
|
||||||
new PathEntry() { System = "SNES", Type = "Base", Path= Path.Combine(".", "SNES"), Ordinal = 0 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "Base", Path= Path.Combine(".", "SNES"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "SNES", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "SNES", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "SNES", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "SNES", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "SNES", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "SNES_SGB", SystemDisplayName="SNES", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "GBA", Type = "Base", Path= Path.Combine(".", "GBA"), Ordinal = 0 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "Base", Path= Path.Combine(".", "GBA"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "GBA", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "GBA", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "GBA", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "GBA", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "GBA", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "GBA", SystemDisplayName="GBA", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "SMS", Type = "Base", Path= Path.Combine(".", "SMS"), Ordinal = 0 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "Base", Path= Path.Combine(".", "SMS"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "SMS", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "SMS", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "SMS", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "SMS", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "SMS", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "SMS", SystemDisplayName="SMS", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "GG", Type = "Base", Path= Path.Combine(".", "Game Gear"), Ordinal = 0 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "Base", Path= Path.Combine(".", "Game Gear"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "GG", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "GG", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "GG", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "GG", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "GG", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "GG", SystemDisplayName="GG", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "SG", Type = "Base", Path= Path.Combine(".", "SG-1000"), Ordinal = 0 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "Base", Path= Path.Combine(".", "SG-1000"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "SG", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "SG", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "SG", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "SG", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "SG", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "SG", SystemDisplayName="SG", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "GEN", Type = "Base", Path= Path.Combine(".", "Genesis"), Ordinal = 0 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "Base", Path= Path.Combine(".", "Genesis"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "GEN", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "GEN", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "GEN", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "GEN", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "GEN", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "GEN", SystemDisplayName="Genesis", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "PCE", Type = "Base", Path= Path.Combine(".", "PC Engine"), Ordinal = 0 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "Base", Path= Path.Combine(".", "PC Engine"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "PCE", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "PCE", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "PCE", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "PCE", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "PCE", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "PCE_PCECD_SGX", SystemDisplayName="PC Engine", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "GB", Type = "Base", Path= Path.Combine(".", "Gameboy"), Ordinal = 0 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Base", Path= Path.Combine(".", "Gameboy"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "GB", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "GB", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "GB", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "GB", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "GB", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
new PathEntry() { System = "GB", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
new PathEntry() { System = "GB_GBC", SystemDisplayName="Gameboy", Type = "Palettes", Path = Path.Combine(".", "Palettes"), Ordinal = 6 },
|
||||||
|
|
||||||
new PathEntry() { System = "TI83", Type = "Base", Path= Path.Combine(".", "TI83"), Ordinal = 0 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "Base", Path= Path.Combine(".", "TI83"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "TI83", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "TI83", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "TI83", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "TI83", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "TI83", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "TI83", SystemDisplayName="TI83", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "A26", Type = "Base", Path= Path.Combine(".", "Atari 2600"), Ordinal = 0 },
|
new PathEntry() { System = "A26", SystemDisplayName="Atari 2600", Type = "Base", Path= Path.Combine(".", "Atari 2600"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "A26", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "A26", SystemDisplayName="Atari 2600", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "A26", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "A26", SystemDisplayName="Atari 2600", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "A26", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "A26", SystemDisplayName="Atari 2600", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "A26", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "A26", SystemDisplayName="Atari 2600", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "A78", Type = "Base", Path= Path.Combine(".", "Atari 7800"), Ordinal = 0 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "Base", Path= Path.Combine(".", "Atari 7800"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "A78", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "A78", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "A78", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "A78", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "A78", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "A78", SystemDisplayName="Atari 7800", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "C64", Type = "Base", Path= Path.Combine(".", "C64"), Ordinal = 0 },
|
new PathEntry() { System = "C64", SystemDisplayName="Commodore 64", Type = "Base", Path= Path.Combine(".", "C64"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "C64", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "C64", SystemDisplayName="Commodore 64", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "C64", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "C64", SystemDisplayName="Commodore 64", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "C64", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "C64", SystemDisplayName="Commodore 64", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "C64", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "C64", SystemDisplayName="Commodore 64", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "PSX", Type = "Base", Path= Path.Combine(".", "PSX"), Ordinal = 0 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "Base", Path= Path.Combine(".", "PSX"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "PSX", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "PSX", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "PSX", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "PSX", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "PSX", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "PSX", SystemDisplayName="Playstation", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "Coleco", Type = "Base", Path= Path.Combine(".", "Coleco"), Ordinal = 0 },
|
new PathEntry() { System = "Coleco", SystemDisplayName = "Coleco", Type = "Base", Path= Path.Combine(".", "Coleco"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "Coleco", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "Coleco", SystemDisplayName = "Coleco", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "Coleco", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "Coleco", SystemDisplayName = "Coleco", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "Coleco", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "Coleco", SystemDisplayName = "Coleco", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "Coleco", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "Coleco", SystemDisplayName = "Coleco", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "N64", Type = "Base", Path= Path.Combine(".", "N64"), Ordinal = 0 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "Base", Path= Path.Combine(".", "N64"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "N64", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "N64", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "N64", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "N64", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "N64", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "N64", SystemDisplayName = "N64", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
|
|
||||||
new PathEntry() { System = "SAT", Type = "Base", Path= Path.Combine(".", "Saturn"), Ordinal = 0 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "Base", Path= Path.Combine(".", "Saturn"), Ordinal = 0 },
|
||||||
new PathEntry() { System = "SAT", Type = "ROM", Path = ".", Ordinal = 1 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "ROM", Path = ".", Ordinal = 1 },
|
||||||
new PathEntry() { System = "SAT", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "Savestates", Path= Path.Combine(".", "State"), Ordinal = 2 },
|
||||||
new PathEntry() { System = "SAT", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 },
|
||||||
new PathEntry() { System = "SAT", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 },
|
||||||
new PathEntry() { System = "SAT", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
new PathEntry() { System = "SAT", SystemDisplayName = "Saturn", Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 },
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class PathEntry
|
public class PathEntry
|
||||||
{
|
{
|
||||||
public string Type;
|
public string SystemDisplayName;
|
||||||
public string Path;
|
public string Type;
|
||||||
public string System;
|
public string Path;
|
||||||
public int Ordinal;
|
public string System;
|
||||||
public PathEntry() { }
|
public int Ordinal;
|
||||||
}
|
public PathEntry() { }
|
||||||
|
}
|
||||||
|
|
||||||
public enum PLUGINTYPE { RICE, GLIDE, GLIDE64MK2 };
|
public enum PLUGINTYPE { RICE, GLIDE, GLIDE64MK2 };
|
||||||
|
|
||||||
|
|
|
@ -11,38 +11,38 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
public partial class NewPathConfig : Form
|
public partial class NewPathConfig : Form
|
||||||
{
|
{
|
||||||
//All path text boxes should do some kind of error checking
|
//All path text boxes should do some kind of error checking
|
||||||
//config path under base, config will default to %exe%
|
//config path under base, config will default to %exe%
|
||||||
|
|
||||||
private void LockDownCores()
|
private void LockDownCores()
|
||||||
{
|
{
|
||||||
if (!MainForm.INTERIM)
|
if (!MainForm.INTERIM)
|
||||||
{
|
{
|
||||||
string[] coresToHide = { "PSX", "GBA", "INTV", "C64", "GEN" };
|
string[] coresToHide = { "PSX", "GBA", "INTV", "C64", "GEN" };
|
||||||
|
|
||||||
foreach(string core in coresToHide)
|
foreach (string core in coresToHide)
|
||||||
{
|
{
|
||||||
TabPage tp = AllTabPages.FirstOrDefault(x => x.Name == core);
|
TabPage tp = AllTabPages.FirstOrDefault(x => x.Name == core);
|
||||||
PathTabControl.TabPages.Remove(tp);
|
PathTabControl.TabPages.Remove(tp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private AutoCompleteStringCollection AutoCompleteOptions
|
private AutoCompleteStringCollection AutoCompleteOptions
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return new AutoCompleteStringCollection()
|
return new AutoCompleteStringCollection()
|
||||||
{
|
{
|
||||||
"%recent%",
|
"%recent%",
|
||||||
"%exe%",
|
"%exe%",
|
||||||
".\\",
|
".\\",
|
||||||
"..\\",
|
"..\\",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public NewPathConfig()
|
public NewPathConfig()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ namespace BizHawk.MultiClient
|
||||||
private void NewPathConfig_Load(object sender, EventArgs e)
|
private void NewPathConfig_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
LoadSettings();
|
LoadSettings();
|
||||||
LockDownCores();
|
LockDownCores();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OK_Click(object sender, EventArgs e)
|
private void OK_Click(object sender, EventArgs e)
|
||||||
|
@ -82,33 +82,13 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
private void SetDefaultFocusedTab()
|
private void SetDefaultFocusedTab()
|
||||||
{
|
{
|
||||||
switch (Global.Game.System)
|
PathTabControl.SelectTab(FindTabByName(Global.Game.System));
|
||||||
{
|
|
||||||
case "NULL":
|
|
||||||
PathTabControl.SelectTab(FindTabByName("Global"));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
PathTabControl.SelectTab(FindTabByName(Global.Game.System));
|
|
||||||
break;
|
|
||||||
|
|
||||||
//"Sub" Systems and other exceptions go here
|
|
||||||
case "PCECD":
|
|
||||||
case "SGX":
|
|
||||||
PathTabControl.SelectTab(FindTabByName("PCE"));
|
|
||||||
break;
|
|
||||||
case "GBC":
|
|
||||||
PathTabControl.SelectTab(FindTabByName("GB"));
|
|
||||||
break;
|
|
||||||
case "SGB":
|
|
||||||
PathTabControl.SelectTab(FindTabByName("SNES"));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private TabPage FindTabByName(string name)
|
private TabPage FindTabByName(string name)
|
||||||
{
|
{
|
||||||
IEnumerable<TabPage> query = from p in PathTabControl.TabPages.OfType<TabPage>() select p;
|
IEnumerable<TabPage> query = from p in PathTabControl.TabPages.OfType<TabPage>() select p;
|
||||||
var tab = query.FirstOrDefault(x => x.Name.ToUpper() == name.ToUpper());
|
var tab = query.FirstOrDefault(x => x.Name.ToUpper().Contains(name.ToUpper()));
|
||||||
if (tab == null)
|
if (tab == null)
|
||||||
{
|
{
|
||||||
return new TabPage();
|
return new TabPage();
|
||||||
|
@ -125,7 +105,7 @@ namespace BizHawk.MultiClient
|
||||||
PathTabControl.TabPages.Clear();
|
PathTabControl.TabPages.Clear();
|
||||||
|
|
||||||
//Separate by system
|
//Separate by system
|
||||||
List<string> systems = Global.Config.PathEntries.Select(x => x.System).Distinct().ToList();
|
List<string> systems = Global.Config.PathEntries.Select(x => x.SystemDisplayName).Distinct().ToList();
|
||||||
systems.Sort();
|
systems.Sort();
|
||||||
|
|
||||||
//Hacky way to put global first
|
//Hacky way to put global first
|
||||||
|
@ -133,11 +113,12 @@ namespace BizHawk.MultiClient
|
||||||
systems.Remove(global);
|
systems.Remove(global);
|
||||||
systems.Insert(0, global);
|
systems.Insert(0, global);
|
||||||
|
|
||||||
foreach (string systemId in systems)
|
foreach (string systemDisplayName in systems)
|
||||||
{
|
{
|
||||||
|
string systemId = Global.Config.PathEntries.FirstOrDefault(x => x.SystemDisplayName == systemDisplayName).System;
|
||||||
TabPage t = new TabPage()
|
TabPage t = new TabPage()
|
||||||
{
|
{
|
||||||
Text = systemId == "SG" ? "SG-1000" : systemId == "GEN" ? "Genesis" : systemId, //TODO: don't be hacky
|
Text = systemDisplayName,
|
||||||
Name = systemId,
|
Name = systemId,
|
||||||
};
|
};
|
||||||
List<PathEntry> paths = PathCollection.Where(x => x.System == systemId).OrderBy(x => x.Ordinal).ThenBy(x => x.Type).ToList();
|
List<PathEntry> paths = PathCollection.Where(x => x.System == systemId).OrderBy(x => x.Ordinal).ThenBy(x => x.Type).ToList();
|
||||||
|
@ -159,9 +140,9 @@ namespace BizHawk.MultiClient
|
||||||
Name = path.Type,
|
Name = path.Type,
|
||||||
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right,
|
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right,
|
||||||
MinimumSize = new Size(26, 23),
|
MinimumSize = new Size(26, 23),
|
||||||
AutoCompleteMode = AutoCompleteMode.SuggestAppend,
|
AutoCompleteMode = AutoCompleteMode.SuggestAppend,
|
||||||
AutoCompleteCustomSource = AutoCompleteOptions,
|
AutoCompleteCustomSource = AutoCompleteOptions,
|
||||||
AutoCompleteSource = AutoCompleteSource.CustomSource,
|
AutoCompleteSource = AutoCompleteSource.CustomSource,
|
||||||
};
|
};
|
||||||
|
|
||||||
Button btn = new Button()
|
Button btn = new Button()
|
||||||
|
@ -198,8 +179,8 @@ namespace BizHawk.MultiClient
|
||||||
_y += row_height;
|
_y += row_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
string sys = systemId;
|
string sys = systemDisplayName;
|
||||||
if (systemId == "PCE") //Hack
|
if (systemDisplayName == "PCE") //Hack
|
||||||
{
|
{
|
||||||
sys = "PCECD";
|
sys = "PCECD";
|
||||||
}
|
}
|
||||||
|
@ -352,18 +333,18 @@ namespace BizHawk.MultiClient
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<TabPage> AllTabPages
|
private List<TabPage> AllTabPages
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
List<TabPage> _AllTabPages = new List<TabPage>();
|
List<TabPage> _AllTabPages = new List<TabPage>();
|
||||||
foreach (TabPage tp in PathTabControl.TabPages)
|
foreach (TabPage tp in PathTabControl.TabPages)
|
||||||
{
|
{
|
||||||
_AllTabPages.Add(tp);
|
_AllTabPages.Add(tp);
|
||||||
}
|
}
|
||||||
return _AllTabPages;
|
return _AllTabPages;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DefaultsBtn_Click(object sender, EventArgs e)
|
private void DefaultsBtn_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -71,10 +71,6 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public static string GetPlatformBase(string system)
|
public static string GetPlatformBase(string system)
|
||||||
{
|
{
|
||||||
if (system == "SGX" || system == "PCECD")
|
|
||||||
{
|
|
||||||
system = "PCE";
|
|
||||||
}
|
|
||||||
return Global.Config.PathEntries[system, "Base"].Path;
|
return Global.Config.PathEntries[system, "Base"].Path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,10 +183,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public static bool IsRecent(string path)
|
public static bool IsRecent(string path)
|
||||||
{
|
{
|
||||||
if (path == "%recent%")
|
return path == "%recent%";
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string GetLuaPath()
|
public static string GetLuaPath()
|
||||||
|
@ -205,15 +198,6 @@ namespace BizHawk.MultiClient
|
||||||
return Environment.SpecialFolder.Recent.ToString();
|
return Environment.SpecialFolder.Recent.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sysID == "SGX" || sysID == "PCECD") //Yucky
|
|
||||||
{
|
|
||||||
sysID = "PCE";
|
|
||||||
}
|
|
||||||
else if (sysID == "NULL")
|
|
||||||
{
|
|
||||||
sysID = "Global";
|
|
||||||
}
|
|
||||||
|
|
||||||
PathEntry path = Global.Config.PathEntries[sysID, "ROM"];
|
PathEntry path = Global.Config.PathEntries[sysID, "ROM"];
|
||||||
|
|
||||||
if (path == null)
|
if (path == null)
|
||||||
|
@ -249,22 +233,7 @@ namespace BizHawk.MultiClient
|
||||||
name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);
|
name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
string sysId = "";
|
PathEntry pathEntry = Global.Config.PathEntries[game.System, "Save RAM"];
|
||||||
switch (game.System)
|
|
||||||
{
|
|
||||||
case "SGX":
|
|
||||||
case "PCECD":
|
|
||||||
sysId = "PCE";
|
|
||||||
break;
|
|
||||||
case "NULL":
|
|
||||||
sysId = "Global";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
sysId = game.System;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
PathEntry pathEntry = Global.Config.PathEntries[sysId, "Save RAM"];
|
|
||||||
|
|
||||||
if (pathEntry == null)
|
if (pathEntry == null)
|
||||||
{
|
{
|
||||||
|
@ -276,29 +245,14 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public static string GetSaveStatePath(GameInfo game)
|
public static string GetSaveStatePath(GameInfo game)
|
||||||
{
|
{
|
||||||
string sysId = "";
|
PathEntry pathEntry = Global.Config.PathEntries[game.System, "Savestates"];
|
||||||
switch (game.System)
|
|
||||||
{
|
|
||||||
case "SGX":
|
|
||||||
case "PCECD":
|
|
||||||
sysId = "PCE";
|
|
||||||
break;
|
|
||||||
case "NULL":
|
|
||||||
sysId = "Global";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
sysId = game.System;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
PathEntry pathEntry = Global.Config.PathEntries[sysId, "Savestates"];
|
|
||||||
|
|
||||||
if (pathEntry == null)
|
if (pathEntry == null)
|
||||||
{
|
{
|
||||||
pathEntry = Global.Config.PathEntries[game.System, "Base"];
|
pathEntry = Global.Config.PathEntries[game.System, "Base"];
|
||||||
}
|
}
|
||||||
|
|
||||||
return MakeAbsolutePath(pathEntry.Path, sysId == "Global" ? null : sysId);
|
return MakeAbsolutePath(pathEntry.Path, game.System);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string SaveStatePrefix(GameInfo game)
|
public static string SaveStatePrefix(GameInfo game)
|
||||||
|
@ -310,51 +264,21 @@ namespace BizHawk.MultiClient
|
||||||
name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);
|
name += "." + Path.GetFileNameWithoutExtension(Global.MovieSession.Movie.Filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
string sysId = "";
|
PathEntry pathEntry = Global.Config.PathEntries[game.System, "Savestates"];
|
||||||
switch (game.System)
|
|
||||||
{
|
|
||||||
case "SGX":
|
|
||||||
case "PCECD":
|
|
||||||
sysId = "PCE";
|
|
||||||
break;
|
|
||||||
case "NULL":
|
|
||||||
sysId = "Global";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
sysId = game.System;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
PathEntry pathEntry = Global.Config.PathEntries[sysId, "Savestates"];
|
|
||||||
|
|
||||||
if (pathEntry == null)
|
if (pathEntry == null)
|
||||||
{
|
{
|
||||||
pathEntry = Global.Config.PathEntries[sysId, "Base"];
|
pathEntry = Global.Config.PathEntries[game.System, "Base"];
|
||||||
}
|
}
|
||||||
|
|
||||||
return Path.Combine(MakeAbsolutePath(pathEntry.Path, sysId == "Global" ? null : sysId), name);
|
return Path.Combine(MakeAbsolutePath(pathEntry.Path, game.System), name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string ScreenshotPrefix(GameInfo game)
|
public static string ScreenshotPrefix(GameInfo game)
|
||||||
{
|
{
|
||||||
string name = FilesystemSafeName(game);
|
string name = FilesystemSafeName(game);
|
||||||
|
|
||||||
string sysId = "";
|
PathEntry pathEntry = Global.Config.PathEntries[game.System, "Screenshots"];
|
||||||
switch (game.System)
|
|
||||||
{
|
|
||||||
case "SGX":
|
|
||||||
case "PCECD":
|
|
||||||
sysId = "PCE";
|
|
||||||
break;
|
|
||||||
case "NULL":
|
|
||||||
sysId = "Global";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
sysId = game.System;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
PathEntry pathEntry = Global.Config.PathEntries[sysId, "Screenshots"];
|
|
||||||
|
|
||||||
if (pathEntry == null)
|
if (pathEntry == null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue