2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-07-03 03:24:17 +00:00
|
|
|
|
{
|
|
|
|
|
public abstract class PersonalInfo
|
|
|
|
|
{
|
|
|
|
|
protected byte[] Data;
|
2016-07-07 12:44:43 +00:00
|
|
|
|
public abstract byte[] Write();
|
2016-07-03 03:24:17 +00:00
|
|
|
|
public abstract int HP { get; set; }
|
|
|
|
|
public abstract int ATK { get; set; }
|
|
|
|
|
public abstract int DEF { get; set; }
|
|
|
|
|
public abstract int SPE { get; set; }
|
|
|
|
|
public abstract int SPA { get; set; }
|
|
|
|
|
public abstract int SPD { get; set; }
|
2016-08-28 10:18:22 +00:00
|
|
|
|
|
|
|
|
|
public int[] Stats => new[] { HP, ATK, DEF, SPE, SPA, SPD };
|
|
|
|
|
|
2016-07-03 03:24:17 +00:00
|
|
|
|
public abstract int EV_HP { get; set; }
|
|
|
|
|
public abstract int EV_ATK { get; set; }
|
|
|
|
|
public abstract int EV_DEF { get; set; }
|
|
|
|
|
public abstract int EV_SPE { get; set; }
|
|
|
|
|
public abstract int EV_SPA { get; set; }
|
|
|
|
|
public abstract int EV_SPD { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract int[] Types { get; set; }
|
|
|
|
|
public abstract int CatchRate { get; set; }
|
|
|
|
|
public virtual int EvoStage { get; set; }
|
|
|
|
|
public abstract int[] Items { get; set; }
|
|
|
|
|
public abstract int Gender { get; set; }
|
|
|
|
|
public abstract int HatchCycles { get; set; }
|
|
|
|
|
public abstract int BaseFriendship { get; set; }
|
|
|
|
|
public abstract int EXPGrowth { get; set; }
|
|
|
|
|
public abstract int[] EggGroups { get; set; }
|
|
|
|
|
public abstract int [] Abilities { get; set; }
|
|
|
|
|
public abstract int EscapeRate { get; set; }
|
|
|
|
|
public virtual int FormeCount { get; set; }
|
2016-11-12 18:19:17 +00:00
|
|
|
|
protected internal virtual int FormStatsIndex { get; set; }
|
2016-07-03 03:24:17 +00:00
|
|
|
|
public virtual int FormeSprite { get; set; }
|
|
|
|
|
public abstract int BaseEXP { get; set; }
|
|
|
|
|
public abstract int Color { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual int Height { get; set; } = 0;
|
|
|
|
|
public virtual int Weight { get; set; } = 0;
|
|
|
|
|
|
2017-01-08 08:14:34 +00:00
|
|
|
|
public bool[] TMHM { get; protected set; }
|
|
|
|
|
public bool[] TypeTutors { get; protected set; }
|
|
|
|
|
public bool[][] SpecialTutors { get; protected set; } = new bool[0][];
|
2016-07-03 03:24:17 +00:00
|
|
|
|
|
2016-07-03 20:04:07 +00:00
|
|
|
|
protected static bool[] getBits(byte[] data)
|
2016-07-03 03:24:17 +00:00
|
|
|
|
{
|
2017-03-18 23:50:34 +00:00
|
|
|
|
bool[] r = new bool[data.Length<<3];
|
2016-07-03 03:24:17 +00:00
|
|
|
|
for (int i = 0; i < r.Length; i++)
|
2017-03-18 23:50:34 +00:00
|
|
|
|
r[i] = (data[i>>3] >> (i&7) & 0x1) == 1;
|
2016-07-03 03:24:17 +00:00
|
|
|
|
return r;
|
|
|
|
|
}
|
2016-07-03 20:04:07 +00:00
|
|
|
|
protected static byte[] setBits(bool[] bits)
|
2016-07-03 03:24:17 +00:00
|
|
|
|
{
|
2017-03-18 23:50:34 +00:00
|
|
|
|
byte[] data = new byte[bits.Length>>3];
|
2016-07-03 03:24:17 +00:00
|
|
|
|
for (int i = 0; i < bits.Length; i++)
|
2017-03-18 23:50:34 +00:00
|
|
|
|
data[i>>3] |= (byte)(bits[i] ? 1 << (i&0x7) : 0);
|
2016-07-03 03:24:17 +00:00
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-18 23:50:34 +00:00
|
|
|
|
public void AddTMHM(byte[] data) => TMHM = getBits(data);
|
|
|
|
|
public void AddTypeTutors(byte[] data) => TypeTutors = getBits(data);
|
|
|
|
|
|
2016-07-03 03:24:17 +00:00
|
|
|
|
// Data Manipulation
|
|
|
|
|
public int FormeIndex(int species, int forme)
|
|
|
|
|
{
|
2016-07-05 06:53:15 +00:00
|
|
|
|
if (forme <= 0) // no forme requested
|
2016-07-03 20:04:07 +00:00
|
|
|
|
return species;
|
2016-07-05 06:53:15 +00:00
|
|
|
|
if (FormStatsIndex <= 0) // no formes present
|
2016-07-03 20:04:07 +00:00
|
|
|
|
return species;
|
|
|
|
|
if (forme > FormeCount) // beyond range of species' formes
|
|
|
|
|
return species;
|
|
|
|
|
|
|
|
|
|
return FormStatsIndex + forme - 1;
|
2016-07-03 03:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
public int RandomGender
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
switch (Gender)
|
|
|
|
|
{
|
|
|
|
|
case 255: // Genderless
|
|
|
|
|
return 2;
|
|
|
|
|
case 254: // Female
|
|
|
|
|
return 1;
|
|
|
|
|
case 0: // Male
|
|
|
|
|
return 0;
|
|
|
|
|
default:
|
|
|
|
|
return (int)(Util.rnd32() % 2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public bool HasFormes => FormeCount > 1;
|
|
|
|
|
public int BST => HP + ATK + DEF + SPE + SPA + SPD;
|
|
|
|
|
}
|
|
|
|
|
}
|