mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-15 21:35:44 +00:00
328 lines
12 KiB
C#
328 lines
12 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using MPF.Core;
|
|
using MPF.UI.Core.ViewModels;
|
|
using SabreTools.RedumpLib.Data;
|
|
using WPFCustomMessageBox;
|
|
using WinForms = System.Windows.Forms;
|
|
|
|
namespace MPF.UI.Core.Windows
|
|
{
|
|
public partial class MainWindow : WindowBase
|
|
{
|
|
/// <summary>
|
|
/// Read-only access to the current main view model
|
|
/// </summary>
|
|
public MainViewModel MainViewModel => DataContext as MainViewModel;
|
|
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public MainWindow() => InitializeComponent();
|
|
|
|
/// <summary>
|
|
/// Handler for MainWindow OnContentRendered event
|
|
/// </summary>
|
|
protected override void OnContentRendered(EventArgs e)
|
|
{
|
|
base.OnContentRendered(e);
|
|
|
|
// Disable buttons until we load fully
|
|
MainViewModel.StartStopButtonEnabled = false;
|
|
MainViewModel.MediaScanButtonEnabled = false;
|
|
MainViewModel.UpdateVolumeLabelEnabled = false;
|
|
MainViewModel.CopyProtectScanButtonEnabled = false;
|
|
|
|
// Add the click handlers to the UI
|
|
AddEventHandlers();
|
|
|
|
// Display the debug option in the menu, if necessary
|
|
if (MainViewModel.Options.ShowDebugViewMenuItem)
|
|
DebugViewMenuItem.Visibility = Visibility.Visible;
|
|
|
|
MainViewModel.Init(LogOutput.EnqueueLog, ShowDiscInformationWindow);
|
|
}
|
|
|
|
#region UI Functionality
|
|
|
|
/// <summary>
|
|
/// Add all event handlers
|
|
/// </summary>
|
|
public void AddEventHandlers()
|
|
{
|
|
// Menu Bar Click
|
|
AboutMenuItem.Click += AboutClick;
|
|
AppExitMenuItem.Click += AppExitClick;
|
|
CheckForUpdatesMenuItem.Click += CheckForUpdatesClick;
|
|
DebugViewMenuItem.Click += DebugViewClick;
|
|
OptionsMenuItem.Click += OptionsMenuItemClick;
|
|
|
|
// User Area Click
|
|
CopyProtectScanButton.Click += CopyProtectScanButtonClick;
|
|
EnableParametersCheckBox.Click += EnableParametersCheckBoxClick;
|
|
MediaScanButton.Click += MediaScanButtonClick;
|
|
UpdateVolumeLabel.Click += UpdateVolumeLabelClick;
|
|
OutputPathBrowseButton.Click += OutputPathBrowseButtonClick;
|
|
StartStopButton.Click += StartStopButtonClick;
|
|
|
|
// User Area SelectionChanged
|
|
SystemTypeComboBox.SelectionChanged += SystemTypeComboBoxSelectionChanged;
|
|
MediaTypeComboBox.SelectionChanged += MediaTypeComboBoxSelectionChanged;
|
|
DriveLetterComboBox.SelectionChanged += DriveLetterComboBoxSelectionChanged;
|
|
DriveSpeedComboBox.SelectionChanged += DriveSpeedComboBoxSelectionChanged;
|
|
DumpingProgramComboBox.SelectionChanged += DumpingProgramComboBoxSelectionChanged;
|
|
|
|
// User Area TextChanged
|
|
OutputPathTextBox.TextChanged += OutputPathTextBoxTextChanged;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Browse for an output file path
|
|
/// </summary>
|
|
public void BrowseFile()
|
|
{
|
|
// Get the current path, if possible
|
|
string currentPath = MainViewModel.OutputPath;
|
|
if (string.IsNullOrWhiteSpace(currentPath))
|
|
currentPath = Path.Combine(MainViewModel.Options.DefaultOutputPath, "track.bin");
|
|
if (string.IsNullOrWhiteSpace(currentPath))
|
|
currentPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "track.bin");
|
|
|
|
// Get the full path
|
|
currentPath = Path.GetFullPath(currentPath);
|
|
|
|
// Get the directory
|
|
string directory = Path.GetDirectoryName(currentPath);
|
|
|
|
// Get the filename
|
|
string filename = Path.GetFileName(currentPath);
|
|
|
|
WinForms.FileDialog fileDialog = new WinForms.SaveFileDialog
|
|
{
|
|
FileName = filename,
|
|
InitialDirectory = directory,
|
|
};
|
|
WinForms.DialogResult result = fileDialog.ShowDialog();
|
|
|
|
if (result == WinForms.DialogResult.OK)
|
|
{
|
|
MainViewModel.OutputPath = fileDialog.FileName;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Build a dummy SubmissionInfo and display it for testing
|
|
/// </summary>
|
|
public void ShowDebugDiscInfoWindow()
|
|
{
|
|
var submissionInfo = MainViewModel.CreateDebugSubmissionInfo();
|
|
var result = ShowDiscInformationWindow(submissionInfo);
|
|
InfoTool.ProcessSpecialFields(result.Item2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show the disc information window
|
|
/// </summary>
|
|
/// <param name="submissionInfo">SubmissionInfo object to display and possibly change</param>
|
|
/// <returns>Dialog open result</returns>
|
|
public (bool?, SubmissionInfo) ShowDiscInformationWindow(SubmissionInfo submissionInfo)
|
|
{
|
|
if (MainViewModel.Options.ShowDiscEjectReminder)
|
|
CustomMessageBox.Show("It is now safe to eject the disc", "Eject", MessageBoxButton.OK, MessageBoxImage.Information);
|
|
|
|
var discInformationWindow = new DiscInformationWindow(MainViewModel.Options, submissionInfo)
|
|
{
|
|
Focusable = true,
|
|
Owner = this,
|
|
ShowActivated = true,
|
|
ShowInTaskbar = true,
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner,
|
|
};
|
|
bool? result = discInformationWindow.ShowDialog();
|
|
|
|
// Copy back the submission info changes, if necessary
|
|
if (result == true)
|
|
submissionInfo = discInformationWindow.DiscInformationViewModel.SubmissionInfo.Clone() as SubmissionInfo;
|
|
|
|
return (result, submissionInfo);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show the Options window
|
|
/// </summary>
|
|
public void ShowOptionsWindow()
|
|
{
|
|
var optionsWindow = new OptionsWindow(MainViewModel.Options)
|
|
{
|
|
Focusable = true,
|
|
Owner = this,
|
|
ShowActivated = true,
|
|
ShowInTaskbar = true,
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner,
|
|
};
|
|
optionsWindow.Closed += OnOptionsUpdated;
|
|
optionsWindow.Show();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Event Handlers
|
|
|
|
/// <summary>
|
|
/// Handler for OptionsWindow OnUpdated event
|
|
/// </summary>
|
|
public void OnOptionsUpdated(object sender, EventArgs e)
|
|
{
|
|
bool savedSettings = (sender as OptionsWindow)?.OptionsViewModel?.SavedSettings ?? false;
|
|
var options = (sender as OptionsWindow).OptionsViewModel.Options;
|
|
MainViewModel.UpdateOptions(savedSettings, options);
|
|
}
|
|
|
|
#region Menu Bar
|
|
|
|
/// <summary>
|
|
/// Handler for AboutMenuItem Click event
|
|
/// </summary>
|
|
public void AboutClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.ShowAboutText();
|
|
|
|
/// <summary>
|
|
/// Handler for AppExitMenuItem Click event
|
|
/// </summary>
|
|
public void AppExitClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.ExitApplication();
|
|
|
|
/// <summary>
|
|
/// Handler for CheckForUpdatesMenuItem Click event
|
|
/// </summary>
|
|
public void CheckForUpdatesClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.CheckForUpdates(showIfSame: true);
|
|
|
|
/// <summary>
|
|
/// Handler for DebugViewMenuItem Click event
|
|
/// </summary>
|
|
public void DebugViewClick(object sender, RoutedEventArgs e) =>
|
|
ShowDebugDiscInfoWindow();
|
|
|
|
/// <summary>
|
|
/// Handler for OptionsMenuItem Click event
|
|
/// </summary>
|
|
public void OptionsMenuItemClick(object sender, RoutedEventArgs e) =>
|
|
ShowOptionsWindow();
|
|
|
|
#endregion
|
|
|
|
#region User Area
|
|
|
|
/// <summary>
|
|
/// Handler for CopyProtectScanButton Click event
|
|
/// </summary>
|
|
public void CopyProtectScanButtonClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.ScanAndShowProtection();
|
|
|
|
/// <summary>
|
|
/// Handler for DriveLetterComboBox SelectionChanged event
|
|
/// </summary>
|
|
public void DriveLetterComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.InitializeUIValues(removeEventHandlers: true, rescanDrives: false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for DriveSpeedComboBox SelectionChanged event
|
|
/// </summary>
|
|
public void DriveSpeedComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.EnsureDiscInformation();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for DumpingProgramComboBox SelectionChanged event
|
|
/// </summary>
|
|
public void DumpingProgramComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.ChangeDumpingProgram();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for EnableParametersCheckBox Click event
|
|
/// </summary>
|
|
public void EnableParametersCheckBoxClick(object sender, RoutedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.ToggleParameters();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for MediaScanButton Click event
|
|
/// </summary>
|
|
public void MediaScanButtonClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.InitializeUIValues(removeEventHandlers: true, rescanDrives: true);
|
|
|
|
/// <summary>
|
|
/// Handler for MediaTypeComboBox SelectionChanged event
|
|
/// </summary>
|
|
public void MediaTypeComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.ChangeMediaType(e);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for OutputPathBrowseButton Click event
|
|
/// </summary>
|
|
public void OutputPathBrowseButtonClick(object sender, RoutedEventArgs e)
|
|
{
|
|
BrowseFile();
|
|
MainViewModel.EnsureDiscInformation();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for OutputPathTextBox TextChanged event
|
|
/// </summary>
|
|
public void OutputPathTextBoxTextChanged(object sender, TextChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.EnsureDiscInformation();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for StartStopButton Click event
|
|
/// </summary>
|
|
public void StartStopButtonClick(object sender, RoutedEventArgs e) =>
|
|
MainViewModel.ToggleStartStop();
|
|
|
|
/// <summary>
|
|
/// Handler for SystemTypeComboBox SelectionChanged event
|
|
/// </summary>
|
|
public void SystemTypeComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
MainViewModel.ChangeSystem();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for UpdateVolumeLabel Click event
|
|
/// </summary>
|
|
public void UpdateVolumeLabelClick(object sender, RoutedEventArgs e)
|
|
{
|
|
if (MainViewModel.CanExecuteSelectionChanged)
|
|
{
|
|
if (MainViewModel.Options.FastUpdateLabel)
|
|
MainViewModel.FastUpdateLabel(removeEventHandlers: true);
|
|
else
|
|
MainViewModel.InitializeUIValues(removeEventHandlers: true, rescanDrives: false);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion // Event Handlers
|
|
}
|
|
}
|