2022-06-28 02:59:36 +00:00
|
|
|
using System;
|
2016-12-30 02:11:51 +00:00
|
|
|
using System.Collections.Concurrent;
|
2015-10-06 01:51:52 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
2015-12-20 00:29:44 +00:00
|
|
|
using System.Drawing;
|
2015-10-06 01:51:52 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2016-12-29 23:24:02 +00:00
|
|
|
using System.Threading.Tasks;
|
2015-10-06 01:51:52 +00:00
|
|
|
using System.Windows.Forms;
|
2017-01-08 07:54:09 +00:00
|
|
|
using PKHeX.Core;
|
2018-08-17 03:06:40 +00:00
|
|
|
using PKHeX.Core.Searching;
|
2021-11-27 23:48:08 +00:00
|
|
|
using PKHeX.Drawing.PokeSprite;
|
2017-05-23 04:55:05 +00:00
|
|
|
using PKHeX.WinForms.Controls;
|
2019-08-15 05:51:49 +00:00
|
|
|
using PKHeX.WinForms.Properties;
|
2018-04-07 04:23:09 +00:00
|
|
|
using static PKHeX.Core.MessageStrings;
|
2015-10-06 01:51:52 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.WinForms;
|
2018-05-12 15:13:39 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public partial class SAV_Database : Form
|
|
|
|
{
|
|
|
|
private readonly SaveFile SAV;
|
|
|
|
private readonly SAVEditor BoxView;
|
|
|
|
private readonly PKMEditor PKME_Tabs;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public SAV_Database(PKMEditor f1, SAVEditor saveditor)
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
2022-08-20 17:43:04 +00:00
|
|
|
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
|
2022-06-28 02:59:36 +00:00
|
|
|
var UC_Builder = new EntityInstructionBuilder(() => f1.PreparePKM())
|
|
|
|
{
|
|
|
|
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right,
|
|
|
|
Width = Tab_Advanced.Width,
|
|
|
|
Dock = DockStyle.Top,
|
|
|
|
ReadOnly = true,
|
|
|
|
};
|
|
|
|
Tab_Advanced.Controls.Add(UC_Builder);
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
SAV = saveditor.SAV;
|
|
|
|
BoxView = saveditor;
|
|
|
|
PKME_Tabs = f1;
|
|
|
|
|
|
|
|
// Preset Filters to only show PKM available for loaded save
|
|
|
|
CB_FormatComparator.SelectedIndex = 3; // <=
|
|
|
|
|
|
|
|
var grid = DatabasePokeGrid;
|
|
|
|
var smallWidth = grid.Width;
|
|
|
|
var smallHeight = grid.Height;
|
|
|
|
grid.InitializeGrid(6, 11, SpriteUtil.Spriter);
|
|
|
|
grid.SetBackground(Resources.box_wp_clean);
|
|
|
|
var newWidth = grid.Width;
|
|
|
|
var newHeight = grid.Height;
|
|
|
|
var wdelta = newWidth - smallWidth;
|
|
|
|
if (wdelta != 0)
|
|
|
|
Width += wdelta;
|
|
|
|
var hdelta = newHeight - smallHeight;
|
|
|
|
if (hdelta != 0)
|
|
|
|
Height += hdelta;
|
|
|
|
PKXBOXES = grid.Entries.ToArray();
|
|
|
|
|
|
|
|
// Enable Scrolling when hovered over
|
|
|
|
foreach (var slot in PKXBOXES)
|
|
|
|
{
|
|
|
|
// Enable Click
|
|
|
|
slot.MouseClick += (sender, e) =>
|
2020-11-28 22:53:32 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (sender == null)
|
2020-11-28 22:53:32 +00:00
|
|
|
return;
|
2022-06-18 18:04:24 +00:00
|
|
|
switch (ModifierKeys)
|
|
|
|
{
|
|
|
|
case Keys.Control: ClickView(sender, e); break;
|
|
|
|
case Keys.Alt: ClickDelete(sender, e); break;
|
|
|
|
case Keys.Shift: ClickSet(sender, e); break;
|
|
|
|
}
|
2016-03-23 03:14:11 +00:00
|
|
|
};
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
slot.ContextMenuStrip = mnu;
|
|
|
|
if (Main.Settings.Hover.HoverSlotShowText)
|
|
|
|
slot.MouseEnter += (o, args) => ShowHoverTextForSlot(slot, args);
|
2015-10-06 01:51:52 +00:00
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Counter = L_Count.Text;
|
|
|
|
Viewed = L_Viewed.Text;
|
|
|
|
L_Viewed.Text = string.Empty; // invisible for now
|
|
|
|
PopulateComboBoxes();
|
|
|
|
|
|
|
|
// Load Data
|
|
|
|
B_Search.Enabled = false;
|
|
|
|
L_Count.Text = "Loading...";
|
|
|
|
var task = new Task(LoadDatabase);
|
|
|
|
task.ContinueWith(z =>
|
2015-10-06 01:51:52 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (!z.IsFaulted)
|
2017-04-19 10:15:50 +00:00
|
|
|
return;
|
2022-06-18 18:04:24 +00:00
|
|
|
Invoke((MethodInvoker)(() => L_Count.Text = "Failed."));
|
|
|
|
if (z.Exception == null)
|
|
|
|
return;
|
|
|
|
WinFormsUtil.Error("Loading database failed.", z.Exception.InnerException ?? new Exception(z.Exception.Message));
|
|
|
|
});
|
|
|
|
task.Start();
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Menu_SearchSettings.DropDown.Closing += (sender, e) =>
|
2015-11-15 02:17:54 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (e.CloseReason == ToolStripDropDownCloseReason.ItemClicked)
|
|
|
|
e.Cancel = true;
|
|
|
|
};
|
|
|
|
CB_Format.Items[0] = MsgAny;
|
|
|
|
CenterToParent();
|
|
|
|
}
|
2017-04-19 10:15:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private readonly PictureBox[] PKXBOXES;
|
|
|
|
private readonly string DatabasePath = Main.DatabasePath;
|
|
|
|
private List<SlotCache> Results = new();
|
|
|
|
private List<SlotCache> RawDB = new();
|
|
|
|
private int slotSelected = -1; // = null;
|
|
|
|
private Image? slotColor;
|
|
|
|
private const int RES_MAX = 66;
|
|
|
|
private const int RES_MIN = 6;
|
|
|
|
private readonly string Counter;
|
|
|
|
private readonly string Viewed;
|
|
|
|
private const int MAXFORMAT = PKX.Generation;
|
|
|
|
private readonly SummaryPreviewer ShowSet = new();
|
|
|
|
|
|
|
|
private void ClickView(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
var pb = WinFormsUtil.GetUnderlyingControl<PictureBox>(sender);
|
|
|
|
int index = Array.IndexOf(PKXBOXES, pb);
|
|
|
|
if (!GetShiftedIndex(ref index))
|
|
|
|
{
|
|
|
|
System.Media.SystemSounds.Exclamation.Play();
|
|
|
|
return;
|
|
|
|
}
|
2017-04-19 10:15:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (sender == mnu)
|
|
|
|
mnu.Hide();
|
2015-11-15 02:17:54 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
slotSelected = index;
|
|
|
|
slotColor = SpriteUtil.Spriter.View;
|
|
|
|
FillPKXBoxes(SCR_Box.Value);
|
|
|
|
L_Viewed.Text = string.Format(Viewed, Results[index].Identify());
|
|
|
|
PKME_Tabs.PopulateFields(Results[index].Entity, false);
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ClickDelete(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
var pb = WinFormsUtil.GetUnderlyingControl<PictureBox>(sender);
|
|
|
|
int index = Array.IndexOf(PKXBOXES, pb);
|
|
|
|
if (!GetShiftedIndex(ref index))
|
2015-11-15 03:41:39 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
System.Media.SystemSounds.Exclamation.Play();
|
|
|
|
return;
|
|
|
|
}
|
2015-11-15 03:41:39 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var entry = Results[index];
|
|
|
|
var pk = entry.Entity;
|
2015-11-15 03:41:39 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (entry.Source is SlotInfoFile f)
|
|
|
|
{
|
|
|
|
// Data from Database: Delete file from disk
|
|
|
|
var path = f.Path;
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
if (File.Exists(path))
|
2022-06-18 18:04:24 +00:00
|
|
|
File.Delete(path);
|
|
|
|
}
|
|
|
|
else if (entry.Source is SlotInfoBox(var box, var slot) && entry.SAV == SAV)
|
|
|
|
{
|
|
|
|
// Data from Box: Delete from save file
|
|
|
|
var change = new SlotInfoBox(box, slot);
|
|
|
|
var pkSAV = change.Read(SAV);
|
|
|
|
|
|
|
|
if (!pkSAV.DecryptedBoxData.SequenceEqual(pk.DecryptedBoxData)) // data still exists in SAV, unmodified
|
2015-11-15 03:41:39 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
WinFormsUtil.Error(MsgDBDeleteFailModified, MsgDBDeleteFailWarning);
|
2015-11-15 03:41:39 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
BoxView.EditEnv.Slots.Delete(change);
|
2015-11-15 03:41:39 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
else
|
2019-08-15 05:51:49 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
WinFormsUtil.Error(MsgDBDeleteFailBackup, MsgDBDeleteFailWarning);
|
|
|
|
return;
|
2019-08-15 05:51:49 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
// Remove from database.
|
|
|
|
RawDB.Remove(entry);
|
|
|
|
Results.Remove(entry);
|
|
|
|
// Refresh database view.
|
|
|
|
L_Count.Text = string.Format(Counter, Results.Count);
|
|
|
|
slotSelected = -1;
|
|
|
|
FillPKXBoxes(SCR_Box.Value);
|
|
|
|
System.Media.SystemSounds.Asterisk.Play();
|
|
|
|
}
|
2019-08-15 05:51:49 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ClickSet(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
// Don't care what slot was clicked, just add it to the database
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
|
|
|
return;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
PKM pk = PKME_Tabs.PreparePKM();
|
|
|
|
Directory.CreateDirectory(DatabasePath);
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
string path = Path.Combine(DatabasePath, Util.CleanFileName(pk.FileName));
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (File.Exists(path))
|
|
|
|
{
|
|
|
|
WinFormsUtil.Alert(MsgDBAddFailExistsFile);
|
|
|
|
return;
|
|
|
|
}
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
File.WriteAllBytes(path, pk.DecryptedBoxData);
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var info = new SlotInfoFile(path);
|
|
|
|
var entry = new SlotCache(info, pk);
|
|
|
|
Results.Add(entry);
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Refresh database view.
|
|
|
|
L_Count.Text = string.Format(Counter, Results.Count);
|
|
|
|
slotSelected = Results.Count - 1;
|
|
|
|
slotColor = SpriteUtil.Spriter.Set;
|
|
|
|
if ((SCR_Box.Maximum + 1) * 6 < Results.Count)
|
|
|
|
SCR_Box.Maximum++;
|
|
|
|
SCR_Box.Value = Math.Max(0, SCR_Box.Maximum - (PKXBOXES.Length / 6) + 1);
|
|
|
|
FillPKXBoxes(SCR_Box.Value);
|
|
|
|
WinFormsUtil.Alert(MsgDBAddFromTabsSuccess);
|
|
|
|
}
|
2018-05-12 15:13:39 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private bool GetShiftedIndex(ref int index)
|
|
|
|
{
|
|
|
|
if ((uint)index >= RES_MAX)
|
|
|
|
return false;
|
|
|
|
index += SCR_Box.Value * RES_MIN;
|
|
|
|
return index < Results.Count;
|
|
|
|
}
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void PopulateComboBoxes()
|
|
|
|
{
|
|
|
|
// Set the Text
|
|
|
|
CB_HeldItem.InitializeBinding();
|
|
|
|
CB_Species.InitializeBinding();
|
|
|
|
CB_Ability.InitializeBinding();
|
|
|
|
CB_Nature.InitializeBinding();
|
|
|
|
CB_GameOrigin.InitializeBinding();
|
|
|
|
CB_HPType.InitializeBinding();
|
|
|
|
|
|
|
|
var comboAny = new ComboItem(MsgAny, -1);
|
|
|
|
|
|
|
|
var species = new List<ComboItem>(GameInfo.SpeciesDataSource);
|
|
|
|
species.RemoveAt(0);
|
|
|
|
species.Insert(0, comboAny);
|
|
|
|
CB_Species.DataSource = species;
|
|
|
|
|
|
|
|
var items = new List<ComboItem>(GameInfo.ItemDataSource);
|
|
|
|
items.Insert(0, comboAny);
|
|
|
|
CB_HeldItem.DataSource = items;
|
|
|
|
|
|
|
|
var natures = new List<ComboItem>(GameInfo.NatureDataSource);
|
|
|
|
natures.Insert(0, comboAny);
|
|
|
|
CB_Nature.DataSource = natures;
|
|
|
|
|
|
|
|
var abilities = new List<ComboItem>(GameInfo.AbilityDataSource);
|
|
|
|
abilities.Insert(0, comboAny);
|
|
|
|
CB_Ability.DataSource = abilities;
|
|
|
|
|
|
|
|
var versions = new List<ComboItem>(GameInfo.VersionDataSource);
|
|
|
|
versions.Insert(0, comboAny);
|
|
|
|
CB_GameOrigin.DataSource = versions;
|
|
|
|
|
|
|
|
string[] hptypes = new string[GameInfo.Strings.types.Length - 2];
|
|
|
|
Array.Copy(GameInfo.Strings.types, 1, hptypes, 0, hptypes.Length);
|
|
|
|
var types = Util.GetCBList(hptypes);
|
|
|
|
types.Insert(0, comboAny);
|
|
|
|
CB_HPType.DataSource = types;
|
|
|
|
|
|
|
|
// Set the Move ComboBoxes too..
|
|
|
|
var moves = new List<ComboItem>(GameInfo.MoveDataSource);
|
|
|
|
moves.RemoveAt(0);
|
|
|
|
moves.Insert(0, comboAny);
|
|
|
|
{
|
|
|
|
foreach (ComboBox cb in new[] { CB_Move1, CB_Move2, CB_Move3, CB_Move4 })
|
2015-10-08 03:19:34 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
cb.InitializeBinding();
|
|
|
|
cb.DataSource = new BindingSource(moves, null);
|
2015-10-08 03:19:34 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Trigger a Reset
|
|
|
|
ResetFilters(this, EventArgs.Empty);
|
|
|
|
}
|
2015-10-06 01:51:52 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ResetFilters(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
CHK_Shiny.Checked = CHK_IsEgg.Checked = true;
|
|
|
|
CHK_Shiny.CheckState = CHK_IsEgg.CheckState = CheckState.Indeterminate;
|
|
|
|
MT_ESV.Text = string.Empty;
|
|
|
|
CB_HeldItem.SelectedIndex = 0;
|
|
|
|
CB_Species.SelectedIndex = 0;
|
|
|
|
CB_Ability.SelectedIndex = 0;
|
|
|
|
CB_Nature.SelectedIndex = 0;
|
|
|
|
CB_HPType.SelectedIndex = 0;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
CB_Level.SelectedIndex = 0;
|
|
|
|
TB_Level.Text = string.Empty;
|
|
|
|
CB_EVTrain.SelectedIndex = 0;
|
|
|
|
CB_IV.SelectedIndex = 0;
|
2015-10-12 07:12:21 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
CB_Move1.SelectedIndex = CB_Move2.SelectedIndex = CB_Move3.SelectedIndex = CB_Move4.SelectedIndex = 0;
|
2016-01-18 01:11:32 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
CB_GameOrigin.SelectedIndex = 0;
|
|
|
|
CB_Generation.SelectedIndex = 0;
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
MT_ESV.Visible = L_ESV.Visible = false;
|
|
|
|
RTB_Instructions.Clear();
|
2015-10-11 01:29:02 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (sender != this)
|
|
|
|
System.Media.SystemSounds.Asterisk.Play();
|
|
|
|
}
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void GenerateDBReport(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgDBCreateReportPrompt, MsgDBCreateReportWarning) != DialogResult.Yes)
|
|
|
|
return;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (this.OpenWindowExists<ReportGrid>())
|
|
|
|
return;
|
2022-02-05 17:49:47 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
ReportGrid reportGrid = new();
|
|
|
|
reportGrid.Show();
|
|
|
|
reportGrid.PopulateData(Results);
|
|
|
|
}
|
|
|
|
|
|
|
|
private sealed class SearchFolderDetail
|
|
|
|
{
|
|
|
|
public string Path { get; }
|
|
|
|
public bool IgnoreBackupFiles { get; }
|
2022-02-05 17:49:47 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
public SearchFolderDetail(string path, bool ignoreBackupFiles)
|
2018-08-04 17:06:06 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
Path = path;
|
|
|
|
IgnoreBackupFiles = ignoreBackupFiles;
|
|
|
|
}
|
|
|
|
}
|
2021-06-02 17:52:20 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void LoadDatabase()
|
|
|
|
{
|
|
|
|
var settings = Main.Settings;
|
|
|
|
var otherPaths = new List<SearchFolderDetail>();
|
|
|
|
if (settings.EntityDb.SearchExtraSaves)
|
|
|
|
otherPaths.AddRange(settings.Backup.OtherBackupPaths.Where(Directory.Exists).Select(z => new SearchFolderDetail(z, true)));
|
|
|
|
if (settings.EntityDb.SearchBackups)
|
|
|
|
otherPaths.Add(new SearchFolderDetail(Main.BackupPath, false));
|
2018-08-04 17:06:06 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
RawDB = LoadPKMSaves(DatabasePath, SAV, otherPaths, settings.EntityDb.SearchExtraSavesDeep);
|
2018-08-04 17:06:06 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Load stats for pk who do not have any
|
|
|
|
foreach (var entry in RawDB)
|
|
|
|
{
|
|
|
|
var pk = entry.Entity;
|
|
|
|
pk.ForcePartyData();
|
2018-08-04 17:06:06 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
try
|
2017-09-05 05:22:02 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
while (!IsHandleCreated) { }
|
|
|
|
BeginInvoke(new MethodInvoker(() => SetResults(RawDB)));
|
|
|
|
}
|
|
|
|
catch { /* Window Closed? */ }
|
|
|
|
}
|
2017-09-05 05:22:02 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private static List<SlotCache> LoadPKMSaves(string pkmdb, SaveFile sav, List<SearchFolderDetail> otherPaths, bool otherDeep)
|
|
|
|
{
|
|
|
|
var dbTemp = new ConcurrentBag<SlotCache>();
|
|
|
|
var extensions = new HashSet<string>(PKM.Extensions.Select(z => $".{z}"));
|
2021-02-13 21:04:43 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var files = Directory.EnumerateFiles(pkmdb, "*", SearchOption.AllDirectories);
|
|
|
|
Parallel.ForEach(files, file => SlotInfoLoader.AddFromLocalFile(file, dbTemp, sav, extensions));
|
2019-10-08 01:40:09 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
foreach (var folder in otherPaths)
|
|
|
|
{
|
|
|
|
if (!SaveUtil.GetSavesFromFolder(folder.Path, otherDeep, out IEnumerable<string> paths, folder.IgnoreBackupFiles))
|
|
|
|
continue;
|
2018-01-25 17:17:39 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Parallel.ForEach(paths, file => TryAddPKMsFromSaveFilePath(dbTemp, file));
|
|
|
|
}
|
2019-11-16 23:56:30 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Fetch from save file
|
|
|
|
SlotInfoLoader.AddFromSaveFile(sav, dbTemp);
|
|
|
|
var result = new List<SlotCache>(dbTemp);
|
|
|
|
result.RemoveAll(z => !z.IsDataValid());
|
2021-08-06 17:09:16 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (Main.Settings.EntityDb.FilterUnavailableSpecies)
|
|
|
|
{
|
|
|
|
static bool IsPresentInGameSWSH(ISpeciesForm pk) => pk is PK8 || PersonalTable.SWSH.IsPresentInGame(pk.Species, pk.Form);
|
|
|
|
static bool IsPresentInGameBDSP(ISpeciesForm pk) => pk is PB8 || PersonalTable.BDSP.IsPresentInGame(pk.Species, pk.Form);
|
|
|
|
static bool IsPresentInGamePLA (ISpeciesForm pk) => pk is PA8 || PersonalTable.LA .IsPresentInGame(pk.Species, pk.Form);
|
|
|
|
if (sav is SAV8SWSH)
|
|
|
|
result.RemoveAll(z => !IsPresentInGameSWSH(z.Entity));
|
|
|
|
else if (sav is SAV8BS)
|
|
|
|
result.RemoveAll(z => !IsPresentInGameBDSP(z.Entity));
|
|
|
|
else if (sav is SAV8LA)
|
|
|
|
result.RemoveAll(z => !IsPresentInGamePLA(z.Entity));
|
2019-09-11 05:07:50 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var sort = Main.Settings.EntityDb.InitialSortMode;
|
|
|
|
if (sort is DatabaseSortMode.SlotIdentity)
|
|
|
|
result.Sort();
|
|
|
|
else if (sort is DatabaseSortMode.SpeciesForm)
|
|
|
|
result.Sort((first, second) => first.CompareToSpeciesForm(second));
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Finalize the Database
|
|
|
|
return result;
|
|
|
|
}
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private static void TryAddPKMsFromSaveFilePath(ConcurrentBag<SlotCache> dbTemp, string file)
|
|
|
|
{
|
|
|
|
var sav = SaveUtil.GetVariantSAV(file);
|
|
|
|
if (sav == null)
|
2015-10-06 01:51:52 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
Debug.WriteLine("Unable to load SaveFile: " + file);
|
|
|
|
return;
|
2015-10-06 01:51:52 +00:00
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
SlotInfoLoader.AddFromSaveFile(sav, dbTemp);
|
|
|
|
}
|
2015-10-13 00:12:20 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// IO Usage
|
|
|
|
private void OpenDB(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (Directory.Exists(DatabasePath))
|
|
|
|
Process.Start("explorer.exe", DatabasePath);
|
|
|
|
}
|
2015-10-13 00:12:20 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void Menu_Export_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (Results.Count == 0)
|
|
|
|
{ WinFormsUtil.Alert(MsgDBCreateReportFail); return; }
|
2015-10-13 00:12:20 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgDBExportResultsPrompt))
|
|
|
|
return;
|
2015-10-13 00:12:20 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
using var fbd = new FolderBrowserDialog();
|
|
|
|
if (DialogResult.OK != fbd.ShowDialog())
|
|
|
|
return;
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
string path = fbd.SelectedPath;
|
|
|
|
Directory.CreateDirectory(path);
|
2018-02-02 01:29:07 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
foreach (var pk in Results.Select(z => z.Entity))
|
|
|
|
File.WriteAllBytes(Path.Combine(path, Util.CleanFileName(pk.FileName)), pk.DecryptedPartyData);
|
|
|
|
}
|
2018-02-02 01:29:07 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void Menu_Import_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (!BoxView.GetBulkImportSettings(out var clearAll, out var overwrite, out var noSetb))
|
|
|
|
return;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
int box = BoxView.Box.CurrentBox;
|
|
|
|
int ctr = SAV.LoadBoxes(Results.Select(z => z.Entity), out var result, box, clearAll, overwrite, noSetb);
|
|
|
|
if (ctr <= 0)
|
|
|
|
return;
|
2018-08-17 03:06:40 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
BoxView.SetPKMBoxes();
|
|
|
|
BoxView.UpdateBoxViewers();
|
|
|
|
WinFormsUtil.Alert(result);
|
|
|
|
}
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// View Updates
|
|
|
|
private IEnumerable<SlotCache> SearchDatabase()
|
|
|
|
{
|
|
|
|
var settings = GetSearchSettings();
|
2017-06-11 18:08:03 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
IEnumerable<SlotCache> res = RawDB;
|
|
|
|
|
|
|
|
// pre-filter based on the file path (if specified)
|
|
|
|
if (!Menu_SearchBoxes.Checked)
|
|
|
|
res = res.Where(z => z.SAV != SAV);
|
|
|
|
if (!Menu_SearchDatabase.Checked)
|
|
|
|
res = res.Where(z => !IsIndividualFilePKMDB(z));
|
|
|
|
if (!Menu_SearchBackups.Checked)
|
|
|
|
res = res.Where(z => !IsBackupSaveFile(z));
|
2018-07-15 05:18:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// return filtered results
|
|
|
|
return settings.Search(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
private SearchSettings GetSearchSettings()
|
|
|
|
{
|
|
|
|
var settings = new SearchSettings
|
2018-08-17 03:06:40 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
Format = MAXFORMAT - CB_Format.SelectedIndex + 1, // 0->(n-1) => 1->n
|
|
|
|
SearchFormat = (SearchComparison)CB_FormatComparator.SelectedIndex,
|
|
|
|
Generation = CB_Generation.SelectedIndex,
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Version = WinFormsUtil.GetIndex(CB_GameOrigin),
|
|
|
|
HiddenPowerType = WinFormsUtil.GetIndex(CB_HPType),
|
2016-03-16 04:10:33 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Species = WinFormsUtil.GetIndex(CB_Species),
|
|
|
|
Ability = WinFormsUtil.GetIndex(CB_Ability),
|
|
|
|
Nature = WinFormsUtil.GetIndex(CB_Nature),
|
|
|
|
Item = WinFormsUtil.GetIndex(CB_HeldItem),
|
2016-12-23 21:37:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
BatchInstructions = RTB_Instructions.Lines,
|
2017-09-30 05:58:25 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Level = int.TryParse(TB_Level.Text, out var lvl) ? lvl : null,
|
|
|
|
SearchLevel = (SearchComparison)CB_Level.SelectedIndex,
|
|
|
|
EVType = CB_EVTrain.SelectedIndex,
|
|
|
|
IVType = CB_IV.SelectedIndex,
|
|
|
|
};
|
2018-07-15 05:18:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
settings.AddMove(WinFormsUtil.GetIndex(CB_Move1));
|
|
|
|
settings.AddMove(WinFormsUtil.GetIndex(CB_Move2));
|
|
|
|
settings.AddMove(WinFormsUtil.GetIndex(CB_Move3));
|
|
|
|
settings.AddMove(WinFormsUtil.GetIndex(CB_Move4));
|
2018-07-15 05:18:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (CHK_Shiny.CheckState != CheckState.Indeterminate)
|
|
|
|
settings.SearchShiny = CHK_Shiny.CheckState == CheckState.Checked;
|
2018-07-15 05:18:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (CHK_IsEgg.CheckState != CheckState.Indeterminate)
|
|
|
|
{
|
|
|
|
settings.SearchEgg = CHK_IsEgg.CheckState == CheckState.Checked;
|
|
|
|
if (int.TryParse(MT_ESV.Text, out int esv))
|
|
|
|
settings.ESV = esv;
|
|
|
|
}
|
2018-07-15 05:18:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (Menu_SearchLegal.Checked != Menu_SearchIllegal.Checked)
|
|
|
|
settings.SearchLegal = Menu_SearchLegal.Checked;
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (Menu_SearchClones.Checked)
|
|
|
|
{
|
|
|
|
settings.SearchClones = ModifierKeys switch
|
2017-08-25 01:49:09 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
Keys.Control => CloneDetectionMethod.HashPID,
|
|
|
|
_ => CloneDetectionMethod.HashDetails,
|
|
|
|
};
|
2017-08-25 01:49:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
return settings;
|
|
|
|
}
|
2017-09-20 23:46:40 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private async void B_Search_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
B_Search.Enabled = false;
|
|
|
|
var search = SearchDatabase();
|
2017-09-20 23:46:40 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
bool legalSearch = Menu_SearchLegal.Checked ^ Menu_SearchIllegal.Checked;
|
|
|
|
bool wordFilter = ParseSettings.CheckWordFilter;
|
|
|
|
if (wordFilter && legalSearch && WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgDBSearchLegalityWordfilter) == DialogResult.No)
|
|
|
|
ParseSettings.CheckWordFilter = false;
|
|
|
|
var results = await Task.Run(() => search.ToList()).ConfigureAwait(true);
|
|
|
|
ParseSettings.CheckWordFilter = wordFilter;
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (results.Count == 0)
|
2015-10-08 03:19:34 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
if (!Menu_SearchBoxes.Checked && !Menu_SearchDatabase.Checked && !Menu_SearchBackups.Checked)
|
|
|
|
WinFormsUtil.Alert(MsgDBSearchFail, MsgDBSearchNone);
|
|
|
|
else
|
|
|
|
WinFormsUtil.Alert(MsgDBSearchNone);
|
2015-10-08 03:19:34 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
SetResults(results); // updates Count Label as well.
|
|
|
|
System.Media.SystemSounds.Asterisk.Play();
|
|
|
|
B_Search.Enabled = true;
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void UpdateScroll(object sender, ScrollEventArgs e)
|
|
|
|
{
|
|
|
|
if (e.OldValue != e.NewValue)
|
|
|
|
FillPKXBoxes(e.NewValue);
|
|
|
|
}
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void SetResults(List<SlotCache> res)
|
|
|
|
{
|
|
|
|
Results = res;
|
|
|
|
ShowSet.Clear();
|
2015-10-10 17:28:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
SCR_Box.Maximum = (int)Math.Ceiling((decimal)Results.Count / RES_MIN);
|
|
|
|
if (SCR_Box.Maximum > 0) SCR_Box.Maximum--;
|
2015-10-10 17:28:24 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
slotSelected = -1; // reset the slot last viewed
|
|
|
|
SCR_Box.Value = 0;
|
|
|
|
FillPKXBoxes(0);
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
L_Count.Text = string.Format(Counter, Results.Count);
|
|
|
|
B_Search.Enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void FillPKXBoxes(int start)
|
|
|
|
{
|
|
|
|
if (Results.Count == 0)
|
2015-10-08 03:19:34 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
for (int i = 0; i < RES_MAX; i++)
|
2016-09-04 18:02:27 +00:00
|
|
|
{
|
2015-10-08 03:19:34 +00:00
|
|
|
PKXBOXES[i].Image = null;
|
2022-06-18 18:04:24 +00:00
|
|
|
PKXBOXES[i].BackgroundImage = null;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int begin = start*RES_MIN;
|
|
|
|
int end = Math.Min(RES_MAX, Results.Count - begin);
|
|
|
|
for (int i = 0; i < end; i++)
|
|
|
|
PKXBOXES[i].Image = Results[i + begin].Entity.Sprite(SAV, -1, -1, true);
|
|
|
|
for (int i = end; i < RES_MAX; i++)
|
|
|
|
PKXBOXES[i].Image = null;
|
|
|
|
|
|
|
|
for (int i = 0; i < RES_MAX; i++)
|
|
|
|
PKXBOXES[i].BackgroundImage = SpriteUtil.Spriter.Transparent;
|
|
|
|
if (slotSelected != -1 && slotSelected >= begin && slotSelected < begin + RES_MAX)
|
|
|
|
PKXBOXES[slotSelected - begin].BackgroundImage = slotColor ?? SpriteUtil.Spriter.View;
|
|
|
|
}
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
// Misc Update Methods
|
|
|
|
private void ToggleESV(object sender, EventArgs e) => L_ESV.Visible = MT_ESV.Visible = CHK_IsEgg.CheckState == CheckState.Checked;
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ChangeLevel(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (CB_Level.SelectedIndex == 0)
|
|
|
|
TB_Level.Text = string.Empty;
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ChangeGame(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (CB_GameOrigin.SelectedIndex != 0)
|
|
|
|
CB_Generation.SelectedIndex = 0;
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ChangeGeneration(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (CB_Generation.SelectedIndex != 0)
|
|
|
|
CB_GameOrigin.SelectedIndex = 0;
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void Menu_Exit_Click(object sender, EventArgs e) => Close();
|
2015-10-08 03:19:34 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
protected override void OnMouseWheel(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
if (!DatabasePokeGrid.RectangleToScreen(DatabasePokeGrid.ClientRectangle).Contains(MousePosition))
|
|
|
|
return;
|
|
|
|
int oldval = SCR_Box.Value;
|
|
|
|
int newval = oldval + (e.Delta < 0 ? 1 : -1);
|
|
|
|
if (newval >= SCR_Box.Minimum && SCR_Box.Maximum >= newval)
|
|
|
|
FillPKXBoxes(SCR_Box.Value = newval);
|
|
|
|
}
|
2018-07-22 02:20:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ChangeFormatFilter(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (CB_FormatComparator.SelectedIndex == 0)
|
2016-03-19 02:33:09 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
CB_Format.Visible = false; // !any
|
|
|
|
CB_Format.SelectedIndex = 0;
|
2016-03-19 02:33:09 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
else
|
2016-07-10 17:33:01 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
CB_Format.Visible = true;
|
|
|
|
int index = MAXFORMAT - SAV.Generation + 1;
|
|
|
|
CB_Format.SelectedIndex = index < CB_Format.Items.Count ? index : 0; // SAV generation (offset by 1 for "Any")
|
2016-07-10 17:33:01 +00:00
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
}
|
2016-12-23 22:12:58 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void Menu_DeleteClones_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo,
|
|
|
|
MsgDBDeleteCloneWarning + Environment.NewLine +
|
|
|
|
MsgDBDeleteCloneAdvice, MsgContinue);
|
2016-12-23 22:12:58 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (dr != DialogResult.Yes)
|
|
|
|
return;
|
2018-08-17 03:06:40 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var deleted = 0;
|
|
|
|
var db = RawDB.Where(IsIndividualFilePKMDB)
|
|
|
|
.OrderByDescending(GetRevisedTime);
|
2020-09-19 05:11:13 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
const CloneDetectionMethod method = CloneDetectionMethod.HashDetails;
|
|
|
|
var hasher = SearchUtil.GetCloneDetectMethod(method);
|
|
|
|
var duplicates = SearchUtil.GetExtraClones(db, z => hasher(z.Entity));
|
|
|
|
foreach (var entry in duplicates)
|
|
|
|
{
|
|
|
|
var src = entry.Source;
|
|
|
|
var path = ((SlotInfoFile)src).Path;
|
|
|
|
if (!File.Exists(path))
|
|
|
|
continue;
|
2016-12-23 22:12:58 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
try { File.Delete(path); ++deleted; }
|
|
|
|
catch (Exception ex) { WinFormsUtil.Error(MsgDBDeleteCloneFail + Environment.NewLine + ex.Message + Environment.NewLine + path); }
|
|
|
|
}
|
2022-04-19 23:33:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
var boxClear = new BoxManipClearDuplicate<string>(BoxManipType.DeleteClones, pk => SearchUtil.GetCloneDetectMethod(method)(pk));
|
2022-08-05 18:24:54 +00:00
|
|
|
var param = new BoxManipParam(0, SAV.BoxCount - 1);
|
2022-06-18 18:04:24 +00:00
|
|
|
int count = boxClear.Execute(SAV, param);
|
|
|
|
deleted += count;
|
2016-12-23 22:12:58 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
if (deleted == 0)
|
|
|
|
{ WinFormsUtil.Alert(MsgDBDeleteCloneNone); return; }
|
2022-04-19 23:33:11 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
WinFormsUtil.Alert(string.Format(MsgFileDeleteCount, deleted), MsgWindowClose);
|
|
|
|
BoxView.ReloadSlots();
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
Close();
|
|
|
|
}
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private static DateTime GetRevisedTime(SlotCache arg)
|
|
|
|
{
|
|
|
|
var src = arg.Source;
|
|
|
|
if (src is not SlotInfoFile f)
|
|
|
|
return DateTime.Now;
|
|
|
|
return File.GetLastWriteTimeUtc(f.Path);
|
|
|
|
}
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private bool IsBackupSaveFile(SlotCache pk) => pk.SAV is not FakeSaveFile && pk.SAV != SAV;
|
|
|
|
private bool IsIndividualFilePKMDB(SlotCache pk) => pk.Source is SlotInfoFile f && f.Path.StartsWith(DatabasePath + Path.DirectorySeparatorChar, StringComparison.Ordinal);
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void L_Viewed_MouseEnter(object sender, EventArgs e) => hover.SetToolTip(L_Viewed, L_Viewed.Text);
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
private void ShowHoverTextForSlot(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
var pb = (PictureBox)sender;
|
|
|
|
int index = Array.IndexOf(PKXBOXES, pb);
|
|
|
|
if (!GetShiftedIndex(ref index))
|
|
|
|
return;
|
2019-09-11 05:07:50 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
ShowSet.Show(pb, Results[index].Entity);
|
2015-10-06 01:51:52 +00:00
|
|
|
}
|
|
|
|
}
|