mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-21 08:33:08 +00:00
194 lines
5.8 KiB
C#
194 lines
5.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Configurations
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für WiiConfig.xaml
|
|
/// </summary>
|
|
public partial class WiiConfig : Page, IDisposable
|
|
{
|
|
MainViewModel mvm;
|
|
public WiiConfig()
|
|
{
|
|
InitializeComponent();
|
|
mvm = FindResource("mvm") as MainViewModel;
|
|
mvm.setThing(this);
|
|
Injection.ToolTip = "Changing the extension of a ROM may result in a faulty inject.\nWe will not give any support in such cases";
|
|
List<string> gpEmu = new List<string>();
|
|
gpEmu.Add("None");
|
|
gpEmu.Add("Classic Controller");
|
|
gpEmu.Add("Horizontal WiiMote");
|
|
gpEmu.Add("Vertical WiiMote");
|
|
gpEmu.Add("Force Classic Controller");
|
|
gpEmu.Add("Force No Classic Controller");
|
|
gamepad.ItemsSource = gpEmu;
|
|
gamepad.SelectedIndex = 0;
|
|
}
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
|
|
private void Set_Rom_Path(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = mvm.GetFilePath(true, false);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.RomPath = path;
|
|
mvm.RomSet = true;
|
|
if (mvm.BaseDownloaded)
|
|
{
|
|
mvm.CanInject = true;
|
|
|
|
}
|
|
string rom = mvm.getInternalName(mvm.RomPath);
|
|
Regex reg = new Regex("[*'\",_&#^@:;?!<>|µ~#°²³]");
|
|
gn.Text = reg.Replace(rom, string.Empty);
|
|
mvm.GameConfiguration.GameName = reg.Replace(rom, string.Empty);
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
private void InjectGame(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.Index = gamepad.SelectedIndex;
|
|
if(LR.IsChecked == true)
|
|
{
|
|
mvm.LR = true;
|
|
}
|
|
else
|
|
{
|
|
mvm.LR = false;
|
|
}
|
|
mvm.Inject(false);
|
|
}
|
|
|
|
private void Set_TvTex(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.ImageWarning();
|
|
string path = mvm.GetFilePath(false, false);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.GameConfiguration.TGATv.ImgPath = path;
|
|
mvm.GameConfiguration.TGATv.extension = new FileInfo(path).Extension;
|
|
tv.Text = path;
|
|
}
|
|
|
|
}
|
|
|
|
private void Set_DrcTex(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.ImageWarning();
|
|
string path = mvm.GetFilePath(false, false);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.GameConfiguration.TGADrc.ImgPath = path;
|
|
mvm.GameConfiguration.TGADrc.extension = new FileInfo(path).Extension;
|
|
drc.Text = path;
|
|
}
|
|
|
|
}
|
|
|
|
private void Set_IconTex(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.ImageWarning();
|
|
string path = mvm.GetFilePath(false, false);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.GameConfiguration.TGAIco.ImgPath = path;
|
|
mvm.GameConfiguration.TGAIco.extension = new FileInfo(path).Extension;
|
|
ic.Text = path;
|
|
}
|
|
}
|
|
|
|
private void Set_LogoTex(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.ImageWarning();
|
|
string path = mvm.GetFilePath(false, false);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.GameConfiguration.TGALog.ImgPath = path;
|
|
mvm.GameConfiguration.TGALog.extension = new FileInfo(path).Extension;
|
|
log.Text = path;
|
|
}
|
|
}
|
|
public void getInfoFromConfig()
|
|
{
|
|
tv.Text = mvm.GameConfiguration.TGATv.ImgPath;
|
|
ic.Text = mvm.GameConfiguration.TGAIco.ImgPath;
|
|
drc.Text = mvm.GameConfiguration.TGADrc.ImgPath;
|
|
log.Text = mvm.GameConfiguration.TGALog.ImgPath;
|
|
gn.Text = mvm.GameConfiguration.GameName;
|
|
|
|
}
|
|
private bool CheckIfNull(string s)
|
|
{
|
|
if (s == null || s.Equals(string.Empty))
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void gn_KeyUp(object sender, KeyEventArgs e)
|
|
{
|
|
Regex reg = new Regex("[*'\",_&#^@:;?!<>|µ~#°²³]");
|
|
gn.Text = reg.Replace(gn.Text, string.Empty);
|
|
gn.CaretIndex = gn.Text.Length;
|
|
gn.ScrollToHorizontalOffset(double.MaxValue);
|
|
}
|
|
|
|
private void gn_KeyUp_1(object sender, KeyEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void gamepad_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if(gamepad.SelectedIndex == 1 || gamepad.SelectedIndex == 4)
|
|
{
|
|
LR.IsEnabled = true;
|
|
}
|
|
else
|
|
{
|
|
LR.IsChecked = false;
|
|
LR.IsEnabled = false;
|
|
}
|
|
}
|
|
|
|
private void RadioButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.toPal = true;
|
|
mvm.Patch = true;
|
|
}
|
|
|
|
private void RadioButton_Click_1(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.toPal = false;
|
|
mvm.Patch = false;
|
|
}
|
|
|
|
private void RadioButton_Click_2(object sender, RoutedEventArgs e)
|
|
{
|
|
mvm.toPal = false;
|
|
mvm.Patch =true;
|
|
}
|
|
}
|
|
}
|