2014-10-10 02:59:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
2015-02-16 05:39:21 +00:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Drawing.Text;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX
|
|
|
|
|
{
|
2015-03-11 01:44:51 +00:00
|
|
|
|
public class PKX
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2014-12-11 06:50:40 +00:00
|
|
|
|
// C# PKX Function Library
|
|
|
|
|
// No WinForm object related code, only to calculate information.
|
2014-12-14 03:32:51 +00:00
|
|
|
|
// May require re-referencing to main form for string array referencing.
|
2014-12-11 06:50:40 +00:00
|
|
|
|
// Relies on Util for some common operations.
|
|
|
|
|
|
2014-10-11 07:22:22 +00:00
|
|
|
|
// Data
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint LCRNG(uint seed)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
const uint a = 0x41C64E6D;
|
|
|
|
|
const uint c = 0x00006073;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
seed = (seed * a + c) & 0xFFFFFFFF;
|
|
|
|
|
return seed;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint LCRNG(ref uint seed)
|
2014-12-18 04:09:14 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
const uint a = 0x41C64E6D;
|
|
|
|
|
const uint c = 0x00006073;
|
2014-12-18 04:09:14 +00:00
|
|
|
|
|
|
|
|
|
seed = (seed * a + c) & 0xFFFFFFFF;
|
|
|
|
|
return seed;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static DataTable ExpTable()
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
|
|
|
|
DataTable table = new DataTable();
|
2014-12-17 02:56:08 +00:00
|
|
|
|
table.Columns.Add("Level", typeof(byte));
|
|
|
|
|
table.Columns.Add("0 - MF", typeof(uint));
|
|
|
|
|
table.Columns.Add("1 - Erratic", typeof(uint));
|
|
|
|
|
table.Columns.Add("2 - Fluctuating", typeof(uint));
|
2014-10-25 22:52:24 +00:00
|
|
|
|
table.Columns.Add("3 - MS", typeof(uint));
|
2014-12-17 02:56:08 +00:00
|
|
|
|
table.Columns.Add("4 - Fast", typeof(uint));
|
|
|
|
|
table.Columns.Add("5 - Slow", typeof(uint));
|
2014-10-10 02:59:57 +00:00
|
|
|
|
table.Rows.Add(0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
table.Rows.Add(1, 0, 0, 0, 0, 0, 0);
|
2014-12-17 02:56:08 +00:00
|
|
|
|
table.Rows.Add(2, 8, 15, 4, 9, 6, 10);
|
|
|
|
|
table.Rows.Add(3, 27, 52, 13, 57, 21, 33);
|
|
|
|
|
table.Rows.Add(4, 64, 122, 32, 96, 51, 80);
|
|
|
|
|
table.Rows.Add(5, 125, 237, 65, 135, 100, 156);
|
|
|
|
|
table.Rows.Add(6, 216, 406, 112, 179, 172, 270);
|
|
|
|
|
table.Rows.Add(7, 343, 637, 178, 236, 274, 428);
|
|
|
|
|
table.Rows.Add(8, 512, 942, 276, 314, 409, 640);
|
|
|
|
|
table.Rows.Add(9, 729, 1326, 393, 419, 583, 911);
|
|
|
|
|
table.Rows.Add(10, 1000, 1800, 540, 560, 800, 1250);
|
|
|
|
|
table.Rows.Add(11, 1331, 2369, 745, 742, 1064, 1663);
|
|
|
|
|
table.Rows.Add(12, 1728, 3041, 967, 973, 1382, 2160);
|
|
|
|
|
table.Rows.Add(13, 2197, 3822, 1230, 1261, 1757, 2746);
|
|
|
|
|
table.Rows.Add(14, 2744, 4719, 1591, 1612, 2195, 3430);
|
|
|
|
|
table.Rows.Add(15, 3375, 5737, 1957, 2035, 2700, 4218);
|
|
|
|
|
table.Rows.Add(16, 4096, 6881, 2457, 2535, 3276, 5120);
|
|
|
|
|
table.Rows.Add(17, 4913, 8155, 3046, 3120, 3930, 6141);
|
|
|
|
|
table.Rows.Add(18, 5832, 9564, 3732, 3798, 4665, 7290);
|
|
|
|
|
table.Rows.Add(19, 6859, 11111, 4526, 4575, 5487, 8573);
|
|
|
|
|
table.Rows.Add(20, 8000, 12800, 5440, 5460, 6400, 10000);
|
|
|
|
|
table.Rows.Add(21, 9261, 14632, 6482, 6458, 7408, 11576);
|
|
|
|
|
table.Rows.Add(22, 10648, 16610, 7666, 7577, 8518, 13310);
|
|
|
|
|
table.Rows.Add(23, 12167, 18737, 9003, 8825, 9733, 15208);
|
|
|
|
|
table.Rows.Add(24, 13824, 21012, 10506, 10208, 11059, 17280);
|
|
|
|
|
table.Rows.Add(25, 15625, 23437, 12187, 11735, 12500, 19531);
|
|
|
|
|
table.Rows.Add(26, 17576, 26012, 14060, 13411, 14060, 21970);
|
|
|
|
|
table.Rows.Add(27, 19683, 28737, 16140, 15244, 15746, 24603);
|
|
|
|
|
table.Rows.Add(28, 21952, 31610, 18439, 17242, 17561, 27440);
|
|
|
|
|
table.Rows.Add(29, 24389, 34632, 20974, 19411, 19511, 30486);
|
|
|
|
|
table.Rows.Add(30, 27000, 37800, 23760, 21760, 21600, 33750);
|
|
|
|
|
table.Rows.Add(31, 29791, 41111, 26811, 24294, 23832, 37238);
|
|
|
|
|
table.Rows.Add(32, 32768, 44564, 30146, 27021, 26214, 40960);
|
|
|
|
|
table.Rows.Add(33, 35937, 48155, 33780, 29949, 28749, 44921);
|
|
|
|
|
table.Rows.Add(34, 39304, 51881, 37731, 33084, 31443, 49130);
|
|
|
|
|
table.Rows.Add(35, 42875, 55737, 42017, 36435, 34300, 53593);
|
|
|
|
|
table.Rows.Add(36, 46656, 59719, 46656, 40007, 37324, 58320);
|
|
|
|
|
table.Rows.Add(37, 50653, 63822, 50653, 43808, 40522, 63316);
|
|
|
|
|
table.Rows.Add(38, 54872, 68041, 55969, 47846, 43897, 68590);
|
|
|
|
|
table.Rows.Add(39, 59319, 72369, 60505, 52127, 47455, 74148);
|
|
|
|
|
table.Rows.Add(40, 64000, 76800, 66560, 56660, 51200, 80000);
|
|
|
|
|
table.Rows.Add(41, 68921, 81326, 71677, 61450, 55136, 86151);
|
|
|
|
|
table.Rows.Add(42, 74088, 85942, 78533, 66505, 59270, 92610);
|
|
|
|
|
table.Rows.Add(43, 79507, 90637, 84277, 71833, 63605, 99383);
|
|
|
|
|
table.Rows.Add(44, 85184, 95406, 91998, 77440, 68147, 106480);
|
|
|
|
|
table.Rows.Add(45, 91125, 100237, 98415, 83335, 72900, 113906);
|
|
|
|
|
table.Rows.Add(46, 97336, 105122, 107069, 89523, 77868, 121670);
|
|
|
|
|
table.Rows.Add(47, 103823, 110052, 114205, 96012, 83058, 129778);
|
|
|
|
|
table.Rows.Add(48, 110592, 115015, 123863, 102810, 88473, 138240);
|
|
|
|
|
table.Rows.Add(49, 117649, 120001, 131766, 109923, 94119, 147061);
|
|
|
|
|
table.Rows.Add(50, 125000, 125000, 142500, 117360, 100000, 156250);
|
|
|
|
|
table.Rows.Add(51, 132651, 131324, 151222, 125126, 106120, 165813);
|
|
|
|
|
table.Rows.Add(52, 140608, 137795, 163105, 133229, 112486, 175760);
|
|
|
|
|
table.Rows.Add(53, 148877, 144410, 172697, 141677, 119101, 186096);
|
|
|
|
|
table.Rows.Add(54, 157464, 151165, 185807, 150476, 125971, 196830);
|
|
|
|
|
table.Rows.Add(55, 166375, 158056, 196322, 159635, 133100, 207968);
|
|
|
|
|
table.Rows.Add(56, 175616, 165079, 210739, 169159, 140492, 219520);
|
|
|
|
|
table.Rows.Add(57, 185193, 172229, 222231, 179056, 148154, 231491);
|
|
|
|
|
table.Rows.Add(58, 195112, 179503, 238036, 189334, 156089, 243890);
|
|
|
|
|
table.Rows.Add(59, 205379, 186894, 250562, 199999, 164303, 256723);
|
|
|
|
|
table.Rows.Add(60, 216000, 194400, 267840, 211060, 172800, 270000);
|
|
|
|
|
table.Rows.Add(61, 226981, 202013, 281456, 222522, 181584, 283726);
|
|
|
|
|
table.Rows.Add(62, 238328, 209728, 300293, 234393, 190662, 297910);
|
|
|
|
|
table.Rows.Add(63, 250047, 217540, 315059, 246681, 200037, 312558);
|
|
|
|
|
table.Rows.Add(64, 262144, 225443, 335544, 259392, 209715, 327680);
|
|
|
|
|
table.Rows.Add(65, 274625, 233431, 351520, 272535, 219700, 343281);
|
|
|
|
|
table.Rows.Add(66, 287496, 241496, 373744, 286115, 229996, 359370);
|
|
|
|
|
table.Rows.Add(67, 300763, 249633, 390991, 300140, 240610, 375953);
|
|
|
|
|
table.Rows.Add(68, 314432, 257834, 415050, 314618, 251545, 393040);
|
|
|
|
|
table.Rows.Add(69, 328509, 267406, 433631, 329555, 262807, 410636);
|
|
|
|
|
table.Rows.Add(70, 343000, 276458, 459620, 344960, 274400, 428750);
|
|
|
|
|
table.Rows.Add(71, 357911, 286328, 479600, 360838, 286328, 447388);
|
|
|
|
|
table.Rows.Add(72, 373248, 296358, 507617, 377197, 298598, 466560);
|
|
|
|
|
table.Rows.Add(73, 389017, 305767, 529063, 394045, 311213, 486271);
|
|
|
|
|
table.Rows.Add(74, 405224, 316074, 559209, 411388, 324179, 506530);
|
|
|
|
|
table.Rows.Add(75, 421875, 326531, 582187, 429235, 337500, 527343);
|
|
|
|
|
table.Rows.Add(76, 438976, 336255, 614566, 447591, 351180, 548720);
|
|
|
|
|
table.Rows.Add(77, 456533, 346965, 639146, 466464, 365226, 570666);
|
|
|
|
|
table.Rows.Add(78, 474552, 357812, 673863, 485862, 379641, 593190);
|
|
|
|
|
table.Rows.Add(79, 493039, 367807, 700115, 505791, 394431, 616298);
|
|
|
|
|
table.Rows.Add(80, 512000, 378880, 737280, 526260, 409600, 640000);
|
|
|
|
|
table.Rows.Add(81, 531441, 390077, 765275, 547274, 425152, 664301);
|
|
|
|
|
table.Rows.Add(82, 551368, 400293, 804997, 568841, 441094, 689210);
|
|
|
|
|
table.Rows.Add(83, 571787, 411686, 834809, 590969, 457429, 714733);
|
|
|
|
|
table.Rows.Add(84, 592704, 423190, 877201, 613664, 474163, 740880);
|
|
|
|
|
table.Rows.Add(85, 614125, 433572, 908905, 636935, 491300, 767656);
|
|
|
|
|
table.Rows.Add(86, 636056, 445239, 954084, 660787, 508844, 795070);
|
|
|
|
|
table.Rows.Add(87, 658503, 457001, 987754, 685228, 526802, 823128);
|
|
|
|
|
table.Rows.Add(88, 681472, 467489, 1035837, 710266, 545177, 851840);
|
|
|
|
|
table.Rows.Add(89, 704969, 479378, 1071552, 735907, 563975, 881211);
|
|
|
|
|
table.Rows.Add(90, 729000, 491346, 1122660, 762160, 583200, 911250);
|
|
|
|
|
table.Rows.Add(91, 753571, 501878, 1160499, 789030, 602856, 941963);
|
|
|
|
|
table.Rows.Add(92, 778688, 513934, 1214753, 816525, 622950, 973360);
|
|
|
|
|
table.Rows.Add(93, 804357, 526049, 1254796, 844653, 643485, 1005446);
|
|
|
|
|
table.Rows.Add(94, 830584, 536557, 1312322, 873420, 664467, 1038230);
|
|
|
|
|
table.Rows.Add(95, 857375, 548720, 1354652, 902835, 685900, 1071718);
|
|
|
|
|
table.Rows.Add(96, 884736, 560922, 1415577, 932903, 707788, 1105920);
|
|
|
|
|
table.Rows.Add(97, 912673, 571333, 1460276, 963632, 730138, 1140841);
|
|
|
|
|
table.Rows.Add(98, 941192, 583539, 1524731, 995030, 752953, 1176490);
|
|
|
|
|
table.Rows.Add(99, 970299, 591882, 1571884, 1027103, 776239, 1212873);
|
|
|
|
|
table.Rows.Add(100, 1000000, 600000, 1640000, 1059860, 800000, 1250000);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
return table;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
|
2014-10-11 07:22:22 +00:00
|
|
|
|
// Stat Fetching
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static int getMovePP(int move, int ppup)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
|
|
|
|
return (getBasePP(move) * (5 + ppup) / 5);
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static int getBasePP(int move)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2014-12-12 07:09:22 +00:00
|
|
|
|
byte[] movepptable =
|
|
|
|
|
{
|
|
|
|
|
00,
|
|
|
|
|
35, 25, 10, 15, 20, 20, 15, 15, 15, 35, 30, 05, 10, 20, 30, 35, 35, 20, 15, 20,
|
|
|
|
|
20, 25, 20, 30, 05, 10, 15, 15, 15, 25, 20, 05, 35, 15, 20, 20, 10, 15, 30, 35,
|
|
|
|
|
20, 20, 30, 25, 40, 20, 15, 20, 20, 20, 30, 25, 15, 30, 25, 05, 15, 10, 05, 20,
|
|
|
|
|
20, 20, 05, 35, 20, 25, 20, 20, 20, 15, 25, 15, 10, 20, 25, 10, 35, 30, 15, 10,
|
|
|
|
|
40, 10, 15, 30, 15, 20, 10, 15, 10, 05, 10, 10, 25, 10, 20, 40, 30, 30, 20, 20,
|
|
|
|
|
15, 10, 40, 15, 10, 30, 10, 20, 10, 40, 40, 20, 30, 30, 20, 30, 10, 10, 20, 05,
|
|
|
|
|
10, 30, 20, 20, 20, 05, 15, 10, 20, 10, 15, 35, 20, 15, 10, 10, 30, 15, 40, 20,
|
|
|
|
|
15, 10, 05, 10, 30, 10, 15, 20, 15, 40, 20, 10, 05, 15, 10, 10, 10, 15, 30, 30,
|
|
|
|
|
10, 10, 20, 10, 01, 01, 10, 25, 10, 05, 15, 25, 15, 10, 15, 30, 05, 40, 15, 10,
|
|
|
|
|
25, 10, 30, 10, 20, 10, 10, 10, 10, 10, 20, 05, 40, 05, 05, 15, 05, 10, 05, 10,
|
|
|
|
|
10, 10, 10, 20, 20, 40, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20,
|
|
|
|
|
05, 30, 05, 10, 20, 40, 05, 20, 40, 20, 15, 35, 10, 05, 05, 05, 15, 05, 20, 05,
|
|
|
|
|
05, 15, 20, 10, 05, 05, 15, 10, 15, 15, 10, 10, 10, 20, 10, 10, 10, 10, 15, 15,
|
|
|
|
|
15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15,
|
|
|
|
|
10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
|
|
|
|
20, 15, 10, 10, 15, 10, 05, 05, 10, 15, 10, 05, 20, 25, 05, 40, 15, 05, 40, 15,
|
|
|
|
|
20, 20, 05, 15, 20, 20, 15, 15, 05, 10, 30, 20, 30, 15, 05, 40, 15, 05, 20, 05,
|
|
|
|
|
15, 25, 25, 15, 20, 15, 20, 15, 20, 10, 20, 20, 05, 05, 10, 05, 40, 10, 10, 05,
|
|
|
|
|
10, 10, 15, 10, 20, 15, 30, 10, 20, 05, 10, 10, 15, 10, 10, 05, 15, 05, 10, 10,
|
|
|
|
|
30, 20, 20, 10, 10, 05, 05, 10, 05, 20, 10, 20, 10, 15, 10, 20, 20, 20, 15, 15,
|
|
|
|
|
10, 15, 15, 15, 10, 10, 10, 20, 10, 30, 05, 10, 15, 10, 10, 05, 20, 30, 10, 30,
|
|
|
|
|
15, 15, 15, 15, 30, 10, 20, 15, 10, 10, 20, 15, 05, 05, 15, 15, 05, 10, 05, 20,
|
|
|
|
|
05, 15, 20, 05, 20, 20, 20, 20, 10, 20, 10, 15, 20, 15, 10, 10, 05, 10, 05, 05,
|
|
|
|
|
10, 05, 05, 10, 05, 05, 05, 15, 10, 10, 10, 10, 10, 10, 15, 20, 15, 10, 15, 10,
|
|
|
|
|
15, 10, 20, 10, 15, 10, 20, 20, 20, 20, 20, 15, 15, 15, 15, 15, 15, 20, 15, 10,
|
|
|
|
|
15, 15, 15, 15, 10, 10, 10, 10, 10, 15, 15, 15, 15, 05, 05, 15, 05, 10, 10, 10,
|
|
|
|
|
20, 20, 20, 10, 10, 30, 15, 15, 10, 15, 25, 10, 15, 10, 10, 10, 20, 10, 10, 10,
|
|
|
|
|
10, 10, 15, 15, 05, 05, 10, 10, 10, 05, 05, 10, 05, 05, 15, 10, 05, 05, 05, 10,
|
|
|
|
|
10, 10, 10, 20, 25, 10, 20, 30, 25, 20, 20, 15, 20, 15, 20, 20, 10, 10, 10, 10,
|
|
|
|
|
10, 20, 10, 30, 15, 10, 10, 10, 20, 20, 05, 05, 05, 20, 10, 10, 20, 15, 20, 20,
|
|
|
|
|
10, 20, 30, 10, 10, 40, 40, 30, 20, 40, 20, 20, 10, 10, 10, 10, 05, 10, 10, 05,
|
2015-03-10 06:37:40 +00:00
|
|
|
|
05
|
2014-12-12 07:09:22 +00:00
|
|
|
|
};
|
2014-10-10 02:59:57 +00:00
|
|
|
|
if (move < 0) { move = 0; }
|
2015-03-10 06:37:40 +00:00
|
|
|
|
return movepptable[move];
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static byte[] getRandomEVs()
|
2014-12-11 06:50:40 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
byte[] evs = { 0xDE, 0xAD, 0xBE, 0xEF, 0xBA, 0xBE }; // ha ha, just to start off above 510!
|
2014-12-18 04:09:14 +00:00
|
|
|
|
|
|
|
|
|
while (evs.Sum(b => (ushort)b) > 510) // recalculate random EVs...
|
|
|
|
|
{
|
|
|
|
|
evs[0] = (byte)Math.Min(Util.rnd32() % 300, 252); // bias two to get maybe 252
|
|
|
|
|
evs[1] = (byte)Math.Min(Util.rnd32() % 300, 252);
|
|
|
|
|
evs[2] = (byte)Math.Min(((Util.rnd32()) % (510 - evs[0] - evs[1])), 252);
|
|
|
|
|
evs[3] = (byte)Math.Min(((Util.rnd32()) % (510 - evs[0] - evs[1] - evs[2])), 252);
|
|
|
|
|
evs[4] = (byte)Math.Min(((Util.rnd32()) % (510 - evs[0] - evs[1] - evs[2] - evs[3])), 252);
|
|
|
|
|
evs[5] = (byte)Math.Min((510 - evs[0] - evs[1] - evs[2] - evs[3] - evs[4]), 252);
|
|
|
|
|
}
|
2014-12-11 06:50:40 +00:00
|
|
|
|
Util.Shuffle(evs);
|
|
|
|
|
return evs;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static byte getBaseFriendship(int species)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2014-12-18 04:09:14 +00:00
|
|
|
|
return PersonalGetter.GetPersonal(species).BaseFriendship;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-09-24 03:29:31 +00:00
|
|
|
|
internal static int getLevel(int species, uint exp)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (exp == 0) { return 1; }
|
|
|
|
|
|
2014-12-12 06:36:39 +00:00
|
|
|
|
PersonalParser.Personal MonData = PersonalGetter.GetPersonal(species);
|
|
|
|
|
int growth = MonData.EXPGrowth;
|
2015-03-10 06:37:40 +00:00
|
|
|
|
DataTable table = ExpTable();
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2014-12-18 04:09:14 +00:00
|
|
|
|
// Iterate upwards to find the level above our current level
|
2014-12-20 19:27:06 +00:00
|
|
|
|
int tl = 0; // Initial Level, immediately incremented before loop.
|
|
|
|
|
while ((uint)table.Rows[++tl][growth + 1] <= exp)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (tl != 100) continue;
|
|
|
|
|
return 100;
|
2014-12-18 04:09:14 +00:00
|
|
|
|
// After we find the level above ours, we're done.
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2014-12-18 04:09:14 +00:00
|
|
|
|
return --tl;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static bool getIsShiny(uint PID, uint TID, uint SID)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
|
|
|
|
uint PSV = getPSV(PID);
|
|
|
|
|
uint TSV = getTSV(TID, SID);
|
2014-12-14 04:32:11 +00:00
|
|
|
|
return (TSV == PSV);
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint getEXP(int level, int species)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
|
|
|
|
// Fetch Growth
|
|
|
|
|
if ((level == 0) || (level == 1))
|
|
|
|
|
return 0;
|
2014-10-25 22:52:24 +00:00
|
|
|
|
if (level > 100) level = 100;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2014-12-12 06:36:39 +00:00
|
|
|
|
PersonalParser.Personal MonData = PersonalGetter.GetPersonal(species);
|
|
|
|
|
int growth = MonData.EXPGrowth;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2015-03-10 06:37:40 +00:00
|
|
|
|
uint exp = (uint)ExpTable().Rows[level][growth + 1];
|
2014-10-25 22:52:24 +00:00
|
|
|
|
return exp;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static byte[] getAbilities(int species, int formnum)
|
2014-12-11 06:50:40 +00:00
|
|
|
|
{
|
2014-12-12 07:09:22 +00:00
|
|
|
|
return PersonalGetter.GetPersonal(species, formnum).Abilities;
|
2014-12-11 06:50:40 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static int getGender(string s)
|
2014-10-11 07:22:22 +00:00
|
|
|
|
{
|
2015-09-24 03:29:31 +00:00
|
|
|
|
if (s == null)
|
|
|
|
|
return -1;
|
2014-10-11 07:22:22 +00:00
|
|
|
|
if (s == "♂" || s == "M")
|
|
|
|
|
return 0;
|
2015-03-10 06:37:40 +00:00
|
|
|
|
if (s == "♀" || s == "F")
|
2014-10-11 07:22:22 +00:00
|
|
|
|
return 1;
|
2015-03-10 06:37:40 +00:00
|
|
|
|
return 2;
|
2014-10-11 07:22:22 +00:00
|
|
|
|
}
|
2015-09-24 06:02:26 +00:00
|
|
|
|
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static string[] getCountryRegionText(int country, int region, string lang)
|
2014-12-13 16:24:46 +00:00
|
|
|
|
{
|
|
|
|
|
// Get Language we're fetching for
|
2015-03-10 06:37:40 +00:00
|
|
|
|
int index = Array.IndexOf(new[] { "ja", "en", "fr", "de", "it", "es", "zh", "ko"}, lang);
|
2014-12-13 16:24:46 +00:00
|
|
|
|
// Return value storage
|
|
|
|
|
string[] data = new string[2]; // country, region
|
|
|
|
|
|
|
|
|
|
// Get Country Text
|
2014-12-14 04:02:09 +00:00
|
|
|
|
try
|
2014-12-13 16:24:46 +00:00
|
|
|
|
{
|
|
|
|
|
{
|
2014-12-14 04:02:09 +00:00
|
|
|
|
string[] inputCSV = Util.getSimpleStringList("countries");
|
|
|
|
|
// Set up our Temporary Storage
|
|
|
|
|
string[] unsortedList = new string[inputCSV.Length - 1];
|
|
|
|
|
int[] indexes = new int[inputCSV.Length - 1];
|
|
|
|
|
|
|
|
|
|
// Gather our data from the input file
|
|
|
|
|
for (int i = 1; i < inputCSV.Length; i++)
|
2014-12-13 16:24:46 +00:00
|
|
|
|
{
|
2014-12-14 04:02:09 +00:00
|
|
|
|
string[] countryData = inputCSV[i].Split(',');
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (countryData.Length <= 1) continue;
|
|
|
|
|
indexes[i - 1] = Convert.ToInt32(countryData[0]);
|
|
|
|
|
unsortedList[i - 1] = countryData[index + 1];
|
2014-12-13 16:24:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-14 04:02:09 +00:00
|
|
|
|
int countrynum = Array.IndexOf(indexes, country);
|
|
|
|
|
data[0] = unsortedList[countrynum];
|
|
|
|
|
}
|
2014-12-13 16:24:46 +00:00
|
|
|
|
}
|
2014-12-14 04:02:09 +00:00
|
|
|
|
catch { data[0] = "Illegal"; }
|
2014-12-13 16:24:46 +00:00
|
|
|
|
|
|
|
|
|
// Get Region Text
|
2014-12-14 04:02:09 +00:00
|
|
|
|
try
|
2014-12-13 16:24:46 +00:00
|
|
|
|
{
|
|
|
|
|
{
|
2014-12-14 04:02:09 +00:00
|
|
|
|
string[] inputCSV = Util.getSimpleStringList("sr_" + country.ToString("000"));
|
|
|
|
|
// Set up our Temporary Storage
|
|
|
|
|
string[] unsortedList = new string[inputCSV.Length - 1];
|
|
|
|
|
int[] indexes = new int[inputCSV.Length - 1];
|
|
|
|
|
|
|
|
|
|
// Gather our data from the input file
|
|
|
|
|
for (int i = 1; i < inputCSV.Length; i++)
|
2014-12-13 16:24:46 +00:00
|
|
|
|
{
|
2014-12-14 04:02:09 +00:00
|
|
|
|
string[] countryData = inputCSV[i].Split(',');
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (countryData.Length <= 1) continue;
|
|
|
|
|
indexes[i - 1] = Convert.ToInt32(countryData[0]);
|
|
|
|
|
unsortedList[i - 1] = countryData[index + 1];
|
2014-12-13 16:24:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-14 04:02:09 +00:00
|
|
|
|
int regionnum = Array.IndexOf(indexes, region);
|
|
|
|
|
data[1] = unsortedList[regionnum];
|
|
|
|
|
}
|
2014-12-13 16:24:46 +00:00
|
|
|
|
}
|
2014-12-14 04:02:09 +00:00
|
|
|
|
catch { data[1] = "Illegal"; }
|
2014-12-13 16:24:46 +00:00
|
|
|
|
return data;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static string getLocation(bool eggmet, int gameorigin, int locval)
|
2014-12-14 03:32:51 +00:00
|
|
|
|
{
|
|
|
|
|
if (gameorigin < 13 && gameorigin > 6 && eggmet)
|
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
if (locval < 2000) return Main.metHGSS_00000[locval];
|
|
|
|
|
if (locval < 3000) return Main.metHGSS_02000[locval % 2000];
|
|
|
|
|
return Main.metHGSS_03000[locval % 3000];
|
2014-12-14 03:32:51 +00:00
|
|
|
|
}
|
2015-03-17 02:25:59 +00:00
|
|
|
|
if (gameorigin < 24)
|
2014-12-14 03:32:51 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
if (locval < 30000) return Main.metBW2_00000[locval];
|
|
|
|
|
if (locval < 40000) return Main.metBW2_30000[locval % 10000 - 1];
|
|
|
|
|
if (locval < 60000) return Main.metBW2_40000[locval % 10000 - 1];
|
|
|
|
|
return Main.metBW2_60000[locval % 10000 - 1];
|
2014-12-14 03:32:51 +00:00
|
|
|
|
}
|
2015-03-17 02:25:59 +00:00
|
|
|
|
if (gameorigin > 23)
|
2014-12-14 03:32:51 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
if (locval < 30000) return Main.metXY_00000[locval];
|
|
|
|
|
if (locval < 40000) return Main.metXY_30000[locval % 10000 - 1];
|
|
|
|
|
if (locval < 60000) return Main.metXY_40000[locval % 10000 - 1];
|
|
|
|
|
return Main.metXY_60000[locval % 10000 - 1];
|
2014-12-14 03:32:51 +00:00
|
|
|
|
}
|
2015-03-17 02:25:59 +00:00
|
|
|
|
return null; // Shouldn't happen.
|
2014-12-14 03:32:51 +00:00
|
|
|
|
}
|
2015-09-24 06:02:26 +00:00
|
|
|
|
internal static string[] getQRText(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
string[] response = new string[3];
|
|
|
|
|
// Summarize
|
|
|
|
|
string filename = pk6.Nickname;
|
|
|
|
|
if (pk6.Nickname != Main.specieslist[pk6.Species] && Main.specieslist[pk6.Species] != null)
|
|
|
|
|
filename += " (" + Main.specieslist[pk6.Species] + ")";
|
|
|
|
|
response[0] = String.Format("{0} [{4}] lv{3} @ {1} -- {2}", filename, Main.itemlist[pk6.HeldItem], Main.natures[pk6.Nature], pk6.Stat_Level, Main.abilitylist[pk6.Ability]);
|
|
|
|
|
response[1] = String.Format("{0} / {1} / {2} / {3}", Main.movelist[pk6.Move1], Main.movelist[pk6.Move2], Main.movelist[pk6.Move3], Main.movelist[pk6.Move4]);
|
|
|
|
|
response[2] = String.Format(
|
|
|
|
|
"IVs:{0}{1}{2}{3}{4}{5}"
|
|
|
|
|
+ Environment.NewLine + Environment.NewLine +
|
|
|
|
|
"EVs:{6}{7}{8}{9}{10}{11}",
|
|
|
|
|
Environment.NewLine + pk6.IV_HP.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.IV_ATK.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.IV_DEF.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.IV_SPA.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.IV_SPD.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.IV_SPE.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_HP.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_ATK.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_DEF.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_SPA.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_SPD.ToString("00"),
|
|
|
|
|
Environment.NewLine + pk6.EV_SPE.ToString("00"));
|
|
|
|
|
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
internal static ushort[] getStats(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
return getStats(pk6.Species, pk6.Stat_Level, pk6.Nature, pk6.AltForm,
|
|
|
|
|
pk6.EV_HP, pk6.EV_ATK, pk6.EV_DEF, pk6.EV_SPA, pk6.EV_SPD, pk6.EV_SPE,
|
|
|
|
|
pk6.IV_HP, pk6.IV_ATK, pk6.IV_DEF, pk6.IV_SPA, pk6.IV_SPD, pk6.IV_SPE);
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static ushort[] getStats(int species, int level, int nature, int form,
|
2014-12-11 06:50:40 +00:00
|
|
|
|
int HP_EV, int ATK_EV, int DEF_EV, int SPA_EV, int SPD_EV, int SPE_EV,
|
|
|
|
|
int HP_IV, int ATK_IV, int DEF_IV, int SPA_IV, int SPD_IV, int SPE_IV)
|
|
|
|
|
{
|
2014-12-12 06:36:39 +00:00
|
|
|
|
PersonalParser.Personal MonData = PersonalGetter.GetPersonal(species, form);
|
|
|
|
|
int HP_B = MonData.BaseStats[0];
|
|
|
|
|
int ATK_B = MonData.BaseStats[1];
|
|
|
|
|
int DEF_B = MonData.BaseStats[2];
|
|
|
|
|
int SPE_B = MonData.BaseStats[3];
|
|
|
|
|
int SPA_B = MonData.BaseStats[4];
|
|
|
|
|
int SPD_B = MonData.BaseStats[5];
|
|
|
|
|
|
2014-12-11 06:50:40 +00:00
|
|
|
|
// Calculate Stats
|
|
|
|
|
ushort[] stats = new ushort[6]; // Stats are stored as ushorts in the PKX structure. We'll cap them as such.
|
2015-02-03 04:52:10 +00:00
|
|
|
|
stats[0] = (HP_B == 1) ? (ushort)1 : (ushort)((((HP_IV + (2 * HP_B) + (HP_EV / 4) + 100) * level) / 100) + 10);
|
2014-12-11 06:50:40 +00:00
|
|
|
|
stats[1] = (ushort)((((ATK_IV + (2 * ATK_B) + (ATK_EV / 4)) * level) / 100) + 5);
|
|
|
|
|
stats[2] = (ushort)((((DEF_IV + (2 * DEF_B) + (DEF_EV / 4)) * level) / 100) + 5);
|
|
|
|
|
stats[4] = (ushort)((((SPA_IV + (2 * SPA_B) + (SPA_EV / 4)) * level) / 100) + 5);
|
|
|
|
|
stats[5] = (ushort)((((SPD_IV + (2 * SPD_B) + (SPD_EV / 4)) * level) / 100) + 5);
|
|
|
|
|
stats[3] = (ushort)((((SPE_IV + (2 * SPE_B) + (SPE_EV / 4)) * level) / 100) + 5);
|
|
|
|
|
|
|
|
|
|
// Account for nature
|
|
|
|
|
int incr = nature / 5 + 1;
|
|
|
|
|
int decr = nature % 5 + 1;
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (incr == decr) return stats; // if neutral return stats without mod
|
|
|
|
|
stats[incr] *= 11; stats[incr] /= 10;
|
|
|
|
|
stats[decr] *= 9; stats[decr] /= 10;
|
2014-12-11 06:50:40 +00:00
|
|
|
|
|
|
|
|
|
// Return Result
|
|
|
|
|
return stats;
|
|
|
|
|
}
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2015-09-24 06:02:26 +00:00
|
|
|
|
|
2015-04-28 14:39:50 +00:00
|
|
|
|
// PKX Manipulation
|
2015-10-04 23:37:34 +00:00
|
|
|
|
internal static readonly byte[][] blockPosition =
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2015-10-04 23:37:34 +00:00
|
|
|
|
new byte[] {0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 2, 3, 1, 1, 2, 3, 2, 3, 1, 1, 2, 3, 2, 3},
|
|
|
|
|
new byte[] {1, 1, 2, 3, 2, 3, 0, 0, 0, 0, 0, 0, 2, 3, 1, 1, 3, 2, 2, 3, 1, 1, 3, 2},
|
|
|
|
|
new byte[] {2, 3, 1, 1, 3, 2, 2, 3, 1, 1, 3, 2, 0, 0, 0, 0, 0, 0, 3, 2, 3, 2, 1, 1},
|
|
|
|
|
new byte[] {3, 2, 3, 2, 1, 1, 3, 2, 3, 2, 1, 1, 3, 2, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
};
|
|
|
|
|
internal static byte[] shuffleArray(byte[] data, uint sv)
|
|
|
|
|
{
|
|
|
|
|
byte[] sdata = new byte[260];
|
|
|
|
|
Array.Copy(data, sdata, 8); // Copy unshuffled bytes
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2015-10-04 23:37:34 +00:00
|
|
|
|
// Shuffle Away!
|
|
|
|
|
for (int block = 0; block < 4; block++)
|
|
|
|
|
Array.Copy(data, 8 + 56*blockPosition[block][sv], sdata, 8 + 56*block, 56);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
// Fill the Battle Stats back
|
2015-10-04 23:37:34 +00:00
|
|
|
|
if (data.Length > 232)
|
|
|
|
|
Array.Copy(data, 232, sdata, 232, 28);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2015-10-04 23:37:34 +00:00
|
|
|
|
return sdata;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static byte[] decryptArray(byte[] ekx)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
2014-12-18 04:09:14 +00:00
|
|
|
|
byte[] pkx = (byte[])ekx.Clone();
|
|
|
|
|
|
2014-10-10 02:59:57 +00:00
|
|
|
|
uint pv = BitConverter.ToUInt32(pkx, 0);
|
|
|
|
|
uint sv = (((pv & 0x3E000) >> 0xD) % 24);
|
|
|
|
|
|
|
|
|
|
uint seed = pv;
|
|
|
|
|
|
|
|
|
|
// Decrypt Blocks with RNG Seed
|
|
|
|
|
for (int i = 8; i < 232; i += 2)
|
2015-03-10 06:37:40 +00:00
|
|
|
|
Array.Copy(BitConverter.GetBytes((ushort)(BitConverter.ToUInt16(pkx, i) ^ (LCRNG(ref seed) >> 16))), 0, pkx, i, 2);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
// Deshuffle
|
|
|
|
|
pkx = shuffleArray(pkx, sv);
|
|
|
|
|
|
|
|
|
|
// Decrypt the Party Stats
|
|
|
|
|
seed = pv;
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (pkx.Length <= 232) return pkx;
|
|
|
|
|
for (int i = 232; i < 260; i += 2)
|
|
|
|
|
Array.Copy(BitConverter.GetBytes((ushort)(BitConverter.ToUInt16(pkx, i) ^ (LCRNG(ref seed) >> 16))), 0, pkx, i, 2);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
return pkx;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static byte[] encryptArray(byte[] pkx)
|
2014-10-10 02:59:57 +00:00
|
|
|
|
{
|
|
|
|
|
// Shuffle
|
|
|
|
|
uint pv = BitConverter.ToUInt32(pkx, 0);
|
|
|
|
|
uint sv = (((pv & 0x3E000) >> 0xD) % 24);
|
|
|
|
|
|
2014-12-18 04:09:14 +00:00
|
|
|
|
byte[] ekx = (byte[])pkx.Clone();
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
// If I unshuffle 11 times, the 12th (decryption) will always decrypt to ABCD.
|
|
|
|
|
// 2 x 3 x 4 = 12 (possible unshuffle loops -> total iterations)
|
|
|
|
|
for (int i = 0; i < 11; i++)
|
2014-12-18 04:09:14 +00:00
|
|
|
|
ekx = shuffleArray(ekx, sv);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
uint seed = pv;
|
|
|
|
|
// Encrypt Blocks with RNG Seed
|
|
|
|
|
for (int i = 8; i < 232; i += 2)
|
2015-03-10 06:37:40 +00:00
|
|
|
|
Array.Copy(BitConverter.GetBytes((ushort)(BitConverter.ToUInt16(ekx, i) ^ (LCRNG(ref seed) >> 16))), 0, ekx, i, 2);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2015-03-17 02:25:59 +00:00
|
|
|
|
// If no party stats, return.
|
|
|
|
|
if (ekx.Length <= 232) return ekx;
|
|
|
|
|
|
2014-10-10 02:59:57 +00:00
|
|
|
|
// Encrypt the Party Stats
|
|
|
|
|
seed = pv;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
for (int i = 232; i < 260; i += 2)
|
|
|
|
|
Array.Copy(BitConverter.GetBytes((ushort)(BitConverter.ToUInt16(ekx, i) ^ (LCRNG(ref seed) >> 16))), 0, ekx, i, 2);
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
|
|
|
|
// Done
|
2014-12-18 04:09:14 +00:00
|
|
|
|
return ekx;
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static ushort getCHK(byte[] data)
|
2014-11-30 01:46:48 +00:00
|
|
|
|
{
|
|
|
|
|
ushort chk = 0;
|
|
|
|
|
for (int i = 8; i < 232; i += 2) // Loop through the entire PKX
|
|
|
|
|
chk += BitConverter.ToUInt16(data, i);
|
2015-03-11 01:44:51 +00:00
|
|
|
|
|
2014-11-30 01:46:48 +00:00
|
|
|
|
return chk;
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static bool verifychk(byte[] input)
|
2014-11-15 05:08:00 +00:00
|
|
|
|
{
|
|
|
|
|
ushort checksum = 0;
|
|
|
|
|
if (input.Length == 100 || input.Length == 80) // Gen 3 Files
|
|
|
|
|
{
|
|
|
|
|
for (int i = 32; i < 80; i += 2)
|
|
|
|
|
checksum += BitConverter.ToUInt16(input, i);
|
|
|
|
|
|
|
|
|
|
return (checksum == BitConverter.ToUInt16(input, 28));
|
|
|
|
|
}
|
|
|
|
|
{
|
2014-11-30 19:17:32 +00:00
|
|
|
|
if (input.Length == 236 || input.Length == 220 || input.Length == 136) // Gen 4/5
|
2015-01-03 01:07:29 +00:00
|
|
|
|
Array.Resize(ref input, 136);
|
2014-11-30 01:46:48 +00:00
|
|
|
|
else if (input.Length == 232 || input.Length == 260) // Gen 6
|
2015-01-03 01:07:29 +00:00
|
|
|
|
Array.Resize(ref input, 232);
|
2014-11-30 01:46:48 +00:00
|
|
|
|
else throw new Exception("Wrong sized input array to verifychecksum");
|
2014-11-15 05:08:00 +00:00
|
|
|
|
|
2014-11-30 01:46:48 +00:00
|
|
|
|
ushort chk = 0;
|
2014-11-15 05:08:00 +00:00
|
|
|
|
for (int i = 8; i < input.Length; i += 2)
|
2014-11-30 01:46:48 +00:00
|
|
|
|
chk += BitConverter.ToUInt16(input, i);
|
2014-11-15 05:08:00 +00:00
|
|
|
|
|
2014-11-30 01:46:48 +00:00
|
|
|
|
return (chk == BitConverter.ToUInt16(input, 0x6));
|
2014-11-15 05:08:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint getPSV(uint PID)
|
2014-10-11 07:22:22 +00:00
|
|
|
|
{
|
|
|
|
|
return Convert.ToUInt16(((PID >> 16) ^ (PID & 0xFFFF)) >> 4);
|
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint getTSV(uint TID, uint SID)
|
2014-11-28 10:14:15 +00:00
|
|
|
|
{
|
2014-12-13 22:48:34 +00:00
|
|
|
|
return ((TID ^ SID) >> 4);
|
2014-11-28 10:14:15 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
internal static uint getRandomPID(int species, int cg)
|
2014-10-11 07:22:22 +00:00
|
|
|
|
{
|
2014-12-12 06:36:39 +00:00
|
|
|
|
PersonalParser.Personal MonData = PersonalGetter.GetPersonal(species);
|
|
|
|
|
int gt = MonData.GenderRatio;
|
2015-03-10 06:37:40 +00:00
|
|
|
|
uint pid = Util.rnd32();
|
2014-12-12 06:36:39 +00:00
|
|
|
|
if (gt == 255) //Genderless
|
2014-10-11 07:22:22 +00:00
|
|
|
|
return pid;
|
2014-12-12 06:36:39 +00:00
|
|
|
|
if (gt == 254) //Female Only
|
|
|
|
|
gt++;
|
2014-10-11 07:22:22 +00:00
|
|
|
|
while (true) // Loop until we find a suitable PID
|
|
|
|
|
{
|
|
|
|
|
uint gv = (pid & 0xFF);
|
|
|
|
|
if (cg == 2) // Genderless
|
|
|
|
|
break; // PID Passes
|
2015-03-10 06:37:40 +00:00
|
|
|
|
if ((cg == 1) && (gv <= gt)) // Female
|
2014-10-11 07:22:22 +00:00
|
|
|
|
break; // PID Passes
|
2015-03-10 06:37:40 +00:00
|
|
|
|
if ((cg == 0) && (gv > gt))
|
2014-10-11 07:22:22 +00:00
|
|
|
|
break; // PID Passes
|
2015-03-10 06:37:40 +00:00
|
|
|
|
pid = Util.rnd32();
|
2014-10-11 07:22:22 +00:00
|
|
|
|
}
|
|
|
|
|
return pid;
|
|
|
|
|
}
|
2014-10-10 02:59:57 +00:00
|
|
|
|
|
2014-12-14 18:31:53 +00:00
|
|
|
|
#region SaveGame
|
|
|
|
|
|
2014-12-25 00:20:39 +00:00
|
|
|
|
public class Structures
|
2014-12-14 18:31:53 +00:00
|
|
|
|
{
|
2014-12-25 00:20:39 +00:00
|
|
|
|
public struct SaveGame
|
2014-12-14 18:31:53 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
public class Inventory
|
|
|
|
|
{
|
|
|
|
|
public int HeldItem, KeyItem, Medicine, TMHM, Berry;
|
|
|
|
|
public Inventory(string GameID, int Offset)
|
|
|
|
|
{
|
|
|
|
|
switch (GameID)
|
|
|
|
|
{
|
|
|
|
|
case "XY":
|
|
|
|
|
HeldItem = Offset + 0;
|
|
|
|
|
KeyItem = Offset + 0x640;
|
|
|
|
|
TMHM = Offset + 0x7C0;
|
|
|
|
|
Medicine = Offset + 0x968;
|
|
|
|
|
Berry = Offset + 0xA68;
|
|
|
|
|
break;
|
|
|
|
|
case "ORAS":
|
|
|
|
|
HeldItem = Offset + 0;
|
|
|
|
|
KeyItem = Offset + 0x640;
|
|
|
|
|
TMHM = Offset + 0x7C0;
|
|
|
|
|
Medicine = Offset + 0x970;
|
|
|
|
|
Berry = Offset + 0xA70;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
HeldItem = KeyItem = TMHM = Medicine = Berry = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public int Box, TrainerCard, Party, BattleBox, GTS, Daycare, EonTicket,
|
|
|
|
|
Fused, SUBE, Puff, Item, Trainer1, Trainer2, SuperTrain, PSSStats, MaisonStats, Vivillon, SecretBase,
|
|
|
|
|
PCLayout, PCBackgrounds, PCFlags, WondercardFlags, WondercardData, BerryField, OPower, EventConst, EventFlag, EventAsh,
|
|
|
|
|
PokeDex, PokeDexLanguageFlags, Spinda, EncounterCount, HoF, PSS, JPEG;
|
|
|
|
|
|
|
|
|
|
public Inventory Items;
|
2014-12-14 18:31:53 +00:00
|
|
|
|
public string Name;
|
2015-09-21 03:34:09 +00:00
|
|
|
|
public int[] DaycareSlot;
|
|
|
|
|
public bool ORAS;
|
|
|
|
|
|
2014-12-25 00:20:39 +00:00
|
|
|
|
public SaveGame(string GameID)
|
2014-12-14 18:31:53 +00:00
|
|
|
|
{
|
2015-03-11 01:44:51 +00:00
|
|
|
|
switch (GameID)
|
2014-12-14 18:31:53 +00:00
|
|
|
|
{
|
2015-03-11 01:44:51 +00:00
|
|
|
|
case "XY":
|
|
|
|
|
Name = "XY";
|
2015-09-21 03:34:09 +00:00
|
|
|
|
ORAS = false;
|
|
|
|
|
Box = 0x22600;
|
|
|
|
|
TrainerCard = 0x14000;
|
|
|
|
|
Party = 0x14200;
|
|
|
|
|
BattleBox = 0x04A00;
|
|
|
|
|
Daycare = 0x1B200;
|
|
|
|
|
GTS = 0x17800;
|
|
|
|
|
Fused = 0x16000;
|
|
|
|
|
SUBE = 0x1D890;
|
|
|
|
|
Puff = 0x00000;
|
|
|
|
|
Item = 0x00400;
|
|
|
|
|
Items = new Inventory(Name, Item);
|
|
|
|
|
Trainer1 = 0x1400;
|
|
|
|
|
Trainer2 = 0x4200;
|
|
|
|
|
PCLayout = 0x4400;
|
|
|
|
|
PCBackgrounds = PCLayout + 0x41E;
|
|
|
|
|
PCFlags = PCLayout + 0x43D;
|
|
|
|
|
WondercardFlags = 0x1BC00;
|
|
|
|
|
WondercardData = WondercardFlags + 0x100;
|
|
|
|
|
BerryField = 0x1B800;
|
|
|
|
|
OPower = 0x16A00;
|
|
|
|
|
EventConst = 0x14A00;
|
|
|
|
|
EventAsh = -1;
|
|
|
|
|
EventFlag = EventConst + 0x2FC;
|
|
|
|
|
PokeDex = 0x15000;
|
|
|
|
|
PokeDexLanguageFlags = PokeDex + 0x3C8;
|
|
|
|
|
Spinda = PokeDex + 0x648;
|
|
|
|
|
EncounterCount = -1;
|
|
|
|
|
HoF = 0x19400;
|
|
|
|
|
SuperTrain = 0x1F200;
|
|
|
|
|
JPEG = 0x57200;
|
|
|
|
|
MaisonStats = 0x1B1C0;
|
|
|
|
|
PSS = 0x05000;
|
|
|
|
|
PSSStats = 0x1E400;
|
|
|
|
|
Vivillon = 0x4250;
|
|
|
|
|
SecretBase = -1;
|
|
|
|
|
EonTicket = -1;
|
2015-03-11 01:44:51 +00:00
|
|
|
|
break;
|
|
|
|
|
case "ORAS":
|
|
|
|
|
Name = "ORAS";
|
2015-09-21 03:34:09 +00:00
|
|
|
|
ORAS = true;
|
|
|
|
|
Box = 0x33000; // Confirmed
|
|
|
|
|
TrainerCard = 0x14000; // Confirmed
|
|
|
|
|
Party = 0x14200; // Confirmed
|
|
|
|
|
BattleBox = 0x04A00;// Confirmed
|
|
|
|
|
Daycare = 0x1BC00; // Confirmed (thanks Rei)
|
|
|
|
|
GTS = 0x18200; // Confirmed
|
|
|
|
|
Fused = 0x16A00; // Confirmed
|
|
|
|
|
SUBE = 0x1D890; // ****not in use, not updating?****
|
|
|
|
|
Puff = 0x00000; // Confirmed
|
|
|
|
|
Item = 0x00400; // Confirmed
|
|
|
|
|
Items = new Inventory(Name, Item);
|
|
|
|
|
Trainer1 = 0x01400; // Confirmed
|
|
|
|
|
Trainer2 = 0x04200; // Confirmed
|
|
|
|
|
PCLayout = 0x04400; // Confirmed
|
|
|
|
|
PCBackgrounds = PCLayout + 0x41E;
|
|
|
|
|
PCFlags = PCLayout + 0x43D;
|
|
|
|
|
WondercardFlags = 0x1CC00; // Confirmed
|
|
|
|
|
WondercardData = WondercardFlags + 0x100;
|
|
|
|
|
BerryField = 0x1C400; // ****changed****
|
|
|
|
|
OPower = 0x17400; // ****changed****
|
|
|
|
|
EventConst = 0x14A00;
|
|
|
|
|
EventAsh = EventConst + 0x78;
|
2015-09-24 03:29:31 +00:00
|
|
|
|
EventFlag = EventConst + 0x2FC;
|
2015-09-21 03:34:09 +00:00
|
|
|
|
PokeDex = 0x15000;
|
|
|
|
|
Spinda = PokeDex + 0x680;
|
|
|
|
|
EncounterCount = PokeDex + 0x686;
|
|
|
|
|
PokeDexLanguageFlags = PokeDex + 0x400;
|
|
|
|
|
HoF = 0x19E00; // Confirmed
|
|
|
|
|
SuperTrain = 0x20200;
|
|
|
|
|
JPEG = 0x67C00; // Confirmed
|
|
|
|
|
MaisonStats = 0x1BBC0;
|
|
|
|
|
PSS = 0x05000; // Confirmed (thanks Rei)
|
|
|
|
|
PSSStats = 0x1F400;
|
|
|
|
|
Vivillon = 0x4244;
|
|
|
|
|
SecretBase = 0x23A00;
|
|
|
|
|
EonTicket = 0x319B8;
|
2015-03-11 01:44:51 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-09-21 03:34:09 +00:00
|
|
|
|
Box = TrainerCard = Party = BattleBox = GTS = Daycare =
|
|
|
|
|
Fused = SUBE = Puff = Item = Trainer1 = Trainer2 = SecretBase = EonTicket =
|
|
|
|
|
PCLayout = PCBackgrounds = PCFlags = WondercardFlags = WondercardData = BerryField = OPower = SuperTrain = MaisonStats = PSSStats = Vivillon =
|
|
|
|
|
EventConst = EventAsh = EventFlag = PokeDex = PokeDexLanguageFlags = Spinda = EncounterCount = HoF = PSS = JPEG = 0;
|
2015-03-11 01:44:51 +00:00
|
|
|
|
Name = "Unknown";
|
2015-09-21 03:34:09 +00:00
|
|
|
|
ORAS = false;
|
|
|
|
|
Items = new Inventory(Name, Item);
|
2015-03-11 01:44:51 +00:00
|
|
|
|
break;
|
2014-12-14 18:31:53 +00:00
|
|
|
|
}
|
2015-09-21 03:34:09 +00:00
|
|
|
|
DaycareSlot = new[] { Daycare, Daycare + 0x1F0 };
|
2014-12-14 18:31:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
2014-10-11 07:22:22 +00:00
|
|
|
|
|
2015-04-28 14:39:50 +00:00
|
|
|
|
// SAV Manipulation
|
2014-11-15 05:08:00 +00:00
|
|
|
|
internal static ushort ccitt16(byte[] data)
|
2014-10-11 07:22:22 +00:00
|
|
|
|
{
|
|
|
|
|
ushort crc = 0xFFFF;
|
2015-03-10 06:37:40 +00:00
|
|
|
|
foreach (byte t in data)
|
2014-10-11 07:22:22 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
crc ^= (ushort)(t << 8);
|
2014-10-11 07:22:22 +00:00
|
|
|
|
for (int j = 0; j < 8; j++)
|
|
|
|
|
{
|
|
|
|
|
if ((crc & 0x8000) > 0)
|
|
|
|
|
crc = (ushort)((crc << 1) ^ 0x1021);
|
|
|
|
|
else
|
|
|
|
|
crc <<= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return crc;
|
|
|
|
|
}
|
2015-09-21 03:34:09 +00:00
|
|
|
|
internal static string verifyG6CHK(byte[] savefile)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
|
|
|
|
string rv = "";
|
|
|
|
|
int invalid = 0;
|
2015-09-21 03:34:09 +00:00
|
|
|
|
// Dynamic handling of checksums regardless of save size.
|
|
|
|
|
|
|
|
|
|
int verificationOffset = savefile.Length - 0x200 + 0x10;
|
|
|
|
|
if (BitConverter.ToUInt32(savefile, verificationOffset) != 0x42454546)
|
|
|
|
|
verificationOffset -= 0x200; // No savegames have more than 0x3D blocks, maybe in the future?
|
|
|
|
|
|
|
|
|
|
int count = (savefile.Length - verificationOffset - 0x8) / 8;
|
|
|
|
|
verificationOffset += 4;
|
|
|
|
|
int[] Lengths = new int[count];
|
|
|
|
|
ushort[] BlockIDs = new ushort[count];
|
|
|
|
|
ushort[] Checksums = new ushort[count];
|
|
|
|
|
int[] Start = new int[count];
|
|
|
|
|
int CurrentPosition = 0;
|
|
|
|
|
for (int i = 0; i < count; i++)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
Start[i] = CurrentPosition;
|
|
|
|
|
Lengths[i] = BitConverter.ToInt32(savefile, verificationOffset + 0 + 8 * i);
|
|
|
|
|
BlockIDs[i] = BitConverter.ToUInt16(savefile, verificationOffset + 4 + 8 * i);
|
|
|
|
|
Checksums[i] = BitConverter.ToUInt16(savefile, verificationOffset + 6 + 8 * i);
|
|
|
|
|
|
|
|
|
|
CurrentPosition += (Lengths[i] % 0x200 == 0) ? Lengths[i] : (0x200 - Lengths[i] % 0x200 + Lengths[i]);
|
|
|
|
|
|
|
|
|
|
if ((BlockIDs[i] != 0) || i == 0) continue;
|
|
|
|
|
count = i;
|
|
|
|
|
break;
|
2015-04-28 14:39:50 +00:00
|
|
|
|
}
|
2015-09-21 03:34:09 +00:00
|
|
|
|
// Apply checksums
|
|
|
|
|
for (int i = 0; i < count; i++)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
ushort chk = ccitt16(savefile.Skip(Start[i]).Take(Lengths[i]).ToArray());
|
|
|
|
|
ushort old = BitConverter.ToUInt16(savefile, verificationOffset + 6 + i * 8);
|
|
|
|
|
|
|
|
|
|
if (chk == old) continue;
|
2015-04-28 14:39:50 +00:00
|
|
|
|
|
|
|
|
|
invalid++;
|
2015-09-21 03:34:09 +00:00
|
|
|
|
rv += String.Format("Invalid: {0} @ Region {1}", i.ToString("X2"), Start[i].ToString("X5") + Environment.NewLine);
|
2015-04-28 14:39:50 +00:00
|
|
|
|
}
|
|
|
|
|
// Return Outputs
|
2015-09-21 03:34:09 +00:00
|
|
|
|
rv += String.Format("SAV: {0}/{1}", (count - invalid), count + Environment.NewLine);
|
2015-04-28 14:39:50 +00:00
|
|
|
|
return rv;
|
|
|
|
|
}
|
2015-09-21 03:34:09 +00:00
|
|
|
|
internal static void writeG6CHK(byte[] savefile)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
// Dynamic handling of checksums regardless of save size.
|
|
|
|
|
|
|
|
|
|
int verificationOffset = savefile.Length - 0x200 + 0x10;
|
|
|
|
|
if (BitConverter.ToUInt32(savefile, verificationOffset) != 0x42454546)
|
|
|
|
|
verificationOffset -= 0x200; // No savegames have more than 0x3D blocks, maybe in the future?
|
|
|
|
|
|
|
|
|
|
int count = (savefile.Length - verificationOffset - 0x8) / 8;
|
|
|
|
|
verificationOffset += 4;
|
|
|
|
|
int[] Lengths = new int[count];
|
|
|
|
|
ushort[] BlockIDs = new ushort[count];
|
|
|
|
|
ushort[] Checksums = new ushort[count];
|
|
|
|
|
int[] Start = new int[count];
|
|
|
|
|
int CurrentPosition = 0;
|
|
|
|
|
for (int i = 0; i < count; i++)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
Start[i] = CurrentPosition;
|
|
|
|
|
Lengths[i] = BitConverter.ToInt32(savefile, verificationOffset + 0 + 8 * i);
|
|
|
|
|
BlockIDs[i] = BitConverter.ToUInt16(savefile, verificationOffset + 4 + 8 * i);
|
|
|
|
|
Checksums[i] = BitConverter.ToUInt16(savefile, verificationOffset + 6 + 8 * i);
|
|
|
|
|
|
|
|
|
|
CurrentPosition += (Lengths[i]%0x200 == 0) ? Lengths[i] : (0x200 - Lengths[i]%0x200 + Lengths[i]);
|
|
|
|
|
|
|
|
|
|
if ((BlockIDs[i] != 0) || i == 0) continue;
|
|
|
|
|
count = i;
|
|
|
|
|
break;
|
2015-04-28 14:39:50 +00:00
|
|
|
|
}
|
2015-09-21 03:34:09 +00:00
|
|
|
|
// Apply checksums
|
|
|
|
|
for (int i = 0; i < count; i++)
|
2015-04-28 14:39:50 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
byte[] array = savefile.Skip(Start[i]).Take(Lengths[i]).ToArray();
|
|
|
|
|
Array.Copy(BitConverter.GetBytes(ccitt16(array)), 0, savefile, verificationOffset + 6 + i * 8, 2);
|
2015-04-28 14:39:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Data Requests
|
|
|
|
|
internal static Image getSprite(int species, int form, int gender, int item, bool isegg, bool shiny)
|
|
|
|
|
{
|
|
|
|
|
string file;
|
|
|
|
|
if (species == 0)
|
|
|
|
|
{ return (Image)Properties.Resources.ResourceManager.GetObject("_0"); }
|
|
|
|
|
{
|
|
|
|
|
file = "_" + species;
|
|
|
|
|
if (form > 0) // Alt Form Handling
|
|
|
|
|
file = file + "_" + form;
|
|
|
|
|
else if (gender == 1 && (species == 592 || species == 593)) // Frillish & Jellicent
|
|
|
|
|
file = file + "_" + gender;
|
|
|
|
|
else if (gender == 1 && (species == 521 || species == 668)) // Unfezant & Pyroar
|
|
|
|
|
file = "_" + species + "f";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Redrawing logic
|
|
|
|
|
Image baseImage = (Image)Properties.Resources.ResourceManager.GetObject(file);
|
|
|
|
|
if (baseImage == null)
|
|
|
|
|
{
|
|
|
|
|
if (species < 722)
|
|
|
|
|
{
|
|
|
|
|
baseImage = Util.LayerImage(
|
|
|
|
|
(Image)Properties.Resources.ResourceManager.GetObject("_" + species),
|
|
|
|
|
Properties.Resources.unknown,
|
|
|
|
|
0, 0, .5);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
baseImage = Properties.Resources.unknown;
|
|
|
|
|
}
|
|
|
|
|
if (isegg)
|
|
|
|
|
{
|
|
|
|
|
// Start with a partially transparent species by layering the species with partial opacity onto a blank image.
|
|
|
|
|
baseImage = Util.LayerImage((Image)Properties.Resources.ResourceManager.GetObject("_0"), baseImage, 0, 0, 0.33);
|
|
|
|
|
// Add the egg layer over-top with full opacity.
|
|
|
|
|
baseImage = Util.LayerImage(baseImage, (Image)Properties.Resources.ResourceManager.GetObject("egg"), 0, 0, 1);
|
|
|
|
|
}
|
|
|
|
|
if (shiny)
|
|
|
|
|
{
|
|
|
|
|
// Add shiny star to top left of image.
|
|
|
|
|
baseImage = Util.LayerImage(baseImage, Properties.Resources.rare_icon, 0, 0, 0.7);
|
|
|
|
|
}
|
|
|
|
|
if (item > 0)
|
|
|
|
|
{
|
|
|
|
|
Image itemimg = (Image)Properties.Resources.ResourceManager.GetObject("item_" + item) ?? Properties.Resources.helditem;
|
|
|
|
|
// Redraw
|
|
|
|
|
baseImage = Util.LayerImage(baseImage, itemimg, 22 + (15 - itemimg.Width) / 2, 15 + (15 - itemimg.Height), 1);
|
|
|
|
|
}
|
|
|
|
|
return baseImage;
|
|
|
|
|
}
|
2015-09-24 03:29:31 +00:00
|
|
|
|
internal static Image getSprite(PK6 pk6)
|
|
|
|
|
{
|
2015-09-24 06:12:30 +00:00
|
|
|
|
return getSprite(pk6.Species, pk6.AltForm, pk6.Gender, pk6.HeldItem, pk6.IsEgg, pk6.IsShiny);
|
2015-09-24 03:29:31 +00:00
|
|
|
|
}
|
|
|
|
|
internal static Image getSprite(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
return new PK6(data).Sprite;
|
|
|
|
|
}
|
2015-04-28 14:39:50 +00:00
|
|
|
|
|
2015-09-24 06:02:26 +00:00
|
|
|
|
internal static string[] getShowdownText(PK6 pk6)
|
|
|
|
|
{
|
|
|
|
|
return getShowdownText(pk6.Nickname, pk6.Species, pk6.HeldItem, pk6.Ability, pk6.EVs, pk6.HPType, pk6.Move1, pk6.Move2, pk6.Move3, pk6.Move4);
|
|
|
|
|
}
|
2015-09-24 03:29:31 +00:00
|
|
|
|
internal static string[] getShowdownText(string Nickname, int Species, int HeldItem, int Ability, int[] EVs,
|
|
|
|
|
int HPType, int Move1, int Move2, int Move3, int Move4)
|
|
|
|
|
{
|
|
|
|
|
// TODO
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-12-11 06:50:40 +00:00
|
|
|
|
|
2014-12-12 04:33:19 +00:00
|
|
|
|
// Font Related
|
|
|
|
|
[System.Runtime.InteropServices.DllImport("gdi32.dll")]
|
2015-01-31 23:59:23 +00:00
|
|
|
|
internal static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, [System.Runtime.InteropServices.In] ref uint pcFonts);
|
|
|
|
|
internal static PrivateFontCollection s_FontCollection = new PrivateFontCollection();
|
|
|
|
|
internal static FontFamily[] FontFamilies
|
|
|
|
|
{
|
2015-02-17 06:35:06 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (s_FontCollection.Families.Length == 0) setPKXFont();
|
|
|
|
|
return s_FontCollection.Families;
|
2015-01-31 23:59:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
internal static Font getPKXFont(float size)
|
|
|
|
|
{
|
|
|
|
|
return new Font(FontFamilies[0], size);
|
|
|
|
|
}
|
|
|
|
|
internal static void setPKXFont()
|
2014-12-12 04:33:19 +00:00
|
|
|
|
{
|
2014-12-14 07:18:27 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2015-01-31 23:59:23 +00:00
|
|
|
|
byte[] fontData = Properties.Resources.PGLDings_NormalRegular;
|
|
|
|
|
IntPtr fontPtr = System.Runtime.InteropServices.Marshal.AllocCoTaskMem(fontData.Length);
|
|
|
|
|
System.Runtime.InteropServices.Marshal.Copy(fontData, 0, fontPtr, fontData.Length);
|
|
|
|
|
s_FontCollection.AddMemoryFont(fontPtr, Properties.Resources.PGLDings_NormalRegular.Length); uint dummy = 0;
|
2014-12-14 07:18:27 +00:00
|
|
|
|
AddFontMemResourceEx(fontPtr, (uint)Properties.Resources.PGLDings_NormalRegular.Length, IntPtr.Zero, ref dummy);
|
|
|
|
|
System.Runtime.InteropServices.Marshal.FreeCoTaskMem(fontPtr);
|
|
|
|
|
}
|
2015-03-10 06:37:40 +00:00
|
|
|
|
catch { Util.Error("Unable to add ingame font."); }
|
2014-12-12 04:33:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-12 07:09:22 +00:00
|
|
|
|
// Personal.dat
|
2014-12-12 07:15:54 +00:00
|
|
|
|
internal static PersonalParser PersonalGetter = new PersonalParser();
|
|
|
|
|
internal class PersonalParser
|
2014-12-12 06:36:39 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
internal byte[] file = Properties.Resources.personal;
|
|
|
|
|
internal const int EntryLength = 0xE;
|
2014-12-12 07:15:54 +00:00
|
|
|
|
internal struct Personal
|
2014-12-12 06:36:39 +00:00
|
|
|
|
{
|
|
|
|
|
public byte[] BaseStats;
|
|
|
|
|
public byte[] Abilities;
|
|
|
|
|
public byte BaseFriendship;
|
|
|
|
|
public byte GenderRatio;
|
|
|
|
|
public byte EXPGrowth;
|
|
|
|
|
public byte AltFormCount;
|
2014-12-12 07:09:22 +00:00
|
|
|
|
public byte FormPointer; // 721 + FormPointer + (FormID - 1) = SpeciesIndex
|
2014-12-12 06:36:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-12 07:15:54 +00:00
|
|
|
|
internal Personal GetPersonal(int species)
|
2014-12-12 06:36:39 +00:00
|
|
|
|
{
|
|
|
|
|
Personal data = new Personal();
|
|
|
|
|
byte[] MonData = new byte[EntryLength];
|
|
|
|
|
data.BaseStats = new byte[6];
|
|
|
|
|
data.Abilities = new byte[3];
|
|
|
|
|
Array.Copy(file, species * EntryLength, MonData, 0, EntryLength);
|
|
|
|
|
Array.Copy(MonData, data.BaseStats, 6);
|
|
|
|
|
Array.Copy(MonData, 6, data.Abilities, 0, 3);
|
|
|
|
|
data.BaseFriendship = MonData[0x9];
|
|
|
|
|
data.GenderRatio = MonData[0xA];
|
|
|
|
|
data.EXPGrowth = MonData[0xB];
|
|
|
|
|
data.AltFormCount = MonData[0xC];
|
|
|
|
|
data.FormPointer = MonData[0xD];
|
|
|
|
|
return data;
|
|
|
|
|
}
|
2014-12-12 07:15:54 +00:00
|
|
|
|
internal Personal GetPersonal(int species, int formID)
|
2014-12-12 06:36:39 +00:00
|
|
|
|
{
|
|
|
|
|
Personal data = GetPersonal(species);
|
2015-03-11 01:44:51 +00:00
|
|
|
|
if (formID <= 0 || formID > data.AltFormCount || data.AltFormCount <= 0 || data.FormPointer <= 0)
|
|
|
|
|
return data;
|
|
|
|
|
|
|
|
|
|
// Working with an Alt Forme with a base stat change
|
|
|
|
|
return GetPersonal(721 + --formID + data.FormPointer);
|
2014-12-12 06:36:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-17 02:25:59 +00:00
|
|
|
|
internal static string[] getFormList(int species, string[] t, string[] f, string[] g)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
// Mega List
|
|
|
|
|
if (Array.IndexOf(new[]
|
|
|
|
|
{ // XY
|
|
|
|
|
003, 009, 065, 094, 115, 127, 130, 142, 181, 212, 214, 229, 248, 257, 282, 303, 306, 308, 310, 354, 359, 380, 381, 445, 448, 460,
|
|
|
|
|
// ORAS
|
|
|
|
|
015, 018, 080, 208, 254, 260, 302, 319, 323, 334, 362, 373, 376, 384, 428, 475, 531, 719,
|
|
|
|
|
}, species) > -1) { // ...
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[723], // Mega
|
|
|
|
|
};}
|
|
|
|
|
// MegaXY List
|
|
|
|
|
switch (species)
|
|
|
|
|
{
|
|
|
|
|
case 6:
|
|
|
|
|
case 150:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[724], // Mega X
|
|
|
|
|
f[725], // Mega Y
|
|
|
|
|
};
|
|
|
|
|
case 025:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[729], // Rockstar
|
|
|
|
|
f[730], // Belle
|
|
|
|
|
f[731], // Pop
|
|
|
|
|
f[732], // PhD
|
|
|
|
|
f[733], // Libre
|
|
|
|
|
f[734], // Cosplay
|
|
|
|
|
};
|
|
|
|
|
case 201:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
"A", "B", "C", "D", "E",
|
|
|
|
|
"F", "G", "H", "I", "J",
|
|
|
|
|
"K", "L", "M", "N", "O",
|
|
|
|
|
"P", "Q", "R", "S", "T",
|
|
|
|
|
"U", "V", "W", "X", "Y",
|
|
|
|
|
"Z",
|
|
|
|
|
"!", "?",
|
|
|
|
|
};
|
|
|
|
|
case 351:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[789], // Sunny
|
|
|
|
|
f[790], // Rainy
|
|
|
|
|
f[791], // Snowy
|
|
|
|
|
};
|
|
|
|
|
case 382:
|
|
|
|
|
case 383:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[800], // Primal
|
|
|
|
|
};
|
|
|
|
|
case 386:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[802], // Attack
|
|
|
|
|
f[803], // Defense
|
|
|
|
|
f[804], // Speed
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 412:
|
|
|
|
|
case 413:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[412], // Plant
|
|
|
|
|
f[805], // Sandy
|
|
|
|
|
f[806], // Trash
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 421:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[421], // Overcast
|
|
|
|
|
f[809], // Sunshine
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 422:
|
|
|
|
|
case 423:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[422], // West
|
|
|
|
|
f[811], // East
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 479:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[817], // Heat
|
|
|
|
|
f[818], // Wash
|
|
|
|
|
f[819], // Frost
|
|
|
|
|
f[820], // Fan
|
|
|
|
|
f[821], // Mow
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 487:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[487], // Altered
|
|
|
|
|
f[822], // Origin
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 492:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[492], // Land
|
|
|
|
|
f[823], // Sky
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 493:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[00], // Normal
|
|
|
|
|
t[01], // Fighting
|
|
|
|
|
t[02], // Flying
|
|
|
|
|
t[03], // Poison
|
|
|
|
|
t[04], // etc
|
|
|
|
|
t[05],
|
|
|
|
|
t[06],
|
|
|
|
|
t[07],
|
|
|
|
|
t[08],
|
|
|
|
|
t[09],
|
|
|
|
|
t[10],
|
|
|
|
|
t[11],
|
|
|
|
|
t[12],
|
|
|
|
|
t[13],
|
|
|
|
|
t[14],
|
|
|
|
|
t[15],
|
|
|
|
|
t[16],
|
|
|
|
|
t[17],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 550:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[550], // Red
|
|
|
|
|
f[842], // Blue
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 555:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[555], // Standard
|
|
|
|
|
f[843], // Zen
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 585:
|
|
|
|
|
case 586:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[585], // Spring
|
|
|
|
|
f[844], // Summer
|
|
|
|
|
f[845], // Autumn
|
|
|
|
|
f[846], // Winter
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 641:
|
|
|
|
|
case 642:
|
|
|
|
|
case 645:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[641], // Incarnate
|
|
|
|
|
f[852], // Therian
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 646:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[853], // White
|
|
|
|
|
f[854], // Black
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 647:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[647], // Ordinary
|
|
|
|
|
f[855], // Resolute
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 648:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[648], // Aria
|
|
|
|
|
f[856], // Pirouette
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 649:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
t[010], // Douse
|
|
|
|
|
t[012], // Shock
|
|
|
|
|
t[009], // Burn
|
|
|
|
|
t[014], // Chill
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 664:
|
|
|
|
|
case 665:
|
|
|
|
|
case 666:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[666], // Icy Snow
|
|
|
|
|
f[861], // Polar
|
|
|
|
|
f[862], // Tundra
|
|
|
|
|
f[863], // Continental
|
|
|
|
|
f[864], // Garden
|
|
|
|
|
f[865], // Elegant
|
|
|
|
|
f[866], // Meadow
|
|
|
|
|
f[867], // Modern
|
|
|
|
|
f[868], // Marine
|
|
|
|
|
f[869], // Archipelago
|
|
|
|
|
f[870], // High-Plains
|
|
|
|
|
f[871], // Sandstorm
|
|
|
|
|
f[872], // River
|
|
|
|
|
f[873], // Monsoon
|
|
|
|
|
f[874], // Savannah
|
|
|
|
|
f[875], // Sun
|
|
|
|
|
f[876], // Ocean
|
|
|
|
|
f[877], // Jungle
|
|
|
|
|
f[878], // Fancy
|
|
|
|
|
f[879], // Poké Ball
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 669:
|
|
|
|
|
case 671:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[669], // Red
|
|
|
|
|
f[884], // Yellow
|
|
|
|
|
f[885], // Orange
|
|
|
|
|
f[886], // Blue
|
|
|
|
|
f[887], // White
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 670:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[669], // Red
|
|
|
|
|
f[884], // Yellow
|
|
|
|
|
f[885], // Orange
|
|
|
|
|
f[886], // Blue
|
|
|
|
|
f[887], // White
|
|
|
|
|
f[888], // Eternal
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 676:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[676], // Natural
|
|
|
|
|
f[893], // Heart
|
|
|
|
|
f[894], // Star
|
|
|
|
|
f[895], // Diamond
|
|
|
|
|
f[896], // Deputante
|
|
|
|
|
f[897], // Matron
|
|
|
|
|
f[898], // Dandy
|
|
|
|
|
f[899], // La Reine
|
|
|
|
|
f[900], // Kabuki
|
|
|
|
|
f[901], // Pharaoh
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 678:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
g[000], // Male
|
|
|
|
|
g[001], // Female
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 681:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[681], // Shield
|
|
|
|
|
f[903], // Blade
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 710:
|
|
|
|
|
case 711:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
f[904], // Small
|
|
|
|
|
f[710], // Average
|
|
|
|
|
f[905], // Large
|
|
|
|
|
f[906], // Super
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 716:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[910], // Active
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case 720:
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
t[000], // Normal
|
|
|
|
|
f[912], // Unbound
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
return new[] {""};
|
|
|
|
|
}
|
2015-02-16 05:39:21 +00:00
|
|
|
|
|
2015-03-04 02:57:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Calculate the Hidden Power Type of the entered IVs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ivs">HP/ATK/DEF/SPEED/SPA/SPD</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
internal static int getHPType(int[] ivs)
|
|
|
|
|
{
|
2015-09-07 20:02:18 +00:00
|
|
|
|
return (15 * ((ivs[0] & 1) + 2 * (ivs[1] & 1) + 4 * (ivs[2] & 1) + 8 * (ivs[3] & 1) + 16 * (ivs[4] & 1) + 32 * (ivs[5] & 1))) / 63;
|
2015-03-04 02:57:08 +00:00
|
|
|
|
}
|
2015-02-20 22:24:50 +00:00
|
|
|
|
internal static int[] setHPIVs(int type, int[] ivs)
|
2015-02-20 00:26:01 +00:00
|
|
|
|
{
|
2015-02-20 22:24:50 +00:00
|
|
|
|
for (int i = 0; i < 6; i++)
|
2015-02-21 20:59:04 +00:00
|
|
|
|
ivs[i] = (ivs[i] & 0x1E) + hpivs[type][i];
|
2015-02-20 22:24:50 +00:00
|
|
|
|
return ivs;
|
2015-02-20 00:26:01 +00:00
|
|
|
|
}
|
2015-03-10 06:37:40 +00:00
|
|
|
|
internal static string[] hptypes = {
|
2015-02-20 00:26:01 +00:00
|
|
|
|
"Fighting", "Flying", "Poison", "Ground",
|
|
|
|
|
"Rock", "Bug", "Ghost", "Steel", "Fire", "Water",
|
|
|
|
|
"Grass", "Electric", "Psychic", "Ice", "Dragon", "Dark"
|
|
|
|
|
};
|
2015-03-10 06:37:40 +00:00
|
|
|
|
internal static readonly int[][] hpivs = {
|
|
|
|
|
new[] { 1, 1, 0, 0, 0, 0 }, // Fighting
|
|
|
|
|
new[] { 0, 0, 0, 0, 0, 1 }, // Flying
|
|
|
|
|
new[] { 1, 1, 0, 0, 0, 1 }, // Poison
|
|
|
|
|
new[] { 1, 1, 1, 0, 0, 1 }, // Ground
|
|
|
|
|
new[] { 1, 1, 0, 1, 0, 0 }, // Rock
|
|
|
|
|
new[] { 1, 0, 0, 1, 0, 1 }, // Bug
|
2015-03-11 01:44:51 +00:00
|
|
|
|
new[] { 1, 0, 1, 1, 0, 1 }, // Ghost
|
2015-03-10 06:37:40 +00:00
|
|
|
|
new[] { 1, 1, 1, 1, 0, 1 }, // Steel
|
|
|
|
|
new[] { 1, 0, 1, 0, 1, 0 }, // Fire
|
|
|
|
|
new[] { 1, 0, 0, 0, 1, 1 }, // Water
|
|
|
|
|
new[] { 1, 0, 1, 0, 1, 1 }, // Grass
|
|
|
|
|
new[] { 1, 1, 1, 0, 1, 1 }, // Electric
|
|
|
|
|
new[] { 1, 0, 1, 1, 1, 0 }, // Psychic
|
|
|
|
|
new[] { 1, 0, 0, 1, 1, 1 }, // Ice
|
|
|
|
|
new[] { 1, 0, 1, 1, 1, 1 }, // Dragon
|
2015-03-11 01:44:51 +00:00
|
|
|
|
new[] { 1, 1, 1, 1, 1, 1 }, // Dark
|
2015-03-04 02:57:08 +00:00
|
|
|
|
};
|
2015-02-16 05:39:21 +00:00
|
|
|
|
public class Simulator
|
|
|
|
|
{
|
|
|
|
|
public struct Set
|
|
|
|
|
{
|
|
|
|
|
// Default Set Data
|
2015-02-16 05:45:39 +00:00
|
|
|
|
public string Nickname;
|
|
|
|
|
public int Species;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
public string Form;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
public string Gender;
|
|
|
|
|
public int Item;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
public int Ability;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
public int Level;
|
|
|
|
|
public bool Shiny;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
public int Friendship;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
public int Nature;
|
|
|
|
|
public byte[] EVs;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
public int[] IVs;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
public int[] Moves;
|
2015-02-16 05:39:21 +00:00
|
|
|
|
|
|
|
|
|
// Parsing Utility
|
2015-03-17 02:25:59 +00:00
|
|
|
|
public Set(string input, string[] species, string[] items, string[] natures, string[] moves, string[] abilities)
|
2015-02-16 05:39:21 +00:00
|
|
|
|
{
|
2015-02-16 05:45:39 +00:00
|
|
|
|
Nickname = null;
|
2015-04-15 00:50:16 +00:00
|
|
|
|
Species = -1;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
Form = null;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
Gender = null;
|
|
|
|
|
Item = 0;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
Ability = 0;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
Level = 100;
|
|
|
|
|
Shiny = false;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
Friendship = 255;
|
2015-02-16 05:45:39 +00:00
|
|
|
|
Nature = 0;
|
|
|
|
|
EVs = new byte[6];
|
2015-03-17 02:25:59 +00:00
|
|
|
|
IVs = new[] { 31, 31, 31, 31, 31, 31 };
|
2015-02-16 05:45:39 +00:00
|
|
|
|
Moves = new int[4];
|
2015-03-10 06:37:40 +00:00
|
|
|
|
string[] stats = { "HP", "Atk", "Def", "SpA", "SpD", "Spe" };
|
2015-02-16 05:45:39 +00:00
|
|
|
|
|
2015-03-10 06:37:40 +00:00
|
|
|
|
string[] lines = input.Split(new[] { "\r\n", "\n" }, StringSplitOptions.None);
|
2015-09-05 01:50:14 +00:00
|
|
|
|
for (int i = 0; i < lines.Length; i++) lines[i] = lines[i].Replace("'", "’").Trim(); // Sanitize apostrophes
|
2015-02-16 05:39:21 +00:00
|
|
|
|
|
2015-09-24 03:29:31 +00:00
|
|
|
|
if (lines.Length < 3) return;
|
|
|
|
|
|
2015-02-16 05:39:21 +00:00
|
|
|
|
// Seek for start of set
|
|
|
|
|
int start = -1;
|
|
|
|
|
for (int i = 0; i < lines.Length; i++)
|
2015-02-17 06:35:06 +00:00
|
|
|
|
if (lines[i].Contains(" @ ")) { start = i; break; }
|
2015-02-16 05:39:21 +00:00
|
|
|
|
lines = lines.Skip(start).Take(lines.Length - start).ToArray();
|
|
|
|
|
|
|
|
|
|
// Abort if no text is found
|
2015-04-15 00:50:16 +00:00
|
|
|
|
if (start == -1)
|
|
|
|
|
{
|
|
|
|
|
// Try to parse the first line if it does not have any item
|
|
|
|
|
string ld = lines[0];
|
|
|
|
|
// Gender Detection
|
|
|
|
|
string last3 = ld.Substring(ld.Length - 3);
|
|
|
|
|
if (last3 == "(M)" || last3 == "(F)")
|
|
|
|
|
{
|
|
|
|
|
Gender = last3.Substring(1, 1);
|
|
|
|
|
ld = ld.Substring(0, ld.Length - 3);
|
|
|
|
|
}
|
|
|
|
|
// Nickname Detection
|
|
|
|
|
string spec = ld;
|
2015-04-28 14:39:50 +00:00
|
|
|
|
if (spec.Contains("("))
|
2015-04-15 00:50:16 +00:00
|
|
|
|
{
|
2015-04-28 14:39:50 +00:00
|
|
|
|
int index = spec.LastIndexOf("(", StringComparison.Ordinal);
|
|
|
|
|
string n1 = spec.Substring(0, index - 1);
|
|
|
|
|
string n2 = spec.Substring(index).Replace("(", "").Replace(")", "").Replace(" ", "");
|
2015-04-17 06:03:01 +00:00
|
|
|
|
|
2015-07-22 01:17:10 +00:00
|
|
|
|
bool inverted = Array.IndexOf(species, n2.Replace(" ", "")) > -1 || (Species = Array.IndexOf(species, n2.Split('-')[0])) > 0;
|
2015-07-03 00:15:56 +00:00
|
|
|
|
spec = inverted ? n2 : n1;
|
|
|
|
|
Nickname = inverted ? n1 : n2;
|
2015-04-15 00:50:16 +00:00
|
|
|
|
}
|
|
|
|
|
Species = Array.IndexOf(species, spec.Replace(" ", ""));
|
2015-04-28 14:39:50 +00:00
|
|
|
|
if (
|
|
|
|
|
(Species = Array.IndexOf(species, spec)) < 0 // Not an Edge Case
|
|
|
|
|
&&
|
|
|
|
|
(Species = Array.IndexOf(species, spec.Replace(" ", ""))) < 0 // Has Form
|
|
|
|
|
)
|
2015-04-15 00:50:16 +00:00
|
|
|
|
{
|
|
|
|
|
string[] tmp = spec.Split(new[] { "-" }, StringSplitOptions.None);
|
2015-04-28 14:39:50 +00:00
|
|
|
|
if (tmp.Length < 2) return;
|
2015-04-15 00:50:16 +00:00
|
|
|
|
Species = Array.IndexOf(species, tmp[0].Replace(" ", ""));
|
|
|
|
|
Form = tmp[1].Replace(" ", "");
|
|
|
|
|
}
|
|
|
|
|
if (Species < -1)
|
|
|
|
|
return;
|
2015-09-24 03:29:31 +00:00
|
|
|
|
lines = lines.Skip(1).Take(lines.Length - 1).ToArray();
|
2015-04-15 00:50:16 +00:00
|
|
|
|
}
|
2015-02-17 06:35:06 +00:00
|
|
|
|
int movectr = 0;
|
2015-02-16 05:39:21 +00:00
|
|
|
|
// Detect relevant data
|
|
|
|
|
foreach (string line in lines)
|
|
|
|
|
{
|
2015-07-03 00:15:56 +00:00
|
|
|
|
if (line.Length < 2) continue;
|
2015-02-17 06:35:06 +00:00
|
|
|
|
if (line.Contains("- "))
|
|
|
|
|
{
|
|
|
|
|
string moveString = line.Substring(2);
|
2015-03-17 02:25:59 +00:00
|
|
|
|
if (moveString.Contains("Hidden Power"))
|
|
|
|
|
{
|
2015-04-02 00:20:09 +00:00
|
|
|
|
if (moveString.Length > 13) // Defined Hidden Power
|
2015-03-17 02:25:59 +00:00
|
|
|
|
{
|
2015-04-02 00:20:09 +00:00
|
|
|
|
string type = moveString.Remove(0, 13).Replace("[", "").Replace("]", ""); // Trim out excess data
|
2015-03-17 02:25:59 +00:00
|
|
|
|
int hpVal = Array.IndexOf(hptypes, type); // Get HP Type
|
|
|
|
|
if (hpVal >= 0) IVs = setHPIVs(hpVal, IVs); // Get IVs
|
|
|
|
|
}
|
|
|
|
|
moveString = "Hidden Power";
|
|
|
|
|
}
|
2015-02-17 06:35:06 +00:00
|
|
|
|
Moves[movectr++] = Array.IndexOf(moves, moveString);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2015-02-16 05:39:21 +00:00
|
|
|
|
|
2015-03-10 06:37:40 +00:00
|
|
|
|
string[] brokenline = line.Split(new[] { ": " }, StringSplitOptions.None);
|
2015-02-16 05:39:21 +00:00
|
|
|
|
switch (brokenline[0])
|
|
|
|
|
{
|
2015-09-24 03:29:31 +00:00
|
|
|
|
case "Trait":
|
2015-03-17 02:25:59 +00:00
|
|
|
|
case "Ability": { Ability = Array.IndexOf(abilities, brokenline[1]); break; }
|
2015-02-17 06:35:06 +00:00
|
|
|
|
case "Level": { Level = Util.ToInt32(brokenline[1]); break; }
|
|
|
|
|
case "Shiny": { Shiny = (brokenline[1] == "Yes"); break; }
|
2015-03-17 02:25:59 +00:00
|
|
|
|
case "Happiness": { Friendship = Util.ToInt32(brokenline[1]); break; }
|
2015-02-16 05:39:21 +00:00
|
|
|
|
case "EVs":
|
|
|
|
|
{
|
|
|
|
|
// Get EV list String
|
2015-03-19 03:45:06 +00:00
|
|
|
|
string[] evlist = brokenline[1].Replace("SAtk", "SpA").Replace("SDef", "SpD").Replace("Spd", "Spe").Split(new[] { " / ", " " }, StringSplitOptions.None);
|
2015-02-16 05:39:21 +00:00
|
|
|
|
for (int i = 0; i < evlist.Length / 2; i++)
|
2015-03-10 06:37:40 +00:00
|
|
|
|
EVs[Array.IndexOf(stats, evlist[1 + i * 2])] = (byte)Util.ToInt32(evlist[0 + 2 * i]);
|
2015-02-16 05:39:21 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2015-02-17 06:35:06 +00:00
|
|
|
|
case "IVs":
|
|
|
|
|
{
|
|
|
|
|
// Get IV list String
|
2015-03-17 02:25:59 +00:00
|
|
|
|
string[] ivlist = brokenline[1].Split(new[] { " / ", " " }, StringSplitOptions.None);
|
2015-02-17 06:35:06 +00:00
|
|
|
|
for (int i = 0; i < ivlist.Length / 2; i++)
|
2015-03-10 06:37:40 +00:00
|
|
|
|
IVs[Array.IndexOf(stats, ivlist[1 + i * 2])] = (byte)Util.ToInt32(ivlist[0 + 2 * i]);
|
2015-02-17 06:35:06 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2015-02-16 05:39:21 +00:00
|
|
|
|
default:
|
|
|
|
|
{
|
2015-02-17 06:35:06 +00:00
|
|
|
|
// Either Nature or Gender ItemSpecies
|
2015-03-17 02:25:59 +00:00
|
|
|
|
if (brokenline[0].Contains(" @ "))
|
2015-02-17 06:35:06 +00:00
|
|
|
|
{
|
2015-03-10 06:37:40 +00:00
|
|
|
|
string[] ld = line.Split(new[] { " @ " }, StringSplitOptions.None);
|
2015-02-17 06:35:06 +00:00
|
|
|
|
Item = Array.IndexOf(items, ld.Last());
|
|
|
|
|
// Gender Detection
|
|
|
|
|
string last3 = ld[0].Substring(ld[0].Length - 3);
|
|
|
|
|
if (last3 == "(M)" || last3 == "(F)")
|
|
|
|
|
{
|
|
|
|
|
Gender = last3.Substring(1, 1);
|
2015-03-17 02:25:59 +00:00
|
|
|
|
ld[0] = ld[0].Substring(0, ld[ld.Length - 2].Length - 3);
|
2015-02-17 06:35:06 +00:00
|
|
|
|
}
|
|
|
|
|
// Nickname Detection
|
|
|
|
|
string spec = ld[0];
|
2015-04-28 14:39:50 +00:00
|
|
|
|
if (spec.Contains("("))
|
2015-02-17 06:35:06 +00:00
|
|
|
|
{
|
2015-04-28 14:39:50 +00:00
|
|
|
|
int index = spec.LastIndexOf("(", StringComparison.Ordinal);
|
|
|
|
|
string n1 = spec.Substring(0, index - 1);
|
|
|
|
|
string n2 = spec.Substring(index).Replace("(", "").Replace(")", "").Replace(" ", "");
|
2015-04-17 06:03:01 +00:00
|
|
|
|
|
2015-07-22 01:17:10 +00:00
|
|
|
|
bool inverted = Array.IndexOf(species, n2.Replace(" ", "")) > -1 || (Species = Array.IndexOf(species, n2.Split('-')[0])) > 0;
|
2015-07-03 00:15:56 +00:00
|
|
|
|
spec = inverted ? n2 : n1;
|
|
|
|
|
Nickname = inverted ? n1 : n2;
|
2015-03-17 02:25:59 +00:00
|
|
|
|
}
|
2015-04-28 14:39:50 +00:00
|
|
|
|
if (
|
|
|
|
|
(Species = Array.IndexOf(species, spec)) < 0 // Not an Edge Case
|
|
|
|
|
&&
|
|
|
|
|
(Species = Array.IndexOf(species, spec.Replace(" ", ""))) < 0 // Has Form
|
|
|
|
|
)
|
2015-03-17 02:25:59 +00:00
|
|
|
|
{
|
|
|
|
|
string[] tmp = spec.Split(new[] { "-" }, StringSplitOptions.None);
|
|
|
|
|
Species = Array.IndexOf(species, tmp[0].Replace(" ", ""));
|
|
|
|
|
Form = tmp[1].Replace(" ", "");
|
2015-02-17 06:35:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-17 02:25:59 +00:00
|
|
|
|
else if (brokenline[0].Contains("Nature"))
|
2015-02-17 06:35:06 +00:00
|
|
|
|
Nature = Array.IndexOf(natures, line.Split(' ')[0]);
|
|
|
|
|
else // Fallback
|
|
|
|
|
Species = Array.IndexOf(species, line.Split('(')[0]);
|
2015-02-16 05:39:21 +00:00
|
|
|
|
} break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-10 02:59:57 +00:00
|
|
|
|
}
|
2015-01-03 01:07:29 +00:00
|
|
|
|
}
|