mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-23 19:43:03 +00:00
713 lines
22 KiB
C#
713 lines
22 KiB
C#
using GameBaseClassLibrary;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
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.Properties;
|
|
using UWUVCI_AIO_WPF.UI.Windows;
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Configurations
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für OtherConfigs.xaml
|
|
/// </summary>
|
|
public partial class GCConfig : Page, IDisposable
|
|
{
|
|
MainViewModel mvm;
|
|
bool cd = false;
|
|
public GCConfig()
|
|
{
|
|
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";
|
|
mvm.test = GameConsoles.GCN;
|
|
mvm.Index = 1;
|
|
}
|
|
public void clearImages(int i)
|
|
{
|
|
|
|
switch (i)
|
|
{
|
|
case 0:
|
|
icoIMG.Visibility = Visibility.Hidden;
|
|
mvm.GameConfiguration.TGAIco = new Classes.PNGTGA();
|
|
ic.Text = null;
|
|
break;
|
|
case 1:
|
|
tvIMG.Visibility = Visibility.Hidden;
|
|
mvm.GameConfiguration.TGATv = new Classes.PNGTGA();
|
|
tv.Text = null;
|
|
break;
|
|
case 2:
|
|
drcIMG.Visibility = Visibility.Hidden;
|
|
mvm.GameConfiguration.TGADrc = new Classes.PNGTGA();
|
|
drc.Text = null;
|
|
break;
|
|
case 3:
|
|
logIMG.Visibility = Visibility.Hidden;
|
|
mvm.GameConfiguration.TGALog = new Classes.PNGTGA();
|
|
log.Text = null;
|
|
break;
|
|
}
|
|
}
|
|
private void SoundImg_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
mvm.PlaySound();
|
|
}
|
|
|
|
private void sound_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
if (File.Exists(mvm.BootSound))
|
|
{
|
|
if (!new FileInfo(mvm.BootSound).Extension.Contains("btsnd"))
|
|
{
|
|
SoundImg.Visibility = Visibility.Visible;
|
|
}
|
|
else
|
|
{
|
|
SoundImg.Visibility = Visibility.Hidden;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
public GCConfig(GameConfig c)
|
|
{
|
|
InitializeComponent();
|
|
mvm = FindResource("mvm") as MainViewModel;
|
|
mvm.GameConfiguration = c.Clone(); getInfoFromConfig();
|
|
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";
|
|
mvm.test = GameConsoles.GCN;
|
|
mvm.Index = 1;
|
|
}
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
public void imgpath(string icon, string tv)
|
|
{
|
|
ic.Text = icon;
|
|
this.tv.Text = tv;
|
|
}
|
|
private void Set_Rom_Path(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = string.Empty;
|
|
path = mvm.GetFilePath(true, false);
|
|
int TitleIDInt = 0;
|
|
bool isok = false;
|
|
if (!CheckIfNull(path))
|
|
{
|
|
using (var reader = new BinaryReader(File.OpenRead(path)))
|
|
{
|
|
if (path.ToLower().Contains(".gcz"))
|
|
{
|
|
isok = true;
|
|
}
|
|
else
|
|
{
|
|
reader.BaseStream.Position = 0x00;
|
|
TitleIDInt = reader.ReadInt32();
|
|
if (TitleIDInt != 65536 && TitleIDInt != 1397113431)
|
|
{
|
|
reader.BaseStream.Position = 0x18;
|
|
long GameType = reader.ReadInt64();
|
|
if (GameType == 4440324665927270400)
|
|
{
|
|
isok = true;
|
|
}
|
|
}
|
|
reader.Close();
|
|
}
|
|
|
|
}
|
|
if (isok)
|
|
{
|
|
trimn.IsEnabled = true;
|
|
if (path.Contains("nkit.iso"))
|
|
{
|
|
trimn.IsEnabled = false;
|
|
trimn.IsChecked = false;
|
|
trimn_Click(null, null);
|
|
}
|
|
mvm.RomPath = path;
|
|
mvm.RomSet = true;
|
|
if (mvm.BaseDownloaded)
|
|
{
|
|
mvm.CanInject = true;
|
|
|
|
}
|
|
if (!path.ToLower().Contains(".gcz"))
|
|
{
|
|
trimn.IsChecked = false;
|
|
trimn_Click(null, null);
|
|
string rom = mvm.getInternalWIIGCNName(mvm.RomPath, true);
|
|
Regex reg = new Regex("[*'\",_&#^@:;?!<>|µ~#°²³´`éⓇ©™]");
|
|
gn.Text = reg.Replace(rom, string.Empty);
|
|
mvm.GameConfiguration.GameName = reg.Replace(rom, string.Empty);
|
|
mvm.gc2rom = "";
|
|
if (mvm.GameConfiguration.TGAIco.ImgPath != "" || mvm.GameConfiguration.TGAIco.ImgPath != null)
|
|
{
|
|
ic.Text = mvm.GameConfiguration.TGAIco.ImgPath;
|
|
}
|
|
if (mvm.GameConfiguration.TGATv.ImgPath != "" || mvm.GameConfiguration.TGATv.ImgPath != null)
|
|
{
|
|
tv.Text = mvm.GameConfiguration.TGATv.ImgPath;
|
|
}
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
Custom_Message cm = new Custom_Message("Wrong ROM", "The chosen ROM is not a supported GameCube Game");
|
|
try
|
|
{
|
|
cm.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
cm.ShowDialog();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
private void InjectGame(object sender, RoutedEventArgs e)
|
|
{
|
|
if (File.Exists(tv.Text))
|
|
{
|
|
mvm.GameConfiguration.TGATv.ImgPath = tv.Text;
|
|
}
|
|
else if (!tv.Text.Equals("Added via Config") && !tv.Text.Equals("Downloaded from Cucholix Repo"))
|
|
{
|
|
mvm.GameConfiguration.TGATv.ImgPath = null;
|
|
}
|
|
if (File.Exists(ic.Text))
|
|
{
|
|
mvm.GameConfiguration.TGAIco.ImgPath = ic.Text;
|
|
}
|
|
else if (!ic.Text.Equals("Added via Config") && !ic.Text.Equals("Downloaded from Cucholix Repo"))
|
|
{
|
|
mvm.GameConfiguration.TGAIco.ImgPath = null;
|
|
|
|
}
|
|
if (File.Exists(log.Text))
|
|
{
|
|
mvm.GameConfiguration.TGALog.ImgPath = log.Text;
|
|
}
|
|
else if (!log.Text.Equals("Added via Config") && !log.Text.Equals("Downloaded from Cucholix Repo"))
|
|
{
|
|
mvm.GameConfiguration.TGALog.ImgPath = null;
|
|
}
|
|
if (File.Exists(drc.Text))
|
|
{
|
|
mvm.GameConfiguration.TGADrc.ImgPath = drc.Text;
|
|
}
|
|
else if (!drc.Text.Equals("Added via Config") && !drc.Text.Equals("Downloaded from Cucholix Repo"))
|
|
{
|
|
mvm.GameConfiguration.TGADrc.ImgPath = null;
|
|
}
|
|
mvm.GameConfiguration.GameName = gn.Text;
|
|
mvm.GC = true;
|
|
mvm.Inject(cd);
|
|
mvm.Index = 1;
|
|
gp.IsChecked = false;
|
|
}
|
|
|
|
private void Set_TvTex(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "bootTvTex.png");
|
|
using (ImageCreator ic = new ImageCreator(GameConsoles.GCN, "bootTvTex"))
|
|
{
|
|
try
|
|
{
|
|
ic.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
ic.ShowDialog();
|
|
}
|
|
|
|
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
|
|
{
|
|
mvm.GameConfiguration.TGATv.ImgPath = path;
|
|
mvm.GameConfiguration.TGATv.extension = new FileInfo(path).Extension;
|
|
tv.Text = path;
|
|
tvIMG.Visibility = Visibility.Visible;
|
|
}
|
|
}
|
|
|
|
private void Set_DrcTex(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "bootDrcTex.png");
|
|
using (ImageCreator ic = new ImageCreator(GameConsoles.GCN, "bootDrcTex"))
|
|
{
|
|
try
|
|
{
|
|
ic.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
ic.ShowDialog();
|
|
}
|
|
|
|
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
|
|
{
|
|
mvm.GameConfiguration.TGADrc.ImgPath = path;
|
|
mvm.GameConfiguration.TGADrc.extension = new FileInfo(path).Extension;
|
|
drc.Text = path;
|
|
drcIMG.Visibility = Visibility.Visible;
|
|
}
|
|
}
|
|
|
|
private void Set_IconTex(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "iconTex.png");
|
|
using (IconCreator ic = new IconCreator())
|
|
{
|
|
try
|
|
{
|
|
ic.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
ic.ShowDialog();
|
|
}
|
|
|
|
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
|
|
{
|
|
mvm.GameConfiguration.TGAIco.ImgPath = path;
|
|
mvm.GameConfiguration.TGAIco.extension = new FileInfo(path).Extension;
|
|
this.ic.Text = path;
|
|
icoIMG.Visibility = Visibility.Visible;
|
|
}
|
|
}
|
|
|
|
private void Set_LogoTex(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "bootLogoTex.png");
|
|
using (LogoCreator ic = new LogoCreator())
|
|
{
|
|
try
|
|
{
|
|
ic.Owner = (FindResource("mvm") as MainViewModel).mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
ic.ShowDialog();
|
|
}
|
|
|
|
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
|
|
{
|
|
mvm.GameConfiguration.TGALog.ImgPath = path;
|
|
mvm.GameConfiguration.TGALog.extension = new FileInfo(path).Extension;
|
|
this.log.Text = path;
|
|
logIMG.Visibility = Visibility.Visible;
|
|
}
|
|
}
|
|
public void getInfoFromConfig()
|
|
{
|
|
rp.Text = "";
|
|
mvm.RomPath = "";
|
|
mvm.RomSet = false;
|
|
mvm.gc2rom = "";
|
|
gc2.Text = "";
|
|
tv.Text = mvm.GameConfiguration.TGATv.ImgPath;
|
|
if (tv.Text.Length > 0)
|
|
{
|
|
tvIMG.Visibility = Visibility.Visible;
|
|
}
|
|
ic.Text = mvm.GameConfiguration.TGAIco.ImgPath;
|
|
if (ic.Text.Length > 0)
|
|
{
|
|
icoIMG.Visibility = Visibility.Visible;
|
|
}
|
|
drc.Text = mvm.GameConfiguration.TGADrc.ImgPath;
|
|
if (drc.Text.Length > 0)
|
|
{
|
|
drcIMG.Visibility = Visibility.Visible;
|
|
}
|
|
log.Text = mvm.GameConfiguration.TGALog.ImgPath;
|
|
if (log.Text.Length > 0)
|
|
{
|
|
logIMG.Visibility = Visibility.Visible;
|
|
}
|
|
gn.Text = mvm.GameConfiguration.GameName;
|
|
if (mvm.GameConfiguration.extension != "" && mvm.GameConfiguration.bootsound != null)
|
|
{
|
|
if (!Directory.Exists(@"bin\cfgBoot"))
|
|
{
|
|
Directory.CreateDirectory(@"bin\cfgBoot");
|
|
}
|
|
if (File.Exists($@"bin\cfgBoot\bootSound.{mvm.GameConfiguration.extension}"))
|
|
{
|
|
File.Delete($@"bin\cfgBoot\bootSound.{mvm.GameConfiguration.extension}");
|
|
}
|
|
File.WriteAllBytes($@"bin\cfgBoot\bootSound.{mvm.GameConfiguration.extension}", mvm.GameConfiguration.bootsound);
|
|
sound.Text = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "cfgBoot", $"bootSound.{mvm.GameConfiguration.extension}");
|
|
mvm.BootSound = sound.Text;
|
|
sound_TextChanged(null, null);
|
|
}
|
|
if (mvm.GameConfiguration.disgamepad)
|
|
{
|
|
mvm.Index = -1;
|
|
gp.IsChecked = true;
|
|
}
|
|
else
|
|
{
|
|
mvm.Index = 1;
|
|
gp.IsChecked = false;
|
|
}
|
|
cd = mvm.GameConfiguration.fourbythree;
|
|
mvm.cd = cd;
|
|
fbt.IsChecked = cd;
|
|
if (mvm.GameConfiguration.donttrim)
|
|
{
|
|
trimn.IsChecked = true;
|
|
}
|
|
else
|
|
{
|
|
trimn.IsChecked = false;
|
|
}
|
|
}
|
|
private bool CheckIfNull(string s)
|
|
{
|
|
if (s == null || s.Equals(string.Empty))
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void CheckBox_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
|
|
cd = !cd;
|
|
mvm.cd = cd;
|
|
}
|
|
|
|
private void gn_KeyUp(object sender, KeyEventArgs e)
|
|
{
|
|
|
|
/*Regex reg = new Regex("[^a-zA-Z0-9 é -]");
|
|
string backup = string.Copy(gn.Text);
|
|
gn.Text = reg.Replace(gn.Text, string.Empty);
|
|
gn.CaretIndex = gn.Text.Length;
|
|
if (gn.Text != backup)
|
|
{
|
|
gn.ScrollToHorizontalOffset(double.MaxValue);
|
|
}*/
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
private void CheckBox_Click_1(object sender, RoutedEventArgs e)
|
|
{
|
|
if (mvm.Index == -1)
|
|
{
|
|
mvm.Index = 1;
|
|
}
|
|
else
|
|
{
|
|
mvm.Index = -1;
|
|
}
|
|
}
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = string.Empty;
|
|
path = mvm.GetFilePath(true, false);
|
|
|
|
|
|
if (!CheckIfNull(path))
|
|
{
|
|
mvm.gc2rom = path;
|
|
}
|
|
}
|
|
public void reset()
|
|
{
|
|
gc2.Text = "";
|
|
tv.Text = "";
|
|
drc.Text = "";
|
|
gn.Text = "";
|
|
ic.Text = "";
|
|
log.Text = "";
|
|
}
|
|
private void icoIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
ICOSHOW ics = new ICOSHOW(ic.Text);
|
|
try
|
|
{
|
|
ics.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
ics.ShowDialog();
|
|
}
|
|
|
|
private void tvIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
TDRSHOW t = new TDRSHOW(tv.Text, false);
|
|
try
|
|
{
|
|
t.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
t.ShowDialog();
|
|
}
|
|
|
|
private void drcIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
TDRSHOW t = new TDRSHOW(drc.Text, true);
|
|
try
|
|
{
|
|
t.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
t.ShowDialog();
|
|
|
|
}
|
|
|
|
private void logIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
LOGSHOW t = new LOGSHOW(log.Text);
|
|
try
|
|
{
|
|
t.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
t.ShowDialog();
|
|
}
|
|
|
|
private void ic_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
if (ic.Text.Length > 0)
|
|
{
|
|
icoIMG.Visibility = Visibility.Visible;
|
|
}
|
|
else
|
|
{
|
|
icoIMG.Visibility = Visibility.Hidden;
|
|
}
|
|
}
|
|
|
|
private void drc_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
if (drc.Text.Length > 0)
|
|
{
|
|
drcIMG.Visibility = Visibility.Visible;
|
|
}
|
|
else
|
|
{
|
|
|
|
drcIMG.Visibility = Visibility.Hidden;
|
|
}
|
|
}
|
|
|
|
private void tv_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
if (tv.Text.Length > 0)
|
|
{
|
|
tvIMG.Visibility = Visibility.Visible;
|
|
}
|
|
else
|
|
{
|
|
tvIMG.Visibility = Visibility.Hidden;
|
|
}
|
|
}
|
|
|
|
private void log_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
if (log.Text.Length > 0)
|
|
{
|
|
logIMG.Visibility = Visibility.Visible;
|
|
}
|
|
else
|
|
{
|
|
logIMG.Visibility = Visibility.Hidden;
|
|
}
|
|
}
|
|
|
|
private void Button_Click_1(object sender, RoutedEventArgs e)
|
|
{
|
|
string path = mvm.GetFilePath(true, true);
|
|
if (!CheckIfNull(path))
|
|
{
|
|
if (new FileInfo(path).Extension.Contains("wav"))
|
|
{
|
|
if (mvm.ConfirmRiffWave(path))
|
|
{
|
|
mvm.BootSound = path;
|
|
}
|
|
else
|
|
{
|
|
Custom_Message cm = new Custom_Message("Incompatible WAV file", "Your WAV file needs to be a RIFF WAVE file which is 16 bit stereo and also 48000khz");
|
|
try
|
|
{
|
|
cm.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
cm.ShowDialog();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
|
|
mvm.BootSound = path;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (path == "")
|
|
{
|
|
mvm.BootSound = null;
|
|
sound.Text = "";
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
private void Image_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
/*
|
|
try
|
|
{
|
|
|
|
TitleKeys webbrowser = new TitleKeys("gcn", "UWUVCI AIO - GCN Help");
|
|
try
|
|
{
|
|
webbrowser.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
mvm.mw.Hide();
|
|
webbrowser.ShowDialog();
|
|
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Custom_Message cm = new Custom_Message("Not Implemented", "The Helppage for GCN is not implemented yet");
|
|
try
|
|
{
|
|
cm.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
cm.Show();
|
|
}
|
|
*/
|
|
//
|
|
}
|
|
|
|
private void Button_Click_2(object sender, RoutedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
TitleKeys webbrowser = new TitleKeys("gcn", "GameCube Inject Guide");
|
|
try
|
|
{
|
|
webbrowser.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
webbrowser.Show();
|
|
mvm.mw.Hide();
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Custom_Message cm = new Custom_Message("Not Implemented", "The Helppage for GameCube is not implemented yet");
|
|
try
|
|
{
|
|
cm.Owner = mvm.mw;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
cm.Show();
|
|
}
|
|
}
|
|
|
|
private void trimn_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if(trimn.IsChecked == true)
|
|
{
|
|
mvm.donttrim = true;
|
|
|
|
}
|
|
else
|
|
{
|
|
mvm.donttrim = false;
|
|
}
|
|
|
|
}
|
|
|
|
private void gn_TextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
mvm.GameConfiguration.GameName = gn.Text;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|