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)
|
|
|
|
|
{
|
|
|
|
|
var pkms = new List<PKM>();
|
|
|
|
|
if (sav.HasBox)
|
|
|
|
|
pkms.AddRange(sav.BoxData);
|
|
|
|
|
if (sav.HasParty)
|
|
|
|
|
pkms.AddRange(sav.PartyData);
|
|
|
|
|
if (sav.HasBattleBox)
|
|
|
|
|
pkms.AddRange(sav.BattleBoxData);
|
|
|
|
|
|
|
|
|
|
var extra = sav.GetExtraPKM();
|
|
|
|
|
pkms.AddRange(extra);
|
|
|
|
|
pkms.RemoveAll(z => z.Species == 0);
|
|
|
|
|
return pkms;
|
|
|
|
|
}
|
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
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
slots ??= sav.GetExtraSlots();
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static readonly List<SlotInfoMisc> None = new List<SlotInfoMisc>();
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-09-03 02:30:58 +00:00
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlotsUnsafe(SaveFile sav, bool all)
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
return sav switch
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +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),
|
|
|
|
|
_ => None
|
|
|
|
|
};
|
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> GetExtraSlots2(SAV2 sav)
|
2018-07-08 22:46:37 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-07-08 22:46:37 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(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
|
|
|
|
{
|
|
|
|
|
if (!sav.FRLG)
|
|
|
|
|
return None;
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-07-08 18:06:39 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.GetBlockOffset(4) + 0xE18) {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
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.GTS) {Type = StorageSlotType.GTS },
|
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
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(0, sav.Fused) {Type = StorageSlotType.Fused}
|
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
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
return new List<SlotInfoMisc>
|
2018-01-30 04:15:51 +00:00
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(0, sav.Fused) {Type = StorageSlotType.Fused},
|
|
|
|
|
new SlotInfoMisc(0, sav.SUBE) {Type = StorageSlotType.Misc},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static List<SlotInfoMisc> GetExtraSlots6AO(SAV6AO sav)
|
|
|
|
|
{
|
|
|
|
|
return new List<SlotInfoMisc>
|
|
|
|
|
{
|
|
|
|
|
new SlotInfoMisc(0, sav.GTS) {Type = StorageSlotType.GTS},
|
|
|
|
|
new SlotInfoMisc(0, sav.Fused) {Type = StorageSlotType.Fused}
|
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
|
|
|
|
{
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.AllBlocks[07].Offset) {Type = StorageSlotType.GTS},
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(0, sav.GetFusedSlotOffset(0)) {Type = StorageSlotType.Fused}
|
2018-01-30 04:15:51 +00:00
|
|
|
|
};
|
2019-07-14 22:06:45 +00:00
|
|
|
|
if (sav is SAV7USUM)
|
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
|
|
|
|
{
|
2019-09-03 02:30:58 +00:00
|
|
|
|
new SlotInfoMisc(1, sav.GetFusedSlotOffset(1)) {Type = StorageSlotType.Fused},
|
|
|
|
|
new SlotInfoMisc(2, sav.GetFusedSlotOffset(2)) {Type = StorageSlotType.Fused},
|
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-09-03 02:30:58 +00:00
|
|
|
|
list.Add(new SlotInfoMisc(i, sav.ResortSave.GetResortSlotOffset(i)) { Type = StorageSlotType.Resort });
|
2018-01-30 04:15:51 +00:00
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|