2018-01-30 04:15:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
public static partial class Extensions
|
|
|
|
|
{
|
2019-04-14 08:06:34 +00:00
|
|
|
|
public static IReadOnlyList<PKM> GetAllPKM(this SaveFile sav)
|
|
|
|
|
{
|
2020-06-17 02:46:22 +00:00
|
|
|
|
var result = new List<PKM>();
|
2019-04-14 08:06:34 +00:00
|
|
|
|
if (sav.HasBox)
|
2020-06-17 02:46:22 +00:00
|
|
|
|
result.AddRange(sav.BoxData);
|
2019-04-14 08:06:34 +00:00
|
|
|
|
if (sav.HasParty)
|
2020-06-17 02:46:22 +00:00
|
|
|
|
result.AddRange(sav.PartyData);
|
2019-04-14 08:06:34 +00:00
|
|
|
|
|
|
|
|
|
var extra = sav.GetExtraPKM();
|
2020-06-17 02:46:22 +00:00
|
|
|
|
result.AddRange(extra);
|
|
|
|
|
result.RemoveAll(z => z.Species == 0);
|
|
|
|
|
return result;
|
2019-04-14 08:06:34 +00:00
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-02-25 06:16:30 +00:00
|
|
|
|
public static PKM[] GetExtraPKM(this SaveFile sav) => sav.GetExtraPKM(sav.GetExtraSlots());
|
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
public static PKM[] GetExtraPKM(this SaveFile sav, IList<SlotInfoMisc> slots)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
|
|
|
|
var arr = new PKM[slots.Count];
|
|
|
|
|
for (int i = 0; i < slots.Count; i++)
|
2019-09-03 02:30:58 +00:00
|
|
|
|
arr[i] = slots[i].Read(sav);
|
2018-01-30 04:15:51 +00:00
|
|
|
|
return arr;
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
public static List<SlotInfoMisc> GetExtraSlots(this SaveFile sav, bool all = false)
|
2018-01-31 02:52:55 +00:00
|
|
|
|
{
|
|
|
|
|
var slots = GetExtraSlotsUnsafe(sav, all);
|
|
|
|
|
for (int i = 0; i < slots.Count;)
|
|
|
|
|
{
|
|
|
|
|
if (slots[i].Offset < 0)
|
|
|
|
|
slots.RemoveAt(i);
|
|
|
|
|
else
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
return slots;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-22 01:17:56 +00:00
|
|
|
|
private static readonly List<SlotInfoMisc> None = new();
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlotsUnsafe(SaveFile sav, bool all) => sav switch
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +00:00
|
|
|
|
SAV2 sav2 => GetExtraSlots2(sav2),
|
|
|
|
|
SAV3 sav3 => GetExtraSlots3(sav3),
|
|
|
|
|
SAV4 sav4 => GetExtraSlots4(sav4),
|
|
|
|
|
SAV5 sav5 => GetExtraSlots5(sav5),
|
|
|
|
|
SAV6XY xy => GetExtraSlots6XY(xy),
|
|
|
|
|
SAV6AO xy => GetExtraSlots6AO(xy),
|
|
|
|
|
SAV7 sav7 => GetExtraSlots7(sav7, all),
|
|
|
|
|
SAV8SWSH ss => GetExtraSlots8(ss),
|
|
|
|
|
_ => None
|
|
|
|
|
};
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots2(SAV2 sav)
|
2018-07-08 22:46:37 +00:00
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
return new()
|
2018-07-08 22:46:37 +00:00
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GetDaycareSlotOffset(0, 2)) {Type = StorageSlotType.Daycare } // egg
|
2018-07-08 22:46:37 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-07-08 18:06:39 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots3(SAV3 sav)
|
2018-07-08 18:06:39 +00:00
|
|
|
|
{
|
2021-03-16 06:51:58 +00:00
|
|
|
|
if (sav is not SAV3FRLG)
|
2018-07-08 18:06:39 +00:00
|
|
|
|
return None;
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-07-08 18:06:39 +00:00
|
|
|
|
{
|
2021-05-29 22:31:47 +00:00
|
|
|
|
new(sav.Large, 0, 0x3C98) {Type = StorageSlotType.Daycare}
|
2018-07-08 18:06:39 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots4(SAV4 sav)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2021-05-25 17:07:14 +00:00
|
|
|
|
var list = new List<SlotInfoMisc>
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2021-05-29 22:31:47 +00:00
|
|
|
|
new(sav.General, 0, sav.GTS) {Type = StorageSlotType.GTS},
|
2018-01-30 04:15:51 +00:00
|
|
|
|
};
|
2021-05-25 17:07:14 +00:00
|
|
|
|
if (sav is SAV4HGSS)
|
|
|
|
|
list.Add(new SlotInfoMisc(sav.General, 1, SAV4HGSS.WalkerPair) {Type = StorageSlotType.Misc});
|
|
|
|
|
return list;
|
2018-01-30 04:15:51 +00:00
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots5(SAV5 sav)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
return new()
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.Fused) {Type = StorageSlotType.Fused},
|
2021-08-16 18:54:03 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.PGL) { Type = StorageSlotType.Misc },
|
2019-11-16 01:34:18 +00:00
|
|
|
|
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GetBattleBoxSlot(0)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 1, sav.GetBattleBoxSlot(1)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 2, sav.GetBattleBoxSlot(2)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 3, sav.GetBattleBoxSlot(3)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 4, sav.GetBattleBoxSlot(4)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 5, sav.GetBattleBoxSlot(5)) {Type = StorageSlotType.BattleBox},
|
2018-01-30 04:15:51 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots6XY(SAV6XY sav)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
return new()
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.Fused) {Type = StorageSlotType.Fused},
|
2021-05-14 06:12:53 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.SUBE.Give) {Type = StorageSlotType.Misc}, // Old Man
|
2019-11-16 01:34:18 +00:00
|
|
|
|
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GetBattleBoxSlot(0)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 1, sav.GetBattleBoxSlot(1)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 2, sav.GetBattleBoxSlot(2)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 3, sav.GetBattleBoxSlot(3)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 4, sav.GetBattleBoxSlot(4)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 5, sav.GetBattleBoxSlot(5)) {Type = StorageSlotType.BattleBox},
|
2019-09-03 02:30:58 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots6AO(SAV6AO sav)
|
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
return new()
|
2019-09-03 02:30:58 +00:00
|
|
|
|
{
|
2021-03-20 19:47:21 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, SAV6AO.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, SAV6AO.Fused) {Type = StorageSlotType.Fused},
|
2021-05-14 06:12:53 +00:00
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.SUBE.Give) {Type = StorageSlotType.Misc},
|
2019-11-16 01:34:18 +00:00
|
|
|
|
|
|
|
|
|
new SlotInfoMisc(sav.Data, 0, sav.GetBattleBoxSlot(0)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 1, sav.GetBattleBoxSlot(1)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 2, sav.GetBattleBoxSlot(2)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 3, sav.GetBattleBoxSlot(3)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 4, sav.GetBattleBoxSlot(4)) {Type = StorageSlotType.BattleBox},
|
|
|
|
|
new SlotInfoMisc(sav.Data, 5, sav.GetBattleBoxSlot(5)) {Type = StorageSlotType.BattleBox},
|
2018-01-30 04:15:51 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots7(SAV7 sav, bool all)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
var list = new List<SlotInfoMisc>
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
new(sav.Data, 0, sav.AllBlocks[07].Offset) {Type = StorageSlotType.GTS},
|
|
|
|
|
new(sav.Data, 0, sav.GetFusedSlotOffset(0)) {Type = StorageSlotType.Fused}
|
2018-01-30 04:15:51 +00:00
|
|
|
|
};
|
2021-07-27 06:57:05 +00:00
|
|
|
|
if (sav is SAV7USUM uu)
|
2018-07-29 20:27:48 +00:00
|
|
|
|
{
|
2018-01-30 04:15:51 +00:00
|
|
|
|
list.AddRange(new[]
|
2018-07-29 20:27:48 +00:00
|
|
|
|
{
|
2021-07-27 06:57:05 +00:00
|
|
|
|
new SlotInfoMisc(uu.Data, 1, uu.GetFusedSlotOffset(1)) {Type = StorageSlotType.Fused},
|
|
|
|
|
new SlotInfoMisc(uu.Data, 2, uu.GetFusedSlotOffset(2)) {Type = StorageSlotType.Fused},
|
|
|
|
|
});
|
|
|
|
|
var ba = uu.BattleAgency;
|
|
|
|
|
list.AddRange(new[]
|
|
|
|
|
{
|
|
|
|
|
new SlotInfoMisc(uu.Data, 0, ba.GetSlotOffset(0)) {Type = StorageSlotType.Misc},
|
|
|
|
|
new SlotInfoMisc(uu.Data, 1, ba.GetSlotOffset(1)) {Type = StorageSlotType.Misc},
|
|
|
|
|
new SlotInfoMisc(uu.Data, 2, ba.GetSlotOffset(2)) {Type = StorageSlotType.Misc},
|
2018-01-30 04:15:51 +00:00
|
|
|
|
});
|
2018-07-29 20:27:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-30 04:15:51 +00:00
|
|
|
|
if (!all)
|
|
|
|
|
return list;
|
|
|
|
|
|
2019-06-09 02:56:11 +00:00
|
|
|
|
for (int i = 0; i < ResortSave7.ResortCount; i++)
|
2019-11-16 01:34:18 +00:00
|
|
|
|
list.Add(new SlotInfoMisc(sav.Data, i, sav.ResortSave.GetResortSlotOffset(i)) { Type = StorageSlotType.Resort });
|
2018-01-30 04:15:51 +00:00
|
|
|
|
return list;
|
|
|
|
|
}
|
2019-11-16 01:34:18 +00:00
|
|
|
|
|
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots8(ISaveBlock8Main sav)
|
|
|
|
|
{
|
|
|
|
|
var fused = sav.Fused;
|
|
|
|
|
var dc = sav.Daycare;
|
2020-11-02 01:55:52 +00:00
|
|
|
|
var list = new List<SlotInfoMisc>
|
2019-11-16 01:34:18 +00:00
|
|
|
|
{
|
2020-12-22 01:17:56 +00:00
|
|
|
|
new(fused.Data, 0, Fused8.GetFusedSlotOffset(0), true) {Type = StorageSlotType.Fused},
|
|
|
|
|
new(fused.Data, 1, Fused8.GetFusedSlotOffset(1), true) {Type = StorageSlotType.Fused},
|
|
|
|
|
new(fused.Data, 2, Fused8.GetFusedSlotOffset(2), true) {Type = StorageSlotType.Fused},
|
|
|
|
|
|
|
|
|
|
new(dc.Data, 0, Daycare8.GetDaycareSlotOffset(0, 0)) {Type = StorageSlotType.Daycare},
|
|
|
|
|
new(dc.Data, 0, Daycare8.GetDaycareSlotOffset(0, 1)) {Type = StorageSlotType.Daycare},
|
|
|
|
|
new(dc.Data, 0, Daycare8.GetDaycareSlotOffset(1, 0)) {Type = StorageSlotType.Daycare},
|
|
|
|
|
new(dc.Data, 0, Daycare8.GetDaycareSlotOffset(1, 1)) {Type = StorageSlotType.Daycare},
|
2019-11-16 01:34:18 +00:00
|
|
|
|
};
|
2020-11-02 01:55:52 +00:00
|
|
|
|
|
2020-12-22 06:33:48 +00:00
|
|
|
|
if (sav is SAV8SWSH {SaveRevision: >= 2} s8)
|
2020-11-02 01:55:52 +00:00
|
|
|
|
{
|
|
|
|
|
var block = s8.Blocks.GetBlockSafe(SaveBlockAccessor8SWSH.KFusedCalyrex);
|
2020-11-02 02:40:10 +00:00
|
|
|
|
var c = new SlotInfoMisc(block.Data, 3, 0, true) {Type = StorageSlotType.Fused};
|
2020-11-02 01:55:52 +00:00
|
|
|
|
list.Insert(3, c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return list;
|
2019-11-16 01:34:18 +00:00
|
|
|
|
}
|
2018-01-30 04:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|