Tastudio.MenuItems - cleanup, fix potential NRE's surrounding clipboard access, fix off by one on clear menu item invalidation logic, fix not dispointing of a disposable dialog
This commit is contained in:
parent
1f4a2274d3
commit
5bbdf2a49e
|
@ -130,7 +130,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (result == DialogResult.Yes)
|
||||
{
|
||||
_exiting = true; // Asking to save changes should only ever be called when closing something
|
||||
SaveTas(null, null);
|
||||
SaveTas();
|
||||
}
|
||||
else if (result == DialogResult.No)
|
||||
{
|
||||
|
|
|
@ -95,7 +95,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private bool _exiting;
|
||||
|
||||
private void SaveTas(object sender, EventArgs e)
|
||||
private void SaveTas()
|
||||
{
|
||||
if (string.IsNullOrEmpty(CurrentTasMovie.Filename)
|
||||
|| CurrentTasMovie.Filename == DefaultTasProjName())
|
||||
|
@ -125,7 +125,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
// call this one from the menu only
|
||||
private void SaveTasMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
SaveTas(sender, e);
|
||||
SaveTas();
|
||||
if (Settings.BackupPerFileSave)
|
||||
{
|
||||
SaveBackupMenuItem_Click(sender, e);
|
||||
|
@ -228,18 +228,21 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void SaveSelectionToMacroMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (TasView.LastSelectedIndex == CurrentTasMovie.InputLogLength)
|
||||
{
|
||||
TasView.SelectRow(CurrentTasMovie.InputLogLength, false);
|
||||
}
|
||||
|
||||
if (!TasView.AnyRowsSelected)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
MovieZone macro = new MovieZone(CurrentTasMovie, TasView.FirstSelectedIndex.Value,
|
||||
TasView.LastSelectedIndex.Value - TasView.FirstSelectedIndex.Value + 1);
|
||||
if (TasView.LastSelectedIndex == CurrentTasMovie.InputLogLength)
|
||||
{
|
||||
TasView.SelectRow(CurrentTasMovie.InputLogLength, false);
|
||||
}
|
||||
|
||||
var macro = new MovieZone(
|
||||
CurrentTasMovie,
|
||||
TasView.FirstSelectedIndex ?? 0,
|
||||
TasView.LastSelectedIndex ?? 0 - TasView.FirstSelectedIndex ?? 0 + 1);
|
||||
|
||||
MacroInputTool.SaveMacroAs(macro);
|
||||
}
|
||||
|
||||
|
@ -250,10 +253,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
return;
|
||||
}
|
||||
|
||||
MovieZone macro = MacroInputTool.LoadMacro();
|
||||
var macro = MacroInputTool.LoadMacro();
|
||||
if (macro != null)
|
||||
{
|
||||
macro.Start = TasView.FirstSelectedIndex.Value;
|
||||
macro.Start = TasView.FirstSelectedIndex ?? 0;
|
||||
macro.PlaceZone(CurrentTasMovie);
|
||||
}
|
||||
}
|
||||
|
@ -285,7 +288,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
MessageStatusLabel.Text = "Exporting to .bk2...";
|
||||
Cursor = Cursors.WaitCursor;
|
||||
Update();
|
||||
string d_exp = " not exported.";
|
||||
string exportResult = " not exported.";
|
||||
var file = new FileInfo(bk2.Filename);
|
||||
if (file.Exists)
|
||||
{
|
||||
|
@ -301,13 +304,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (result == DialogResult.Yes)
|
||||
{
|
||||
bk2.Save();
|
||||
d_exp = " exported.";
|
||||
exportResult = " exported.";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
bk2.Save();
|
||||
d_exp = " exported.";
|
||||
exportResult = " exported.";
|
||||
}
|
||||
|
||||
if (Settings.AutosaveInterval > 0)
|
||||
|
@ -315,7 +318,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
_autosaveTimer.Start();
|
||||
}
|
||||
|
||||
MessageStatusLabel.Text = bk2.Name + d_exp;
|
||||
MessageStatusLabel.Text = bk2.Name + exportResult;
|
||||
Cursor = Cursors.Default;
|
||||
}
|
||||
|
||||
|
@ -345,7 +348,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
ReselectClipboardMenuItem.Enabled =
|
||||
PasteMenuItem.Enabled =
|
||||
PasteInsertMenuItem.Enabled = TasView.AnyRowsSelected
|
||||
&& Clipboard.GetDataObject().GetDataPresent(DataFormats.StringFormat);
|
||||
&& (Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false);
|
||||
|
||||
ClearGreenzoneMenuItem.Enabled =
|
||||
CurrentTasMovie != null && CurrentTasMovie.TasStateManager.Any();
|
||||
|
@ -435,8 +438,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(TasView.LastSelectedIndex.Value);
|
||||
var nextMarker = CurrentTasMovie.Markers.Next(TasView.LastSelectedIndex.Value);
|
||||
var prevMarker = CurrentTasMovie.Markers.PreviousOrCurrent(TasView.LastSelectedIndex ?? 0);
|
||||
var nextMarker = CurrentTasMovie.Markers.Next(TasView.LastSelectedIndex ?? 0);
|
||||
|
||||
int prev = prevMarker?.Frame ?? 0;
|
||||
int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength;
|
||||
|
@ -499,7 +502,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
// TODO: copy paste from PasteInsertMenuItem_Click!
|
||||
IDataObject data = Clipboard.GetDataObject();
|
||||
if (data.GetDataPresent(DataFormats.StringFormat))
|
||||
if (data != null && data.GetDataPresent(DataFormats.StringFormat))
|
||||
{
|
||||
string input = (string)data.GetData(DataFormats.StringFormat);
|
||||
if (!string.IsNullOrWhiteSpace(input))
|
||||
|
@ -520,7 +523,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
CurrentTasMovie.CopyOverInput(TasView.FirstSelectedIndex.Value, _tasClipboard.Select(x => x.ControllerState));
|
||||
CurrentTasMovie.CopyOverInput(TasView.FirstSelectedIndex ?? 0, _tasClipboard.Select(x => x.ControllerState));
|
||||
if (needsToRollback)
|
||||
{
|
||||
GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value);
|
||||
|
@ -542,7 +545,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
// copy paste from PasteMenuItem_Click!
|
||||
IDataObject data = Clipboard.GetDataObject();
|
||||
if (data.GetDataPresent(DataFormats.StringFormat))
|
||||
if (data != null && data.GetDataPresent(DataFormats.StringFormat))
|
||||
{
|
||||
string input = (string)data.GetData(DataFormats.StringFormat);
|
||||
if (!string.IsNullOrWhiteSpace(input))
|
||||
|
@ -565,7 +568,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
CurrentTasMovie.InsertInput(TasView.FirstSelectedIndex.Value, _tasClipboard.Select(x => x.ControllerState));
|
||||
CurrentTasMovie.InsertInput(TasView.FirstSelectedIndex ?? 0, _tasClipboard.Select(x => x.ControllerState));
|
||||
if (needsToRollback)
|
||||
{
|
||||
GoToLastEmulatedFrameIfNecessary(TasView.FirstSelectedIndex.Value);
|
||||
|
@ -586,7 +589,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
var rollBackFrame = TasView.FirstSelectedIndex.Value;
|
||||
var rollBackFrame = TasView.FirstSelectedIndex ?? 0;
|
||||
|
||||
_tasClipboard.Clear();
|
||||
var list = TasView.SelectedRows.ToArray();
|
||||
|
@ -626,9 +629,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
bool wasPaused = Mainform.EmulatorPaused;
|
||||
bool needsToRollback = !(TasView.FirstSelectedIndex > Emulator.Frame);
|
||||
int rollBackFrame = TasView.FirstSelectedIndex.Value;
|
||||
bool needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
int rollBackFrame = TasView.FirstSelectedIndex ?? 0;
|
||||
|
||||
CurrentTasMovie.ChangeLog.BeginNewBatch($"Clear frames {TasView.SelectedRows.Min()}-{TasView.SelectedRows.Max()}");
|
||||
foreach (int frame in TasView.SelectedRows)
|
||||
|
@ -655,7 +657,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
var rollBackFrame = TasView.FirstSelectedIndex.Value;
|
||||
var rollBackFrame = TasView.FirstSelectedIndex ?? 0;
|
||||
if (rollBackFrame >= CurrentTasMovie.InputLogLength)
|
||||
{
|
||||
// Cannot delete non-existent frames
|
||||
|
@ -682,9 +684,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var wasPaused = Mainform.EmulatorPaused;
|
||||
var framesToInsert = TasView.SelectedRows;
|
||||
var insertionFrame = Math.Min(TasView.LastSelectedIndex.Value + 1, CurrentTasMovie.InputLogLength);
|
||||
var insertionFrame = Math.Min(TasView.LastSelectedIndex ?? 0 + 1, CurrentTasMovie.InputLogLength);
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
|
||||
var inputLog = framesToInsert
|
||||
|
@ -708,8 +709,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var wasPaused = Mainform.EmulatorPaused;
|
||||
var insertionFrame = TasView.AnyRowsSelected ? TasView.FirstSelectedIndex.Value : 0;
|
||||
var insertionFrame = TasView.FirstSelectedIndex ?? 0;
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
|
||||
CurrentTasMovie.InsertEmptyFrame(insertionFrame);
|
||||
|
@ -730,8 +730,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
int insertionFrame = TasView.FirstSelectedIndex.Value;
|
||||
var framesPrompt = new FramesPrompt();
|
||||
int insertionFrame = TasView.FirstSelectedIndex ?? 0;
|
||||
using var framesPrompt = new FramesPrompt();
|
||||
DialogResult result = framesPrompt.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
@ -744,7 +744,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
if (TasView.AnyRowsSelected)
|
||||
{
|
||||
var rollbackFrame = TasView.LastSelectedIndex.Value;
|
||||
var rollbackFrame = TasView.LastSelectedIndex ?? 0;
|
||||
var needsToRollback = TasView.FirstSelectedIndex < Emulator.Frame;
|
||||
|
||||
CurrentTasMovie.Truncate(rollbackFrame);
|
||||
|
@ -853,13 +853,12 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void SetMaxUndoLevelsMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (var prompt = new InputPrompt
|
||||
using var prompt = new InputPrompt
|
||||
{
|
||||
TextInputType = InputPrompt.InputType.Unsigned,
|
||||
Message = "Number of Undo Levels to keep",
|
||||
InitialValue = CurrentTasMovie.ChangeLog.MaxSteps.ToString()
|
||||
})
|
||||
{
|
||||
};
|
||||
DialogResult result = prompt.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
@ -879,17 +878,15 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetBranchCellHoverIntervalMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (var prompt = new InputPrompt
|
||||
using var prompt = new InputPrompt
|
||||
{
|
||||
TextInputType = InputPrompt.InputType.Unsigned,
|
||||
Message = "ScreenshotPopUp Delay",
|
||||
InitialValue = Settings.BranchCellHoverInterval.ToString()
|
||||
})
|
||||
{
|
||||
};
|
||||
DialogResult result = prompt.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
@ -901,17 +898,15 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetSeekingCutoffIntervalMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (var prompt = new InputPrompt
|
||||
using var prompt = new InputPrompt
|
||||
{
|
||||
TextInputType = InputPrompt.InputType.Unsigned,
|
||||
Message = "Seeking Cutoff Interval",
|
||||
InitialValue = Settings.SeekingCutoffInterval.ToString()
|
||||
})
|
||||
{
|
||||
};
|
||||
DialogResult result = prompt.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
@ -923,17 +918,15 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void SetAutosaveIntervalMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (var prompt = new InputPrompt
|
||||
using var prompt = new InputPrompt
|
||||
{
|
||||
TextInputType = InputPrompt.InputType.Unsigned,
|
||||
Message = "Autosave Interval in seconds\nSet to 0 to disable",
|
||||
InitialValue = (Settings.AutosaveInterval / 1000).ToString()
|
||||
})
|
||||
{
|
||||
};
|
||||
DialogResult result = prompt.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
|
@ -946,7 +939,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void AutosaveAsBk2MenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -1400,6 +1392,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
TasView.AllColumns.ColumnsChanged();
|
||||
}
|
||||
|
||||
// ReSharper disable once UnusedMember.Local
|
||||
[RestoreDefaults]
|
||||
private void RestoreDefaults()
|
||||
{
|
||||
|
@ -1432,7 +1425,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
pasteToolStripMenuItem.Enabled =
|
||||
pasteInsertToolStripMenuItem.Enabled =
|
||||
Clipboard.GetDataObject().GetDataPresent(DataFormats.StringFormat) && TasView.AnyRowsSelected;
|
||||
(Clipboard.GetDataObject()?.GetDataPresent(DataFormats.StringFormat) ?? false)
|
||||
&& TasView.AnyRowsSelected;
|
||||
|
||||
StartNewProjectFromNowMenuItem.Visible =
|
||||
TasView.SelectedRows.Count() == 1
|
||||
|
|
|
@ -179,7 +179,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else
|
||||
{
|
||||
SaveTas(sender, e);
|
||||
SaveTas();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -202,6 +202,7 @@
|
|||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Dega/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=delaminated/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Dendy/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=desync/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Dipswitch/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Disasm/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Disassemblable/@EntryIndexedValue">True</s:Boolean>
|
||||
|
|
Loading…
Reference in New Issue