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

833 lines
27 KiB
C#
Raw Normal View History

2020-04-16 04:41:25 +00:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
2020-04-16 04:41:25 +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;
2020-04-20 09:31:26 +00:00
using UWUVCI_AIO_WPF.Properties;
2020-04-21 02:05:19 +00:00
using UWUVCI_AIO_WPF.UI.Windows;
2020-04-16 04:41:25 +00:00
namespace UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Configurations
{
/// <summary>
/// Interaktionslogik für WiiConfig.xaml
/// </summary>
public partial class WiiConfig : Page, IDisposable
{
MainViewModel mvm;
2020-04-22 00:24:35 +00:00
bool dont = true;
2020-04-16 04:41:25 +00:00
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>();
2020-06-09 09:43:17 +00:00
gpEmu.Add("Do not use. WiiMotes only");
2020-04-16 04:41:25 +00:00
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;
mvm.test = GameBaseClassLibrary.GameConsoles.WII;
List<string> selection = new List<string>();
selection.Add("Video Patches");
selection.Add("Region Patches");
selection.Add("Extras");
selectionDB.ItemsSource = selection;
2020-06-09 20:02:38 +00:00
selectionDB.SelectedIndex = 0;
2020-04-16 04:41:25 +00:00
}
2020-04-21 02:05:19 +00:00
public WiiConfig(GameConfig c)
{
InitializeComponent();
mvm = FindResource("mvm") as MainViewModel;
getInfoFromConfig();
mvm.GameConfiguration = c.Clone();
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>();
2020-06-09 09:43:17 +00:00
gpEmu.Add("Do not use. WiiMotes only");
2020-04-21 02:05:19 +00:00
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;
mvm.test = GameBaseClassLibrary.GameConsoles.WII;
List<string> selection = new List<string>();
selection.Add("Video Patches");
selection.Add("Region Patches");
selection.Add("Extras");
selectionDB.ItemsSource = selection;
2020-06-09 20:02:38 +00:00
selectionDB.SelectedIndex = 0;
2020-04-21 02:05:19 +00:00
}
2020-04-16 04:41:25 +00:00
public void Dispose()
{
}
private void Set_Rom_Path(object sender, RoutedEventArgs e)
{
string path = mvm.GetFilePath(true, false);
if (!CheckIfNull(path))
2020-04-25 06:40:38 +00:00
2020-04-16 04:41:25 +00:00
{
2020-04-25 06:40:38 +00:00
int TitleIDInt = 0;
bool isok = false;
if (path.ToLower().Contains(".gcz") || path.ToLower().Contains(".dol"))
2020-04-16 04:41:25 +00:00
{
2020-05-06 21:53:52 +00:00
isok = true;
}
else
{
using (var reader = new BinaryReader(File.OpenRead(path)))
2020-04-25 06:40:38 +00:00
{
2020-05-06 21:53:52 +00:00
reader.BaseStream.Position = 0x00;
TitleIDInt = reader.ReadInt32();
if (TitleIDInt == 1397113431) //Performs actions if the header indicates a WBFS file
{ isok = true; }
else if (TitleIDInt != 65536)
2020-04-25 06:40:38 +00:00
{
2020-05-06 21:53:52 +00:00
long GameType = 0;
reader.BaseStream.Position = 0x18;
GameType = reader.ReadInt64();
if (GameType == 2745048157)
{
isok = true;
}
2020-04-25 06:40:38 +00:00
2020-05-06 21:53:52 +00:00
}
reader.Close();
2020-04-25 06:40:38 +00:00
}
2020-04-16 04:41:25 +00:00
}
2020-05-06 21:53:52 +00:00
2020-04-25 06:40:38 +00:00
if (isok)
{
2020-06-09 20:02:38 +00:00
motepass.IsEnabled = false;
motepass.IsChecked = false;
2020-05-06 21:53:52 +00:00
mvm.NKITFLAG = false;
trimn.IsEnabled = false;
2020-05-04 16:20:21 +00:00
trimn.IsChecked = false;
vmcsmoll.IsEnabled = true;
pal.IsEnabled = true;
ntsc.IsEnabled = true;
mvm.donttrim = false;
jppatch.IsEnabled = true;
motepass.IsEnabled = false;
2020-05-04 16:20:21 +00:00
List<string> gpEmu = new List<string>();
2020-06-09 09:43:17 +00:00
gpEmu.Add("Do not use. WiiMotes only");
2020-05-04 16:20:21 +00:00
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.ItemsSource = gpEmu;
2020-04-25 06:40:38 +00:00
mvm.RomPath = path;
mvm.RomSet = true;
if (mvm.BaseDownloaded)
{
mvm.CanInject = true;
}
if (!path.ToLower().Contains(".gcz") && !path.ToLower().Contains(".dol"))
2020-05-04 16:20:21 +00:00
{
2020-05-06 21:53:52 +00:00
string rom = mvm.getInternalWIIGCNName(mvm.RomPath, false);
Regex reg = new Regex("[*'\",_&#^@:;?!<>|µ~#°²³´`éⓇ©™]");
gn.Text = reg.Replace(rom, string.Empty);
mvm.GameConfiguration.GameName = reg.Replace(rom, string.Empty);
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;
}
if (path.ToLower().Contains("iso"))
2020-05-04 16:20:21 +00:00
{
2020-05-06 21:53:52 +00:00
trimn.IsEnabled = true;
mvm.IsIsoNkit();
2020-05-04 16:20:21 +00:00
}
}
else if (path.ToLower().Contains(".dol"))
{
mvm.NKITFLAG = false;
trimn.IsEnabled = false;
trimn.IsChecked = false;
vmcsmoll.IsEnabled = false;
pal.IsEnabled = false;
ntsc.IsEnabled = false;
RF_n.IsEnabled = false;
RF_tj.IsEnabled = false;
RF_tn.IsEnabled = false;
RF_tp.IsEnabled = false;
jppatch.IsEnabled = false;
motepass.IsChecked = false;
motepass.IsEnabled = true;
mvm.donttrim = false;
}
2020-05-06 21:53:52 +00:00
else
{
2020-06-09 20:02:38 +00:00
motepass.IsChecked = false;
motepass.IsEnabled = false;
2020-05-06 21:53:52 +00:00
trimn.IsEnabled = true;
}
}
2020-04-25 06:40:38 +00:00
else
{
2020-04-25 06:40:38 +00:00
Custom_Message cm = new Custom_Message("Wrong ROM", "The chosen ROM is not a supported WII Game");
try
{
cm.Owner = mvm.mw;
}
catch (Exception)
{
}
cm.ShowDialog();
}
2020-04-25 06:40:38 +00:00
2020-04-16 04:41:25 +00:00
}
2020-04-17 01:51:56 +00:00
2020-04-16 04:41:25 +00:00
}
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;
}
2020-04-20 09:31:26 +00:00
else if (!tv.Text.Equals("Added via Config") && !tv.Text.Equals("Downloaded from Cucholix Repo"))
2020-04-19 17:36:03 +00:00
{
mvm.GameConfiguration.TGATv.ImgPath = null;
}
if (File.Exists(ic.Text))
{
mvm.GameConfiguration.TGAIco.ImgPath = ic.Text;
}
2020-04-20 09:31:26 +00:00
else if (!ic.Text.Equals("Added via Config") && !ic.Text.Equals("Downloaded from Cucholix Repo"))
2020-04-19 17:36:03 +00:00
{
mvm.GameConfiguration.TGAIco.ImgPath = null;
}
if (File.Exists(log.Text))
{
mvm.GameConfiguration.TGALog.ImgPath = log.Text;
}
2020-04-20 09:31:26 +00:00
else if (!log.Text.Equals("Added via Config") && !log.Text.Equals("Downloaded from Cucholix Repo"))
2020-04-19 17:36:03 +00:00
{
mvm.GameConfiguration.TGALog.ImgPath = null;
}
if (File.Exists(drc.Text))
{
mvm.GameConfiguration.TGADrc.ImgPath = drc.Text;
}
2020-04-20 09:31:26 +00:00
else if (!drc.Text.Equals("Added via Config") && !drc.Text.Equals("Downloaded from Cucholix Repo"))
2020-04-19 17:36:03 +00:00
{
mvm.GameConfiguration.TGADrc.ImgPath = null;
}
2020-04-16 04:41:25 +00:00
mvm.Index = gamepad.SelectedIndex;
2020-04-25 06:40:38 +00:00
if (LR.IsChecked == true)
2020-04-16 04:41:25 +00:00
{
mvm.LR = true;
}
else
{
mvm.LR = false;
}
mvm.Inject(false);
}
private void Set_TvTex(object sender, RoutedEventArgs e)
{
2020-06-08 07:34:21 +00:00
/*if (!Settings.Default.dont)
2020-04-20 09:31:26 +00:00
{
mvm.ImageWarning();
}
2020-04-16 04:41:25 +00:00
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;
2020-04-21 02:05:19 +00:00
tvIMG.Visibility = Visibility.Visible;
2020-04-16 04:41:25 +00:00
}
2020-05-06 21:53:52 +00:00
else
{
if (path == "")
{
mvm.GameConfiguration.TGATv.ImgPath = null;
tv.Text = "";
tvIMG.Visibility = Visibility.Hidden;
}
2020-06-08 07:34:21 +00:00
}*/
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "bootTvTex.png");
ImageCreator ic = new ImageCreator(mvm.GameConfiguration.Console, "bootTvTex");
try
{
ic.Owner = mvm.mw;
2020-05-06 21:53:52 +00:00
}
2020-06-08 07:34:21 +00:00
catch (Exception)
{
2020-04-16 04:41:25 +00:00
2020-06-08 07:34:21 +00:00
}
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;
}
2020-04-16 04:41:25 +00:00
}
private void Set_DrcTex(object sender, RoutedEventArgs e)
{
2020-06-08 07:34:21 +00:00
/* if (!Settings.Default.dont)
{
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;
drcIMG.Visibility = Visibility.Visible;
}
else
{
if (path == "")
{
mvm.GameConfiguration.TGADrc.ImgPath = null;
drc.Text = "";
drcIMG.Visibility = Visibility.Hidden;
}
}*/
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "bootDrcTex.png");
ImageCreator ic = new ImageCreator(mvm.GameConfiguration.Console, "bootDrcTex");
try
2020-04-20 09:31:26 +00:00
{
2020-06-08 07:34:21 +00:00
ic.Owner = mvm.mw;
2020-04-20 09:31:26 +00:00
}
2020-06-08 07:34:21 +00:00
catch (Exception)
2020-04-16 04:41:25 +00:00
{
2020-06-08 07:34:21 +00:00
2020-04-16 04:41:25 +00:00
}
2020-06-08 07:34:21 +00:00
ic.ShowDialog();
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
2020-05-06 21:53:52 +00:00
{
2020-06-08 07:34:21 +00:00
mvm.GameConfiguration.TGATv.ImgPath = path;
mvm.GameConfiguration.TGATv.extension = new FileInfo(path).Extension;
tv.Text = path;
tvIMG.Visibility = Visibility.Visible;
2020-05-06 21:53:52 +00:00
}
2020-04-16 04:41:25 +00:00
}
private void Set_IconTex(object sender, RoutedEventArgs e)
{
2020-06-08 07:34:21 +00:00
/* if (!Settings.Default.dont)
{
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;
icoIMG.Visibility = Visibility.Visible;
}
else
{
if (path == "")
{
mvm.GameConfiguration.TGAIco.ImgPath = null;
ic.Text = "";
icoIMG.Visibility = Visibility.Hidden;
}
}*/
string path = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "createdIMG", "iconTex.png");
IconCreator ic = new IconCreator("WII");
try
2020-04-20 09:31:26 +00:00
{
2020-06-08 07:34:21 +00:00
ic.Owner = mvm.mw;
2020-04-20 09:31:26 +00:00
}
2020-06-08 07:34:21 +00:00
catch (Exception)
{
}
ic.ShowDialog();
if (File.Exists(path) && mvm.CheckTime(new FileInfo(path).CreationTime))
2020-04-16 04:41:25 +00:00
{
mvm.GameConfiguration.TGAIco.ImgPath = path;
mvm.GameConfiguration.TGAIco.extension = new FileInfo(path).Extension;
2020-06-08 07:34:21 +00:00
this.ic.Text = path;
2020-04-21 02:05:19 +00:00
icoIMG.Visibility = Visibility.Visible;
2020-04-16 04:41:25 +00:00
}
}
private void Set_LogoTex(object sender, RoutedEventArgs e)
{
2020-04-20 09:31:26 +00:00
if (!Settings.Default.dont)
{
mvm.ImageWarning();
}
2020-04-16 04:41:25 +00:00
string path = mvm.GetFilePath(false, false);
2020-05-06 21:53:52 +00:00
if (!CheckIfNull(path) )
2020-04-16 04:41:25 +00:00
{
mvm.GameConfiguration.TGALog.ImgPath = path;
mvm.GameConfiguration.TGALog.extension = new FileInfo(path).Extension;
log.Text = path;
2020-04-21 02:05:19 +00:00
logIMG.Visibility = Visibility.Visible;
2020-04-16 04:41:25 +00:00
}
2020-05-06 21:53:52 +00:00
else
{
if(path == "")
{
mvm.GameConfiguration.TGALog.ImgPath = null;
log.Text = "";
logIMG.Visibility = Visibility.Hidden;
}
}
2020-04-25 06:40:38 +00:00
2020-04-16 04:41:25 +00:00
}
public void getInfoFromConfig()
{
2020-04-21 02:05:19 +00:00
rp.Text = "";
mvm.RomPath = "";
mvm.RomSet = false;
mvm.gc2rom = "";
2020-04-16 04:41:25 +00:00
tv.Text = mvm.GameConfiguration.TGATv.ImgPath;
2020-04-21 02:05:19 +00:00
if (tv.Text.Length > 0)
{
tvIMG.Visibility = Visibility.Visible;
}
2020-04-16 04:41:25 +00:00
ic.Text = mvm.GameConfiguration.TGAIco.ImgPath;
2020-04-21 02:05:19 +00:00
if (ic.Text.Length > 0)
{
icoIMG.Visibility = Visibility.Visible;
}
2020-04-16 04:41:25 +00:00
drc.Text = mvm.GameConfiguration.TGADrc.ImgPath;
2020-04-21 02:05:19 +00:00
if (drc.Text.Length > 0)
{
drcIMG.Visibility = Visibility.Visible;
}
2020-04-16 04:41:25 +00:00
log.Text = mvm.GameConfiguration.TGALog.ImgPath;
2020-04-21 02:05:19 +00:00
if (log.Text.Length > 0)
{
logIMG.Visibility = Visibility.Visible;
}
2020-04-16 04:41:25 +00:00
gn.Text = mvm.GameConfiguration.GameName;
2020-05-15 21:20:24 +00:00
mvm.Index = mvm.GameConfiguration.Index;
gamepad.SelectedIndex = mvm.GameConfiguration.Index;
2020-04-16 04:41:25 +00:00
}
private bool CheckIfNull(string s)
{
if (s == null || s.Equals(string.Empty))
{
return true;
}
return false;
}
private void gn_KeyUp(object sender, KeyEventArgs e)
{
2020-04-22 00:24:35 +00:00
/*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);
}*/
2020-04-16 04:41:25 +00:00
}
private void gn_KeyUp_1(object sender, KeyEventArgs e)
{
}
private void gamepad_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
2020-05-15 21:20:24 +00:00
mvm.Index = gamepad.SelectedIndex;
2020-04-25 06:40:38 +00:00
if (gamepad.SelectedIndex == 1 || gamepad.SelectedIndex == 4)
2020-04-16 04:41:25 +00:00
{
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 = true;
}
private void RadioButton_Click_2(object sender, RoutedEventArgs e)
{
mvm.toPal = false;
mvm.Patch = false;
}
2020-04-20 09:31:26 +00:00
public void reset()
{
tv.Text = "";
drc.Text = "";
gn.Text = "";
ic.Text = "";
log.Text = "";
2020-04-25 06:40:38 +00:00
2020-04-20 09:31:26 +00:00
}
2020-04-21 02:05:19 +00:00
private void icoIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
2020-04-30 15:01:41 +00:00
ICOSHOW ics = new ICOSHOW(ic.Text);
try
{
ics.Owner = mvm.mw;
}
catch (Exception)
{
}
ics.ShowDialog();
2020-04-21 02:05:19 +00:00
}
private void tvIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
2020-05-22 12:17:50 +00:00
TDRSHOW t = new TDRSHOW(tv.Text, false);
2020-04-30 15:01:41 +00:00
try
{
t.Owner = mvm.mw;
}
catch (Exception)
{
}
t.ShowDialog();
2020-04-21 02:05:19 +00:00
}
private void drcIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
TDRSHOW t = new TDRSHOW(drc.Text,true);
2020-04-30 15:01:41 +00:00
try
{
t.Owner = mvm.mw;
}
catch (Exception)
{
}
2020-04-21 02:05:19 +00:00
t.ShowDialog();
2020-04-25 06:40:38 +00:00
2020-04-21 02:05:19 +00:00
}
private void logIMG_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
2020-04-30 15:01:41 +00:00
LOGSHOW t = new LOGSHOW(log.Text);
try
{
t.Owner = mvm.mw;
}
catch (Exception)
{
}
t.ShowDialog();
2020-04-21 02:05:19 +00:00
}
2020-04-21 19:52:52 +00:00
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;
}
}
2020-04-22 00:24:35 +00:00
private void gn_KeyDown(object sender, KeyEventArgs e)
{
2020-04-25 06:40:38 +00:00
if (Keyboard.IsKeyDown(Key.Up) || Keyboard.IsKeyDown(Key.Down) || Keyboard.IsKeyDown(Key.Left) || Keyboard.IsKeyDown(Key.Right))
2020-04-22 00:24:35 +00:00
{
dont = false;
}
2020-04-25 06:40:38 +00:00
}
private void Button_Click(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;
}
2020-04-22 00:24:35 +00:00
}
2020-05-06 21:53:52 +00:00
else
{
if (path == "")
{
mvm.BootSound = null;
sound.Text = "";
}
}
2020-04-25 06:40:38 +00:00
}
private void Image_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
2020-05-01 18:10:51 +00:00
}
2020-04-30 15:01:41 +00:00
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)
{
}
}
2020-05-01 18:10:51 +00:00
private void Button_Click_1(object sender, RoutedEventArgs e)
{
try
{
2020-05-04 16:20:21 +00:00
TitleKeys webbrowser = new TitleKeys("wii", "Wii Inject Guide");
2020-05-01 18:10:51 +00:00
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 Wii is not implemented yet");
try
{
cm.Owner = mvm.mw;
}
catch (Exception)
{
}
cm.Show();
}
}
2020-05-04 16:20:21 +00:00
private void trimn_Click(object sender, RoutedEventArgs e)
{
if (!mvm.donttrim)
{
mvm.toPal = false;
mvm.Patch = false;
vmcsmoll.IsChecked = true;
vmcsmoll.IsEnabled = false;
pal.IsEnabled = false;
ntsc.IsEnabled = false;
mvm.donttrim = true;
mvm.jppatch = false;
int last = gamepad.SelectedIndex;
2020-05-04 16:20:21 +00:00
List<string> gpEmu = new List<string>();
2020-06-09 09:43:17 +00:00
gpEmu.Add("Do not use. WiiMotes only");
2020-05-04 16:20:21 +00:00
gpEmu.Add("Classic Controller");
gpEmu.Add("Horizontal WiiMote");
gpEmu.Add("Vertical WiiMote");
gpEmu.Add("[NEEDS TRIMMING] Force Classic Controller");
gpEmu.Add("Force No Classic Controller");
gamepad.ItemsSource = gpEmu;
gamepad.SelectedIndex = last;
jppatch.IsEnabled = false;
2020-05-04 16:20:21 +00:00
}
else
{
int last = gamepad.SelectedIndex;
vmcsmoll.IsEnabled = true;
2020-05-04 16:20:21 +00:00
pal.IsEnabled = true;
ntsc.IsEnabled = true;
mvm.donttrim = false;
jppatch.IsEnabled = true;
List<string> gpEmu = new List<string>();
2020-06-09 09:43:17 +00:00
gpEmu.Add("Do not use. WiiMotes only");
2020-05-04 16:20:21 +00:00
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.ItemsSource = gpEmu;
gamepad.SelectedIndex = last;
2020-05-04 16:20:21 +00:00
}
}
private void jppatch_Click(object sender, RoutedEventArgs e)
{
if (mvm.jppatch)
{
mvm.jppatch = false;
}
else
{
mvm.jppatch = true;
}
}
private void selectionDB_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
switch (selectionDB.SelectedIndex)
{
case 0:
VideoMode.Visibility = Visibility.Visible;
RegionFrii.Visibility = Visibility.Hidden;
Extra.Visibility = Visibility.Hidden;
break;
case 1:
VideoMode.Visibility = Visibility.Hidden;
RegionFrii.Visibility = Visibility.Visible;
Extra.Visibility = Visibility.Hidden;
break;
case 2:
VideoMode.Visibility = Visibility.Hidden;
RegionFrii.Visibility = Visibility.Hidden;
Extra.Visibility = Visibility.Visible;
break;
}
}
private void motepass_Checked(object sender, RoutedEventArgs e)
{
mvm.passtrough = false;
}
private void motepass_Unchecked(object sender, RoutedEventArgs e)
{
mvm.passtrough = true;
}
2020-04-16 04:41:25 +00:00
}
}