mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
93 lines
3.8 KiB
C#
93 lines
3.8 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
using static PKHeX.Core.EncountersWC3;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public static class EncounterEvent
|
|||
|
{
|
|||
|
/// <summary>Event Database for Generation 3</summary>
|
|||
|
public static MysteryGift[] MGDB_G3 { get; private set; } = new MysteryGift[0];
|
|||
|
|
|||
|
/// <summary>Event Database for Generation 4</summary>
|
|||
|
public static MysteryGift[] MGDB_G4 { get; private set; } = new MysteryGift[0];
|
|||
|
|
|||
|
/// <summary>Event Database for Generation 5</summary>
|
|||
|
public static MysteryGift[] MGDB_G5 { get; private set; } = new MysteryGift[0];
|
|||
|
|
|||
|
/// <summary>Event Database for Generation 6</summary>
|
|||
|
public static MysteryGift[] MGDB_G6 { get; private set; } = new MysteryGift[0];
|
|||
|
|
|||
|
/// <summary>Event Database for Generation 7</summary>
|
|||
|
public static MysteryGift[] MGDB_G7 { get; private set; } = new MysteryGift[0];
|
|||
|
|
|||
|
private static IEnumerable<byte[]> GetData(byte[] bin, int size)
|
|||
|
{
|
|||
|
for (int i = 0; i < bin.Length; i += size)
|
|||
|
{
|
|||
|
byte[] data = new byte[size];
|
|||
|
Buffer.BlockCopy(bin, i, data, 0, size);
|
|||
|
yield return data;
|
|||
|
}
|
|||
|
}
|
|||
|
private static HashSet<MysteryGift> GetPCDDB(byte[] bin) => new HashSet<MysteryGift>(GetData(bin, PCD.Size).Select(d => new PCD(d)));
|
|||
|
private static HashSet<MysteryGift> GetPGFDB(byte[] bin) => new HashSet<MysteryGift>(GetData(bin, PGF.Size).Select(d => new PGF(d)));
|
|||
|
private static HashSet<MysteryGift> GetWC6DB(byte[] wc6bin, byte[] wc6full) => new HashSet<MysteryGift>(
|
|||
|
GetData(wc6bin, WC6.Size).Select(d => new WC6(d)).Concat(
|
|||
|
GetData(wc6full, WC6.SizeFull).Select(d => new WC6(d))));
|
|||
|
private static HashSet<MysteryGift> GetWC7DB(byte[] wc7bin, byte[] wc7full) => new HashSet<MysteryGift>(
|
|||
|
GetData(wc7bin, WC7.Size).Select(d => new WC7(d)).Concat(
|
|||
|
GetData(wc7full, WC7.SizeFull).Select(d => new WC7(d))));
|
|||
|
|
|||
|
public static void RefreshMGDB(params string[] paths)
|
|||
|
{
|
|||
|
var g4 = GetPCDDB(Util.GetBinaryResource("wc4.pkl"));
|
|||
|
var g5 = GetPGFDB(Util.GetBinaryResource("pgf.pkl"));
|
|||
|
var g6 = GetWC6DB(Util.GetBinaryResource("wc6.pkl"), Util.GetBinaryResource("wc6full.pkl"));
|
|||
|
var g7 = GetWC7DB(Util.GetBinaryResource("wc7.pkl"), Util.GetBinaryResource("wc7full.pkl"));
|
|||
|
|
|||
|
foreach (var path in paths.Where(Directory.Exists))
|
|||
|
foreach (var file in Directory.EnumerateFiles(path, "*", SearchOption.AllDirectories))
|
|||
|
{
|
|||
|
var fi = new FileInfo(file);
|
|||
|
if (!MysteryGift.IsMysteryGift(fi.Length))
|
|||
|
continue;
|
|||
|
|
|||
|
var gift = MysteryGift.GetMysteryGift(File.ReadAllBytes(file), fi.Extension);
|
|||
|
switch (gift?.Format)
|
|||
|
{
|
|||
|
case 4: g4.Add(gift); continue;
|
|||
|
case 5: g5.Add(gift); continue;
|
|||
|
case 6: g6.Add(gift); continue;
|
|||
|
case 7: g7.Add(gift); continue;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
MGDB_G3 = Encounter_WC3; // hardcoded
|
|||
|
MGDB_G4 = g4.ToArray();
|
|||
|
MGDB_G5 = g5.ToArray();
|
|||
|
MGDB_G6 = g6.ToArray();
|
|||
|
MGDB_G7 = g7.ToArray();
|
|||
|
}
|
|||
|
|
|||
|
public static IEnumerable<MysteryGift> GetAllEvents(bool sorted = true)
|
|||
|
{
|
|||
|
var regular = new[]
|
|||
|
{
|
|||
|
MGDB_G4,
|
|||
|
MGDB_G5,
|
|||
|
MGDB_G6,
|
|||
|
MGDB_G7,
|
|||
|
}.SelectMany(z => z);
|
|||
|
regular = regular.Where(mg => !mg.IsItem && mg.IsPokémon && mg.Species > 0);
|
|||
|
var result = MGDB_G3.Concat(regular.Distinct());
|
|||
|
if (sorted)
|
|||
|
result = result.OrderBy(mg => mg.Species);
|
|||
|
return result;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|