2017-05-23 04:55:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Media;
|
|
|
|
|
using System.Text;
|
2017-06-30 06:48:25 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using PKHeX.Core;
|
|
|
|
|
using PKHeX.WinForms.Properties;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
using static PKHeX.Core.MessageStrings;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
|
|
|
{
|
2018-05-05 15:07:22 +00:00
|
|
|
|
public partial class SAVEditor : UserControl, ISlotViewer<PictureBox>
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-30 06:48:25 +00:00
|
|
|
|
public SaveFile SAV;
|
2018-05-05 15:07:22 +00:00
|
|
|
|
public SlotChangeManager M { get; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
public readonly Stack<SlotChange> UndoStack = new Stack<SlotChange>();
|
|
|
|
|
public readonly Stack<SlotChange> RedoStack = new Stack<SlotChange>();
|
2017-06-04 20:35:51 +00:00
|
|
|
|
public readonly ContextMenuSAV menu = new ContextMenuSAV();
|
2018-04-21 23:31:41 +00:00
|
|
|
|
public readonly ContextMenuStrip SortMenu;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
public bool HaX;
|
|
|
|
|
public bool ModifyPKM;
|
|
|
|
|
public ToolStripMenuItem Menu_Redo;
|
|
|
|
|
public ToolStripMenuItem Menu_Undo;
|
|
|
|
|
private bool FieldsLoaded;
|
|
|
|
|
public PKMEditor PKME_Tabs;
|
|
|
|
|
|
2018-05-05 15:07:22 +00:00
|
|
|
|
public SlotChange GetSlotData(PictureBox view)
|
|
|
|
|
{
|
|
|
|
|
int slot = GetSlot(view);
|
|
|
|
|
var type = Extensions.GetMiscSlotType(slot);
|
|
|
|
|
return new SlotChange
|
|
|
|
|
{
|
|
|
|
|
Slot = GetSlot(view),
|
|
|
|
|
Box = ViewIndex,
|
|
|
|
|
Offset = GetSlotOffset(slot),
|
|
|
|
|
Parent = FindForm(),
|
|
|
|
|
Type = type.GetMiscSlotType(),
|
|
|
|
|
Editable = type.IsEditable(),
|
|
|
|
|
IsPartyFormat = type.IsParty(SAV.Generation)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
public IList<PictureBox> SlotPictureBoxes { get; }
|
|
|
|
|
public int GetSlot(PictureBox sender) => SlotPictureBoxes.IndexOf(WinFormsUtil.GetUnderlyingControl(sender) as PictureBox);
|
|
|
|
|
public int ViewIndex { get; set; } = -1;
|
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
public bool FlagIllegal
|
|
|
|
|
{
|
|
|
|
|
get => Box.FlagIllegal;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Box.FlagIllegal = value && !HaX;
|
2018-01-03 01:08:14 +00:00
|
|
|
|
ReloadSlots();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-03 01:08:14 +00:00
|
|
|
|
public void ReloadSlots()
|
|
|
|
|
{
|
|
|
|
|
UpdateBoxViewers(all: true);
|
|
|
|
|
ResetNonBoxSlots();
|
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-01-03 07:00:52 +00:00
|
|
|
|
public SAVEditor()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-01-03 07:00:52 +00:00
|
|
|
|
var z = Task.Run(() => SaveUtil.GetBlankSAV(GameVersion.US, "PKHeX"));
|
2017-05-23 04:55:05 +00:00
|
|
|
|
InitializeComponent();
|
2018-05-05 15:07:22 +00:00
|
|
|
|
SlotPictureBoxes = new[]
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
ppkx1, ppkx2, ppkx3, ppkx4, ppkx5, ppkx6,
|
|
|
|
|
bbpkx1, bbpkx2, bbpkx3, bbpkx4, bbpkx5, bbpkx6,
|
|
|
|
|
|
2018-01-31 02:52:55 +00:00
|
|
|
|
dcpkx1, dcpkx2
|
2017-05-23 04:55:05 +00:00
|
|
|
|
};
|
2017-07-06 06:05:49 +00:00
|
|
|
|
GiveFeedback += (sender, e) => e.UseDefaultCursors = false;
|
2017-06-30 06:48:25 +00:00
|
|
|
|
SAV = z.Result;
|
|
|
|
|
Box.Setup(M = new SlotChangeManager(this));
|
2018-01-31 02:52:55 +00:00
|
|
|
|
SL_Extra.M = M;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
foreach (TabPage tab in tabBoxMulti.TabPages)
|
|
|
|
|
tab.AllowDrop = true;
|
|
|
|
|
|
2018-05-05 15:07:22 +00:00
|
|
|
|
foreach (PictureBox pb in Box.SlotPictureBoxes)
|
|
|
|
|
pb.ContextMenuStrip = menu.mnuVSD;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
foreach (PictureBox pb in SlotPictureBoxes)
|
2018-05-05 15:07:22 +00:00
|
|
|
|
{
|
|
|
|
|
InitializeDragDrop(pb);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
pb.ContextMenuStrip = menu.mnuVSD;
|
2018-05-05 15:07:22 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
GB_Daycare.Click += SwitchDaycare;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
FLP_SAVtools.Scroll += WinFormsUtil.PanelScroll;
|
2018-04-21 23:31:41 +00:00
|
|
|
|
SortMenu = this.GetSortStrip();
|
2018-05-05 15:07:22 +00:00
|
|
|
|
|
|
|
|
|
M.OtherSlots.Add(this);
|
|
|
|
|
SL_Extra.ViewIndex = -2;
|
|
|
|
|
M.OtherSlots.Add(SL_Extra);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-01-31 02:52:55 +00:00
|
|
|
|
private void InitializeDragDrop(Control pb)
|
|
|
|
|
{
|
|
|
|
|
pb.MouseEnter += M.MouseEnter;
|
|
|
|
|
pb.MouseLeave += M.MouseLeave;
|
|
|
|
|
pb.MouseClick += M.MouseClick;
|
|
|
|
|
pb.MouseMove += BoxSlot_MouseMove;
|
|
|
|
|
pb.MouseDown += M.MouseDown;
|
|
|
|
|
pb.MouseUp += M.MouseUp;
|
|
|
|
|
|
|
|
|
|
pb.DragEnter += M.DragEnter;
|
|
|
|
|
pb.DragDrop += BoxSlot_DragDrop;
|
|
|
|
|
pb.QueryContinueDrag += M.QueryContinueDrag;
|
|
|
|
|
pb.GiveFeedback += (sender, e) => e.UseDefaultCursors = false;
|
|
|
|
|
pb.AllowDrop = true;
|
|
|
|
|
pb.ContextMenuStrip = menu.mnuVSD;
|
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Occurs when the Control Collection requests a cloning operation to the current box.</summary>
|
|
|
|
|
public event EventHandler RequestCloneData;
|
|
|
|
|
/// <summary>Occurs when the Control Collection requests a save to be reloaded.</summary>
|
|
|
|
|
public event EventHandler RequestReloadSave;
|
|
|
|
|
|
|
|
|
|
public Cursor GetDefaultCursor => DefaultCursor;
|
|
|
|
|
private Image GetSprite(PKM p, int slot) => p.Sprite(SAV, Box.CurrentBox, slot, Box.FlagIllegal);
|
|
|
|
|
|
|
|
|
|
public void EnableDragDrop(DragEventHandler enter, DragEventHandler drop)
|
|
|
|
|
{
|
|
|
|
|
AllowDrop = true;
|
|
|
|
|
DragDrop += drop;
|
|
|
|
|
foreach (TabPage tab in tabBoxMulti.TabPages)
|
|
|
|
|
{
|
|
|
|
|
tab.AllowDrop = true;
|
|
|
|
|
tab.DragEnter += enter;
|
|
|
|
|
tab.DragDrop += drop;
|
|
|
|
|
}
|
2017-05-31 02:17:37 +00:00
|
|
|
|
M.RequestExternalDragDrop += drop;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Generic Subfunctions //
|
2018-05-05 15:07:22 +00:00
|
|
|
|
public int GetSlotOffset(int slot)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-01-21 23:30:57 +00:00
|
|
|
|
if (slot < (int)SlotIndex.BattleBox) // Party Slot
|
|
|
|
|
return SAV.GetPartyOffset(slot - (int)SlotIndex.Party);
|
|
|
|
|
if (slot < (int)SlotIndex.Daycare) // Battle Box Slot
|
|
|
|
|
return SAV.BattleBox + (slot - (int)SlotIndex.BattleBox) * SAV.SIZE_STORED;
|
2018-05-05 15:07:22 +00:00
|
|
|
|
return SAV.GetDaycareSlotOffset(SAV.DaycareIndex, slot - (int)SlotIndex.Daycare);
|
2018-01-31 02:52:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public int SwapBoxesViewer(int viewBox)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
int mainBox = Box.CurrentBox;
|
|
|
|
|
Box.CurrentBox = viewBox;
|
|
|
|
|
return mainBox;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void UpdateBoxViewers(bool all = false)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
foreach (var v in M.Boxes.Where(v => v.CurrentBox == Box.CurrentBox || all))
|
|
|
|
|
{
|
|
|
|
|
v.FlagIllegal = Box.FlagIllegal;
|
|
|
|
|
v.ResetSlots();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void SetPKMBoxes()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (SAV.HasBox)
|
|
|
|
|
Box.ResetSlots();
|
|
|
|
|
|
2017-09-07 05:11:08 +00:00
|
|
|
|
ResetNonBoxSlots();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-09-07 05:11:08 +00:00
|
|
|
|
// Recoloring of a storage box slot (to not show for other storage boxes)
|
2018-01-30 01:52:21 +00:00
|
|
|
|
if (M?.ColorizedSlot >= (int)SlotIndex.Party)
|
|
|
|
|
SlotPictureBoxes[M.ColorizedSlot].BackgroundImage = M.ColorizedColor;
|
2017-09-07 05:11:08 +00:00
|
|
|
|
}
|
|
|
|
|
private void ResetNonBoxSlots()
|
|
|
|
|
{
|
|
|
|
|
ResetParty();
|
|
|
|
|
ResetBattleBox();
|
|
|
|
|
ResetDaycare();
|
|
|
|
|
ResetMiscSlots();
|
|
|
|
|
}
|
|
|
|
|
private void ResetMiscSlots()
|
|
|
|
|
{
|
2018-01-31 02:52:55 +00:00
|
|
|
|
var slots = SL_Extra.SlotPictureBoxes;
|
|
|
|
|
for (int i = 0; i < SL_Extra.SlotCount; i++)
|
|
|
|
|
GetSlotFiller(SL_Extra.GetSlotOffset(i), slots[i]);
|
2017-09-07 05:11:08 +00:00
|
|
|
|
}
|
|
|
|
|
private void ResetParty()
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.HasParty)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
GetSlotFiller(SAV.GetPartyOffset(i), SlotPictureBoxes[i + (int)SlotIndex.Party]);
|
2017-09-07 05:11:08 +00:00
|
|
|
|
}
|
|
|
|
|
private void ResetBattleBox()
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.HasBattleBox)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
GetSlotFiller(SAV.BattleBox + SAV.SIZE_STORED * i, SlotPictureBoxes[i + (int)SlotIndex.BattleBox]);
|
2017-09-07 05:11:08 +00:00
|
|
|
|
}
|
|
|
|
|
private void ResetDaycare()
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.HasDaycare)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Label[] L_SlotOccupied = {L_DC1, L_DC2};
|
|
|
|
|
TextBox[] TB_SlotEXP = {TB_Daycare1XP, TB_Daycare2XP};
|
|
|
|
|
Label[] L_SlotEXP = {L_XP1, L_XP2};
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
|
|
{
|
2018-01-21 23:30:57 +00:00
|
|
|
|
var pb = SlotPictureBoxes[i + (int)SlotIndex.Daycare];
|
|
|
|
|
GetSlotFiller(SAV.GetDaycareSlotOffset(SAV.DaycareIndex, i), pb);
|
2017-09-07 05:11:08 +00:00
|
|
|
|
uint? exp = SAV.GetDaycareEXP(SAV.DaycareIndex, i);
|
|
|
|
|
TB_SlotEXP[i].Visible = L_SlotEXP[i].Visible = exp != null;
|
|
|
|
|
TB_SlotEXP[i].Text = exp.ToString();
|
|
|
|
|
bool? occ = SAV.IsDaycareOccupied(SAV.DaycareIndex, i);
|
|
|
|
|
L_SlotOccupied[i].Visible = occ != null;
|
|
|
|
|
if (occ == true) // If Occupied
|
|
|
|
|
L_SlotOccupied[i].Text = $"{i + 1}: ✓";
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
L_SlotOccupied[i].Text = $"{i + 1}: ✘";
|
2018-01-21 23:30:57 +00:00
|
|
|
|
pb.Image = ImageUtil.ChangeOpacity(pb.Image, 0.6);
|
2017-09-07 05:11:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool? egg = SAV.IsDaycareHasEgg(SAV.DaycareIndex);
|
|
|
|
|
DayCare_HasEgg.Visible = egg != null;
|
|
|
|
|
DayCare_HasEgg.Checked = egg == true;
|
|
|
|
|
|
|
|
|
|
var seed = SAV.GetDaycareRNGSeed(SAV.DaycareIndex);
|
|
|
|
|
if (seed != null)
|
|
|
|
|
{
|
|
|
|
|
TB_RNGSeed.MaxLength = SAV.DaycareSeedSize;
|
|
|
|
|
TB_RNGSeed.Text = seed;
|
|
|
|
|
}
|
|
|
|
|
L_DaycareSeed.Visible = TB_RNGSeed.Visible = seed != null;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void SetParty()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
// Refresh slots
|
|
|
|
|
if (SAV.HasParty)
|
|
|
|
|
{
|
2017-09-29 05:20:27 +00:00
|
|
|
|
var party = SAV.PartyData;
|
|
|
|
|
for (int i = 0; i < party.Count; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
SlotPictureBoxes[i + (int)SlotIndex.Party].Image = GetSprite(party[i], i + (int)SlotIndex.Party);
|
2017-09-29 05:20:27 +00:00
|
|
|
|
for (int i = party.Count; i < 6; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
SlotPictureBoxes[i + (int)SlotIndex.Party].Image = null;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
if (SAV.HasBattleBox)
|
|
|
|
|
{
|
2017-09-29 05:20:27 +00:00
|
|
|
|
var battle = SAV.BattleBoxData;
|
|
|
|
|
for (int i = 0; i < battle.Count; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
SlotPictureBoxes[i + (int)SlotIndex.BattleBox].Image = GetSprite(battle[i], i + (int)SlotIndex.BattleBox);
|
2017-09-29 05:20:27 +00:00
|
|
|
|
for (int i = battle.Count; i < 6; i++)
|
2018-01-21 23:30:57 +00:00
|
|
|
|
SlotPictureBoxes[i + (int)SlotIndex.BattleBox].Image = null;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void ClickUndo()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UndoStack.Any())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
SlotChange change = UndoStack.Pop();
|
2018-01-21 23:30:57 +00:00
|
|
|
|
if (change.Slot >= (int)SlotIndex.Party)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
RedoStack.Push(new SlotChange
|
|
|
|
|
{
|
|
|
|
|
Slot = change.Slot,
|
|
|
|
|
Box = change.Box,
|
|
|
|
|
Offset = change.Offset,
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKM = SAV.GetStoredSlot(change.Offset)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
});
|
2017-06-18 01:37:19 +00:00
|
|
|
|
UndoSlotChange(change);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
M.SetColor(change.Box, change.Slot, Resources.slotSet);
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void ClickRedo()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (!RedoStack.Any())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
SlotChange change = RedoStack.Pop();
|
2018-01-21 23:30:57 +00:00
|
|
|
|
if (change.Slot >= (int)SlotIndex.Party)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
UndoStack.Push(new SlotChange
|
|
|
|
|
{
|
|
|
|
|
Slot = change.Slot,
|
|
|
|
|
Box = change.Box,
|
|
|
|
|
Offset = change.Offset,
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKM = SAV.GetStoredSlot(change.Offset)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
});
|
2017-06-18 01:37:19 +00:00
|
|
|
|
UndoSlotChange(change);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
M.SetColor(change.Box, change.Slot, Resources.slotSet);
|
|
|
|
|
}
|
|
|
|
|
public void SetClonesToBox(PKM pk)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (WinFormsUtil.Prompt(MessageBoxButtons.YesNo,
|
|
|
|
|
string.Format(MsgSaveBoxCloneFromTabs, Box.CurrentBoxName)) != DialogResult.Yes)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
int slotSkipped = 0;
|
|
|
|
|
for (int i = 0; i < SAV.BoxSlotCount; i++) // set to every slot in box
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SAV.IsSlotLocked(Box.CurrentBox, i))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{ slotSkipped++; continue; }
|
2018-05-05 15:07:22 +00:00
|
|
|
|
SAV.SetStoredSlot(pk, Box.GetSlotOffset(i));
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Box.SetSlotFiller(pk, Box.CurrentBox, i);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (slotSkipped > 0)
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(string.Format(MsgSaveBoxImportSkippedLocked, slotSkipped));
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
UpdateBoxViewers();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public void ClickSlot(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
switch (ModifierKeys)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
case Keys.Control | Keys.Alt: ClickClone(sender, e); break;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
default:
|
|
|
|
|
menu.OmniClick(sender, e, ModifierKeys);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void UndoSlotChange(SlotChange change)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
int box = change.Box;
|
|
|
|
|
int slot = change.Slot;
|
|
|
|
|
int offset = change.Offset;
|
|
|
|
|
PKM pk = change.PKM;
|
|
|
|
|
|
|
|
|
|
if (Box.CurrentBox != change.Box)
|
|
|
|
|
Box.CurrentBox = change.Box;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.SetStoredSlot(pk, offset);
|
|
|
|
|
Box.SetSlotFiller(pk, box, slot);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
M?.SetColor(box, slot, Resources.slotSet);
|
|
|
|
|
|
|
|
|
|
if (Menu_Undo != null)
|
|
|
|
|
Menu_Undo.Enabled = UndoStack.Any();
|
|
|
|
|
if (Menu_Redo != null)
|
|
|
|
|
Menu_Redo.Enabled = RedoStack.Any();
|
|
|
|
|
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void GetSlotFiller(int offset, PictureBox pb)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-03-18 23:22:21 +00:00
|
|
|
|
if (!SAV.IsPKMPresent(offset))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
// 00s present in slot.
|
|
|
|
|
pb.Image = null;
|
|
|
|
|
pb.BackColor = Color.Transparent;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKM p = SAV.GetStoredSlot(offset);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (!p.Valid) // Invalid
|
|
|
|
|
{
|
|
|
|
|
// Bad Egg present in slot.
|
|
|
|
|
pb.Image = null;
|
|
|
|
|
pb.BackColor = Color.Red;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int slot = GetSlot(pb);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
pb.Image = GetSprite(p, slot);
|
|
|
|
|
pb.BackColor = Color.Transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-21 23:31:41 +00:00
|
|
|
|
#region Box Manipulation
|
|
|
|
|
private void ClickBoxSort(object sender, MouseEventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-04-24 01:55:58 +00:00
|
|
|
|
if (tabBoxMulti.SelectedTab != Tab_Box)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
2018-04-21 23:31:41 +00:00
|
|
|
|
if (!tabBoxMulti.GetTabRect(tabBoxMulti.SelectedIndex).Contains(PointToClient(MousePosition)))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
2018-04-24 01:55:58 +00:00
|
|
|
|
if (!e.Button.HasFlag(MouseButtons.Right))
|
|
|
|
|
{
|
|
|
|
|
if (ModifierKeys.HasFlag(Keys.Alt))
|
2018-05-03 00:57:40 +00:00
|
|
|
|
((ToolStripMenuItem)SortMenu.Items[0]).DropDownItems[0].PerformClick(); // Clear
|
2018-04-24 01:55:58 +00:00
|
|
|
|
else if (ModifierKeys.HasFlag(Keys.Control))
|
2018-05-03 00:57:40 +00:00
|
|
|
|
((ToolStripMenuItem)SortMenu.Items[1]).DropDownItems[0].PerformClick(); // Sort
|
2018-04-24 01:55:58 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-04-21 23:31:41 +00:00
|
|
|
|
var pt = Tab_Box.PointToScreen(new Point(0, 0));
|
|
|
|
|
SortMenu.Show(pt);
|
|
|
|
|
}
|
2018-05-01 00:32:23 +00:00
|
|
|
|
public void ClearAll(Func<PKM, bool> criteria)
|
2018-04-21 23:31:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!CanManipulateRegion(0, SAV.BoxCount - 1, MsgSaveBoxClearAll, MsgSaveBoxClearAllFailBattle))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
2018-05-01 00:32:23 +00:00
|
|
|
|
SAV.ClearBoxes(deleteCriteria: criteria);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
FinishBoxManipulation(MsgSaveBoxClearAllSuccess, true);
|
|
|
|
|
}
|
2018-05-01 00:32:23 +00:00
|
|
|
|
public void ClearCurrent(Func<PKM, bool> criteria)
|
2018-04-21 23:31:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!CanManipulateRegion(Box.CurrentBox, Box.CurrentBox, MsgSaveBoxClearCurrent, MsgSaveBoxClearCurrentFailBattle))
|
|
|
|
|
return;
|
2018-05-01 00:32:23 +00:00
|
|
|
|
SAV.ClearBoxes(Box.CurrentBox, Box.CurrentBox, criteria);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
FinishBoxManipulation(MsgSaveBoxClearCurrentSuccess, false);
|
|
|
|
|
}
|
2018-05-01 04:39:12 +00:00
|
|
|
|
public void SortAll(Func<IEnumerable<PKM>, IEnumerable<PKM>> sorter, bool reverse)
|
2018-04-21 23:31:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!CanManipulateRegion(0, SAV.BoxCount - 1, MsgSaveBoxSortAll, MsgSaveBoxSortAllFailBattle))
|
|
|
|
|
return;
|
2018-05-01 04:39:12 +00:00
|
|
|
|
SAV.SortBoxes(sortMethod: sorter, reverse: reverse);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
FinishBoxManipulation(MsgSaveBoxSortAllSuccess, true);
|
|
|
|
|
}
|
2018-05-01 04:39:12 +00:00
|
|
|
|
public void SortCurrent(Func<IEnumerable<PKM>, IEnumerable<PKM>> sorter, bool reverse)
|
2018-04-21 23:31:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!CanManipulateRegion(Box.CurrentBox, Box.CurrentBox, MsgSaveBoxSortCurrent, MsgSaveBoxSortCurrentFailBattle))
|
|
|
|
|
return;
|
2018-05-01 04:39:12 +00:00
|
|
|
|
SAV.SortBoxes(Box.CurrentBox, Box.CurrentBox, sorter, reverse: reverse);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
FinishBoxManipulation(MsgSaveBoxSortCurrentSuccess, false);
|
|
|
|
|
}
|
2018-04-22 19:43:18 +00:00
|
|
|
|
public void ModifyAll(Action<PKM> action)
|
|
|
|
|
{
|
2018-04-24 02:11:55 +00:00
|
|
|
|
SAV.ModifyBoxes(action);
|
2018-04-22 19:43:18 +00:00
|
|
|
|
FinishBoxManipulation(null, true);
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
|
|
|
|
}
|
|
|
|
|
public void ModifyCurrent(Action<PKM> action)
|
|
|
|
|
{
|
2018-04-24 02:11:55 +00:00
|
|
|
|
SAV.ModifyBoxes(action, Box.CurrentBox, Box.CurrentBox);
|
2018-04-22 19:43:18 +00:00
|
|
|
|
FinishBoxManipulation(null, true);
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
|
|
|
|
}
|
2018-04-21 23:31:41 +00:00
|
|
|
|
private void FinishBoxManipulation(string message, bool all)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetPKMBoxes();
|
|
|
|
|
UpdateBoxViewers(all);
|
2018-04-22 19:43:18 +00:00
|
|
|
|
if (message != null)
|
|
|
|
|
WinFormsUtil.Alert(message);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
}
|
|
|
|
|
private bool CanManipulateRegion(int start, int end, string prompt, string fail)
|
|
|
|
|
{
|
2018-04-22 19:43:18 +00:00
|
|
|
|
if (prompt != null && WinFormsUtil.Prompt(MessageBoxButtons.YesNo, prompt) != DialogResult.Yes)
|
2018-04-21 23:31:41 +00:00
|
|
|
|
return false;
|
|
|
|
|
if (!SAV.IsAnySlotLockedInBox(start, end))
|
|
|
|
|
return true;
|
2018-04-22 19:43:18 +00:00
|
|
|
|
if (fail != null)
|
|
|
|
|
WinFormsUtil.Alert(fail);
|
2018-04-21 23:31:41 +00:00
|
|
|
|
return false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-04-21 23:31:41 +00:00
|
|
|
|
#endregion
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickBoxDouble(object sender, MouseEventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (tabBoxMulti.SelectedTab == Tab_SAV)
|
|
|
|
|
{
|
|
|
|
|
RequestReloadSave?.Invoke(sender, e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (tabBoxMulti.SelectedTab != Tab_Box)
|
|
|
|
|
return;
|
|
|
|
|
if (!SAV.HasBox)
|
|
|
|
|
return;
|
2018-01-23 05:38:42 +00:00
|
|
|
|
if (ModifierKeys == Keys.Shift)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (M.Boxes.Count > 1) // subview open
|
2018-01-23 05:38:42 +00:00
|
|
|
|
{
|
|
|
|
|
// close all subviews
|
|
|
|
|
for (int i = 1; i < M.Boxes.Count; i++)
|
|
|
|
|
M.Boxes[i].ParentForm.Close();
|
|
|
|
|
}
|
|
|
|
|
new SAV_BoxList(this, M).Show();
|
|
|
|
|
return;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-01-23 05:38:42 +00:00
|
|
|
|
if (M.Boxes.Count > 1) // subview open
|
|
|
|
|
{ var z = M.Boxes[1].ParentForm; z.CenterToForm(ParentForm); z.BringToFront(); return; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
new SAV_BoxViewer(this, M).Show();
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickClone(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-05-05 15:07:22 +00:00
|
|
|
|
if (GetSlot((PictureBox)sender) >= 0)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return; // only perform action if cloning to boxes
|
|
|
|
|
RequestCloneData?.Invoke(sender, e);
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void UpdateSaveSlot(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (SAV.Version != GameVersion.BATREV)
|
|
|
|
|
return;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
((SAV4BR)SAV).CurrentSlot = WinFormsUtil.GetIndex(CB_SaveSlot);
|
|
|
|
|
SetPKMBoxes();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void UpdateStringSeed(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (!FieldsLoaded)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
TextBox tb = sender as TextBox;
|
|
|
|
|
if (tb == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (tb.Text.Length == 0)
|
|
|
|
|
{
|
|
|
|
|
tb.Undo();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
string filterText = Util.GetOnlyHex(tb.Text);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (filterText.Length != tb.Text.Length)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgProgramErrorExpectedHex, tb.Text);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
tb.Undo();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Write final value back to the save
|
|
|
|
|
if (tb == TB_RNGSeed)
|
|
|
|
|
{
|
|
|
|
|
var value = filterText.PadLeft(SAV.DaycareSeedSize, '0');
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.SetDaycareRNGSeed(SAV.DaycareIndex, value);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
SAV.Edited = true;
|
|
|
|
|
}
|
|
|
|
|
else if (tb == TB_GameSync)
|
|
|
|
|
{
|
|
|
|
|
var value = filterText.PadLeft(SAV.GameSyncIDSize, '0');
|
|
|
|
|
SAV.GameSyncID = value;
|
|
|
|
|
SAV.Edited = true;
|
|
|
|
|
}
|
|
|
|
|
else if (SAV.Generation >= 6)
|
|
|
|
|
{
|
|
|
|
|
var value = Convert.ToUInt64(filterText, 16);
|
|
|
|
|
if (tb == TB_Secure1)
|
|
|
|
|
SAV.Secure1 = value;
|
|
|
|
|
else if (tb == TB_Secure2)
|
|
|
|
|
SAV.Secure2 = value;
|
|
|
|
|
SAV.Edited = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void SwitchDaycare(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (!SAV.HasTwoDaycares) return;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (DialogResult.Yes == WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSaveSwitchDaycareView,
|
|
|
|
|
string.Format(MsgSaveSwitchDaycareCurrent, SAV.DaycareIndex + 1)))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// If ORAS, alter the daycare offset via toggle.
|
|
|
|
|
SAV.DaycareIndex ^= 1;
|
|
|
|
|
|
|
|
|
|
// Refresh Boxes
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetPKMBoxes();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
private void B_SaveBoxBin_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.HasBox)
|
2018-04-07 04:23:09 +00:00
|
|
|
|
{ WinFormsUtil.Alert(MsgSaveBoxFailNone); return; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Box.SaveBoxBinary();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Subfunction Save Buttons //
|
|
|
|
|
private void B_OpenWondercards_Click(object sender, EventArgs e) => new SAV_Wondercard(SAV, sender as MysteryGift).ShowDialog();
|
|
|
|
|
private void B_OpenPokepuffs_Click(object sender, EventArgs e) => new SAV_Pokepuff(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenPokeBeans_Click(object sender, EventArgs e) => new SAV_Pokebean(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenItemPouch_Click(object sender, EventArgs e) => new SAV_Inventory(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenBerryField_Click(object sender, EventArgs e) => new SAV_BerryFieldXY(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenPokeblocks_Click(object sender, EventArgs e) => new SAV_PokeBlockORAS(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenSuperTraining_Click(object sender, EventArgs e) => new SAV_SuperTrain(SAV).ShowDialog();
|
|
|
|
|
private void B_OpenSecretBase_Click(object sender, EventArgs e) => new SAV_SecretBase(SAV).ShowDialog();
|
2017-11-12 06:48:22 +00:00
|
|
|
|
private void B_CellsStickers_Click(object sender, EventArgs e) => new SAV_ZygardeCell(SAV).ShowDialog();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
private void B_LinkInfo_Click(object sender, EventArgs e) => new SAV_Link6(SAV).ShowDialog();
|
2017-10-11 01:48:14 +00:00
|
|
|
|
private void B_Roamer_Click(object sender, EventArgs e) => new SAV_Roamer3(SAV).ShowDialog();
|
2017-12-18 17:36:53 +00:00
|
|
|
|
private void B_OpenApricorn_Click(object sender, EventArgs e) => new SAV_Apricorn(SAV).ShowDialog();
|
2017-09-26 06:06:16 +00:00
|
|
|
|
private void B_OpenEventFlags_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = SAV.Generation == 1 ? new SAV_EventReset1(SAV) as Form : new SAV_EventFlags(SAV);
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
private void B_OpenBoxLayout_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
new SAV_BoxLayout(SAV, Box.CurrentBox).ShowDialog();
|
|
|
|
|
Box.ResetBoxNames(); // fix box names
|
|
|
|
|
Box.ResetSlots(); // refresh box background
|
2017-06-18 01:37:19 +00:00
|
|
|
|
UpdateBoxViewers(all: true); // update subviewers
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
private void B_OpenTrainerInfo_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation < 6)
|
|
|
|
|
new SAV_SimpleTrainer(SAV).ShowDialog();
|
|
|
|
|
else if (SAV.Generation == 6)
|
|
|
|
|
new SAV_Trainer(SAV).ShowDialog();
|
|
|
|
|
else if (SAV.Generation == 7)
|
|
|
|
|
new SAV_Trainer7(SAV).ShowDialog();
|
|
|
|
|
// Refresh conversion info
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKMConverter.UpdateConfig(SAV.SubRegion, SAV.Country, SAV.ConsoleRegion, SAV.OT, SAV.Gender, SAV.Language);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
private void B_OpenOPowers_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation != 6)
|
|
|
|
|
return;
|
|
|
|
|
if (SAV.ORAS)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSaveGen6OPower, MsgSaveGen6OPowerCheatDesc);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (dr != DialogResult.Yes) return;
|
|
|
|
|
new byte[]
|
|
|
|
|
{
|
|
|
|
|
0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00,
|
|
|
|
|
0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
|
|
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01,
|
|
|
|
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
|
|
|
0x01, 0x00, 0x00, 0x00,
|
|
|
|
|
}.CopyTo(SAV.Data, ((SAV6)SAV).OPower);
|
|
|
|
|
}
|
|
|
|
|
else if (SAV.XY)
|
|
|
|
|
new SAV_OPower(SAV).ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
private void B_OpenFriendSafari_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.XY)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSaveGen6FriendSafari, MsgSaveGen6FriendSafariCheatDesc);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (dr != DialogResult.Yes) return;
|
|
|
|
|
|
|
|
|
|
// Unlock + reveal all safari slots if friend data is present
|
|
|
|
|
for (int i = 1; i < 101; i++)
|
|
|
|
|
if (SAV.Data[0x1E7FF + 0x15 * i] != 0x00) // no friend data == 0x00
|
|
|
|
|
SAV.Data[0x1E7FF + 0x15 * i] = 0x3D;
|
2017-06-18 02:27:35 +00:00
|
|
|
|
SAV.Edited = true;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
private void B_OpenPokedex_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (SAV.Generation)
|
|
|
|
|
{
|
|
|
|
|
case 1:
|
|
|
|
|
case 2:
|
|
|
|
|
new SAV_SimplePokedex(SAV).ShowDialog(); break;
|
|
|
|
|
case 3:
|
|
|
|
|
if (SAV.GameCube)
|
|
|
|
|
return;
|
|
|
|
|
new SAV_SimplePokedex(SAV).ShowDialog(); break;
|
|
|
|
|
case 4:
|
|
|
|
|
if (SAV is SAV4BR)
|
|
|
|
|
return;
|
|
|
|
|
new SAV_Pokedex4(SAV).ShowDialog(); break;
|
|
|
|
|
case 5:
|
|
|
|
|
new SAV_Pokedex5(SAV).ShowDialog(); break;
|
|
|
|
|
case 6:
|
|
|
|
|
if (SAV.ORAS)
|
|
|
|
|
new SAV_PokedexORAS(SAV).ShowDialog();
|
|
|
|
|
else if (SAV.XY)
|
|
|
|
|
new SAV_PokedexXY(SAV).ShowDialog();
|
|
|
|
|
break;
|
|
|
|
|
case 7:
|
2017-11-09 02:42:52 +00:00
|
|
|
|
if (SAV.SM || SAV.USUM)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
new SAV_PokedexSM(SAV).ShowDialog();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void B_OpenMiscEditor_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (SAV.Generation)
|
|
|
|
|
{
|
|
|
|
|
case 3:
|
|
|
|
|
new SAV_Misc3(SAV).ShowDialog(); break;
|
|
|
|
|
case 4:
|
|
|
|
|
new SAV_Misc4(SAV).ShowDialog(); break;
|
2017-05-26 09:05:58 +00:00
|
|
|
|
case 5:
|
|
|
|
|
new SAV_Misc5(SAV).ShowDialog(); break;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void B_OpenRTCEditor_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (SAV.Generation)
|
|
|
|
|
{
|
2017-09-24 05:13:48 +00:00
|
|
|
|
case 2:
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(string.Format(MsgSaveGen2RTCResetPassword, ((SAV2) SAV).ResetKey)); break;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
case 3:
|
|
|
|
|
new SAV_RTC3(SAV).ShowDialog(); break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void B_OpenHoneyTreeEditor_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (SAV.Version)
|
|
|
|
|
{
|
|
|
|
|
case GameVersion.DP:
|
|
|
|
|
case GameVersion.Pt:
|
|
|
|
|
new SAV_HoneyTree(SAV).ShowDialog(); break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void B_OUTPasserby_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation != 6)
|
|
|
|
|
return;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSaveGen6Passerby))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
2017-09-30 05:58:25 +00:00
|
|
|
|
var result = new List<string> {"PSS List"};
|
2017-05-23 04:55:05 +00:00
|
|
|
|
string[] headers = { "PSS Data - Friends", "PSS Data - Acquaintances", "PSS Data - Passerby", };
|
|
|
|
|
int offset = ((SAV6)SAV).PSS;
|
|
|
|
|
for (int g = 0; g < 3; g++)
|
|
|
|
|
{
|
2017-09-30 05:58:25 +00:00
|
|
|
|
result.Add("----");
|
|
|
|
|
result.Add(headers[g]);
|
|
|
|
|
result.Add("----");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// uint count = BitConverter.ToUInt32(savefile, offset + 0x4E20);
|
|
|
|
|
int r_offset = offset;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 100; i++)
|
|
|
|
|
{
|
|
|
|
|
ulong unkn = BitConverter.ToUInt64(SAV.Data, r_offset);
|
|
|
|
|
if (unkn == 0) break; // No data present here
|
2017-09-30 05:58:25 +00:00
|
|
|
|
if (i > 0)
|
|
|
|
|
result.Add("");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
string otname = Util.TrimFromZero(Encoding.Unicode.GetString(SAV.Data, r_offset + 8, 0x1A));
|
|
|
|
|
string message = Util.TrimFromZero(Encoding.Unicode.GetString(SAV.Data, r_offset + 0x22, 0x22));
|
|
|
|
|
|
|
|
|
|
// Trim terminated
|
|
|
|
|
|
|
|
|
|
// uint unk1 = BitConverter.ToUInt32(savefile, r_offset + 0x44);
|
|
|
|
|
// ulong unk2 = BitConverter.ToUInt64(savefile, r_offset + 0x48);
|
|
|
|
|
// uint unk3 = BitConverter.ToUInt32(savefile, r_offset + 0x50);
|
|
|
|
|
// uint unk4 = BitConverter.ToUInt16(savefile, r_offset + 0x54);
|
|
|
|
|
byte region = SAV.Data[r_offset + 0x56];
|
|
|
|
|
byte country = SAV.Data[r_offset + 0x57];
|
|
|
|
|
byte game = SAV.Data[r_offset + 0x5A];
|
|
|
|
|
// ulong outfit = BitConverter.ToUInt64(savefile, r_offset + 0x5C);
|
|
|
|
|
int favpkm = BitConverter.ToUInt16(SAV.Data, r_offset + 0x9C) & 0x7FF;
|
|
|
|
|
string gamename;
|
|
|
|
|
try { gamename = GameInfo.Strings.gamelist[game]; }
|
|
|
|
|
catch { gamename = "UNKNOWN GAME"; }
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var cr = GameInfo.GetCountryRegionText(country, region, GameInfo.CurrentLanguage);
|
2017-09-30 05:58:25 +00:00
|
|
|
|
result.Add($"OT: {otname}");
|
|
|
|
|
result.Add($"Message: {message}");
|
|
|
|
|
result.Add($"Game: {gamename}");
|
|
|
|
|
result.Add($"Country: {cr.Item1}");
|
|
|
|
|
result.Add($"Region: {cr.Item2}");
|
|
|
|
|
result.Add($"Favorite: {GameInfo.Strings.specieslist[favpkm]}");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
r_offset += 0xC8; // Advance to next entry
|
|
|
|
|
}
|
|
|
|
|
offset += 0x5000; // Advance to next block
|
|
|
|
|
}
|
2017-09-30 05:58:25 +00:00
|
|
|
|
Clipboard.SetText(string.Join(Environment.NewLine, result));
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
private void B_OUTHallofFame_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation == 6)
|
|
|
|
|
new SAV_HallOfFame(SAV).ShowDialog();
|
2017-11-09 02:42:52 +00:00
|
|
|
|
else if (SAV.Generation == 7)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
new SAV_HallOfFame7(SAV).ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
private void B_CGearSkin_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation != 5)
|
|
|
|
|
return; // can never be too safe
|
|
|
|
|
new SAV_CGearSkin(SAV).ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
private void B_JPEG_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
byte[] jpeg = SAV.JPEGData;
|
|
|
|
|
if (SAV.JPEGData == null)
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ WinFormsUtil.Alert(MsgSaveJPEGExportFail); return; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
string filename = SAV.JPEGTitle + "'s picture";
|
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog { FileName = filename, Filter = "JPEG|*.jpeg" };
|
|
|
|
|
if (sfd.ShowDialog() != DialogResult.OK) return;
|
|
|
|
|
File.WriteAllBytes(sfd.FileName, jpeg);
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickVerifyCHK(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (SAV.Edited) { WinFormsUtil.Alert(MsgSaveChecksumFailEdited); return; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (SAV.ChecksumsValid) { WinFormsUtil.Alert(MsgSaveChecksumValid); return; }
|
|
|
|
|
if (DialogResult.Yes == WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSaveChecksumFailExport))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Clipboard.SetText(SAV.ChecksumInfo);
|
|
|
|
|
}
|
2018-02-02 01:29:07 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// File I/O
|
2018-02-02 01:29:07 +00:00
|
|
|
|
public bool GetBulkImportSettings(out bool clearAll, out bool? noSetb)
|
|
|
|
|
{
|
|
|
|
|
clearAll = false; noSetb = false;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNoCancel, MsgSaveBoxImportClear, MsgSaveBoxImportClearNo);
|
2018-02-02 01:29:07 +00:00
|
|
|
|
if (dr == DialogResult.Cancel)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
clearAll = dr == DialogResult.Yes;
|
|
|
|
|
noSetb = GetPKMSetOverride();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private bool? GetPKMSetOverride()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var yn = ModifyPKM ? MsgYes : MsgNo;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
DialogResult noSet = WinFormsUtil.Prompt(MessageBoxButtons.YesNoCancel,
|
2018-04-06 04:25:18 +00:00
|
|
|
|
MsgSaveBoxImportModifyIntro,
|
|
|
|
|
MsgSaveBoxImportModifyYes + Environment.NewLine +
|
|
|
|
|
MsgSaveBoxImportModifyNo + Environment.NewLine +
|
|
|
|
|
string.Format(MsgSaveBoxImportModifyCurrent, yn));
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return noSet == DialogResult.Yes ? true : (noSet == DialogResult.No ? (bool?)false : null);
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static bool IsFolderPath(out string path)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
FolderBrowserDialog fbd = new FolderBrowserDialog();
|
|
|
|
|
var result = fbd.ShowDialog() == DialogResult.OK;
|
|
|
|
|
path = fbd.SelectedPath;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool ExportSaveFile()
|
|
|
|
|
{
|
|
|
|
|
ValidateChildren();
|
|
|
|
|
return WinFormsUtil.SaveSAVDialog(SAV, SAV.CurrentBox);
|
|
|
|
|
}
|
|
|
|
|
public bool ExportBackup()
|
|
|
|
|
{
|
|
|
|
|
if (!SAV.Exportable)
|
|
|
|
|
return false;
|
|
|
|
|
SaveFileDialog sfd = new SaveFileDialog
|
|
|
|
|
{ FileName = Util.CleanFileName(SAV.BAKName) };
|
|
|
|
|
if (sfd.ShowDialog() != DialogResult.OK)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
string path = sfd.FileName;
|
|
|
|
|
File.WriteAllBytes(path, SAV.BAK);
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSaveBackup, path);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public bool IsPCBoxBin(int length) => PKX.IsPKM(length / SAV.SlotCount) || PKX.IsPKM(length / SAV.BoxSlotCount);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
public bool OpenPCBoxBin(byte[] input, out string c)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SAV.PCBinary.Length == input.Length)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SAV.IsAnySlotLockedInBox(0, SAV.BoxCount - 1))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ c = MsgSaveBoxImportPCFailBattle; return false; }
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (!SAV.SetPCBinary(input))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ c = string.Format(MsgSaveCurrentGeneration, SAV.Generation); return false; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
c = MsgSaveBoxImportPCBinary;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
else if (SAV.GetBoxBinary(Box.CurrentBox).Length == input.Length)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SAV.IsAnySlotLockedInBox(Box.CurrentBox, Box.CurrentBox))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ c = MsgSaveBoxImportBoxFailBattle; return false; }
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (!SAV.SetBoxBinary(input, Box.CurrentBox))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ c = string.Format(MsgSaveCurrentGeneration, SAV.Generation); return false; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
c = MsgSaveBoxImportBoxBinary;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
c = string.Format(MsgSaveCurrentGeneration, SAV.Generation);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetPKMBoxes();
|
|
|
|
|
UpdateBoxViewers();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool OpenBattleVideo(BattleVideo b, out string c)
|
|
|
|
|
{
|
|
|
|
|
if (b == null || SAV.Generation != b.Generation)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
c = MsgSaveBoxImportVideoFailGeneration;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var prompt = WinFormsUtil.Prompt(MessageBoxButtons.YesNo,
|
|
|
|
|
string.Format(MsgSaveBoxImportVideo, Box.CurrentBoxName), MsgSaveBoxImportOverwrite);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (prompt != DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
c = string.Empty;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
bool? noSetb = GetPKMSetOverride();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
PKM[] data = b.BattlePKMs;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int offset = SAV.GetBoxOffset(Box.CurrentBox);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
int slotSkipped = 0;
|
|
|
|
|
for (int i = 0; i < 24; i++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (SAV.IsSlotLocked(Box.CurrentBox, i))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{ slotSkipped++; continue; }
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.SetStoredSlot(data[i], offset + i * SAV.SIZE_STORED, noSetb);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SetPKMBoxes();
|
|
|
|
|
UpdateBoxViewers();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
c = slotSkipped > 0 ? string.Format(MsgSaveBoxImportSkippedLocked, slotSkipped) : MsgSaveBoxImportVideoSuccess;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool DumpBoxes(out string result, string path = null, bool separate = false)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (path == null && !IsFolderPath(out path))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
result = path;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-03 06:13:40 +00:00
|
|
|
|
Directory.CreateDirectory(path);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.DumpBoxes(path, out result, separate);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool DumpBox(out string result, string path = null)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (path == null && !IsFolderPath(out path))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
result = path;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-03 06:13:40 +00:00
|
|
|
|
Directory.CreateDirectory(path);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.DumpBox(path, out result, Box.CurrentBox);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool LoadBoxes(out string result, string path = null)
|
|
|
|
|
{
|
|
|
|
|
result = string.Empty;
|
|
|
|
|
if (!SAV.HasBox)
|
|
|
|
|
return false;
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (path == null && !IsFolderPath(out path))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
result = path;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(path))
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-02-02 01:29:07 +00:00
|
|
|
|
if (!GetBulkImportSettings(out bool clearAll, out bool? noSetb))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
SAV.LoadBoxes(path, out result, Box.CurrentBox, clearAll, noSetb);
|
|
|
|
|
SetPKMBoxes();
|
2017-08-27 01:37:44 +00:00
|
|
|
|
UpdateBoxViewers();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool ToggleInterface()
|
|
|
|
|
{
|
|
|
|
|
FieldsLoaded = false;
|
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
ToggleViewReset();
|
|
|
|
|
ToggleViewSubEditors(SAV);
|
|
|
|
|
|
|
|
|
|
bool WindowTranslationRequired = false;
|
|
|
|
|
WindowTranslationRequired |= ToggleViewBox(SAV);
|
2017-12-30 00:50:55 +00:00
|
|
|
|
int BoxTab = tabBoxMulti.TabPages.IndexOf(Tab_Box);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
WindowTranslationRequired |= ToggleViewParty(SAV, BoxTab);
|
2017-12-30 00:50:55 +00:00
|
|
|
|
int PartyTab = tabBoxMulti.TabPages.IndexOf(Tab_PartyBattle);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
WindowTranslationRequired |= ToggleViewDaycare(SAV, BoxTab, PartyTab);
|
2017-09-22 04:42:27 +00:00
|
|
|
|
SetPKMBoxes(); // Reload all of the PKX Windows
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
|
|
|
|
ToggleViewMisc(SAV);
|
|
|
|
|
|
|
|
|
|
FieldsLoaded = true;
|
|
|
|
|
return WindowTranslationRequired;
|
|
|
|
|
}
|
|
|
|
|
private void ToggleViewReset()
|
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// Close subforms that are save dependent
|
|
|
|
|
foreach (var z in M.Boxes.Skip(1).ToArray())
|
|
|
|
|
z.FindForm()?.Close();
|
|
|
|
|
|
|
|
|
|
UndoStack.Clear();
|
|
|
|
|
RedoStack.Clear();
|
|
|
|
|
Box.M = M;
|
|
|
|
|
Box.ResetBoxNames(); // Display the Box Names
|
|
|
|
|
M.SetColor(-1, -1, null);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
}
|
|
|
|
|
private bool ToggleViewBox(SaveFile sav)
|
|
|
|
|
{
|
|
|
|
|
if (!sav.HasBox)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-19 05:27:40 +00:00
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_Box))
|
|
|
|
|
tabBoxMulti.TabPages.Remove(Tab_Box);
|
|
|
|
|
B_SaveBoxBin.Enabled = false;
|
|
|
|
|
return false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
|
|
|
|
B_SaveBoxBin.Enabled = true;
|
|
|
|
|
int startBox = !sav.Exportable ? 0 : sav.CurrentBox; // FF if BattleBox
|
|
|
|
|
if (startBox > sav.BoxCount - 1) { tabBoxMulti.SelectedIndex = 1; Box.CurrentBox = 0; }
|
|
|
|
|
else { tabBoxMulti.SelectedIndex = 0; Box.CurrentBox = startBox; }
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_Box))
|
|
|
|
|
return false;
|
|
|
|
|
tabBoxMulti.TabPages.Insert(0, Tab_Box);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private bool ToggleViewParty(SaveFile sav, int BoxTab)
|
|
|
|
|
{
|
|
|
|
|
if (!sav.HasParty)
|
|
|
|
|
{
|
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_PartyBattle))
|
|
|
|
|
tabBoxMulti.TabPages.Remove(Tab_PartyBattle);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PB_Locked.Visible = sav.HasBattleBox && sav.BattleBoxLocked;
|
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_PartyBattle))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
int index = BoxTab;
|
|
|
|
|
if (index < 0)
|
|
|
|
|
index = -1;
|
|
|
|
|
tabBoxMulti.TabPages.Insert(index + 1, Tab_PartyBattle);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private bool ToggleViewDaycare(SaveFile sav, int BoxTab, int PartyTab)
|
|
|
|
|
{
|
|
|
|
|
if (!sav.HasDaycare)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-19 05:27:40 +00:00
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_Other))
|
|
|
|
|
tabBoxMulti.TabPages.Remove(Tab_Other);
|
|
|
|
|
return false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-05 15:07:22 +00:00
|
|
|
|
SlotPictureBoxes[(int)SlotIndex.Daycare + 1].Visible = sav.Generation >= 2; // Second daycare slot
|
2017-06-19 05:27:40 +00:00
|
|
|
|
if (tabBoxMulti.TabPages.Contains(Tab_Other))
|
|
|
|
|
return false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
int index = PartyTab;
|
|
|
|
|
if (index < 0)
|
|
|
|
|
index = BoxTab;
|
|
|
|
|
if (index < 0)
|
|
|
|
|
index = -1;
|
|
|
|
|
tabBoxMulti.TabPages.Insert(index + 1, Tab_Other);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private void ToggleViewSubEditors(SaveFile sav)
|
|
|
|
|
{
|
2018-02-24 21:03:32 +00:00
|
|
|
|
if (!sav.Exportable || sav is BulkStorage)
|
|
|
|
|
{
|
|
|
|
|
GB_SAVtools.Visible = false;
|
|
|
|
|
B_JPEG.Visible = false;
|
|
|
|
|
SL_Extra.HideAllSlots();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
{
|
|
|
|
|
PAN_BattleBox.Visible = L_BattleBox.Visible = L_ReadOnlyPBB.Visible = sav.HasBattleBox;
|
|
|
|
|
GB_Daycare.Visible = sav.HasDaycare;
|
|
|
|
|
B_OpenSecretBase.Enabled = sav.HasSecretBase;
|
|
|
|
|
B_OpenPokepuffs.Enabled = sav.HasPuff;
|
|
|
|
|
B_OpenPokeBeans.Enabled = sav.Generation == 7;
|
2017-11-12 06:48:22 +00:00
|
|
|
|
B_CellsStickers.Enabled = sav.Generation == 7;
|
2017-06-19 05:27:40 +00:00
|
|
|
|
B_OUTPasserby.Enabled = sav.HasPSS;
|
2017-12-27 23:52:29 +00:00
|
|
|
|
B_OpenBoxLayout.Enabled = sav.HasNamableBoxes;
|
2017-06-19 05:27:40 +00:00
|
|
|
|
B_OpenWondercards.Enabled = sav.HasWondercards;
|
|
|
|
|
B_OpenSuperTraining.Enabled = sav.HasSuperTrain;
|
|
|
|
|
B_OpenHallofFame.Enabled = sav.HasHoF;
|
|
|
|
|
B_OpenOPowers.Enabled = sav.HasOPower;
|
|
|
|
|
B_OpenPokedex.Enabled = sav.HasPokeDex;
|
|
|
|
|
B_OpenBerryField.Enabled = sav.HasBerryField && sav.XY;
|
|
|
|
|
B_OpenFriendSafari.Enabled = sav.XY;
|
|
|
|
|
B_OpenPokeblocks.Enabled = sav.HasPokeBlock;
|
|
|
|
|
B_JPEG.Visible = sav.HasJPEG;
|
|
|
|
|
B_OpenEventFlags.Enabled = sav.HasEvents;
|
|
|
|
|
B_OpenLinkInfo.Enabled = sav.HasLink;
|
|
|
|
|
B_CGearSkin.Enabled = sav.Generation == 5;
|
|
|
|
|
|
|
|
|
|
B_OpenTrainerInfo.Enabled = B_OpenItemPouch.Enabled = sav.HasParty; // Box RS
|
|
|
|
|
B_OpenMiscEditor.Enabled = sav is SAV3 || sav is SAV4 || sav is SAV5;
|
2017-10-11 01:48:14 +00:00
|
|
|
|
B_Roamer.Enabled = sav is SAV3;
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
|
|
|
|
B_OpenHoneyTreeEditor.Enabled = sav.DP || sav.Pt;
|
2017-12-18 17:36:53 +00:00
|
|
|
|
B_OpenApricorn.Enabled = sav.HGSS;
|
2017-09-24 05:13:48 +00:00
|
|
|
|
B_OpenRTCEditor.Enabled = sav.RS || sav.E || sav.Generation == 2;
|
2017-08-27 20:52:47 +00:00
|
|
|
|
B_OpenUGSEditor.Enabled = sav.DP || sav.Pt;
|
2017-11-19 21:50:30 +00:00
|
|
|
|
B_FestivalPlaza.Enabled = sav.Generation == 7;
|
2018-02-01 04:21:47 +00:00
|
|
|
|
B_MailBox.Enabled = sav is SAV2 || sav is SAV3 || sav is SAV4 || sav is SAV5;
|
2018-01-31 02:52:55 +00:00
|
|
|
|
|
2018-05-05 15:07:22 +00:00
|
|
|
|
SL_Extra.Initialize(sav.GetExtraSlots(HaX), InitializeDragDrop);
|
2018-01-31 02:52:55 +00:00
|
|
|
|
}
|
2017-06-19 05:27:40 +00:00
|
|
|
|
GB_SAVtools.Visible = sav.Exportable && FLP_SAVtools.Controls.Cast<Control>().Any(c => c.Enabled);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
foreach (Control c in FLP_SAVtools.Controls.Cast<Control>())
|
|
|
|
|
c.Visible = c.Enabled;
|
|
|
|
|
}
|
2017-06-19 05:27:40 +00:00
|
|
|
|
private void ToggleViewMisc(SaveFile sav)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
// Generational Interface
|
2017-06-19 05:27:40 +00:00
|
|
|
|
TB_Secure1.Visible = TB_Secure2.Visible = L_Secure1.Visible = L_Secure2.Visible = sav.Exportable && sav.Generation >= 6;
|
|
|
|
|
TB_GameSync.Visible = L_GameSync.Visible = sav.Exportable && sav.Generation >= 6;
|
|
|
|
|
B_VerifyCHK.Enabled = SAV.Exportable;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
if (sav.Version == GameVersion.BATREV)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
L_SaveSlot.Visible = CB_SaveSlot.Visible = true;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
CB_SaveSlot.DisplayMember = nameof(ComboItem.Text); CB_SaveSlot.ValueMember = nameof(ComboItem.Value);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
CB_SaveSlot.DataSource = new BindingSource(((SAV4BR)sav).SaveSlots.Select(i => new ComboItem
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-19 05:27:40 +00:00
|
|
|
|
Text = ((SAV4BR)sav).SaveNames[i],
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Value = i
|
|
|
|
|
}).ToList(), null);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
CB_SaveSlot.SelectedValue = ((SAV4BR)sav).CurrentSlot;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
L_SaveSlot.Visible = CB_SaveSlot.Visible = false;
|
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
switch (sav.Generation)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
case 6:
|
2017-06-19 05:27:40 +00:00
|
|
|
|
TB_GameSync.Enabled = sav.GameSyncID != null;
|
|
|
|
|
TB_GameSync.MaxLength = sav.GameSyncIDSize;
|
|
|
|
|
TB_GameSync.Text = (sav.GameSyncID ?? 0.ToString()).PadLeft(sav.GameSyncIDSize, '0');
|
|
|
|
|
TB_Secure1.Text = sav.Secure1?.ToString("X16");
|
|
|
|
|
TB_Secure2.Text = sav.Secure2?.ToString("X16");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
break;
|
|
|
|
|
case 7:
|
2017-06-19 05:27:40 +00:00
|
|
|
|
TB_GameSync.Enabled = sav.GameSyncID != null;
|
|
|
|
|
TB_GameSync.MaxLength = sav.GameSyncIDSize;
|
|
|
|
|
TB_GameSync.Text = (sav.GameSyncID ?? 0.ToString()).PadLeft(sav.GameSyncIDSize, '0');
|
|
|
|
|
TB_Secure1.Text = sav.Secure1?.ToString("X16");
|
|
|
|
|
TB_Secure2.Text = sav.Secure2?.ToString("X16");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DragDrop
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void BoxSlot_MouseMove(object sender, MouseEventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (M == null || M.DragActive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Abort if there is no Pokemon in the given slot.
|
|
|
|
|
PictureBox pb = (PictureBox)sender;
|
|
|
|
|
if (pb.Image == null)
|
|
|
|
|
return;
|
2018-05-06 01:19:49 +00:00
|
|
|
|
var view = WinFormsUtil.FindFirstControlOfType<ISlotViewer<PictureBox>>(pb);
|
|
|
|
|
var src = view.GetSlotData(pb);
|
|
|
|
|
if (!src.Editable || SAV.IsSlotLocked(src.Box, src.Slot))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
|
|
|
|
bool encrypt = ModifierKeys == Keys.Control;
|
2018-05-06 01:19:49 +00:00
|
|
|
|
M.HandleMovePKM(pb, src.Slot, src.Box, encrypt);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void BoxSlot_DragDrop(object sender, DragEventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (M == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
PictureBox pb = (PictureBox)sender;
|
2018-05-06 01:19:49 +00:00
|
|
|
|
var view = WinFormsUtil.FindFirstControlOfType<ISlotViewer<PictureBox>>(pb);
|
|
|
|
|
var src = view.GetSlotData(pb);
|
|
|
|
|
if (!src.Editable || SAV.IsSlotLocked(src.Box, src.Slot))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
|
|
|
|
e.Effect = DragDropEffects.Copy;
|
|
|
|
|
M.DragInfo.Reset();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool overwrite = ModifierKeys == Keys.Alt;
|
|
|
|
|
bool clone = ModifierKeys == Keys.Control;
|
2018-05-06 01:19:49 +00:00
|
|
|
|
M.DragInfo.Destination = src;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
M.HandleDropPKM(sender, e, overwrite, clone);
|
|
|
|
|
}
|
2017-09-15 16:13:08 +00:00
|
|
|
|
private void MultiDragOver(object sender, DragEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
// iterate over all tabs to see if a tab switch should occur when drag/dropping
|
|
|
|
|
Point pt = tabBoxMulti.PointToClient(new Point(e.X, e.Y));
|
|
|
|
|
for (int i = 0; i < tabBoxMulti.TabCount; i++)
|
|
|
|
|
{
|
|
|
|
|
if (tabBoxMulti.SelectedIndex == i || !tabBoxMulti.GetTabRect(i).Contains(pt))
|
|
|
|
|
continue;
|
|
|
|
|
tabBoxMulti.SelectedIndex = i;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickShowdownExportParty(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var str = string.Join(Environment.NewLine + Environment.NewLine, SAV.PartyData.Select(pk => pk.ShowdownText));
|
|
|
|
|
if (string.IsNullOrWhiteSpace(str)) return;
|
|
|
|
|
Clipboard.SetText(str);
|
|
|
|
|
}
|
|
|
|
|
catch { }
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSimulatorExportParty);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickShowdownExportBattleBox(object sender, EventArgs e)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var str = string.Join(Environment.NewLine + Environment.NewLine, SAV.BattleBoxData.Select(pk => pk.ShowdownText));
|
|
|
|
|
if (string.IsNullOrWhiteSpace(str)) return;
|
|
|
|
|
Clipboard.SetText(str);
|
|
|
|
|
}
|
|
|
|
|
catch { }
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSimulatorExportBattleBox);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2017-08-27 19:32:43 +00:00
|
|
|
|
|
|
|
|
|
private void B_OpenUGSEditor_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
switch (SAV.Version)
|
|
|
|
|
{
|
|
|
|
|
case GameVersion.DP:
|
|
|
|
|
case GameVersion.Pt:
|
|
|
|
|
new SAV_Underground(SAV).ShowDialog(); break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-19 21:50:30 +00:00
|
|
|
|
private void B_FestivalPlaza_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (SAV.Generation == 7)
|
|
|
|
|
new SAV_FestivalPlaza(SAV).ShowDialog();
|
|
|
|
|
}
|
2017-12-02 22:20:56 +00:00
|
|
|
|
private void B_MailBox_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
new SAV_MailBox(SAV).ShowDialog();
|
|
|
|
|
ResetParty();
|
|
|
|
|
}
|
2018-01-21 23:30:57 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|