UWUVCI-AIO-WPF/UWUVCI AIO WPF/UI/Frames/InjectFrames/Configurations/N64Config.xaml.cs

180 lines
5.4 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2020-04-06 19:30:31 +00:00
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;
using UWUVCI_AIO_WPF.Classes;
namespace UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Configurations
{
/// <summary>
/// Interaktionslogik für N64Config.xaml
/// </summary>
public partial class N64Config : Page
{
MainViewModel mvm;
public N64Config()
{
mvm = (MainViewModel)FindResource("mvm");
mvm.GameConfiguration.N64Stuff = new N64Conf();
InitializeComponent();
2020-04-06 19:30:31 +00:00
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";
}
2020-03-01 16:15:54 +00:00
2020-04-06 19:30:31 +00:00
private void Set_Rom_Path(object sender, RoutedEventArgs e)
2020-03-01 16:15:54 +00:00
{
string path = mvm.GetFilePath(true, false);
if (!CheckIfNull(path))
{
mvm.RomSet = true;
mvm.RomPath = path;
if (mvm.BaseDownloaded)
{
mvm.CanInject = true;
}
}
}
private void InjectGame(object sender, RoutedEventArgs e)
{
2020-04-19 17:36:03 +00:00
if (File.Exists(tv.Text))
{
mvm.GameConfiguration.TGATv.ImgPath = tv.Text;
}
else
{
mvm.GameConfiguration.TGATv.ImgPath = null;
}
if (File.Exists(ic.Text))
{
mvm.GameConfiguration.TGAIco.ImgPath = ic.Text;
}
else
{
mvm.GameConfiguration.TGAIco.ImgPath = null;
}
if (File.Exists(log.Text))
{
mvm.GameConfiguration.TGALog.ImgPath = log.Text;
}
else
{
mvm.GameConfiguration.TGALog.ImgPath = null;
}
if (File.Exists(drc.Text))
{
mvm.GameConfiguration.TGADrc.ImgPath = drc.Text;
}
else
{
mvm.GameConfiguration.TGADrc.ImgPath = null;
}
2020-04-16 04:41:25 +00:00
mvm.Inject(false);
}
2020-04-06 19:30:31 +00:00
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;
ini.Text = mvm.GameConfiguration.N64Stuff.INIPath;
}
private void Set_TvTex(object sender, RoutedEventArgs e)
{
mvm.ImageWarning();
string path = mvm.GetFilePath(false, false);
2020-04-06 19:30:31 +00:00
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);
2020-04-06 19:30:31 +00:00
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);
2020-04-06 19:30:31 +00:00
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);
2020-04-06 19:30:31 +00:00
if (!CheckIfNull(path))
{
mvm.GameConfiguration.TGALog.ImgPath = path;
mvm.GameConfiguration.TGALog.extension = new FileInfo(path).Extension;
log.Text = path;
}
}
private bool CheckIfNull(string s)
{
if (s == null || s.Equals(string.Empty))
{
return true;
}
return false;
}
private void Set_IniPath(object sender, RoutedEventArgs e)
{
string path = mvm.GetFilePath(false, true);
2020-04-06 19:30:31 +00:00
if (!CheckIfNull(path))
{
mvm.GameConfiguration.N64Stuff.INIPath = path;
ini.Text = path;
}
2020-03-01 16:15:54 +00:00
}
private void gn_KeyUp(object sender, KeyEventArgs e)
{
2020-04-19 17:36:03 +00:00
Regex reg = new Regex("[*'\",_&#^@:;?!<>|µ~#°²³´`éⓇ©™]");
gn.Text = reg.Replace(gn.Text, string.Empty);
gn.CaretIndex = gn.Text.Length;
gn.ScrollToHorizontalOffset(double.MaxValue);
}
}
}