2022-08-18 18:04:54 +02:00
|
|
|
|
using Avalonia.Collections;
|
2022-07-08 20:47:11 +02:00
|
|
|
|
using Ryujinx.Ava.Common.Locale;
|
2022-12-29 15:24:05 +01:00
|
|
|
|
using Ryujinx.Ava.UI.Models;
|
2022-07-08 20:47:11 +02:00
|
|
|
|
using Ryujinx.HLE.FileSystem;
|
|
|
|
|
using Ryujinx.HLE.HOS;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2022-12-29 15:24:05 +01:00
|
|
|
|
namespace Ryujinx.Ava.UI.Windows
|
2022-07-08 20:47:11 +02:00
|
|
|
|
{
|
2022-07-24 19:38:38 +02:00
|
|
|
|
public partial class CheatWindow : StyleableWindow
|
2022-07-08 20:47:11 +02:00
|
|
|
|
{
|
|
|
|
|
private readonly string _enabledCheatsPath;
|
|
|
|
|
public bool NoCheatsFound { get; }
|
|
|
|
|
|
|
|
|
|
private AvaloniaList<CheatsList> LoadedCheats { get; }
|
|
|
|
|
|
|
|
|
|
public string Heading { get; }
|
|
|
|
|
|
|
|
|
|
public CheatWindow()
|
|
|
|
|
{
|
|
|
|
|
DataContext = this;
|
|
|
|
|
|
|
|
|
|
InitializeComponent();
|
2022-07-29 00:41:34 +02:00
|
|
|
|
|
2023-01-03 19:45:08 +01:00
|
|
|
|
Title = $"Ryujinx {Program.Version} - " + LocaleManager.Instance[LocaleKeys.CheatWindowTitle];
|
2022-07-08 20:47:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CheatWindow(VirtualFileSystem virtualFileSystem, string titleId, string titleName)
|
|
|
|
|
{
|
|
|
|
|
LoadedCheats = new AvaloniaList<CheatsList>();
|
|
|
|
|
|
2023-01-21 02:06:19 +01:00
|
|
|
|
Heading = LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.CheatWindowHeading, titleName, titleId.ToUpper());
|
2022-07-08 20:47:11 +02:00
|
|
|
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
string modsBasePath = virtualFileSystem.ModLoader.GetModsBasePath();
|
|
|
|
|
string titleModsPath = virtualFileSystem.ModLoader.GetTitleDir(modsBasePath, titleId);
|
|
|
|
|
ulong titleIdValue = ulong.Parse(titleId, System.Globalization.NumberStyles.HexNumber);
|
|
|
|
|
|
|
|
|
|
_enabledCheatsPath = Path.Combine(titleModsPath, "cheats", "enabled.txt");
|
|
|
|
|
|
|
|
|
|
string[] enabled = { };
|
|
|
|
|
|
|
|
|
|
if (File.Exists(_enabledCheatsPath))
|
|
|
|
|
{
|
|
|
|
|
enabled = File.ReadAllLines(_enabledCheatsPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cheatAdded = 0;
|
|
|
|
|
|
|
|
|
|
var mods = new ModLoader.ModCache();
|
|
|
|
|
|
|
|
|
|
ModLoader.QueryContentsDir(mods, new DirectoryInfo(Path.Combine(modsBasePath, "contents")), titleIdValue);
|
|
|
|
|
|
|
|
|
|
string currentCheatFile = string.Empty;
|
|
|
|
|
string buildId = string.Empty;
|
|
|
|
|
string parentPath = string.Empty;
|
|
|
|
|
|
|
|
|
|
CheatsList currentGroup = null;
|
|
|
|
|
|
|
|
|
|
foreach (var cheat in mods.Cheats)
|
|
|
|
|
{
|
|
|
|
|
if (cheat.Path.FullName != currentCheatFile)
|
|
|
|
|
{
|
|
|
|
|
currentCheatFile = cheat.Path.FullName;
|
|
|
|
|
parentPath = currentCheatFile.Replace(titleModsPath, "");
|
|
|
|
|
|
|
|
|
|
buildId = Path.GetFileNameWithoutExtension(currentCheatFile).ToUpper();
|
|
|
|
|
currentGroup = new CheatsList(buildId, parentPath);
|
|
|
|
|
|
|
|
|
|
LoadedCheats.Add(currentGroup);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var model = new CheatModel(cheat.Name, buildId, enabled.Contains($"{buildId}-{cheat.Name}"));
|
|
|
|
|
currentGroup?.Add(model);
|
|
|
|
|
|
|
|
|
|
cheatAdded++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cheatAdded == 0)
|
|
|
|
|
{
|
|
|
|
|
NoCheatsFound = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DataContext = this;
|
|
|
|
|
|
2023-01-03 19:45:08 +01:00
|
|
|
|
Title = $"Ryujinx {Program.Version} - " + LocaleManager.Instance[LocaleKeys.CheatWindowTitle];
|
2022-07-08 20:47:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Save()
|
|
|
|
|
{
|
|
|
|
|
if (NoCheatsFound)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<string> enabledCheats = new List<string>();
|
|
|
|
|
|
|
|
|
|
foreach (var cheats in LoadedCheats)
|
|
|
|
|
{
|
|
|
|
|
foreach (var cheat in cheats)
|
|
|
|
|
{
|
|
|
|
|
if (cheat.IsEnabled)
|
|
|
|
|
{
|
|
|
|
|
enabledCheats.Add(cheat.BuildIdKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(_enabledCheatsPath));
|
|
|
|
|
|
|
|
|
|
File.WriteAllLines(_enabledCheatsPath, enabledCheats);
|
|
|
|
|
|
|
|
|
|
Close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|