mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
cd5ed794bc
Prevent popup of "USED" prompt when opening the form. Allow QR's for all generations (won't work for injection, just for sharing). Remove ".wc6" from Import/Export buttons (translation file). Importing gift from QR now type checks.
58 lines
2 KiB
C#
58 lines
2 KiB
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX
|
|
{
|
|
public abstract class MysteryGift
|
|
{
|
|
internal static MysteryGift getMysteryGift(byte[] data, string ext)
|
|
{
|
|
if (data.Length == WC6.SizeFull && ext == ".wc6full")
|
|
return new WC6(data);
|
|
if (data.Length == WC6.Size && ext == ".wc6")
|
|
return new WC6(data);
|
|
if (data.Length == PGF.Size && ext == ".pgf")
|
|
return new PGF(data);
|
|
if (data.Length == PGT.Size && ext == ".pgt")
|
|
return new PGT(data);
|
|
if (data.Length == PCD.Size && ext == ".pcd")
|
|
return new PCD(data);
|
|
return null;
|
|
}
|
|
internal static MysteryGift getMysteryGift(byte[] data)
|
|
{
|
|
switch (data.Length)
|
|
{
|
|
case WC6.SizeFull:
|
|
case WC6.Size:
|
|
return new WC6(data);
|
|
case PGF.Size:
|
|
return new PGF(data);
|
|
case PGT.Size:
|
|
return new PGT(data);
|
|
case PCD.Size:
|
|
return new PCD(data);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public abstract string Extension { get; }
|
|
public virtual byte[] Data { get; set; }
|
|
public abstract PKM convertToPKM(SaveFile SAV);
|
|
|
|
// Properties
|
|
public abstract bool GiftUsed { get; set; }
|
|
public abstract string CardTitle { get; set; }
|
|
public abstract int CardID { get; set; }
|
|
|
|
public abstract bool IsItem { get; set; }
|
|
public abstract int Item { get; set; }
|
|
|
|
public abstract bool IsPokémon { get; set; }
|
|
public virtual int Quantity { get { return 1; } set { } }
|
|
public bool Empty => Data.SequenceEqual(new byte[Data.Length]);
|
|
|
|
public string getCardHeader() => (CardID > 0 ? $"Card #: {CardID.ToString("0000")}" : "N/A") + $" - {CardTitle.Trim()}" + Environment.NewLine;
|
|
}
|
|
}
|