1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
|
package com.dabomstew.pkrandom.romhandlers;
/*----------------------------------------------------------------------------*/
/*-- Gen5RomHandler.java - randomizer handler for B/W/B2/W2. --*/
/*-- --*/
/*-- Part of "Universal Pokemon Randomizer ZX" by the UPR-ZX team --*/
/*-- Originally part of "Universal Pokemon Randomizer" by Dabomstew --*/
/*-- Pokemon and any associated names and the like are --*/
/*-- trademark and (C) Nintendo 1996-2020. --*/
/*-- --*/
/*-- The custom code written here is licensed under the terms of the GPL: --*/
/*-- --*/
/*-- This program is free software: you can redistribute it and/or modify --*/
/*-- it under the terms of the GNU General Public License as published by --*/
/*-- the Free Software Foundation, either version 3 of the License, or --*/
/*-- (at your option) any later version. --*/
/*-- --*/
/*-- This program is distributed in the hope that it will be useful, --*/
/*-- but WITHOUT ANY WARRANTY; without even the implied warranty of --*/
/*-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --*/
/*-- GNU General Public License for more details. --*/
/*-- --*/
/*-- You should have received a copy of the GNU General Public License --*/
/*-- along with this program. If not, see <http://www.gnu.org/licenses/>. --*/
/*----------------------------------------------------------------------------*/
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintStream;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import com.dabomstew.pkrandom.*;
import com.dabomstew.pkrandom.constants.*;
import com.dabomstew.pkrandom.exceptions.RandomizationException;
import com.dabomstew.pkrandom.pokemon.*;
import pptxt.PPTxtHandler;
import com.dabomstew.pkrandom.exceptions.RandomizerIOException;
import com.dabomstew.pkrandom.newnds.NARCArchive;
import compressors.DSDecmp;
public class Gen5RomHandler extends AbstractDSRomHandler {
public static class Factory extends RomHandler.Factory {
@Override
public Gen5RomHandler create(Random random, PrintStream logStream) {
return new Gen5RomHandler(random, logStream);
}
public boolean isLoadable(String filename) {
return detectNDSRomInner(getROMCodeFromFile(filename));
}
}
public Gen5RomHandler(Random random) {
super(random, null);
}
public Gen5RomHandler(Random random, PrintStream logStream) {
super(random, logStream);
}
@Override
public void changeCatchRates(Settings settings) {
int minimumCatchRateLevel = settings.getMinimumCatchRateLevel();
int normalMin, legendaryMin;
switch (minimumCatchRateLevel) {
case 1:
default:
normalMin = 50;
legendaryMin = 25;
break;
case 2:
normalMin = 100;
legendaryMin = 45;
break;
case 3:
normalMin = 180;
legendaryMin = 75;
break;
case 4:
normalMin = legendaryMin = 255;
break;
}
minimumCatchRate(normalMin, legendaryMin);
}
private static class OffsetWithinEntry {
private int entry;
private int offset;
}
private static class RomEntry {
private String name;
private String romCode;
private int romType;
private boolean staticPokemonSupport = false, copyStaticPokemon = false, copyTradeScripts = false, isBlack = false;
private Map<String, String> strings = new HashMap<>();
private Map<String, Integer> numbers = new HashMap<>();
private Map<String, String> tweakFiles = new HashMap<>();
private Map<String, int[]> arrayEntries = new HashMap<>();
private Map<String, OffsetWithinEntry[]> offsetArrayEntries = new HashMap<>();
private List<StaticPokemon> staticPokemon = new ArrayList<>();
private List<TradeScript> tradeScripts = new ArrayList<>();
private int getInt(String key) {
if (!numbers.containsKey(key)) {
numbers.put(key, 0);
}
return numbers.get(key);
}
private String getString(String key) {
if (!strings.containsKey(key)) {
strings.put(key, "");
}
return strings.get(key);
}
}
private static List<RomEntry> roms;
static {
loadROMInfo();
}
private static void loadROMInfo() {
roms = new ArrayList<>();
RomEntry current = null;
try {
Scanner sc = new Scanner(FileFunctions.openConfig("gen5_offsets.ini"), "UTF-8");
while (sc.hasNextLine()) {
String q = sc.nextLine().trim();
if (q.contains("//")) {
q = q.substring(0, q.indexOf("//")).trim();
}
if (!q.isEmpty()) {
if (q.startsWith("[") && q.endsWith("]")) {
// New rom
current = new RomEntry();
current.name = q.substring(1, q.length() - 1);
roms.add(current);
} else {
String[] r = q.split("=", 2);
if (r.length == 1) {
System.err.println("invalid entry " + q);
continue;
}
if (r[1].endsWith("\r\n")) {
r[1] = r[1].substring(0, r[1].length() - 2);
}
r[1] = r[1].trim();
if (r[0].equals("Game")) {
current.romCode = r[1];
} else if (r[0].equals("Type")) {
if (r[1].equalsIgnoreCase("BW2")) {
current.romType = Gen5Constants.Type_BW2;
} else {
current.romType = Gen5Constants.Type_BW;
}
} else if (r[0].equals("CopyFrom")) {
for (RomEntry otherEntry : roms) {
if (r[1].equalsIgnoreCase(otherEntry.romCode)) {
// copy from here
current.arrayEntries.putAll(otherEntry.arrayEntries);
current.numbers.putAll(otherEntry.numbers);
current.strings.putAll(otherEntry.strings);
current.offsetArrayEntries.putAll(otherEntry.offsetArrayEntries);
if (current.copyStaticPokemon) {
current.staticPokemon.addAll(otherEntry.staticPokemon);
current.staticPokemonSupport = true;
} else {
current.staticPokemonSupport = false;
}
if (current.copyTradeScripts) {
current.tradeScripts.addAll(otherEntry.tradeScripts);
}
}
}
} else if (r[0].equals("StaticPokemon{}")) {
current.staticPokemon.add(parseStaticPokemon(r[1]));
} else if (r[0].equals("TradeScript[]")) {
String[] offsets = r[1].substring(1, r[1].length() - 1).split(",");
int[] reqOffs = new int[offsets.length];
int[] givOffs = new int[offsets.length];
int file = 0;
int c = 0;
for (String off : offsets) {
String[] parts = off.split(":");
file = parseRIInt(parts[0]);
reqOffs[c] = parseRIInt(parts[1]);
givOffs[c++] = parseRIInt(parts[2]);
}
TradeScript ts = new TradeScript();
ts.fileNum = file;
ts.requestedOffsets = reqOffs;
ts.givenOffsets = givOffs;
current.tradeScripts.add(ts);
} else if (r[0].equals("StaticPokemonSupport")) {
int spsupport = parseRIInt(r[1]);
current.staticPokemonSupport = (spsupport > 0);
} else if (r[0].equals("CopyStaticPokemon")) {
int csp = parseRIInt(r[1]);
current.copyStaticPokemon = (csp > 0);
} else if (r[0].equals("CopyTradeScripts")) {
int cts = parseRIInt(r[1]);
current.copyTradeScripts = (cts > 0);
} else if (r[0].startsWith("StarterOffsets")) {
String[] offsets = r[1].substring(1, r[1].length() - 1).split(",");
OffsetWithinEntry[] offs = new OffsetWithinEntry[offsets.length];
int c = 0;
for (String off : offsets) {
String[] parts = off.split(":");
OffsetWithinEntry owe = new OffsetWithinEntry();
owe.entry = parseRIInt(parts[0]);
owe.offset = parseRIInt(parts[1]);
offs[c++] = owe;
}
current.offsetArrayEntries.put(r[0], offs);
} else if (r[0].endsWith("Tweak")) {
current.tweakFiles.put(r[0], r[1]);
} else if (r[0].equals("IsBlack")) {
int isBlack = parseRIInt(r[1]);
current.isBlack = (isBlack > 0);
} else {
if (r[1].startsWith("[") && r[1].endsWith("]")) {
String[] offsets = r[1].substring(1, r[1].length() - 1).split(",");
if (offsets.length == 1 && offsets[0].trim().isEmpty()) {
current.arrayEntries.put(r[0], new int[0]);
} else {
int[] offs = new int[offsets.length];
int c = 0;
for (String off : offsets) {
offs[c++] = parseRIInt(off);
}
current.arrayEntries.put(r[0], offs);
}
} else if (r[0].endsWith("Offset") || r[0].endsWith("Count") || r[0].endsWith("Number")
|| r[0].endsWith("Size") || r[0].endsWith("Index")) {
int offs = parseRIInt(r[1]);
current.numbers.put(r[0], offs);
} else {
current.strings.put(r[0], r[1]);
}
}
}
}
}
sc.close();
} catch (FileNotFoundException e) {
System.err.println("File not found!");
}
}
private static int parseRIInt(String off) {
int radix = 10;
off = off.trim().toLowerCase();
if (off.startsWith("0x") || off.startsWith("&h")) {
radix = 16;
off = off.substring(2);
}
try {
return Integer.parseInt(off, radix);
} catch (NumberFormatException ex) {
System.err.println("invalid base " + radix + "number " + off);
return 0;
}
}
private static StaticPokemon parseStaticPokemon(String staticPokemonString) {
StaticPokemon sp = new StaticPokemon();
String pattern = "[A-z]+=\\[([0-9]+:0x[0-9a-fA-F]+,?\\s?)+]";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(staticPokemonString);
while (m.find()) {
String[] segments = m.group().split("=");
String[] offsets = segments[1].substring(1, segments[1].length() - 1).split(",");
ScriptEntry[] entries = new ScriptEntry[offsets.length];
for (int i = 0; i < entries.length; i++) {
String[] parts = offsets[i].split(":");
entries[i] = new ScriptEntry(parseRIInt(parts[0]), parseRIInt(parts[1]));
}
switch (segments[0]) {
case "Species":
sp.speciesEntries = entries;
break;
case "Level":
sp.levelEntries = entries;
break;
case "Forme":
sp.formeEntries = entries;
break;
}
}
return sp;
}
// This ROM
private Pokemon[] pokes;
private Map<Integer,FormeInfo> formeMappings = new TreeMap<>();
private List<Pokemon> pokemonList;
private List<Pokemon> pokemonListInclFormes;
private Move[] moves;
private RomEntry romEntry;
private byte[] arm9;
private List<String> abilityNames;
private List<String> itemNames;
private List<String> shopNames;
private boolean loadedWildMapNames;
private Map<Integer, String> wildMapNames;
private ItemList allowedItems, nonBadItems;
private List<Integer> regularShopItems;
private List<Integer> opShopItems;
private int hiddenHollowCount = 0;
private boolean hiddenHollowCounted = false;
private List<Integer> originalDoubleTrainers = new ArrayList<>();
private NARCArchive pokeNarc, moveNarc, stringsNarc, storyTextNarc, scriptNarc, shopNarc;
@Override
protected boolean detectNDSRom(String ndsCode) {
return detectNDSRomInner(ndsCode);
}
private static boolean detectNDSRomInner(String ndsCode) {
return entryFor(ndsCode) != null;
}
private static RomEntry entryFor(String ndsCode) {
if (ndsCode == null) {
return null;
}
for (RomEntry re : roms) {
if (ndsCode.equals(re.romCode)) {
return re;
}
}
return null;
}
@Override
protected void loadedROM(String romCode) {
this.romEntry = entryFor(romCode);
try {
arm9 = readARM9();
} catch (IOException e) {
throw new RandomizerIOException(e);
}
try {
stringsNarc = readNARC(romEntry.getString("TextStrings"));
storyTextNarc = readNARC(romEntry.getString("TextStory"));
} catch (IOException e) {
throw new RandomizerIOException(e);
}
try {
scriptNarc = readNARC(romEntry.getString("Scripts"));
} catch (IOException e) {
throw new RandomizerIOException(e);
}
if (romEntry.romType == Gen5Constants.Type_BW2) {
try {
shopNarc = readNARC(romEntry.getString("ShopItems"));
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
loadPokemonStats();
pokemonListInclFormes = Arrays.asList(pokes);
pokemonList = Arrays.asList(Arrays.copyOfRange(pokes,0,Gen5Constants.pokemonCount + 1));
loadMoves();
abilityNames = getStrings(false, romEntry.getInt("AbilityNamesTextOffset"));
itemNames = getStrings(false, romEntry.getInt("ItemNamesTextOffset"));
if (romEntry.romType == Gen5Constants.Type_BW) {
shopNames = Gen5Constants.bw1ShopNames;
}
else if (romEntry.romType == Gen5Constants.Type_BW2) {
shopNames = Gen5Constants.bw2ShopNames;
}
loadedWildMapNames = false;
allowedItems = Gen5Constants.allowedItems.copy();
nonBadItems = Gen5Constants.nonBadItems.copy();
regularShopItems = Gen5Constants.regularShopItems;
opShopItems = Gen5Constants.opShopItems;
}
private void loadPokemonStats() {
try {
pokeNarc = this.readNARC(romEntry.getString("PokemonStats"));
String[] pokeNames = readPokemonNames();
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
pokes = new Pokemon[Gen5Constants.pokemonCount + formeCount + 1];
for (int i = 1; i <= Gen5Constants.pokemonCount; i++) {
pokes[i] = new Pokemon();
pokes[i].number = i;
loadBasicPokeStats(pokes[i], pokeNarc.files.get(i), formeMappings);
// Name?
pokes[i].name = pokeNames[i];
}
int i = Gen5Constants.pokemonCount + 1;
for (int k: formeMappings.keySet()) {
pokes[i] = new Pokemon();
pokes[i].number = i;
loadBasicPokeStats(pokes[i], pokeNarc.files.get(k), formeMappings);
FormeInfo fi = formeMappings.get(k);
pokes[i].name = pokeNames[fi.baseForme];
pokes[i].baseForme = pokes[fi.baseForme];
pokes[i].formeNumber = fi.formeNumber;
pokes[i].formeSpriteIndex = fi.formeSpriteOffset + Gen5Constants.pokemonCount + Gen5Constants.getNonPokemonBattleSpriteCount(romEntry.romType);
pokes[i].formeSuffix = Gen5Constants.getFormeSuffix(k,romEntry.romType);
i = i + 1;
}
populateEvolutions();
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void loadMoves() {
try {
moveNarc = this.readNARC(romEntry.getString("MoveData"));
moves = new Move[Gen5Constants.moveCount + 1];
List<String> moveNames = getStrings(false, romEntry.getInt("MoveNamesTextOffset"));
for (int i = 1; i <= Gen5Constants.moveCount; i++) {
byte[] moveData = moveNarc.files.get(i);
moves[i] = new Move();
moves[i].name = moveNames.get(i);
moves[i].number = i;
moves[i].internalId = i;
moves[i].hitratio = (moveData[4] & 0xFF);
moves[i].power = moveData[3] & 0xFF;
moves[i].pp = moveData[5] & 0xFF;
moves[i].type = Gen5Constants.typeTable[moveData[0] & 0xFF];
moves[i].category = Gen5Constants.moveCategoryIndices[moveData[2] & 0xFF];
if (i == Moves.swift) {
perfectAccuracy = (int)moves[i].hitratio;
}
if (GlobalConstants.normalMultihitMoves.contains(i)) {
moves[i].hitCount = 19 / 6.0;
} else if (GlobalConstants.doubleHitMoves.contains(i)) {
moves[i].hitCount = 2;
} else if (i == Moves.tripleKick) {
moves[i].hitCount = 2.71; // this assumes the first hit
// lands
}
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void loadBasicPokeStats(Pokemon pkmn, byte[] stats, Map<Integer,FormeInfo> altFormes) {
pkmn.hp = stats[Gen5Constants.bsHPOffset] & 0xFF;
pkmn.attack = stats[Gen5Constants.bsAttackOffset] & 0xFF;
pkmn.defense = stats[Gen5Constants.bsDefenseOffset] & 0xFF;
pkmn.speed = stats[Gen5Constants.bsSpeedOffset] & 0xFF;
pkmn.spatk = stats[Gen5Constants.bsSpAtkOffset] & 0xFF;
pkmn.spdef = stats[Gen5Constants.bsSpDefOffset] & 0xFF;
// Type
pkmn.primaryType = Gen5Constants.typeTable[stats[Gen5Constants.bsPrimaryTypeOffset] & 0xFF];
pkmn.secondaryType = Gen5Constants.typeTable[stats[Gen5Constants.bsSecondaryTypeOffset] & 0xFF];
// Only one type?
if (pkmn.secondaryType == pkmn.primaryType) {
pkmn.secondaryType = null;
}
pkmn.catchRate = stats[Gen5Constants.bsCatchRateOffset] & 0xFF;
pkmn.growthCurve = ExpCurve.fromByte(stats[Gen5Constants.bsGrowthCurveOffset]);
pkmn.ability1 = stats[Gen5Constants.bsAbility1Offset] & 0xFF;
pkmn.ability2 = stats[Gen5Constants.bsAbility2Offset] & 0xFF;
pkmn.ability3 = stats[Gen5Constants.bsAbility3Offset] & 0xFF;
// Held Items?
int item1 = readWord(stats, Gen5Constants.bsCommonHeldItemOffset);
int item2 = readWord(stats, Gen5Constants.bsRareHeldItemOffset);
if (item1 == item2) {
// guaranteed
pkmn.guaranteedHeldItem = item1;
pkmn.commonHeldItem = 0;
pkmn.rareHeldItem = 0;
pkmn.darkGrassHeldItem = 0;
} else {
pkmn.guaranteedHeldItem = 0;
pkmn.commonHeldItem = item1;
pkmn.rareHeldItem = item2;
pkmn.darkGrassHeldItem = readWord(stats, Gen5Constants.bsDarkGrassHeldItemOffset);
}
int formeCount = stats[Gen5Constants.bsFormeCountOffset] & 0xFF;
if (formeCount > 1) {
int firstFormeOffset = readWord(stats, Gen5Constants.bsFormeOffset);
if (firstFormeOffset != 0) {
for (int i = 1; i < formeCount; i++) {
altFormes.put(firstFormeOffset + i - 1,new FormeInfo(pkmn.number,i,readWord(stats,Gen5Constants.bsFormeSpriteOffset))); // Assumes that formes are in memory in the same order as their numbers
if (pkmn.number == Species.keldeo) {
pkmn.cosmeticForms = formeCount;
}
}
} else {
if (pkmn.number != Species.cherrim && pkmn.number != Species.arceus && pkmn.number != Species.deerling && pkmn.number != Species.sawsbuck && pkmn.number < Species.genesect) {
// Reason for exclusions:
// Cherrim/Arceus/Genesect: to avoid confusion
// Deerling/Sawsbuck: handled automatically in gen 5
pkmn.cosmeticForms = formeCount;
}
if (pkmn.number == 670) {
pkmn.actuallyCosmetic = true;
}
}
}
}
private String[] readPokemonNames() {
String[] pokeNames = new String[Gen5Constants.pokemonCount + 1];
List<String> nameList = getStrings(false, romEntry.getInt("PokemonNamesTextOffset"));
for (int i = 1; i <= Gen5Constants.pokemonCount; i++) {
pokeNames[i] = nameList.get(i);
}
return pokeNames;
}
@Override
protected void savingROM() {
savePokemonStats();
saveMoves();
try {
writeARM9(arm9);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
try {
writeNARC(romEntry.getString("TextStrings"), stringsNarc);
writeNARC(romEntry.getString("TextStory"), storyTextNarc);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
try {
writeNARC(romEntry.getString("Scripts"), scriptNarc);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void saveMoves() {
for (int i = 1; i <= Gen5Constants.moveCount; i++) {
byte[] data = moveNarc.files.get(i);
data[2] = Gen5Constants.moveCategoryToByte(moves[i].category);
data[3] = (byte) moves[i].power;
data[0] = Gen5Constants.typeToByte(moves[i].type);
int hitratio = (int) Math.round(moves[i].hitratio);
if (hitratio < 0) {
hitratio = 0;
}
if (hitratio > 101) {
hitratio = 100;
}
data[4] = (byte) hitratio;
data[5] = (byte) moves[i].pp;
}
try {
this.writeNARC(romEntry.getString("MoveData"), moveNarc);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void savePokemonStats() {
List<String> nameList = getStrings(false, romEntry.getInt("PokemonNamesTextOffset"));
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (int i = 1; i <= Gen5Constants.pokemonCount + formeCount; i++) {
if (i > Gen5Constants.pokemonCount) {
saveBasicPokeStats(pokes[i], pokeNarc.files.get(i + formeOffset));
continue;
}
saveBasicPokeStats(pokes[i], pokeNarc.files.get(i));
nameList.set(i, pokes[i].name);
}
setStrings(false, romEntry.getInt("PokemonNamesTextOffset"), nameList);
try {
this.writeNARC(romEntry.getString("PokemonStats"), pokeNarc);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
writeEvolutions();
}
private void saveBasicPokeStats(Pokemon pkmn, byte[] stats) {
stats[Gen5Constants.bsHPOffset] = (byte) pkmn.hp;
stats[Gen5Constants.bsAttackOffset] = (byte) pkmn.attack;
stats[Gen5Constants.bsDefenseOffset] = (byte) pkmn.defense;
stats[Gen5Constants.bsSpeedOffset] = (byte) pkmn.speed;
stats[Gen5Constants.bsSpAtkOffset] = (byte) pkmn.spatk;
stats[Gen5Constants.bsSpDefOffset] = (byte) pkmn.spdef;
stats[Gen5Constants.bsPrimaryTypeOffset] = Gen5Constants.typeToByte(pkmn.primaryType);
if (pkmn.secondaryType == null) {
stats[Gen5Constants.bsSecondaryTypeOffset] = stats[Gen5Constants.bsPrimaryTypeOffset];
} else {
stats[Gen5Constants.bsSecondaryTypeOffset] = Gen5Constants.typeToByte(pkmn.secondaryType);
}
stats[Gen5Constants.bsCatchRateOffset] = (byte) pkmn.catchRate;
stats[Gen5Constants.bsGrowthCurveOffset] = pkmn.growthCurve.toByte();
stats[Gen5Constants.bsAbility1Offset] = (byte) pkmn.ability1;
stats[Gen5Constants.bsAbility2Offset] = (byte) pkmn.ability2;
stats[Gen5Constants.bsAbility3Offset] = (byte) pkmn.ability3;
// Held items
if (pkmn.guaranteedHeldItem > 0) {
writeWord(stats, Gen5Constants.bsCommonHeldItemOffset, pkmn.guaranteedHeldItem);
writeWord(stats, Gen5Constants.bsRareHeldItemOffset, pkmn.guaranteedHeldItem);
writeWord(stats, Gen5Constants.bsDarkGrassHeldItemOffset, 0);
} else {
writeWord(stats, Gen5Constants.bsCommonHeldItemOffset, pkmn.commonHeldItem);
writeWord(stats, Gen5Constants.bsRareHeldItemOffset, pkmn.rareHeldItem);
writeWord(stats, Gen5Constants.bsDarkGrassHeldItemOffset, pkmn.darkGrassHeldItem);
}
}
@Override
public List<Pokemon> getPokemon() {
return pokemonList;
}
@Override
public List<Pokemon> getPokemonInclFormes() {
return pokemonListInclFormes;
}
@Override
public List<Pokemon> getAltFormes() {
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
return pokemonListInclFormes.subList(Gen5Constants.pokemonCount + 1, Gen5Constants.pokemonCount + formeCount + 1);
}
@Override
public List<MegaEvolution> getMegaEvolutions() {
return new ArrayList<>();
}
@Override
public Pokemon getAltFormeOfPokemon(Pokemon pk, int forme) {
int pokeNum = Gen5Constants.getAbsolutePokeNumByBaseForme(pk.number,forme);
return pokeNum != 0 ? pokes[pokeNum] : pk;
}
@Override
public boolean hasFunctionalFormes() {
return true;
}
@Override
public List<Pokemon> getStarters() {
NARCArchive scriptNARC = scriptNarc;
List<Pokemon> starters = new ArrayList<>();
for (int i = 0; i < 3; i++) {
OffsetWithinEntry[] thisStarter = romEntry.offsetArrayEntries.get("StarterOffsets" + (i + 1));
starters.add(pokes[readWord(scriptNARC.files.get(thisStarter[0].entry), thisStarter[0].offset)]);
}
return starters;
}
@Override
public boolean setStarters(List<Pokemon> newStarters) {
if (newStarters.size() != 3) {
return false;
}
// Fix up starter offsets
try {
NARCArchive scriptNARC = scriptNarc;
for (int i = 0; i < 3; i++) {
int starter = newStarters.get(i).number;
OffsetWithinEntry[] thisStarter = romEntry.offsetArrayEntries.get("StarterOffsets" + (i + 1));
for (OffsetWithinEntry entry : thisStarter) {
writeWord(scriptNARC.files.get(entry.entry), entry.offset, starter);
}
}
// GIVE ME BACK MY PURRLOIN
if (romEntry.romType == Gen5Constants.Type_BW2) {
byte[] newScript = Gen5Constants.bw2NewStarterScript;
byte[] oldFile = scriptNARC.files.get(romEntry.getInt("PokedexGivenFileOffset"));
byte[] newFile = new byte[oldFile.length + newScript.length];
int offset = find(oldFile, Gen5Constants.bw2StarterScriptMagic);
if (offset > 0) {
System.arraycopy(oldFile, 0, newFile, 0, oldFile.length);
System.arraycopy(newScript, 0, newFile, oldFile.length, newScript.length);
if (romEntry.romCode.charAt(3) == 'J') {
newFile[oldFile.length + 0x6] -= 4;
}
newFile[offset++] = 0x1E;
newFile[offset++] = 0x0;
writeRelativePointer(newFile, offset, oldFile.length);
scriptNARC.files.set(romEntry.getInt("PokedexGivenFileOffset"), newFile);
}
} else {
byte[] newScript = Gen5Constants.bw1NewStarterScript;
byte[] oldFile = scriptNARC.files.get(romEntry.getInt("PokedexGivenFileOffset"));
byte[] newFile = new byte[oldFile.length + newScript.length];
int offset = find(oldFile, Gen5Constants.bw1StarterScriptMagic);
if (offset > 0) {
System.arraycopy(oldFile, 0, newFile, 0, oldFile.length);
System.arraycopy(newScript, 0, newFile, oldFile.length, newScript.length);
if (romEntry.romCode.charAt(3) == 'J') {
newFile[oldFile.length + 0x4] -= 4;
newFile[oldFile.length + 0x8] -= 4;
}
newFile[offset++] = 0x04;
newFile[offset++] = 0x0;
writeRelativePointer(newFile, offset, oldFile.length);
scriptNARC.files.set(romEntry.getInt("PokedexGivenFileOffset"), newFile);
}
}
// Starter sprites
NARCArchive starterNARC = this.readNARC(romEntry.getString("StarterGraphics"));
NARCArchive pokespritesNARC = this.readNARC(romEntry.getString("PokemonGraphics"));
replaceStarterFiles(starterNARC, pokespritesNARC, 0, newStarters.get(0).number);
replaceStarterFiles(starterNARC, pokespritesNARC, 1, newStarters.get(1).number);
replaceStarterFiles(starterNARC, pokespritesNARC, 2, newStarters.get(2).number);
writeNARC(romEntry.getString("StarterGraphics"), starterNARC);
// Starter cries
byte[] starterCryOverlay = this.readOverlay(romEntry.getInt("StarterCryOvlNumber"));
String starterCryTablePrefix = romEntry.getString("StarterCryTablePrefix");
int offset = find(starterCryOverlay, starterCryTablePrefix);
if (offset > 0) {
offset += starterCryTablePrefix.length() / 2; // because it was a prefix
for (Pokemon newStarter : newStarters) {
writeWord(starterCryOverlay, offset, newStarter.number);
offset += 2;
}
this.writeOverlay(romEntry.getInt("StarterCryOvlNumber"), starterCryOverlay);
}
} catch (IOException ex) {
throw new RandomizerIOException(ex);
}
// Fix text depending on version
if (romEntry.romType == Gen5Constants.Type_BW) {
List<String> yourHouseStrings = getStrings(true, romEntry.getInt("StarterLocationTextOffset"));
for (int i = 0; i < 3; i++) {
yourHouseStrings.set(Gen5Constants.bw1StarterTextOffset - i,
"\\xF000\\xBD02\\x0000The " + newStarters.get(i).primaryType.camelCase()
+ "-type Pok\\x00E9mon\\xFFFE\\xF000\\xBD02\\x0000" + newStarters.get(i).name);
}
// Update what the friends say
yourHouseStrings
.set(Gen5Constants.bw1CherenText1Offset,
"Cheren: Hey, how come you get to pick\\xFFFEout my Pok\\x00E9mon?"
+ "\\xF000\\xBE01\\x0000\\xFFFEOh, never mind. I wanted this one\\xFFFEfrom the start, anyway."
+ "\\xF000\\xBE01\\x0000");
yourHouseStrings.set(Gen5Constants.bw1CherenText2Offset,
"It's decided. You'll be my opponent...\\xFFFEin our first Pok\\x00E9mon battle!"
+ "\\xF000\\xBE01\\x0000\\xFFFELet's see what you can do, \\xFFFEmy Pok\\x00E9mon!"
+ "\\xF000\\xBE01\\x0000");
// rewrite
setStrings(true, romEntry.getInt("StarterLocationTextOffset"), yourHouseStrings);
} else {
List<String> starterTownStrings = getStrings(true, romEntry.getInt("StarterLocationTextOffset"));
for (int i = 0; i < 3; i++) {
starterTownStrings.set(Gen5Constants.bw2StarterTextOffset - i, "\\xF000\\xBD02\\x0000The "
+ newStarters.get(i).primaryType.camelCase()
+ "-type Pok\\x00E9mon\\xFFFE\\xF000\\xBD02\\x0000" + newStarters.get(i).name);
}
// Update what the rival says
starterTownStrings.set(Gen5Constants.bw2RivalTextOffset,
"\\xF000\\x0100\\x0001\\x0001: Let's see how good\\xFFFEa Trainer you are!"
+ "\\xF000\\xBE01\\x0000\\xFFFEI'll use my Pok\\x00E9mon"
+ "\\xFFFEthat I raised from an Egg!\\xF000\\xBE01\\x0000");
// rewrite
setStrings(true, romEntry.getInt("StarterLocationTextOffset"), starterTownStrings);
}
return true;
}
@Override
public boolean hasStarterAltFormes() {
return false;
}
@Override
public int starterCount() {
return 3;
}
@Override
public Map<Integer, StatChange> getUpdatedPokemonStats(int generation) {
return GlobalConstants.getStatChanges(generation);
}
@Override
public List<Integer> getStarterHeldItems() {
// do nothing
return new ArrayList<>();
}
@Override
public void setStarterHeldItems(List<Integer> items) {
// do nothing
}
private void replaceStarterFiles(NARCArchive starterNARC, NARCArchive pokespritesNARC, int starterIndex,
int pokeNumber) {
starterNARC.files.set(starterIndex * 2, pokespritesNARC.files.get(pokeNumber * 20 + 18));
// Get the picture...
byte[] compressedPic = pokespritesNARC.files.get(pokeNumber * 20);
// Decompress it with JavaDSDecmp
byte[] uncompressedPic = DSDecmp.Decompress(compressedPic);
starterNARC.files.set(12 + starterIndex, uncompressedPic);
}
@Override
public List<Move> getMoves() {
return Arrays.asList(moves);
}
@Override
public List<EncounterSet> getEncounters(boolean useTimeOfDay) {
if (!loadedWildMapNames) {
loadWildMapNames();
}
try {
NARCArchive encounterNARC = readNARC(romEntry.getString("WildPokemon"));
List<EncounterSet> encounters = new ArrayList<>();
int idx = -1;
for (byte[] entry : encounterNARC.files) {
idx++;
if (entry.length > Gen5Constants.perSeasonEncounterDataLength && useTimeOfDay) {
for (int i = 0; i < 4; i++) {
processEncounterEntry(encounters, entry, i * Gen5Constants.perSeasonEncounterDataLength, idx);
}
} else {
processEncounterEntry(encounters, entry, 0, idx);
}
}
return encounters;
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void processEncounterEntry(List<EncounterSet> encounters, byte[] entry, int startOffset, int idx) {
if (!wildMapNames.containsKey(idx)) {
wildMapNames.put(idx, "? Unknown ?");
}
String mapName = wildMapNames.get(idx);
int[] amounts = Gen5Constants.encountersOfEachType;
int offset = 8;
for (int i = 0; i < 7; i++) {
int rate = entry[startOffset + i] & 0xFF;
if (rate != 0) {
List<Encounter> encs = readEncounters(entry, startOffset + offset, amounts[i]);
EncounterSet area = new EncounterSet();
area.rate = rate;
area.encounters = encs;
area.offset = idx;
area.displayName = mapName + " " + Gen5Constants.encounterTypeNames[i];
encounters.add(area);
}
offset += amounts[i] * 4;
}
}
private List<Encounter> readEncounters(byte[] data, int offset, int number) {
List<Encounter> encs = new ArrayList<>();
for (int i = 0; i < number; i++) {
Encounter enc1 = new Encounter();
int species = readWord(data, offset + i * 4) & 0x7FF;
int forme = readWord(data, offset + i * 4) >> 11;
Pokemon baseForme = pokes[species];
if (forme <= baseForme.cosmeticForms || forme == 30 || forme == 31) {
enc1.pokemon = pokes[species];
} else {
int speciesWithForme = Gen5Constants.getAbsolutePokeNumByBaseForme(species,forme);
if (speciesWithForme == 0) {
enc1.pokemon = pokes[species]; // Failsafe
} else {
enc1.pokemon = pokes[speciesWithForme];
}
}
enc1.formeNumber = forme;
enc1.level = data[offset + 2 + i * 4] & 0xFF;
enc1.maxLevel = data[offset + 3 + i * 4] & 0xFF;
encs.add(enc1);
}
return encs;
}
@Override
public void setEncounters(boolean useTimeOfDay, List<EncounterSet> encountersList) {
try {
NARCArchive encounterNARC = readNARC(romEntry.getString("WildPokemon"));
Iterator<EncounterSet> encounters = encountersList.iterator();
for (byte[] entry : encounterNARC.files) {
writeEncounterEntry(encounters, entry, 0);
if (entry.length > 232) {
if (useTimeOfDay) {
for (int i = 1; i < 4; i++) {
writeEncounterEntry(encounters, entry, i * 232);
}
} else {
// copy for other 3 seasons
System.arraycopy(entry, 0, entry, 232, 232);
System.arraycopy(entry, 0, entry, 464, 232);
System.arraycopy(entry, 0, entry, 696, 232);
}
}
}
// Save
writeNARC(romEntry.getString("WildPokemon"), encounterNARC);
this.updatePokedexAreaData(encounterNARC);
// Habitat List
if (romEntry.romType == Gen5Constants.Type_BW2) {
// disabled: habitat list changes cause a crash if too many
// entries for now.
// NARCArchive habitatNARC = readNARC(romEntry
// .getString("HabitatList"));
// for (int i = 0; i < habitatNARC.files.size(); i++) {
// byte[] oldEntry = habitatNARC.files.get(i);
// int[] encounterFiles = habitatListEntries[i];
// Map<Pokemon, byte[]> pokemonHere = new TreeMap<Pokemon,
// byte[]>();
// for (int encFile : encounterFiles) {
// byte[] encEntry = encounterNARC.files.get(encFile);
// if (encEntry.length > 232) {
// for (int s = 0; s < 4; s++) {
// addHabitats(encEntry, s * 232, pokemonHere, s);
// }
// } else {
// for (int s = 0; s < 4; s++) {
// addHabitats(encEntry, 0, pokemonHere, s);
// }
// }
// }
// // Make the new file
// byte[] habitatEntry = new byte[10 + pokemonHere.size() * 28];
// System.arraycopy(oldEntry, 0, habitatEntry, 0, 10);
// habitatEntry[8] = (byte) pokemonHere.size();
// // 28-byte entries for each pokemon
// int num = -1;
// for (Pokemon pkmn : pokemonHere.keySet()) {
// num++;
// writeWord(habitatEntry, 10 + num * 28, pkmn.number);
// byte[] slots = pokemonHere.get(pkmn);
// System.arraycopy(slots, 0, habitatEntry, 12 + num * 28,
// 12);
// }
// // Save
// habitatNARC.files.set(i, habitatEntry);
// }
// // Save habitat
// this.writeNARC(romEntry.getString("HabitatList"),
// habitatNARC);
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void updatePokedexAreaData(NARCArchive encounterNARC) throws IOException {
NARCArchive areaNARC = this.readNARC(romEntry.getString("PokedexAreaData"));
int areaDataEntryLength = Gen5Constants.getAreaDataEntryLength(romEntry.romType);
int encounterAreaCount = Gen5Constants.getEncounterAreaCount(romEntry.romType);
List<byte[]> newFiles = new ArrayList<>();
for (int i = 0; i < Gen5Constants.pokemonCount; i++) {
byte[] nf = new byte[areaDataEntryLength];
newFiles.add(nf);
}
// Get data now
for (int i = 0; i < encounterNARC.files.size(); i++) {
byte[] encEntry = encounterNARC.files.get(i);
if (encEntry.length > Gen5Constants.perSeasonEncounterDataLength) {
for (int season = 0; season < 4; season++) {
updateAreaDataFromEncounterEntry(encEntry, season * Gen5Constants.perSeasonEncounterDataLength, newFiles, season, i);
}
} else {
for (int season = 0; season < 4; season++) {
updateAreaDataFromEncounterEntry(encEntry, 0, newFiles, season, i);
}
}
}
// Now update unobtainables, check for seasonal-dependent entries, & save
for (int i = 0; i < Gen5Constants.pokemonCount; i++) {
byte[] file = newFiles.get(i);
for (int season = 0; season < 4; season++) {
boolean unobtainable = true;
for (int enc = 0; enc < encounterAreaCount; enc++) {
if (file[season * (encounterAreaCount + 1) + enc + 2] != 0) {
unobtainable = false;
break;
}
}
if (unobtainable) {
file[season * (encounterAreaCount + 1) + 1] = 1;
}
}
boolean seasonalDependent = false;
for (int enc = 0; enc < encounterAreaCount; enc++) {
byte springEnc = file[enc + 2];
byte summerEnc = file[(encounterAreaCount + 1) + enc + 2];
byte autumnEnc = file[2 * (encounterAreaCount + 1) + enc + 2];
byte winterEnc = file[3 * (encounterAreaCount + 1) + enc + 2];
boolean allSeasonsAreTheSame = springEnc == summerEnc && springEnc == autumnEnc && springEnc == winterEnc;
if (!allSeasonsAreTheSame) {
seasonalDependent = true;
break;
}
}
if (!seasonalDependent) {
file[0] = 1;
}
areaNARC.files.set(i, file);
}
// Save
this.writeNARC(romEntry.getString("PokedexAreaData"), areaNARC);
}
private void updateAreaDataFromEncounterEntry(byte[] entry, int startOffset, List<byte[]> areaData, int season, int fileNumber) {
int[] amounts = Gen5Constants.encountersOfEachType;
int encounterAreaCount = Gen5Constants.getEncounterAreaCount(romEntry.romType);
int[] wildFileToAreaMap = Gen5Constants.getWildFileToAreaMap(romEntry.romType);
int offset = 8;
for (int i = 0; i < 7; i++) {
int rate = entry[startOffset + i] & 0xFF;
if (rate != 0) {
for (int e = 0; e < amounts[i]; e++) {
Pokemon pkmn = pokes[((entry[startOffset + offset + e * 4] & 0xFF) + ((entry[startOffset + offset
+ 1 + e * 4] & 0x03) << 8))];
while (pkmn.baseForme != null) {
pkmn = pkmn.baseForme;
}
byte[] pokeFile = areaData.get(pkmn.number - 1);
int areaIndex = wildFileToAreaMap[fileNumber];
// Route 4?
if (romEntry.romType == Gen5Constants.Type_BW2 && areaIndex == Gen5Constants.bw2Route4AreaIndex) {
if ((fileNumber == Gen5Constants.b2Route4EncounterFile && romEntry.romCode.charAt(2) == 'D')
|| (fileNumber == Gen5Constants.w2Route4EncounterFile && romEntry.romCode.charAt(2) == 'E')) {
areaIndex = -1; // wrong version
}
}
// Victory Road?
if (romEntry.romType == Gen5Constants.Type_BW2 && areaIndex == Gen5Constants.bw2VictoryRoadAreaIndex) {
if (romEntry.romCode.charAt(2) == 'D') {
// White 2
if (fileNumber == Gen5Constants.b2VRExclusiveRoom1
|| fileNumber == Gen5Constants.b2VRExclusiveRoom2) {
areaIndex = -1; // wrong version
}
} else {
// Black 2
if (fileNumber == Gen5Constants.w2VRExclusiveRoom1
|| fileNumber == Gen5Constants.w2VRExclusiveRoom2) {
areaIndex = -1; // wrong version
}
}
}
// Reversal Mountain?
if (romEntry.romType == Gen5Constants.Type_BW2 && areaIndex == Gen5Constants.bw2ReversalMountainAreaIndex) {
if (romEntry.romCode.charAt(2) == 'D') {
// White 2
if (fileNumber >= Gen5Constants.b2ReversalMountainStart
&& fileNumber <= Gen5Constants.b2ReversalMountainEnd) {
areaIndex = -1; // wrong version
}
} else {
// Black 2
if (fileNumber >= Gen5Constants.w2ReversalMountainStart
&& fileNumber <= Gen5Constants.w2ReversalMountainEnd) {
areaIndex = -1; // wrong version
}
}
}
// Skip stuff that isn't on the map or is wrong version
if (areaIndex != -1) {
pokeFile[season * (encounterAreaCount + 1) + 2 + areaIndex] |= (1 << i);
}
}
}
offset += amounts[i] * 4;
}
}
@SuppressWarnings("unused")
private void addHabitats(byte[] entry, int startOffset, Map<Pokemon, byte[]> pokemonHere, int season) {
int[] amounts = Gen5Constants.encountersOfEachType;
int[] type = Gen5Constants.habitatClassificationOfEachType;
int offset = 8;
for (int i = 0; i < 7; i++) {
int rate = entry[startOffset + i] & 0xFF;
if (rate != 0) {
for (int e = 0; e < amounts[i]; e++) {
Pokemon pkmn = pokes[((entry[startOffset + offset + e * 4] & 0xFF) + ((entry[startOffset + offset
+ 1 + e * 4] & 0x03) << 8))];
if (pokemonHere.containsKey(pkmn)) {
pokemonHere.get(pkmn)[type[i] + season * 3] = 1;
} else {
byte[] locs = new byte[12];
locs[type[i] + season * 3] = 1;
pokemonHere.put(pkmn, locs);
}
}
}
offset += amounts[i] * 4;
}
}
private void writeEncounterEntry(Iterator<EncounterSet> encounters, byte[] entry, int startOffset) {
int[] amounts = Gen5Constants.encountersOfEachType;
int offset = 8;
for (int i = 0; i < 7; i++) {
int rate = entry[startOffset + i] & 0xFF;
if (rate != 0) {
EncounterSet area = encounters.next();
for (int j = 0; j < amounts[i]; j++) {
Encounter enc = area.encounters.get(j);
if (enc.pokemon.formeNumber > 0) { // Failsafe if we need to write encounters without modifying species
if (enc.pokemon.baseForme != null) {
enc.pokemon = enc.pokemon.baseForme;
}
}
int speciesAndFormeData = (enc.formeNumber << 11) + enc.pokemon.number;
writeWord(entry, startOffset + offset + j * 4, speciesAndFormeData);
entry[startOffset + offset + j * 4 + 2] = (byte) enc.level;
entry[startOffset + offset + j * 4 + 3] = (byte) enc.maxLevel;
}
}
offset += amounts[i] * 4;
}
}
private void loadWildMapNames() {
try {
wildMapNames = new HashMap<>();
byte[] mapHeaderData = this.readNARC(romEntry.getString("MapTableFile")).files.get(0);
int numMapHeaders = mapHeaderData.length / 48;
List<String> allMapNames = getStrings(false, romEntry.getInt("MapNamesTextOffset"));
for (int map = 0; map < numMapHeaders; map++) {
int baseOffset = map * 48;
int mapNameIndex = mapHeaderData[baseOffset + 26] & 0xFF;
String mapName = allMapNames.get(mapNameIndex);
if (romEntry.romType == Gen5Constants.Type_BW2) {
int wildSet = mapHeaderData[baseOffset + 20] & 0xFF;
if (wildSet != 255) {
wildMapNames.put(wildSet, mapName);
}
} else {
int wildSet = readWord(mapHeaderData, baseOffset + 20);
if (wildSet != 65535) {
wildMapNames.put(wildSet, mapName);
}
}
}
loadedWildMapNames = true;
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public List<Trainer> getTrainers() {
List<Trainer> allTrainers = new ArrayList<>();
try {
NARCArchive trainers = this.readNARC(romEntry.getString("TrainerData"));
NARCArchive trpokes = this.readNARC(romEntry.getString("TrainerPokemon"));
int trainernum = trainers.files.size();
List<String> tclasses = this.getTrainerClassNames();
List<String> tnames = this.getTrainerNames();
for (int i = 1; i < trainernum; i++) {
byte[] trainer = trainers.files.get(i);
byte[] trpoke = trpokes.files.get(i);
Trainer tr = new Trainer();
tr.poketype = trainer[0] & 0xFF;
tr.offset = i;
tr.trainerclass = trainer[1] & 0xFF;
int numPokes = trainer[3] & 0xFF;
int pokeOffs = 0;
tr.fullDisplayName = tclasses.get(tr.trainerclass) + " " + tnames.get(i - 1);
if (trainer[2] == 1) {
originalDoubleTrainers.add(i);
}
for (int poke = 0; poke < numPokes; poke++) {
// Structure is
// AI SB LV LV SP SP FRM FRM
// (HI HI)
// (M1 M1 M2 M2 M3 M3 M4 M4)
// where SB = 0 0 Ab Ab 0 0 Fm Ml
// Ab Ab = ability number, 0 for random
// Fm = 1 for forced female
// Ml = 1 for forced male
// There's also a trainer flag to force gender, but
// this allows fixed teams with mixed genders.
int ailevel = trpoke[pokeOffs] & 0xFF;
// int secondbyte = trpoke[pokeOffs + 1] & 0xFF;
int level = readWord(trpoke, pokeOffs + 2);
int species = readWord(trpoke, pokeOffs + 4);
int formnum = readWord(trpoke, pokeOffs + 6);
TrainerPokemon tpk = new TrainerPokemon();
tpk.level = level;
tpk.pokemon = pokes[species];
tpk.AILevel = ailevel;
int abilityAndFlag = trpoke[pokeOffs + 1];
tpk.abilitySlot = (abilityAndFlag >>> 4) & 0xF;
tpk.forcedGenderFlag = (abilityAndFlag & 0xF);
tpk.forme = formnum;
tpk.formeSuffix = Gen5Constants.getFormeSuffixByBaseForme(species,formnum);
tpk.absolutePokeNumber = Gen5Constants.getAbsolutePokeNumByBaseForme(species,formnum);
pokeOffs += 8;
if (tr.pokemonHaveItems()) {
tpk.heldItem = readWord(trpoke, pokeOffs);
pokeOffs += 2;
}
if (tr.pokemonHaveCustomMoves()) {
int attack1 = readWord(trpoke, pokeOffs);
int attack2 = readWord(trpoke, pokeOffs + 2);
int attack3 = readWord(trpoke, pokeOffs + 4);
int attack4 = readWord(trpoke, pokeOffs + 6);
tpk.move1 = attack1;
tpk.move2 = attack2;
tpk.move3 = attack3;
tpk.move4 = attack4;
pokeOffs += 8;
}
tr.pokemon.add(tpk);
}
allTrainers.add(tr);
}
if (romEntry.romType == Gen5Constants.Type_BW) {
Gen5Constants.tagTrainersBW(allTrainers);
Gen5Constants.setCouldBeMultiBattleBW(allTrainers);
} else {
if (!romEntry.getString("DriftveilPokemon").isEmpty()) {
NARCArchive driftveil = this.readNARC(romEntry.getString("DriftveilPokemon"));
int currentFile = 1;
for (int trno = 0; trno < 17; trno++) {
Trainer tr = new Trainer();
tr.poketype = 3; // have held items and custom moves
tr.offset = 0;
int pokemonNum = 6;
if (trno < 2) {
pokemonNum = 3;
}
for (int poke = 0; poke < pokemonNum; poke++) {
byte[] pkmndata = driftveil.files.get(currentFile);
int species = readWord(pkmndata, 0);
TrainerPokemon tpk = new TrainerPokemon();
tpk.level = 25;
tpk.pokemon = pokes[species];
tpk.AILevel = 255;
tpk.heldItem = readWord(pkmndata, 12);
tpk.move1 = readWord(pkmndata, 2);
tpk.move2 = readWord(pkmndata, 4);
tpk.move3 = readWord(pkmndata, 6);
tpk.move4 = readWord(pkmndata, 8);
tpk.absolutePokeNumber = Gen5Constants.getAbsolutePokeNumByBaseForme(species,0);
tr.pokemon.add(tpk);
currentFile++;
}
allTrainers.add(tr);
}
}
Gen5Constants.tagTrainersBW2(allTrainers);
Gen5Constants.setCouldBeMultiBattleBW2(allTrainers);
}
} catch (IOException ex) {
throw new RandomizerIOException(ex);
}
return allTrainers;
}
@Override
public List<Integer> getMainPlaythroughTrainers() {
if (romEntry.romType == Gen5Constants.Type_BW) { // BW1
return Gen5Constants.bw1MainPlaythroughTrainers;
}
else if (romEntry.romType == Gen5Constants.Type_BW2) { // BW2
return Gen5Constants.bw2MainPlaythroughTrainers;
}
else {
return Gen5Constants.emptyPlaythroughTrainers;
}
}
@Override
public List<Integer> getEvolutionItems() {
return Gen5Constants.evolutionItems;
}
@Override
public void setTrainers(List<Trainer> trainerData, boolean doubleBattleMode) {
Iterator<Trainer> allTrainers = trainerData.iterator();
try {
NARCArchive trainers = this.readNARC(romEntry.getString("TrainerData"));
NARCArchive trpokes = new NARCArchive();
// Get current movesets in case we need to reset them for certain
// trainer mons.
Map<Integer, List<MoveLearnt>> movesets = this.getMovesLearnt();
// empty entry
trpokes.files.add(new byte[] { 0, 0, 0, 0, 0, 0, 0, 0 });
int trainernum = trainers.files.size();
for (int i = 1; i < trainernum; i++) {
byte[] trainer = trainers.files.get(i);
Trainer tr = allTrainers.next();
// preserve original poketype for held item & moves
trainer[0] = (byte) tr.poketype;
int numPokes = tr.pokemon.size();
trainer[3] = (byte) numPokes;
if (doubleBattleMode) {
if (!tr.skipImportant()) {
if (trainer[2] == 0) {
trainer[2] = 1;
trainer[12] |= 0x80; // Flag that needs to be set for trainers not to attack their own pokes
}
}
}
int bytesNeeded = 8 * numPokes;
if (tr.pokemonHaveCustomMoves()) {
bytesNeeded += 8 * numPokes;
}
if (tr.pokemonHaveItems()) {
bytesNeeded += 2 * numPokes;
}
byte[] trpoke = new byte[bytesNeeded];
int pokeOffs = 0;
Iterator<TrainerPokemon> tpokes = tr.pokemon.iterator();
for (int poke = 0; poke < numPokes; poke++) {
TrainerPokemon tp = tpokes.next();
byte abilityAndFlag = (byte)((tp.abilitySlot << 4) | tp.forcedGenderFlag);
trpoke[pokeOffs] = (byte) tp.AILevel;
trpoke[pokeOffs + 1] = abilityAndFlag;
writeWord(trpoke, pokeOffs + 2, tp.level);
writeWord(trpoke, pokeOffs + 4, tp.pokemon.number);
writeWord(trpoke, pokeOffs + 6, tp.forme);
// no form info, so no byte 6/7
pokeOffs += 8;
if (tr.pokemonHaveItems()) {
writeWord(trpoke, pokeOffs, tp.heldItem);
pokeOffs += 2;
}
if (tr.pokemonHaveCustomMoves()) {
if (tp.resetMoves) {
int[] pokeMoves = RomFunctions.getMovesAtLevel(tp.absolutePokeNumber, movesets, tp.level);
for (int m = 0; m < 4; m++) {
writeWord(trpoke, pokeOffs + m * 2, pokeMoves[m]);
}
} else {
writeWord(trpoke, pokeOffs, tp.move1);
writeWord(trpoke, pokeOffs + 2, tp.move2);
writeWord(trpoke, pokeOffs + 4, tp.move3);
writeWord(trpoke, pokeOffs + 6, tp.move4);
}
pokeOffs += 8;
}
}
trpokes.files.add(trpoke);
}
this.writeNARC(romEntry.getString("TrainerData"), trainers);
this.writeNARC(romEntry.getString("TrainerPokemon"), trpokes);
if (doubleBattleMode) {
NARCArchive trainerTextBoxes = readNARC(romEntry.getString("TrainerTextBoxes"));
byte[] data = trainerTextBoxes.files.get(0);
for (int i = 0; i < data.length; i += 4) {
int trainerIndex = readWord(data, i);
if (originalDoubleTrainers.contains(trainerIndex)) {
int textBoxIndex = readWord(data, i+2);
if (textBoxIndex == 3) {
writeWord(data, i+2, 0);
} else if (textBoxIndex == 5) {
writeWord(data, i+2, 2);
} else if (textBoxIndex == 6) {
writeWord(data, i+2, 0x18);
}
}
}
trainerTextBoxes.files.set(0, data);
writeNARC(romEntry.getString("TrainerTextBoxes"), trainerTextBoxes);
try {
byte[] fieldOverlay = readOverlay(romEntry.getInt("FieldOvlNumber"));
String trainerOverworldTextBoxPrefix = romEntry.getString("TrainerOverworldTextBoxPrefix");
int offset = find(fieldOverlay, trainerOverworldTextBoxPrefix);
if (offset > 0) {
offset += trainerOverworldTextBoxPrefix.length() / 2; // because it was a prefix
// Overwrite text box values for trainer 1 in a doubles pair to use the same as a single trainer
fieldOverlay[offset-2] = 0;
fieldOverlay[offset] = 2;
fieldOverlay[offset+2] = 0x18;
} else {
throw new RandomizationException("Double Battle Mode not supported for this game");
}
String doubleBattleLimitPrefix = romEntry.getString("DoubleBattleLimitPrefix");
offset = find(fieldOverlay, doubleBattleLimitPrefix);
if (offset > 0) {
offset += trainerOverworldTextBoxPrefix.length() / 2; // because it was a prefix
// No limit for doubles trainers, i.e. they will spot you even if you have a single Pokemon
writeWord(fieldOverlay, offset, 0x46C0); // nop
writeWord(fieldOverlay, offset+2, 0x46C0); // nop
} else {
throw new RandomizationException("Double Battle Mode not supported for this game");
}
String doubleBattleGetPointerPrefix = romEntry.getString("DoubleBattleGetPointerPrefix");
int beqToSingleTrainer = romEntry.getInt("BeqToSingleTrainerNumber");
offset = find(fieldOverlay, doubleBattleGetPointerPrefix);
if (offset > 0) {
offset += trainerOverworldTextBoxPrefix.length() / 2; // because it was a prefix
// Move some instructions up
writeWord(fieldOverlay, offset + 0x10, readWord(fieldOverlay, offset + 0xE));
writeWord(fieldOverlay, offset + 0xE, readWord(fieldOverlay, offset + 0xC));
writeWord(fieldOverlay, offset + 0xC, readWord(fieldOverlay, offset + 0xA));
// Add a beq and cmp to go to the "single trainer" case if a certain pointer is 0
writeWord(fieldOverlay, offset + 0xA, beqToSingleTrainer);
writeWord(fieldOverlay, offset + 8, 0x2800);
} else {
throw new RandomizationException("Double Battle Mode not supported for this game");
}
writeOverlay(romEntry.getInt("FieldOvlNumber"), fieldOverlay);
} catch (IOException e) {
e.printStackTrace();
}
String textBoxChoicePrefix = romEntry.getString("TextBoxChoicePrefix");
int offset = find(arm9,textBoxChoicePrefix);
if (offset > 0) {
// Change a branch destination in order to only check the relevant trainer instead of checking
// every trainer in the game (will result in incorrect text boxes when being spotted by doubles
// pairs, but this is better than the game freezing for half a second and getting a blank text box)
arm9[offset-4] = 2;
} else {
throw new RandomizationException("Double Battle Mode not supported for this game");
}
}
// Deal with PWT
if (romEntry.romType == Gen5Constants.Type_BW2 && !romEntry.getString("DriftveilPokemon").isEmpty()) {
NARCArchive driftveil = this.readNARC(romEntry.getString("DriftveilPokemon"));
int currentFile = 1;
for (int trno = 0; trno < 17; trno++) {
Trainer tr = allTrainers.next();
Iterator<TrainerPokemon> tpks = tr.pokemon.iterator();
int pokemonNum = 6;
if (trno < 2) {
pokemonNum = 3;
}
for (int poke = 0; poke < pokemonNum; poke++) {
byte[] pkmndata = driftveil.files.get(currentFile);
TrainerPokemon tp = tpks.next();
// pokemon and held item
writeWord(pkmndata, 0, tp.pokemon.number);
writeWord(pkmndata, 12, tp.heldItem);
// handle moves
if (tp.resetMoves) {
int[] pokeMoves = RomFunctions.getMovesAtLevel(tp.absolutePokeNumber, movesets, tp.level);
for (int m = 0; m < 4; m++) {
writeWord(pkmndata, 2 + m * 2, pokeMoves[m]);
}
} else {
writeWord(pkmndata, 2, tp.move1);
writeWord(pkmndata, 4, tp.move2);
writeWord(pkmndata, 6, tp.move3);
writeWord(pkmndata, 8, tp.move4);
}
currentFile++;
}
}
this.writeNARC(romEntry.getString("DriftveilPokemon"), driftveil);
}
} catch (IOException ex) {
throw new RandomizerIOException(ex);
}
}
@Override
public Map<Integer, List<MoveLearnt>> getMovesLearnt() {
Map<Integer, List<MoveLearnt>> movesets = new TreeMap<>();
try {
NARCArchive movesLearnt = this.readNARC(romEntry.getString("PokemonMovesets"));
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (int i = 1; i <= Gen5Constants.pokemonCount + formeCount; i++) {
Pokemon pkmn = pokes[i];
byte[] movedata;
if (i > Gen5Constants.pokemonCount) {
movedata = movesLearnt.files.get(i + formeOffset);
} else {
movedata = movesLearnt.files.get(i);
}
int moveDataLoc = 0;
List<MoveLearnt> learnt = new ArrayList<>();
while (readWord(movedata, moveDataLoc) != 0xFFFF || readWord(movedata, moveDataLoc + 2) != 0xFFFF) {
int move = readWord(movedata, moveDataLoc);
int level = readWord(movedata, moveDataLoc + 2);
MoveLearnt ml = new MoveLearnt();
ml.level = level;
ml.move = move;
learnt.add(ml);
moveDataLoc += 4;
}
movesets.put(pkmn.number, learnt);
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
return movesets;
}
@Override
public void setMovesLearnt(Map<Integer, List<MoveLearnt>> movesets) {
try {
NARCArchive movesLearnt = readNARC(romEntry.getString("PokemonMovesets"));
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (int i = 1; i <= Gen5Constants.pokemonCount + formeCount; i++) {
Pokemon pkmn = pokes[i];
List<MoveLearnt> learnt = movesets.get(pkmn.number);
int sizeNeeded = learnt.size() * 4 + 4;
byte[] moveset = new byte[sizeNeeded];
int j = 0;
for (; j < learnt.size(); j++) {
MoveLearnt ml = learnt.get(j);
writeWord(moveset, j * 4, ml.move);
writeWord(moveset, j * 4 + 2, ml.level);
}
writeWord(moveset, j * 4, 0xFFFF);
writeWord(moveset, j * 4 + 2, 0xFFFF);
if (i > Gen5Constants.pokemonCount) {
movesLearnt.files.set(i + formeOffset, moveset);
} else {
movesLearnt.files.set(i, moveset);
}
}
// Save
this.writeNARC(romEntry.getString("PokemonMovesets"), movesLearnt);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private static class ScriptEntry {
private int scriptFile;
private int scriptOffset;
public ScriptEntry(int scriptFile, int scriptOffset) {
this.scriptFile = scriptFile;
this.scriptOffset = scriptOffset;
}
}
private static class StaticPokemon {
private ScriptEntry[] speciesEntries;
private ScriptEntry[] formeEntries;
private ScriptEntry[] levelEntries;
public StaticPokemon() {
this.speciesEntries = new ScriptEntry[0];
this.formeEntries = new ScriptEntry[0];
this.levelEntries = new ScriptEntry[0];
}
public Pokemon getPokemon(Gen5RomHandler parent, NARCArchive scriptNARC) {
return parent.pokes[parent.readWord(scriptNARC.files.get(speciesEntries[0].scriptFile), speciesEntries[0].scriptOffset)];
}
public void setPokemon(Gen5RomHandler parent, NARCArchive scriptNARC, Pokemon pkmn) {
int value = pkmn.number;
for (int i = 0; i < speciesEntries.length; i++) {
byte[] file = scriptNARC.files.get(speciesEntries[i].scriptFile);
parent.writeWord(file, speciesEntries[i].scriptOffset, value);
}
}
public int getForme(NARCArchive scriptNARC) {
if (formeEntries.length == 0) {
return 0;
}
byte[] file = scriptNARC.files.get(formeEntries[0].scriptFile);
return file[formeEntries[0].scriptOffset];
}
public void setForme(NARCArchive scriptNARC, int forme) {
for (int i = 0; i < formeEntries.length; i++) {
byte[] file = scriptNARC.files.get(formeEntries[i].scriptFile);
file[formeEntries[i].scriptOffset] = (byte) forme;
}
}
public int getLevelCount() {
return levelEntries.length;
}
public int getLevel(NARCArchive scriptNARC, int i) {
if (levelEntries.length <= i) {
return 1;
}
byte[] file = scriptNARC.files.get(levelEntries[i].scriptFile);
return file[levelEntries[i].scriptOffset];
}
public void setLevel(NARCArchive scriptNARC, int level, int i) {
if (levelEntries.length > i) { // Might not have a level entry e.g., it's an egg
byte[] file = scriptNARC.files.get(levelEntries[i].scriptFile);
file[levelEntries[i].scriptOffset] = (byte) level;
}
}
}
private static class TradeScript {
private int fileNum;
private int[] requestedOffsets;
private int[] givenOffsets;
public void setPokemon(Gen5RomHandler parent, NARCArchive scriptNARC, Pokemon requested, Pokemon given) {
int req = requested.number;
int giv = given.number;
for (int i = 0; i < requestedOffsets.length; i++) {
byte[] file = scriptNARC.files.get(fileNum);
parent.writeWord(file, requestedOffsets[i], req);
parent.writeWord(file, givenOffsets[i], giv);
}
}
}
@Override
public boolean canChangeStaticPokemon() {
return romEntry.staticPokemonSupport;
}
@Override
public boolean hasStaticAltFormes() {
return false;
}
@Override
public boolean hasMainGameLegendaries() {
return true;
}
@Override
public List<Integer> getMainGameLegendaries() {
return Arrays.stream(romEntry.arrayEntries.get("MainGameLegendaries")).boxed().collect(Collectors.toList());
}
@Override
public List<Integer> getSpecialMusicStatics() {
return Arrays.stream(romEntry.arrayEntries.get("SpecialMusicStatics")).boxed().collect(Collectors.toList());
}
@Override
public void applyCorrectStaticMusic(Map<Integer, Integer> specialMusicStaticChanges) {
try {
byte[] fieldOverlay = readOverlay(romEntry.getInt("FieldOvlNumber"));
genericIPSPatch(fieldOverlay, "NewIndexToMusicOvlTweak");
writeOverlay(romEntry.getInt("FieldOvlNumber"), fieldOverlay);
} catch (IOException e) {
e.printStackTrace();
}
int extendBy = romEntry.getInt("NewIndexToMusicSize");
arm9 = extendARM9(arm9, extendBy, romEntry.getString("TCMCopyingPrefix"), Gen5Constants.arm9Offset);
genericIPSPatch(arm9, "NewIndexToMusicTweak");
String newIndexToMusicPrefix = romEntry.getString("NewIndexToMusicPrefix");
int newIndexToMusicPoolOffset = find(arm9, newIndexToMusicPrefix);
newIndexToMusicPoolOffset += newIndexToMusicPrefix.length() / 2;
List<Integer> replaced = new ArrayList<>();
switch(romEntry.romType) {
case Gen5Constants.Type_BW:
for (int oldStatic: specialMusicStaticChanges.keySet()) {
int i = newIndexToMusicPoolOffset;
int index = readWord(arm9, i);
while (index != oldStatic || replaced.contains(i)) {
i += 4;
index = readWord(arm9, i);
}
writeWord(arm9, i, specialMusicStaticChanges.get(oldStatic));
replaced.add(i);
}
break;
case Gen5Constants.Type_BW2:
for (int oldStatic: specialMusicStaticChanges.keySet()) {
int i = newIndexToMusicPoolOffset;
int index = readWord(arm9, i);
while (index != oldStatic || replaced.contains(i)) {
i += 4;
index = readWord(arm9, i);
}
// Special Kyurem-B/W handling
if (index > Gen5Constants.pokemonCount) {
writeWord(arm9, i - 0xFE, 0);
writeWord(arm9, i - 0xFC, 0);
writeWord(arm9, i - 0xFA, 0);
writeWord(arm9, i - 0xF8, 0x4290);
}
writeWord(arm9, i, specialMusicStaticChanges.get(oldStatic));
replaced.add(i);
}
break;
}
}
@Override
public List<TotemPokemon> getTotemPokemon() {
return new ArrayList<>();
}
@Override
public void setTotemPokemon(List<TotemPokemon> totemPokemon) {
}
@Override
public List<StaticEncounter> getStaticPokemon() {
List<StaticEncounter> sp = new ArrayList<>();
if (!romEntry.staticPokemonSupport) {
return sp;
}
int[] staticEggOffsets = new int[0];
if (romEntry.arrayEntries.containsKey("StaticEggPokemonOffsets")) {
staticEggOffsets = romEntry.arrayEntries.get("StaticEggPokemonOffsets");
}
NARCArchive scriptNARC = scriptNarc;
for (int i = 0; i < romEntry.staticPokemon.size(); i++) {
int currentOffset = i;
StaticPokemon statP = romEntry.staticPokemon.get(i);
StaticEncounter se = new StaticEncounter();
Pokemon newPK = statP.getPokemon(this, scriptNARC);
newPK = getAltFormeOfPokemon(newPK, statP.getForme(scriptNARC));
se.pkmn = newPK;
se.level = statP.getLevel(scriptNARC, 0);
se.isEgg = Arrays.stream(staticEggOffsets).anyMatch(x-> x == currentOffset);
for (int levelEntry = 1; levelEntry < statP.getLevelCount(); levelEntry++) {
StaticEncounter linkedStatic = new StaticEncounter();
linkedStatic.pkmn = newPK;
linkedStatic.level = statP.getLevel(scriptNARC, levelEntry);
se.linkedEncounters.add(linkedStatic);
}
sp.add(se);
}
if (romEntry.romType == Gen5Constants.Type_BW2) {
List<Pokemon> allowedHiddenHollowPokemon = new ArrayList<>();
allowedHiddenHollowPokemon.addAll(Arrays.asList(Arrays.copyOfRange(pokes,1,494)));
allowedHiddenHollowPokemon.addAll(
Gen5Constants.bw2HiddenHollowUnovaPokemon.stream().map(i -> pokes[i]).collect(Collectors.toList()));
try {
NARCArchive hhNARC = this.readNARC(romEntry.getString("HiddenHollows"));
for (byte[] hhEntry : hhNARC.files) {
for (int version = 0; version < 2; version++) {
if (version != romEntry.getInt("HiddenHollowIndex")) continue;
for (int raritySlot = 0; raritySlot < 3; raritySlot++) {
List<StaticEncounter> encountersInGroup = new ArrayList<>();
for (int group = 0; group < 4; group++) {
StaticEncounter se = new StaticEncounter();
Pokemon newPK = pokes[readWord(hhEntry, version * 78 + raritySlot * 26 + group * 2)];
newPK = getAltFormeOfPokemon(newPK, hhEntry[version * 78 + raritySlot * 26 + 20 + group]);
se.pkmn = newPK;
se.level = hhEntry[version * 78 + raritySlot * 26 + 12 + group];
se.maxLevel = hhEntry[version * 78 + raritySlot * 26 + 8 + group];
se.isEgg = false;
se.restrictedPool = true;
se.restrictedList = allowedHiddenHollowPokemon;
boolean originalEncounter = true;
for (StaticEncounter encounterInGroup: encountersInGroup) {
if (encounterInGroup.pkmn.equals(se.pkmn)) {
encounterInGroup.linkedEncounters.add(se);
originalEncounter = false;
break;
}
}
if (originalEncounter) {
encountersInGroup.add(se);
sp.add(se);
if (!hiddenHollowCounted) {
hiddenHollowCount++;
}
}
}
}
}
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
hiddenHollowCounted = true;
return sp;
}
@Override
public boolean setStaticPokemon(List<StaticEncounter> staticPokemon) {
if (!romEntry.staticPokemonSupport) {
return false;
}
if (staticPokemon.size() != (romEntry.staticPokemon.size() + hiddenHollowCount)) {
return false;
}
Iterator<StaticEncounter> statics = staticPokemon.iterator();
NARCArchive scriptNARC = scriptNarc;
for (StaticPokemon statP : romEntry.staticPokemon) {
StaticEncounter se = statics.next();
statP.setPokemon(this, scriptNARC, se.pkmn);
statP.setForme(scriptNARC, se.pkmn.formeNumber);
statP.setLevel(scriptNARC, se.level, 0);
for (int i = 0; i < se.linkedEncounters.size(); i++) {
StaticEncounter linkedStatic = se.linkedEncounters.get(i);
statP.setLevel(scriptNARC, linkedStatic.level, i + 1);
}
}
if (romEntry.romType == Gen5Constants.Type_BW2) {
try {
NARCArchive hhNARC = this.readNARC(romEntry.getString("HiddenHollows"));
for (byte[] hhEntry : hhNARC.files) {
for (int version = 0; version < 2; version++) {
if (version != romEntry.getInt("HiddenHollowIndex")) continue;
for (int raritySlot = 0; raritySlot < 3; raritySlot++) {
for (int group = 0; group < 4; group++) {
StaticEncounter se = statics.next();
writeWord(hhEntry, version * 78 + raritySlot * 26 + group * 2, se.pkmn.number);
int genderRatio = this.random.nextInt(101);
hhEntry[version * 78 + raritySlot * 26 + 16 + group] = (byte) genderRatio;
hhEntry[version * 78 + raritySlot * 26 + 20 + group] = (byte) se.forme; // forme
hhEntry[version * 78 + raritySlot * 26 + 12 + group] = (byte) se.level;
hhEntry[version * 78 + raritySlot * 26 + 8 + group] = (byte) se.maxLevel;
for (int i = 0; i < se.linkedEncounters.size(); i++) {
StaticEncounter linkedStatic = se.linkedEncounters.get(i);
group++;
writeWord(hhEntry, version * 78 + raritySlot * 26 + group * 2, linkedStatic.pkmn.number);
hhEntry[version * 78 + raritySlot * 26 + 16 + group] = (byte) genderRatio;
hhEntry[version * 78 + raritySlot * 26 + 20 + group] = (byte) linkedStatic.forme; // forme
hhEntry[version * 78 + raritySlot * 26 + 12 + group] = (byte) linkedStatic.level;
hhEntry[version * 78 + raritySlot * 26 + 8 + group] = (byte) linkedStatic.maxLevel;
}
}
}
}
}
this.writeNARC(romEntry.getString("HiddenHollows"), hhNARC);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
// In Black/White, the game has multiple hardcoded checks for Reshiram/Zekrom's species
// ID in order to properly move it out of a box and into the first slot of the player's
// party. We need to replace these checks with the species ID of whatever occupies
// Reshiram/Zekrom's static encounter for the game to still function properly.
if (romEntry.romType == Gen5Constants.Type_BW) {
int boxLegendaryIndex = romEntry.getInt("BoxLegendaryOffset");
try {
int boxLegendarySpecies = staticPokemon.get(boxLegendaryIndex).pkmn.number;
fixBoxLegendaryBW1(boxLegendarySpecies);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
return true;
}
private void fixBoxLegendaryBW1(int boxLegendarySpecies) throws IOException {
byte[] boxLegendaryOverlay = readOverlay(romEntry.getInt("FieldOvlNumber"));
if (romEntry.isBlack) {
// In Black, Reshiram's species ID is always retrieved via a pc-relative
// load to some constant. All we need to is replace these constants with
// the new species ID.
int firstConstantOffset = find(boxLegendaryOverlay, Gen5Constants.blackBoxLegendaryCheckPrefix1);
if (firstConstantOffset > 0) {
firstConstantOffset += Gen5Constants.blackBoxLegendaryCheckPrefix1.length() / 2; // because it was a prefix
FileFunctions.writeFullIntLittleEndian(boxLegendaryOverlay, firstConstantOffset, boxLegendarySpecies);
}
int secondConstantOffset = find(boxLegendaryOverlay, Gen5Constants.blackBoxLegendaryCheckPrefix2);
if (secondConstantOffset > 0) {
secondConstantOffset += Gen5Constants.blackBoxLegendaryCheckPrefix2.length() / 2; // because it was a prefix
FileFunctions.writeFullIntLittleEndian(boxLegendaryOverlay, secondConstantOffset, boxLegendarySpecies);
}
} else {
// In White, Zekrom's species ID is always loaded by loading 161 into a register
// and then shifting left by 2. Thus, we need to be more clever with how we
// modify code in order to set up some pc-relative loads.
int firstFunctionOffset = find(boxLegendaryOverlay, Gen5Constants.whiteBoxLegendaryCheckPrefix1);
if (firstFunctionOffset > 0) {
firstFunctionOffset += Gen5Constants.whiteBoxLegendaryCheckPrefix1.length() / 2; // because it was a prefix
// First, nop the instruction that loads a pointer to the string
// "scrcmd_pokemon_fld.c" into a register; this has seemingly no
// effect on the game and was probably used strictly for debugging.
boxLegendaryOverlay[firstFunctionOffset + 66] = 0x00;
boxLegendaryOverlay[firstFunctionOffset + 67] = 0x00;
// In the space that used to hold the address of the "scrcmd_pokemon_fld.c"
// string, we're going to instead store the species ID of the box legendary
// so that we can do a pc-relative load to it.
FileFunctions.writeFullIntLittleEndian(boxLegendaryOverlay, firstFunctionOffset + 320, boxLegendarySpecies);
// Zekrom's species ID is originally loaded by doing a mov into r1 and then a shift
// on that same register four instructions later. This nops out the first instruction
// and replaces the left shift with a pc-relative load to the constant we stored above.
boxLegendaryOverlay[firstFunctionOffset + 18] = 0x00;
boxLegendaryOverlay[firstFunctionOffset + 19] = 0x00;
boxLegendaryOverlay[firstFunctionOffset + 26] = 0x49;
boxLegendaryOverlay[firstFunctionOffset + 27] = 0x49;
}
int secondFunctionOffset = find(boxLegendaryOverlay, Gen5Constants.whiteBoxLegendaryCheckPrefix2);
if (secondFunctionOffset > 0) {
secondFunctionOffset += Gen5Constants.whiteBoxLegendaryCheckPrefix2.length() / 2; // because it was a prefix
// A completely unrelated function below this one decides to pc-relative load 0x00000000 into r4
// instead of just doing a mov. We can replace it with a simple "mov r4, #0x0", but we have to be
// careful about where we put it. The original code calls a function, performs an "add r6, r0, #0x0",
// then does the load into r4. This means that whether or not the Z bit is set depends on the result
// of the function call. If we naively replace the load with our mov, we'll be forcibly setting the Z
// bit to 1, which will cause the subsequent beq to potentially take us to the wrong place. To get
// around this, we reorder the code so the "mov r4, #0x0" occurs *before* the "add r6, r0, #0x0".
boxLegendaryOverlay[secondFunctionOffset + 502] = 0x00;
boxLegendaryOverlay[secondFunctionOffset + 503] = 0x24;
boxLegendaryOverlay[secondFunctionOffset + 504] = 0x06;
boxLegendaryOverlay[secondFunctionOffset + 505] = 0x1C;
// Now replace the 0x00000000 constant with the species ID
FileFunctions.writeFullIntLittleEndian(boxLegendaryOverlay, secondFunctionOffset + 556, boxLegendarySpecies);
// Lastly, replace the mov and lsl that originally puts Zekrom's species ID into r1
// with a pc-relative of the above constant and a nop.
boxLegendaryOverlay[secondFunctionOffset + 78] = 0x77;
boxLegendaryOverlay[secondFunctionOffset + 79] = 0x49;
boxLegendaryOverlay[secondFunctionOffset + 80] = 0x00;
boxLegendaryOverlay[secondFunctionOffset + 81] = 0x00;
}
}
writeOverlay(romEntry.getInt("FieldOvlNumber"), boxLegendaryOverlay);
}
@Override
public int miscTweaksAvailable() {
int available = 0;
if (romEntry.tweakFiles.get("FastestTextTweak") != null) {
available |= MiscTweak.FASTEST_TEXT.getValue();
}
available |= MiscTweak.BAN_LUCKY_EGG.getValue();
available |= MiscTweak.NO_FREE_LUCKY_EGG.getValue();
available |= MiscTweak.BAN_BIG_MANIAC_ITEMS.getValue();
if (romEntry.romType == Gen5Constants.Type_BW) {
available |= MiscTweak.BALANCE_STATIC_LEVELS.getValue();
}
if (romEntry.tweakFiles.get("NationalDexAtStartTweak") != null) {
available |= MiscTweak.NATIONAL_DEX_AT_START.getValue();
}
available |= MiscTweak.RUN_WITHOUT_RUNNING_SHOES.getValue();
return available;
}
@Override
public void applyMiscTweak(MiscTweak tweak) {
if (tweak == MiscTweak.FASTEST_TEXT) {
applyFastestText();
} else if (tweak == MiscTweak.BAN_LUCKY_EGG) {
allowedItems.banSingles(Gen5Constants.luckyEggIndex);
nonBadItems.banSingles(Gen5Constants.luckyEggIndex);
} else if (tweak == MiscTweak.NO_FREE_LUCKY_EGG) {
removeFreeLuckyEgg();
} else if (tweak == MiscTweak.BAN_BIG_MANIAC_ITEMS) {
// BalmMushroom, Big Nugget, Pearl String, Comet Shard
allowedItems.banRange(0x244, 4);
nonBadItems.banRange(0x244, 4);
// Relics
allowedItems.banRange(0x24B, 4);
nonBadItems.banRange(0x24B, 4);
// Rare berries
allowedItems.banRange(0xCE, 7);
nonBadItems.banRange(0xCE, 7);
} else if (tweak == MiscTweak.BALANCE_STATIC_LEVELS) {
byte[] fossilFile = scriptNarc.files.get(Gen5Constants.fossilPokemonFile);
writeWord(fossilFile,Gen5Constants.fossilPokemonLevelOffset,20);
} else if (tweak == MiscTweak.NATIONAL_DEX_AT_START) {
patchForNationalDex();
} else if (tweak == MiscTweak.RUN_WITHOUT_RUNNING_SHOES) {
applyRunWithoutRunningShoesPatch();
}
}
// Removes the free lucky egg you receive from Professor Juniper and replaces it with a gooey mulch.
private void removeFreeLuckyEgg() {
int scriptFileGifts = romEntry.getInt("LuckyEggScriptOffset");
int setVarGift = Gen5Constants.hiddenItemSetVarCommand;
int mulchIndex = this.random.nextInt(4);
byte[] itemScripts = scriptNarc.files.get(scriptFileGifts);
int offset = 0;
int lookingForEggs = romEntry.romType == Gen5Constants.Type_BW ? 1 : 2;
while (lookingForEggs > 0) {
int part1 = readWord(itemScripts, offset);
if (part1 == Gen5Constants.scriptListTerminator) {
// done
break;
}
int offsetInFile = readRelativePointer(itemScripts, offset);
offset += 4;
if (offsetInFile > itemScripts.length) {
break;
}
while (true) {
offsetInFile++;
// Gift items are not necessarily word aligned, so need to read one byte at a time
int b = readByte(itemScripts, offsetInFile);
if (b == setVarGift) {
int command = readWord(itemScripts, offsetInFile);
int variable = readWord(itemScripts,offsetInFile + 2);
int item = readWord(itemScripts, offsetInFile + 4);
if (command == setVarGift && variable == Gen5Constants.hiddenItemVarSet && item == Gen5Constants.luckyEggIndex) {
writeWord(itemScripts, offsetInFile + 4, Gen5Constants.mulchIndices[mulchIndex]);
lookingForEggs--;
}
}
if (b == 0x2E) { // Beginning of a new block in the file
break;
}
}
}
}
private void applyFastestText() {
genericIPSPatch(arm9, "FastestTextTweak");
}
private void patchForNationalDex() {
byte[] pokedexScript = scriptNarc.files.get(romEntry.getInt("NationalDexScriptOffset"));
// Our patcher breaks if the output file is larger than the input file. In our case, we want
// to expand the script by four bytes to add an instruction to enable the national dex. Thus,
// the IPS patch was created with us adding four 0x00 bytes to the end of the script in mind.
byte[] expandedPokedexScript = new byte[pokedexScript.length + 4];
System.arraycopy(pokedexScript, 0, expandedPokedexScript, 0, pokedexScript.length);
genericIPSPatch(expandedPokedexScript, "NationalDexAtStartTweak");
scriptNarc.files.set(romEntry.getInt("NationalDexScriptOffset"), expandedPokedexScript);
}
private void applyRunWithoutRunningShoesPatch() {
try {
// In the overlay that handles field movement, there's a very simple function
// that checks if the player has the Running Shoes by checking if flag 2403 is
// set on the save file. If it isn't, the code branches to a separate code path
// where the function returns 0. The below code simply nops this branch so that
// this function always returns 1, regardless of the status of flag 2403.
int fieldOverlayNumber = Gen5Constants.getFieldOverlayNumber(romEntry.romType);
byte[] fieldOverlay = readOverlay(fieldOverlayNumber);
String prefix = Gen5Constants.runningShoesPrefix;
int offset = find(fieldOverlay, prefix);
if (offset != 0) {
writeWord(fieldOverlay, offset, 0);
writeOverlay(fieldOverlayNumber, fieldOverlay);
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private boolean genericIPSPatch(byte[] data, String ctName) {
String patchName = romEntry.tweakFiles.get(ctName);
if (patchName == null) {
return false;
}
try {
FileFunctions.applyPatch(data, patchName);
return true;
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public List<Integer> getTMMoves() {
String tmDataPrefix = Gen5Constants.tmDataPrefix;
int offset = find(arm9, tmDataPrefix);
if (offset > 0) {
offset += Gen5Constants.tmDataPrefix.length() / 2; // because it was
// a prefix
List<Integer> tms = new ArrayList<>();
for (int i = 0; i < Gen5Constants.tmBlockOneCount; i++) {
tms.add(readWord(arm9, offset + i * 2));
}
// Skip past first 92 TMs and 6 HMs
offset += (Gen5Constants.tmBlockOneCount + Gen5Constants.hmCount) * 2;
for (int i = 0; i < (Gen5Constants.tmCount - Gen5Constants.tmBlockOneCount); i++) {
tms.add(readWord(arm9, offset + i * 2));
}
return tms;
} else {
return null;
}
}
@Override
public List<Integer> getHMMoves() {
String tmDataPrefix = Gen5Constants.tmDataPrefix;
int offset = find(arm9, tmDataPrefix);
if (offset > 0) {
offset += Gen5Constants.tmDataPrefix.length() / 2; // because it was
// a prefix
offset += Gen5Constants.tmBlockOneCount * 2; // TM data
List<Integer> hms = new ArrayList<>();
for (int i = 0; i < Gen5Constants.hmCount; i++) {
hms.add(readWord(arm9, offset + i * 2));
}
return hms;
} else {
return null;
}
}
@Override
public void setTMMoves(List<Integer> moveIndexes) {
String tmDataPrefix = Gen5Constants.tmDataPrefix;
int offset = find(arm9, tmDataPrefix);
if (offset > 0) {
offset += Gen5Constants.tmDataPrefix.length() / 2; // because it was
// a prefix
for (int i = 0; i < Gen5Constants.tmBlockOneCount; i++) {
writeWord(arm9, offset + i * 2, moveIndexes.get(i));
}
// Skip past those 92 TMs and 6 HMs
offset += (Gen5Constants.tmBlockOneCount + Gen5Constants.hmCount) * 2;
for (int i = 0; i < (Gen5Constants.tmCount - Gen5Constants.tmBlockOneCount); i++) {
writeWord(arm9, offset + i * 2, moveIndexes.get(i + Gen5Constants.tmBlockOneCount));
}
// Update TM item descriptions
List<String> itemDescriptions = getStrings(false, romEntry.getInt("ItemDescriptionsTextOffset"));
List<String> moveDescriptions = getStrings(false, romEntry.getInt("MoveDescriptionsTextOffset"));
// TM01 is item 328 and so on
for (int i = 0; i < Gen5Constants.tmBlockOneCount; i++) {
itemDescriptions.set(i + Gen5Constants.tmBlockOneOffset, moveDescriptions.get(moveIndexes.get(i)));
}
// TM93-95 are 618-620
for (int i = 0; i < (Gen5Constants.tmCount - Gen5Constants.tmBlockOneCount); i++) {
itemDescriptions.set(i + Gen5Constants.tmBlockTwoOffset,
moveDescriptions.get(moveIndexes.get(i + Gen5Constants.tmBlockOneCount)));
}
// Save the new item descriptions
setStrings(false, romEntry.getInt("ItemDescriptionsTextOffset"), itemDescriptions);
// Palettes
String baseOfPalettes;
if (romEntry.romType == Gen5Constants.Type_BW) {
baseOfPalettes = Gen5Constants.bw1ItemPalettesPrefix;
} else {
baseOfPalettes = Gen5Constants.bw2ItemPalettesPrefix;
}
int offsPals = find(arm9, baseOfPalettes);
if (offsPals > 0) {
// Write pals
for (int i = 0; i < Gen5Constants.tmBlockOneCount; i++) {
int itmNum = Gen5Constants.tmBlockOneOffset + i;
Move m = this.moves[moveIndexes.get(i)];
int pal = this.typeTMPaletteNumber(m.type);
writeWord(arm9, offsPals + itmNum * 4 + 2, pal);
}
for (int i = 0; i < (Gen5Constants.tmCount - Gen5Constants.tmBlockOneCount); i++) {
int itmNum = Gen5Constants.tmBlockTwoOffset + i;
Move m = this.moves[moveIndexes.get(i + Gen5Constants.tmBlockOneCount)];
int pal = this.typeTMPaletteNumber(m.type);
writeWord(arm9, offsPals + itmNum * 4 + 2, pal);
}
}
}
}
private static RomFunctions.StringSizeDeterminer ssd = encodedText -> {
int offs = 0;
int len = encodedText.length();
while (encodedText.indexOf("\\x", offs) != -1) {
len -= 5;
offs = encodedText.indexOf("\\x", offs) + 1;
}
return len;
};
@Override
public int getTMCount() {
return Gen5Constants.tmCount;
}
@Override
public int getHMCount() {
return Gen5Constants.hmCount;
}
@Override
public Map<Pokemon, boolean[]> getTMHMCompatibility() {
Map<Pokemon, boolean[]> compat = new TreeMap<>();
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (int i = 1; i <= Gen5Constants.pokemonCount + formeCount; i++) {
byte[] data;
if (i > Gen5Constants.pokemonCount) {
data = pokeNarc.files.get(i + formeOffset);
} else {
data = pokeNarc.files.get(i);
}
Pokemon pkmn = pokes[i];
boolean[] flags = new boolean[Gen5Constants.tmCount + Gen5Constants.hmCount + 1];
for (int j = 0; j < 13; j++) {
readByteIntoFlags(data, flags, j * 8 + 1, Gen5Constants.bsTMHMCompatOffset + j);
}
compat.put(pkmn, flags);
}
return compat;
}
@Override
public void setTMHMCompatibility(Map<Pokemon, boolean[]> compatData) {
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (Map.Entry<Pokemon, boolean[]> compatEntry : compatData.entrySet()) {
Pokemon pkmn = compatEntry.getKey();
boolean[] flags = compatEntry.getValue();
int number = pkmn.number;
if (number > Gen5Constants.pokemonCount) {
number += formeOffset;
}
byte[] data = pokeNarc.files.get(number);
for (int j = 0; j < 13; j++) {
data[Gen5Constants.bsTMHMCompatOffset + j] = getByteFromFlags(flags, j * 8 + 1);
}
}
}
@Override
public boolean hasMoveTutors() {
return romEntry.romType == Gen5Constants.Type_BW2;
}
@Override
public List<Integer> getMoveTutorMoves() {
if (!hasMoveTutors()) {
return new ArrayList<>();
}
int baseOffset = romEntry.getInt("MoveTutorDataOffset");
int amount = Gen5Constants.bw2MoveTutorCount;
int bytesPer = Gen5Constants.bw2MoveTutorBytesPerEntry;
List<Integer> mtMoves = new ArrayList<>();
try {
byte[] mtFile = readOverlay(romEntry.getInt("MoveTutorOvlNumber"));
for (int i = 0; i < amount; i++) {
mtMoves.add(readWord(mtFile, baseOffset + i * bytesPer));
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
return mtMoves;
}
@Override
public void setMoveTutorMoves(List<Integer> moves) {
if (!hasMoveTutors()) {
return;
}
int baseOffset = romEntry.getInt("MoveTutorDataOffset");
int amount = Gen5Constants.bw2MoveTutorCount;
int bytesPer = Gen5Constants.bw2MoveTutorBytesPerEntry;
if (moves.size() != amount) {
return;
}
try {
byte[] mtFile = readOverlay(romEntry.getInt("MoveTutorOvlNumber"));
for (int i = 0; i < amount; i++) {
writeWord(mtFile, baseOffset + i * bytesPer, moves.get(i));
}
writeOverlay(romEntry.getInt("MoveTutorOvlNumber"), mtFile);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public Map<Pokemon, boolean[]> getMoveTutorCompatibility() {
if (!hasMoveTutors()) {
return new TreeMap<>();
}
Map<Pokemon, boolean[]> compat = new TreeMap<>();
int[] countsPersonalOrder = new int[] { 15, 17, 13, 15 };
int[] countsMoveOrder = new int[] { 13, 15, 15, 17 };
int[] personalToMoveOrder = new int[] { 1, 3, 0, 2 };
int formeCount = Gen5Constants.getFormeCount(romEntry.romType);
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
for (int i = 1; i <= Gen5Constants.pokemonCount + formeCount; i++) {
byte[] data;
if (i > Gen5Constants.pokemonCount) {
data = pokeNarc.files.get(i + formeOffset);
} else {
data = pokeNarc.files.get(i);
}
Pokemon pkmn = pokes[i];
boolean[] flags = new boolean[Gen5Constants.bw2MoveTutorCount + 1];
for (int mt = 0; mt < 4; mt++) {
boolean[] mtflags = new boolean[countsPersonalOrder[mt] + 1];
for (int j = 0; j < 4; j++) {
readByteIntoFlags(data, mtflags, j * 8 + 1, Gen5Constants.bsMTCompatOffset + mt * 4 + j);
}
int offsetOfThisData = 0;
for (int cmoIndex = 0; cmoIndex < personalToMoveOrder[mt]; cmoIndex++) {
offsetOfThisData += countsMoveOrder[cmoIndex];
}
System.arraycopy(mtflags, 1, flags, offsetOfThisData + 1, countsPersonalOrder[mt]);
}
compat.put(pkmn, flags);
}
return compat;
}
@Override
public void setMoveTutorCompatibility(Map<Pokemon, boolean[]> compatData) {
if (!hasMoveTutors()) {
return;
}
int formeOffset = Gen5Constants.getFormeOffset(romEntry.romType);
// BW2 move tutor flags aren't using the same order as the move tutor
// move data.
// We unscramble them from move data order to personal.narc flag order.
int[] countsPersonalOrder = new int[] { 15, 17, 13, 15 };
int[] countsMoveOrder = new int[] { 13, 15, 15, 17 };
int[] personalToMoveOrder = new int[] { 1, 3, 0, 2 };
for (Map.Entry<Pokemon, boolean[]> compatEntry : compatData.entrySet()) {
Pokemon pkmn = compatEntry.getKey();
boolean[] flags = compatEntry.getValue();
int number = pkmn.number;
if (number > Gen5Constants.pokemonCount) {
number += formeOffset;
}
byte[] data = pokeNarc.files.get(number);
for (int mt = 0; mt < 4; mt++) {
int offsetOfThisData = 0;
for (int cmoIndex = 0; cmoIndex < personalToMoveOrder[mt]; cmoIndex++) {
offsetOfThisData += countsMoveOrder[cmoIndex];
}
boolean[] mtflags = new boolean[countsPersonalOrder[mt] + 1];
System.arraycopy(flags, offsetOfThisData + 1, mtflags, 1, countsPersonalOrder[mt]);
for (int j = 0; j < 4; j++) {
data[Gen5Constants.bsMTCompatOffset + mt * 4 + j] = getByteFromFlags(mtflags, j * 8 + 1);
}
}
}
}
private int find(byte[] data, String hexString) {
if (hexString.length() % 2 != 0) {
return -3; // error
}
byte[] searchFor = new byte[hexString.length() / 2];
for (int i = 0; i < searchFor.length; i++) {
searchFor[i] = (byte) Integer.parseInt(hexString.substring(i * 2, i * 2 + 2), 16);
}
List<Integer> found = RomFunctions.search(data, searchFor);
if (found.size() == 0) {
return -1; // not found
} else if (found.size() > 1) {
return -2; // not unique
} else {
return found.get(0);
}
}
private List<String> getStrings(boolean isStoryText, int index) {
NARCArchive baseNARC = isStoryText ? storyTextNarc : stringsNarc;
byte[] rawFile = baseNARC.files.get(index);
return new ArrayList<>(PPTxtHandler.readTexts(rawFile));
}
private void setStrings(boolean isStoryText, int index, List<String> strings) {
NARCArchive baseNARC = isStoryText ? storyTextNarc : stringsNarc;
byte[] oldRawFile = baseNARC.files.get(index);
byte[] newRawFile = PPTxtHandler.saveEntry(oldRawFile, strings);
baseNARC.files.set(index, newRawFile);
}
@Override
public String getROMName() {
return "Pokemon " + romEntry.name;
}
@Override
public String getROMCode() {
return romEntry.romCode;
}
@Override
public String getSupportLevel() {
return romEntry.staticPokemonSupport ? "Complete" : "No Static Pokemon";
}
@Override
public boolean hasTimeBasedEncounters() {
return true; // All BW/BW2 do [seasons]
}
@Override
public boolean hasWildAltFormes() {
return true;
}
private void populateEvolutions() {
for (Pokemon pkmn : pokes) {
if (pkmn != null) {
pkmn.evolutionsFrom.clear();
pkmn.evolutionsTo.clear();
}
}
// Read NARC
try {
NARCArchive evoNARC = readNARC(romEntry.getString("PokemonEvolutions"));
for (int i = 1; i <= Gen5Constants.pokemonCount; i++) {
Pokemon pk = pokes[i];
byte[] evoEntry = evoNARC.files.get(i);
for (int evo = 0; evo < 7; evo++) {
int method = readWord(evoEntry, evo * 6);
int species = readWord(evoEntry, evo * 6 + 4);
if (method >= 1 && method <= Gen5Constants.evolutionMethodCount && species >= 1) {
EvolutionType et = EvolutionType.fromIndex(5, method);
if (et.equals(EvolutionType.LEVEL_HIGH_BEAUTY)) continue; // Remove Feebas "split" evolution
int extraInfo = readWord(evoEntry, evo * 6 + 2);
Evolution evol = new Evolution(pk, pokes[species], true, et, extraInfo);
if (!pk.evolutionsFrom.contains(evol)) {
pk.evolutionsFrom.add(evol);
pokes[species].evolutionsTo.add(evol);
}
}
}
// Split evos shouldn't carry stats unless the evo is Nincada's
// In that case, we should have Ninjask carry stats
if (pk.evolutionsFrom.size() > 1) {
for (Evolution e : pk.evolutionsFrom) {
if (e.type != EvolutionType.LEVEL_CREATE_EXTRA) {
e.carryStats = false;
}
}
}
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void writeEvolutions() {
try {
NARCArchive evoNARC = readNARC(romEntry.getString("PokemonEvolutions"));
for (int i = 1; i <= Gen5Constants.pokemonCount; i++) {
byte[] evoEntry = evoNARC.files.get(i);
Pokemon pk = pokes[i];
if (pk.number == Species.nincada) {
writeShedinjaEvolution();
}
int evosWritten = 0;
for (Evolution evo : pk.evolutionsFrom) {
writeWord(evoEntry, evosWritten * 6, evo.type.toIndex(5));
writeWord(evoEntry, evosWritten * 6 + 2, evo.extraInfo);
writeWord(evoEntry, evosWritten * 6 + 4, evo.to.number);
evosWritten++;
if (evosWritten == 7) {
break;
}
}
while (evosWritten < 7) {
writeWord(evoEntry, evosWritten * 6, 0);
writeWord(evoEntry, evosWritten * 6 + 2, 0);
writeWord(evoEntry, evosWritten * 6 + 4, 0);
evosWritten++;
}
}
writeNARC(romEntry.getString("PokemonEvolutions"), evoNARC);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
private void writeShedinjaEvolution() throws IOException {
Pokemon nincada = pokes[Species.nincada];
// When the "Limit Pokemon" setting is enabled, we clear out the evolutions of
// everything *not* in the pool, which could include Nincada. In that case,
// there's no point in even worrying about Shedinja, so just return.
if (nincada.evolutionsFrom.size() == 0) {
return;
}
Pokemon extraEvolution = nincada.evolutionsFrom.get(1).to;
// In all the Gen 5 games, the evolution overlay is hardcoded to generate
// a Shedinja by loading its species ID using the following instructions:
// mov r1, #0x49
// lsl r1, r1, #2
// Since Gen 5 has more than 510 species, we cannot use 8-bit addition to
// load any Pokemon; instead, we nop out a useless load of a string, then
// use the space that used to store the address of that string to instead
// store Nincada's new extra evolution's species ID.
byte[] evolutionOverlay = readOverlay(romEntry.getInt("EvolutionOvlNumber"));
int functionOffset = find(evolutionOverlay, Gen5Constants.shedinjaFunctionLocator);
if (functionOffset > 0) {
int[] patchOffsets = romEntry.arrayEntries.get("ShedinjaCodePatchOffsets");
// First, nop the instruction that loads a pointer to the string
// "shinka_demo.c" into a register; this has seemingly no effect on
// the game and was probably used strictly for debugging.
evolutionOverlay[functionOffset + patchOffsets[0]] = 0x00;
evolutionOverlay[functionOffset + patchOffsets[0] + 1] = 0x00;
// In the space that used to hold the address of the "shinka_demo.c" string,
// we're going to instead store a species ID. We need to write a pc-relative
// load to that space. However, the original Shedinja instructions are
// misaligned to do a load; there's an "add r0, r4, #0x0" between the move
// and the shift that is correctly-aligned. So we first move this add up one
// instruction, then we write out the load ("ldr r1, [pc #pcRelativeOffset]")
// in the correctly-aligned space, then we nop out the shift.
int pcRelativeOffset = patchOffsets[2] - patchOffsets[1] - 6;
evolutionOverlay[functionOffset + patchOffsets[1]] = 0x20;
evolutionOverlay[functionOffset + patchOffsets[1] + 1] = 0x1c;
evolutionOverlay[functionOffset + patchOffsets[1] + 2] = (byte) (pcRelativeOffset / 4);
evolutionOverlay[functionOffset + patchOffsets[1] + 3] = 0x49;
evolutionOverlay[functionOffset + patchOffsets[1] + 4] = 0x00;
evolutionOverlay[functionOffset + patchOffsets[1] + 5] = 0x00;
// Finally, we replace what used to store the address of "shinka_demo.c"
// with the species ID of Nincada's new extra evolution.
int newSpeciesIDOffset = functionOffset + patchOffsets[2];
FileFunctions.writeFullIntLittleEndian(evolutionOverlay, newSpeciesIDOffset, extraEvolution.number);
writeOverlay(romEntry.getInt("EvolutionOvlNumber"), evolutionOverlay);
}
}
@Override
public void removeImpossibleEvolutions(Settings settings) {
boolean changeMoveEvos = !(settings.getMovesetsMod() == Settings.MovesetsMod.UNCHANGED);
Map<Integer, List<MoveLearnt>> movesets = this.getMovesLearnt();
Set<Evolution> extraEvolutions = new HashSet<>();
for (Pokemon pkmn : pokes) {
if (pkmn != null) {
extraEvolutions.clear();
for (Evolution evo : pkmn.evolutionsFrom) {
if (changeMoveEvos && evo.type == EvolutionType.LEVEL_WITH_MOVE) {
// read move
int move = evo.extraInfo;
int levelLearntAt = 1;
for (MoveLearnt ml : movesets.get(evo.from.number)) {
if (ml.move == move) {
levelLearntAt = ml.level;
break;
}
}
if (levelLearntAt == 1) {
// override for piloswine
levelLearntAt = 45;
}
// change to pure level evo
evo.type = EvolutionType.LEVEL;
evo.extraInfo = levelLearntAt;
addEvoUpdateLevel(impossibleEvolutionUpdates, evo);
}
// Pure Trade
if (evo.type == EvolutionType.TRADE) {
// Replace w/ level 37
evo.type = EvolutionType.LEVEL;
evo.extraInfo = 37;
addEvoUpdateLevel(impossibleEvolutionUpdates, evo);
}
// Trade w/ Item
if (evo.type == EvolutionType.TRADE_ITEM) {
// Get the current item & evolution
int item = evo.extraInfo;
if (evo.from.number == Species.slowpoke) {
// Slowpoke is awkward - he already has a level evo
// So we can't do Level up w/ Held Item for him
// Put Water Stone instead
evo.type = EvolutionType.STONE;
evo.extraInfo = Gen5Constants.waterStoneIndex; // water
// stone
addEvoUpdateStone(impossibleEvolutionUpdates, evo, itemNames.get(evo.extraInfo));
} else {
addEvoUpdateHeldItem(impossibleEvolutionUpdates, evo, itemNames.get(item));
// Replace, for this entry, w/
// Level up w/ Held Item at Day
evo.type = EvolutionType.LEVEL_ITEM_DAY;
// now add an extra evo for
// Level up w/ Held Item at Night
Evolution extraEntry = new Evolution(evo.from, evo.to, true,
EvolutionType.LEVEL_ITEM_NIGHT, item);
extraEvolutions.add(extraEntry);
}
}
if (evo.type == EvolutionType.TRADE_SPECIAL) {
// This is the karrablast <-> shelmet trade
// Replace it with Level up w/ Other Species in Party
// (22)
// Based on what species we're currently dealing with
evo.type = EvolutionType.LEVEL_WITH_OTHER;
evo.extraInfo = (evo.from.number == Species.karrablast ? Species.shelmet : Species.karrablast);
addEvoUpdateParty(impossibleEvolutionUpdates, evo, pokes[evo.extraInfo].fullName());
}
}
pkmn.evolutionsFrom.addAll(extraEvolutions);
for (Evolution ev : extraEvolutions) {
ev.to.evolutionsTo.add(ev);
}
}
}
}
@Override
public void makeEvolutionsEasier(Settings settings) {
boolean wildsRandomized = !settings.getWildPokemonMod().equals(Settings.WildPokemonMod.UNCHANGED);
if (wildsRandomized) {
for (Pokemon pkmn : pokes) {
if (pkmn != null) {
for (Evolution evo : pkmn.evolutionsFrom) {
if (evo.type == EvolutionType.LEVEL_WITH_OTHER) {
// Replace w/ level 35
evo.type = EvolutionType.LEVEL;
evo.extraInfo = 35;
addEvoUpdateCondensed(easierEvolutionUpdates, evo, false);
}
}
}
}
}
}
@Override
public void removeTimeBasedEvolutions() {
Set<Evolution> extraEvolutions = new HashSet<>();
for (Pokemon pkmn : pokes) {
if (pkmn != null) {
extraEvolutions.clear();
for (Evolution evo : pkmn.evolutionsFrom) {
if (evo.type == EvolutionType.HAPPINESS_DAY) {
if (evo.from.number == Species.eevee) {
// We can't set Eevee to evolve into Espeon with happiness at night because that's how
// Umbreon works in the original game. Instead, make Eevee: == sun stone => Espeon
evo.type = EvolutionType.STONE;
evo.extraInfo = Gen5Constants.sunStoneIndex;
addEvoUpdateStone(timeBasedEvolutionUpdates, evo, itemNames.get(evo.extraInfo));
} else {
// Add an extra evo for Happiness at Night
addEvoUpdateHappiness(timeBasedEvolutionUpdates, evo);
Evolution extraEntry = new Evolution(evo.from, evo.to, true,
EvolutionType.HAPPINESS_NIGHT, 0);
extraEvolutions.add(extraEntry);
}
} else if (evo.type == EvolutionType.HAPPINESS_NIGHT) {
if (evo.from.number == Species.eevee) {
// We can't set Eevee to evolve into Umbreon with happiness at day because that's how
// Espeon works in the original game. Instead, make Eevee: == moon stone => Umbreon
evo.type = EvolutionType.STONE;
evo.extraInfo = Gen5Constants.moonStoneIndex;
addEvoUpdateStone(timeBasedEvolutionUpdates, evo, itemNames.get(evo.extraInfo));
} else {
// Add an extra evo for Happiness at Day
addEvoUpdateHappiness(timeBasedEvolutionUpdates, evo);
Evolution extraEntry = new Evolution(evo.from, evo.to, true,
EvolutionType.HAPPINESS_DAY, 0);
extraEvolutions.add(extraEntry);
}
} else if (evo.type == EvolutionType.LEVEL_ITEM_DAY) {
int item = evo.extraInfo;
// Make sure we don't already have an evo for the same item at night (e.g., when using Change Impossible Evos)
if (evo.from.evolutionsFrom.stream().noneMatch(e -> e.type == EvolutionType.LEVEL_ITEM_NIGHT && e.extraInfo == item)) {
// Add an extra evo for Level w/ Item During Night
addEvoUpdateHeldItem(timeBasedEvolutionUpdates, evo, itemNames.get(item));
Evolution extraEntry = new Evolution(evo.from, evo.to, true,
EvolutionType.LEVEL_ITEM_NIGHT, item);
extraEvolutions.add(extraEntry);
}
} else if (evo.type == EvolutionType.LEVEL_ITEM_NIGHT) {
int item = evo.extraInfo;
// Make sure we don't already have an evo for the same item at day (e.g., when using Change Impossible Evos)
if (evo.from.evolutionsFrom.stream().noneMatch(e -> e.type == EvolutionType.LEVEL_ITEM_DAY && e.extraInfo == item)) {
// Add an extra evo for Level w/ Item During Day
addEvoUpdateHeldItem(timeBasedEvolutionUpdates, evo, itemNames.get(item));
Evolution extraEntry = new Evolution(evo.from, evo.to, true,
EvolutionType.LEVEL_ITEM_DAY, item);
extraEvolutions.add(extraEntry);
}
}
}
pkmn.evolutionsFrom.addAll(extraEvolutions);
for (Evolution ev : extraEvolutions) {
ev.to.evolutionsTo.add(ev);
}
}
}
}
@Override
public boolean hasShopRandomization() {
return true;
}
@Override
public boolean canChangeTrainerText() {
return true;
}
@Override
public List<String> getTrainerNames() {
List<String> tnames = getStrings(false, romEntry.getInt("TrainerNamesTextOffset"));
tnames.remove(0); // blank one
// Tack the mugshot names on the end
List<String> mnames = getStrings(false, romEntry.getInt("TrainerMugshotsTextOffset"));
for (String mname : mnames) {
if (!mname.isEmpty() && (mname.charAt(0) >= 'A' && mname.charAt(0) <= 'Z')) {
tnames.add(mname);
}
}
return tnames;
}
@Override
public int maxTrainerNameLength() {
return 10;// based off the english ROMs
}
@Override
public void setTrainerNames(List<String> trainerNames) {
List<String> tnames = getStrings(false, romEntry.getInt("TrainerNamesTextOffset"));
// Grab the mugshot names off the back of the list of trainer names
// we got back
List<String> mnames = getStrings(false, romEntry.getInt("TrainerMugshotsTextOffset"));
int trNamesSize = trainerNames.size();
for (int i = mnames.size() - 1; i >= 0; i--) {
String origMName = mnames.get(i);
if (!origMName.isEmpty() && (origMName.charAt(0) >= 'A' && origMName.charAt(0) <= 'Z')) {
// Grab replacement
String replacement = trainerNames.remove(--trNamesSize);
mnames.set(i, replacement);
}
}
// Save back mugshot names
setStrings(false, romEntry.getInt("TrainerMugshotsTextOffset"), mnames);
// Now save the rest of trainer names
List<String> newTNames = new ArrayList<>(trainerNames);
newTNames.add(0, tnames.get(0)); // the 0-entry, preserve it
setStrings(false, romEntry.getInt("TrainerNamesTextOffset"), newTNames);
}
@Override
public TrainerNameMode trainerNameMode() {
return TrainerNameMode.MAX_LENGTH;
}
@Override
public List<Integer> getTCNameLengthsByTrainer() {
// not needed
return new ArrayList<>();
}
@Override
public List<String> getTrainerClassNames() {
return getStrings(false, romEntry.getInt("TrainerClassesTextOffset"));
}
@Override
public void setTrainerClassNames(List<String> trainerClassNames) {
setStrings(false, romEntry.getInt("TrainerClassesTextOffset"), trainerClassNames);
}
@Override
public int maxTrainerClassNameLength() {
return 12;// based off the english ROMs
}
@Override
public boolean fixedTrainerClassNamesLength() {
return false;
}
@Override
public List<Integer> getDoublesTrainerClasses() {
int[] doublesClasses = romEntry.arrayEntries.get("DoublesTrainerClasses");
List<Integer> doubles = new ArrayList<>();
for (int tClass : doublesClasses) {
doubles.add(tClass);
}
return doubles;
}
@Override
public String getDefaultExtension() {
return "nds";
}
@Override
public int abilitiesPerPokemon() {
return 3;
}
@Override
public int highestAbilityIndex() {
return Gen5Constants.highestAbilityIndex;
}
@Override
public int internalStringLength(String string) {
return ssd.lengthFor(string);
}
@Override
public void randomizeIntroPokemon() {
try {
int introPokemon = randomPokemon().number;
byte[] introGraphicOverlay = readOverlay(romEntry.getInt("IntroGraphicOvlNumber"));
int offset = find(introGraphicOverlay, Gen5Constants.introGraphicPrefix);
if (offset > 0) {
offset += Gen5Constants.introGraphicPrefix.length() / 2; // because it was a prefix
// offset is now pointing at the species constant that gets pc-relative
// loaded to determine what sprite to load.
writeWord(introGraphicOverlay, offset, introPokemon);
writeOverlay(romEntry.getInt("IntroGraphicOvlNumber"), introGraphicOverlay);
}
if (romEntry.romType == Gen5Constants.Type_BW) {
byte[] introCryOverlay = readOverlay(romEntry.getInt("IntroCryOvlNumber"));
offset = find(introCryOverlay, Gen5Constants.bw1IntroCryPrefix);
if (offset > 0) {
offset += Gen5Constants.bw1IntroCryPrefix.length() / 2; // because it was a prefix
// The function starting from the offset looks like this:
// mov r0, #0x8f
// str r1, [sp, #local_94]
// lsl r0, r0, #0x2
// mov r2, #0x40
// mov r3, #0x0
// bl PlayCry
// [rest of the function...]
// pop { r3, r4, r5, r6, r7, pc }
// C0 46 (these are useless padding bytes)
// To make this more extensible, we want to pc-relative load a species ID into r0 instead.
// Start by moving everything below the left shift up by 2 bytes. We won't need the left
// shift later, and it will give us 4 bytes after the pop to use for the ID.
for (int i = offset + 6; i < offset + 40; i++) {
introCryOverlay[i - 2] = introCryOverlay[i];
}
// The call to PlayCry needs to be adjusted as well, since it got moved.
introCryOverlay[offset + 10]++;
// Now write the species ID in the 4 bytes of space now available at the bottom,
// and then write a pc-relative load to this species ID at the offset.
FileFunctions.writeFullIntLittleEndian(introCryOverlay, offset + 38, introPokemon);
introCryOverlay[offset] = 0x9;
introCryOverlay[offset + 1] = 0x48;
writeOverlay(romEntry.getInt("IntroCryOvlNumber"), introCryOverlay);
}
} else {
byte[] introCryOverlay = readOverlay(romEntry.getInt("IntroCryOvlNumber"));
offset = find(introCryOverlay, Gen5Constants.bw2IntroCryLocator);
if (offset > 0) {
// offset is now pointing at the species constant that gets pc-relative
// loaded to determine what cry to play.
writeWord(introCryOverlay, offset, introPokemon);
writeOverlay(romEntry.getInt("IntroCryOvlNumber"), introCryOverlay);
}
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public ItemList getAllowedItems() {
return allowedItems;
}
@Override
public ItemList getNonBadItems() {
return nonBadItems;
}
@Override
public List<Integer> getUniqueNoSellItems() {
return new ArrayList<>();
}
@Override
public List<Integer> getRegularShopItems() {
return regularShopItems;
}
@Override
public List<Integer> getOPShopItems() {
return opShopItems;
}
@Override
public String[] getItemNames() {
return itemNames.toArray(new String[0]);
}
@Override
public String[] getShopNames() {
return shopNames.toArray(new String[0]);
}
@Override
public String abilityName(int number) {
return abilityNames.get(number);
}
@Override
public Map<Integer, List<Integer>> getAbilityVariations() {
return Gen5Constants.abilityVariations;
}
@Override
public List<Integer> getUselessAbilities() {
return new ArrayList<>(Gen5Constants.uselessAbilities);
}
@Override
public int getAbilityForTrainerPokemon(TrainerPokemon tp) {
// Before randomizing Trainer Pokemon, one possible value for abilitySlot is 0,
// which represents "Either Ability 1 or 2". During randomization, we make sure to
// to set abilitySlot to some non-zero value, but if you call this method without
// randomization, then you'll hit this case.
if (tp.abilitySlot < 1 || tp.abilitySlot > 3) {
return 0;
}
// In Gen 5, alt formes for Trainer Pokemon use the base forme's ability
Pokemon pkmn = tp.pokemon;
while (pkmn.baseForme != null) {
pkmn = pkmn.baseForme;
}
List<Integer> abilityList = Arrays.asList(pkmn.ability1, pkmn.ability2, pkmn.ability3);
return abilityList.get(tp.abilitySlot - 1);
}
@Override
public boolean hasMegaEvolutions() {
return false;
}
private List<Integer> getFieldItems() {
List<Integer> fieldItems = new ArrayList<>();
// normal items
int scriptFileNormal = romEntry.getInt("ItemBallsScriptOffset");
int scriptFileHidden = romEntry.getInt("HiddenItemsScriptOffset");
int[] skipTable = romEntry.arrayEntries.get("ItemBallsSkip");
int[] skipTableH = romEntry.arrayEntries.get("HiddenItemsSkip");
int setVarNormal = Gen5Constants.normalItemSetVarCommand;
int setVarHidden = Gen5Constants.hiddenItemSetVarCommand;
byte[] itemScripts = scriptNarc.files.get(scriptFileNormal);
int offset = 0;
int skipTableOffset = 0;
while (true) {
int part1 = readWord(itemScripts, offset);
if (part1 == Gen5Constants.scriptListTerminator) {
// done
break;
}
int offsetInFile = readRelativePointer(itemScripts, offset);
offset += 4;
if (offsetInFile > itemScripts.length) {
break;
}
if (skipTableOffset < skipTable.length && (skipTable[skipTableOffset] == (offset / 4) - 1)) {
skipTableOffset++;
continue;
}
int command = readWord(itemScripts, offsetInFile + 2);
int variable = readWord(itemScripts, offsetInFile + 4);
if (command == setVarNormal && variable == Gen5Constants.normalItemVarSet) {
int item = readWord(itemScripts, offsetInFile + 6);
fieldItems.add(item);
}
}
// hidden items
byte[] hitemScripts = scriptNarc.files.get(scriptFileHidden);
offset = 0;
skipTableOffset = 0;
while (true) {
int part1 = readWord(hitemScripts, offset);
if (part1 == Gen5Constants.scriptListTerminator) {
// done
break;
}
int offsetInFile = readRelativePointer(hitemScripts, offset);
if (offsetInFile > hitemScripts.length) {
break;
}
offset += 4;
if (skipTableOffset < skipTable.length && (skipTableH[skipTableOffset] == (offset / 4) - 1)) {
skipTableOffset++;
continue;
}
int command = readWord(hitemScripts, offsetInFile + 2);
int variable = readWord(hitemScripts, offsetInFile + 4);
if (command == setVarHidden && variable == Gen5Constants.hiddenItemVarSet) {
int item = readWord(hitemScripts, offsetInFile + 6);
fieldItems.add(item);
}
}
return fieldItems;
}
private void setFieldItems(List<Integer> fieldItems) {
Iterator<Integer> iterItems = fieldItems.iterator();
// normal items
int scriptFileNormal = romEntry.getInt("ItemBallsScriptOffset");
int scriptFileHidden = romEntry.getInt("HiddenItemsScriptOffset");
int[] skipTable = romEntry.arrayEntries.get("ItemBallsSkip");
int[] skipTableH = romEntry.arrayEntries.get("HiddenItemsSkip");
int setVarNormal = Gen5Constants.normalItemSetVarCommand;
int setVarHidden = Gen5Constants.hiddenItemSetVarCommand;
byte[] itemScripts = scriptNarc.files.get(scriptFileNormal);
int offset = 0;
int skipTableOffset = 0;
while (true) {
int part1 = readWord(itemScripts, offset);
if (part1 == Gen5Constants.scriptListTerminator) {
// done
break;
}
int offsetInFile = readRelativePointer(itemScripts, offset);
offset += 4;
if (offsetInFile > itemScripts.length) {
break;
}
if (skipTableOffset < skipTable.length && (skipTable[skipTableOffset] == (offset / 4) - 1)) {
skipTableOffset++;
continue;
}
int command = readWord(itemScripts, offsetInFile + 2);
int variable = readWord(itemScripts, offsetInFile + 4);
if (command == setVarNormal && variable == Gen5Constants.normalItemVarSet) {
int item = iterItems.next();
writeWord(itemScripts, offsetInFile + 6, item);
}
}
// hidden items
byte[] hitemScripts = scriptNarc.files.get(scriptFileHidden);
offset = 0;
skipTableOffset = 0;
while (true) {
int part1 = readWord(hitemScripts, offset);
if (part1 == Gen5Constants.scriptListTerminator) {
// done
break;
}
int offsetInFile = readRelativePointer(hitemScripts, offset);
offset += 4;
if (offsetInFile > hitemScripts.length) {
break;
}
if (skipTableOffset < skipTable.length && (skipTableH[skipTableOffset] == (offset / 4) - 1)) {
skipTableOffset++;
continue;
}
int command = readWord(hitemScripts, offsetInFile + 2);
int variable = readWord(hitemScripts, offsetInFile + 4);
if (command == setVarHidden && variable == Gen5Constants.hiddenItemVarSet) {
int item = iterItems.next();
writeWord(hitemScripts, offsetInFile + 6, item);
}
}
}
private int tmFromIndex(int index) {
if (index >= Gen5Constants.tmBlockOneOffset
&& index < Gen5Constants.tmBlockOneOffset + Gen5Constants.tmBlockOneCount) {
return index - (Gen5Constants.tmBlockOneOffset - 1);
} else {
return (index + Gen5Constants.tmBlockOneCount) - (Gen5Constants.tmBlockTwoOffset - 1);
}
}
private int indexFromTM(int tm) {
if (tm >= 1 && tm <= Gen5Constants.tmBlockOneCount) {
return tm + (Gen5Constants.tmBlockOneOffset - 1);
} else {
return tm + (Gen5Constants.tmBlockTwoOffset - 1 - Gen5Constants.tmBlockOneCount);
}
}
@Override
public List<Integer> getCurrentFieldTMs() {
List<Integer> fieldItems = this.getFieldItems();
List<Integer> fieldTMs = new ArrayList<>();
for (int item : fieldItems) {
if (Gen5Constants.allowedItems.isTM(item)) {
fieldTMs.add(tmFromIndex(item));
}
}
return fieldTMs;
}
@Override
public void setFieldTMs(List<Integer> fieldTMs) {
List<Integer> fieldItems = this.getFieldItems();
int fiLength = fieldItems.size();
Iterator<Integer> iterTMs = fieldTMs.iterator();
for (int i = 0; i < fiLength; i++) {
int oldItem = fieldItems.get(i);
if (Gen5Constants.allowedItems.isTM(oldItem)) {
int newItem = indexFromTM(iterTMs.next());
fieldItems.set(i, newItem);
}
}
this.setFieldItems(fieldItems);
}
@Override
public List<Integer> getRegularFieldItems() {
List<Integer> fieldItems = this.getFieldItems();
List<Integer> fieldRegItems = new ArrayList<>();
for (int item : fieldItems) {
if (Gen5Constants.allowedItems.isAllowed(item) && !(Gen5Constants.allowedItems.isTM(item))) {
fieldRegItems.add(item);
}
}
return fieldRegItems;
}
@Override
public void setRegularFieldItems(List<Integer> items) {
List<Integer> fieldItems = this.getFieldItems();
int fiLength = fieldItems.size();
Iterator<Integer> iterNewItems = items.iterator();
for (int i = 0; i < fiLength; i++) {
int oldItem = fieldItems.get(i);
if (!(Gen5Constants.allowedItems.isTM(oldItem)) && Gen5Constants.allowedItems.isAllowed(oldItem)) {
int newItem = iterNewItems.next();
fieldItems.set(i, newItem);
}
}
this.setFieldItems(fieldItems);
}
@Override
public List<Integer> getRequiredFieldTMs() {
if (romEntry.romType == Gen5Constants.Type_BW) {
return Gen5Constants.bw1RequiredFieldTMs;
} else {
return Gen5Constants.bw2RequiredFieldTMs;
}
}
@Override
public List<IngameTrade> getIngameTrades() {
List<IngameTrade> trades = new ArrayList<>();
try {
NARCArchive tradeNARC = this.readNARC(romEntry.getString("InGameTrades"));
List<String> tradeStrings = getStrings(false, romEntry.getInt("IngameTradesTextOffset"));
int[] unused = romEntry.arrayEntries.get("TradesUnused");
int unusedOffset = 0;
int tableSize = tradeNARC.files.size();
for (int entry = 0; entry < tableSize; entry++) {
if (unusedOffset < unused.length && unused[unusedOffset] == entry) {
unusedOffset++;
continue;
}
IngameTrade trade = new IngameTrade();
byte[] tfile = tradeNARC.files.get(entry);
trade.nickname = tradeStrings.get(entry * 2);
trade.givenPokemon = pokes[readLong(tfile, 4)];
trade.ivs = new int[6];
for (int iv = 0; iv < 6; iv++) {
trade.ivs[iv] = readLong(tfile, 0x10 + iv * 4);
}
trade.otId = readWord(tfile, 0x34);
trade.item = readLong(tfile, 0x4C);
trade.otName = tradeStrings.get(entry * 2 + 1);
trade.requestedPokemon = pokes[readLong(tfile, 0x5C)];
trades.add(trade);
}
} catch (Exception ex) {
throw new RandomizerIOException(ex);
}
return trades;
}
@Override
public void setIngameTrades(List<IngameTrade> trades) {
// info
int tradeOffset = 0;
List<IngameTrade> oldTrades = this.getIngameTrades();
try {
NARCArchive tradeNARC = this.readNARC(romEntry.getString("InGameTrades"));
List<String> tradeStrings = getStrings(false, romEntry.getInt("IngameTradesTextOffset"));
int tradeCount = tradeNARC.files.size();
int[] unused = romEntry.arrayEntries.get("TradesUnused");
int unusedOffset = 0;
for (int i = 0; i < tradeCount; i++) {
if (unusedOffset < unused.length && unused[unusedOffset] == i) {
unusedOffset++;
continue;
}
byte[] tfile = tradeNARC.files.get(i);
IngameTrade trade = trades.get(tradeOffset++);
tradeStrings.set(i * 2, trade.nickname);
tradeStrings.set(i * 2 + 1, trade.otName);
writeLong(tfile, 4, trade.givenPokemon.number);
writeLong(tfile, 8, 0); // disable forme
for (int iv = 0; iv < 6; iv++) {
writeLong(tfile, 0x10 + iv * 4, trade.ivs[iv]);
}
writeLong(tfile, 0x2C, 0xFF); // random nature
writeWord(tfile, 0x34, trade.otId);
writeLong(tfile, 0x4C, trade.item);
writeLong(tfile, 0x5C, trade.requestedPokemon.number);
if (romEntry.tradeScripts.size() > 0) {
romEntry.tradeScripts.get(i - unusedOffset).setPokemon(this,scriptNarc,trade.requestedPokemon,trade.givenPokemon);
}
}
this.writeNARC(romEntry.getString("InGameTrades"), tradeNARC);
this.setStrings(false, romEntry.getInt("IngameTradesTextOffset"), tradeStrings);
// update what the people say when they talk to you
unusedOffset = 0;
if (romEntry.arrayEntries.containsKey("IngameTradePersonTextOffsets")) {
int[] textOffsets = romEntry.arrayEntries.get("IngameTradePersonTextOffsets");
for (int tr = 0; tr < textOffsets.length; tr++) {
if (unusedOffset < unused.length && unused[unusedOffset] == tr+24) {
unusedOffset++;
continue;
}
if (textOffsets[tr] > 0) {
if (tr+24 >= oldTrades.size() || tr+24 >= trades.size()) {
break;
}
IngameTrade oldTrade = oldTrades.get(tr+24);
IngameTrade newTrade = trades.get(tr+24);
Map<String, String> replacements = new TreeMap<>();
replacements.put(oldTrade.givenPokemon.name, newTrade.givenPokemon.name);
if (oldTrade.requestedPokemon != newTrade.requestedPokemon) {
replacements.put(oldTrade.requestedPokemon.name, newTrade.requestedPokemon.name);
}
replaceAllStringsInEntry(textOffsets[tr], replacements);
}
}
}
} catch (IOException ex) {
throw new RandomizerIOException(ex);
}
}
private void replaceAllStringsInEntry(int entry, Map<String, String> replacements) {
List<String> thisTradeStrings = this.getStrings(true, entry);
int ttsCount = thisTradeStrings.size();
for (int strNum = 0; strNum < ttsCount; strNum++) {
String newString = thisTradeStrings.get(strNum);
for (String old: replacements.keySet()) {
newString = newString.replaceAll(old,replacements.get(old));
}
thisTradeStrings.set(strNum, newString);
}
this.setStrings(true, entry, thisTradeStrings);
}
@Override
public boolean hasDVs() {
return false;
}
@Override
public int generationOfPokemon() {
return 5;
}
@Override
public void removeEvosForPokemonPool() {
// slightly more complicated than gen2/3
// we have to update a "baby table" too
List<Pokemon> pokemonIncluded = this.mainPokemonList;
Set<Evolution> keepEvos = new HashSet<>();
for (Pokemon pk : pokes) {
if (pk != null) {
keepEvos.clear();
for (Evolution evol : pk.evolutionsFrom) {
if (pokemonIncluded.contains(evol.from) && pokemonIncluded.contains(evol.to)) {
keepEvos.add(evol);
} else {
evol.to.evolutionsTo.remove(evol);
}
}
pk.evolutionsFrom.retainAll(keepEvos);
}
}
try {
NARCArchive babyNARC = readNARC(romEntry.getString("BabyPokemon"));
// baby pokemon
for (int i = 1; i <= Gen5Constants.pokemonCount; i++) {
Pokemon baby = pokes[i];
while (baby.evolutionsTo.size() > 0) {
// Grab the first "to evolution" even if there are multiple
baby = baby.evolutionsTo.get(0).from;
}
writeWord(babyNARC.files.get(i), 0, baby.number);
}
// finish up
writeNARC(romEntry.getString("BabyPokemon"), babyNARC);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public boolean supportsFourStartingMoves() {
return true;
}
@Override
public List<Integer> getFieldMoves() {
// cut, fly, surf, strength, flash, dig, teleport, waterfall,
// sweet scent, dive
return Gen5Constants.fieldMoves;
}
@Override
public List<Integer> getEarlyRequiredHMMoves() {
// BW1: cut
// BW2: none
if (romEntry.romType == Gen5Constants.Type_BW2) {
return Gen5Constants.bw2EarlyRequiredHMMoves;
} else {
return Gen5Constants.bw1EarlyRequiredHMMoves;
}
}
@Override
public Map<Integer, List<Integer>> getShopItems() {
int[] tmShops = romEntry.arrayEntries.get("TMShops");
int[] regularShops = romEntry.arrayEntries.get("RegularShops");
int[] shopItemOffsets = romEntry.arrayEntries.get("ShopItemOffsets");
int[] shopItemSizes = romEntry.arrayEntries.get("ShopItemSizes");
int shopCount = romEntry.getInt("ShopCount");
List<Integer> shopItems = new ArrayList<>();
Map<Integer,List<Integer>> shopItemsMap = new TreeMap<>();
try {
byte[] shopItemOverlay = readOverlay(romEntry.getInt("ShopItemOvlNumber"));
IntStream.range(0, shopCount).forEachOrdered(i -> {
boolean badShop = false;
for (int tmShop : tmShops) {
if (i == tmShop) {
badShop = true;
break;
}
}
for (int regularShop : regularShops) {
if (badShop) break;
if (i == regularShop) {
badShop = true;
break;
}
}
if (!badShop) {
List<Integer> items = new ArrayList<>();
if (romEntry.romType == Gen5Constants.Type_BW) {
for (int j = 0; j < shopItemSizes[i]; j++) {
items.add(readWord(shopItemOverlay, shopItemOffsets[i] + j * 2));
}
} else if (romEntry.romType == Gen5Constants.Type_BW2) {
byte[] shop = shopNarc.files.get(i);
for (int j = 0; j < shop.length; j += 2) {
items.add(readWord(shop, j));
}
}
shopItemsMap.put(i, items);
}
});
return shopItemsMap;
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public void setShopItems(Map<Integer, List<Integer>> shopItems) {
int[] shopItemOffsets = romEntry.arrayEntries.get("ShopItemOffsets");
int[] shopItemSizes = romEntry.arrayEntries.get("ShopItemSizes");
int[] tmShops = romEntry.arrayEntries.get("TMShops");
int[] regularShops = romEntry.arrayEntries.get("RegularShops");
int shopCount = romEntry.getInt("ShopCount");
try {
byte[] shopItemOverlay = readOverlay(romEntry.getInt("ShopItemOvlNumber"));
IntStream.range(0, shopCount).forEachOrdered(i -> {
boolean badShop = false;
for (int tmShop : tmShops) {
if (badShop) break;
if (i == tmShop) badShop = true;
}
for (int regularShop : regularShops) {
if (badShop) break;
if (i == regularShop) badShop = true;
}
if (!badShop) {
List<Integer> shopContents = shopItems.get(i);
Iterator<Integer> iterItems = shopContents.iterator();
if (romEntry.romType == Gen5Constants.Type_BW) {
for (int j = 0; j < shopItemSizes[i]; j++) {
Integer item = iterItems.next();
writeWord(shopItemOverlay, shopItemOffsets[i] + j * 2, item);
}
} else if (romEntry.romType == Gen5Constants.Type_BW2) {
byte[] shop = shopNarc.files.get(i);
for (int j = 0; j < shop.length; j += 2) {
Integer item = iterItems.next();
writeWord(shop, j, item);
}
}
}
});
if (romEntry.romType == Gen5Constants.Type_BW2) {
writeNARC(romEntry.getString("ShopItems"), shopNarc);
} else {
writeOverlay(romEntry.getInt("ShopItemOvlNumber"), shopItemOverlay);
}
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public void setShopPrices() {
try {
NARCArchive itemPriceNarc = this.readNARC(romEntry.getString("ItemData"));
for (int i = 1; i < itemPriceNarc.files.size(); i++) {
writeWord(itemPriceNarc.files.get(i),0,Gen5Constants.balancedItemPrices.get(i));
}
writeNARC(romEntry.getString("ItemData"),itemPriceNarc);
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public List<Integer> getMainGameShops() {
return Gen5Constants.getMainGameShops(romEntry.romType);
}
@Override
public BufferedImage getMascotImage() {
try {
Pokemon pk = randomPokemonInclFormes();
NARCArchive pokespritesNARC = this.readNARC(romEntry.getString("PokemonGraphics"));
// First prepare the palette, it's the easy bit
int palIndex = pk.getSpriteIndex() * 20 + 18;
if (random.nextInt(10) == 0) {
// shiny
palIndex++;
}
byte[] rawPalette = pokespritesNARC.files.get(palIndex);
int[] palette = new int[16];
for (int i = 1; i < 16; i++) {
palette[i] = GFXFunctions.conv16BitColorToARGB(readWord(rawPalette, 40 + i * 2));
}
// Get the picture and uncompress it.
byte[] compressedPic = pokespritesNARC.files.get(pk.getSpriteIndex() * 20);
byte[] uncompressedPic = DSDecmp.Decompress(compressedPic);
// Output to 64x144 tiled image to prepare for unscrambling
BufferedImage bim = GFXFunctions.drawTiledImage(uncompressedPic, palette, 48, 64, 144, 4);
// Unscramble the above onto a 96x96 canvas
BufferedImage finalImage = new BufferedImage(96, 96, BufferedImage.TYPE_INT_ARGB);
Graphics g = finalImage.getGraphics();
g.drawImage(bim, 0, 0, 64, 64, 0, 0, 64, 64, null);
g.drawImage(bim, 64, 0, 96, 8, 0, 64, 32, 72, null);
g.drawImage(bim, 64, 8, 96, 16, 32, 64, 64, 72, null);
g.drawImage(bim, 64, 16, 96, 24, 0, 72, 32, 80, null);
g.drawImage(bim, 64, 24, 96, 32, 32, 72, 64, 80, null);
g.drawImage(bim, 64, 32, 96, 40, 0, 80, 32, 88, null);
g.drawImage(bim, 64, 40, 96, 48, 32, 80, 64, 88, null);
g.drawImage(bim, 64, 48, 96, 56, 0, 88, 32, 96, null);
g.drawImage(bim, 64, 56, 96, 64, 32, 88, 64, 96, null);
g.drawImage(bim, 0, 64, 64, 96, 0, 96, 64, 128, null);
g.drawImage(bim, 64, 64, 96, 72, 0, 128, 32, 136, null);
g.drawImage(bim, 64, 72, 96, 80, 32, 128, 64, 136, null);
g.drawImage(bim, 64, 80, 96, 88, 0, 136, 32, 144, null);
g.drawImage(bim, 64, 88, 96, 96, 32, 136, 64, 144, null);
// Phew, all done.
return finalImage;
} catch (IOException e) {
throw new RandomizerIOException(e);
}
}
@Override
public List<Integer> getAllHeldItems() {
return Gen5Constants.allHeldItems;
}
@Override
public List<Integer> getAllConsumableHeldItems() {
return Gen5Constants.consumableHeldItems;
}
@Override
public List<Integer> getSensibleHeldItemsFor(TrainerPokemon tp, boolean consumableOnly, List<Move> moves, Map<Integer, List<MoveLearnt>> movesets) {
List<Integer> items = new ArrayList<>();
items.addAll(Gen5Constants.generalPurposeConsumableItems);
int frequencyBoostCount = 6; // Make some very good items more common, but not too common
if (!consumableOnly) {
frequencyBoostCount = 8; // bigger to account for larger item pool.
items.addAll(Gen5Constants.generalPurposeItems);
}
int[] pokeMoves = RomFunctions.getMovesAtLevel(tp.pokemon.number, movesets, tp.level);
for (int moveIdx : pokeMoves) {
Move move = moves.get(moveIdx);
if (move == null) {
continue;
}
if (move.category == MoveCategory.PHYSICAL) {
items.add(Gen4Constants.liechiBerry);
items.add(Gen5Constants.consumableTypeBoostingItems.get(move.type));
if (!consumableOnly) {
items.addAll(Gen5Constants.typeBoostingItems.get(move.type));
items.add(Gen4Constants.choiceBand);
items.add(Gen4Constants.muscleBand);
}
}
if (move.category == MoveCategory.SPECIAL) {
items.add(Gen4Constants.petayaBerry);
items.add(Gen5Constants.consumableTypeBoostingItems.get(move.type));
if (!consumableOnly) {
items.addAll(Gen5Constants.typeBoostingItems.get(move.type));
items.add(Gen4Constants.wiseGlasses);
items.add(Gen4Constants.choiceSpecs);
}
}
if (!consumableOnly && Gen5Constants.moveBoostingItems.containsKey(moveIdx)) {
items.addAll(Gen5Constants.moveBoostingItems.get(moveIdx));
}
}
Map<Type, Effectiveness> byType = Effectiveness.against(tp.pokemon.primaryType, tp.pokemon.secondaryType, 5);
for(Map.Entry<Type, Effectiveness> entry : byType.entrySet()) {
Integer berry = Gen5Constants.weaknessReducingBerries.get(entry.getKey());
if (entry.getValue() == Effectiveness.DOUBLE) {
items.add(berry);
} else if (entry.getValue() == Effectiveness.QUADRUPLE) {
for (int i = 0; i < frequencyBoostCount; i++) {
items.add(berry);
}
}
}
if (byType.get(Type.NORMAL) == Effectiveness.NEUTRAL) {
items.add(Gen4Constants.chilanBerry);
}
int ability = this.getAbilityForTrainerPokemon(tp);
if (ability == Abilities.levitate) {
items.removeAll(Arrays.asList(Gen4Constants.shucaBerry));
} else if (byType.get(Type.GROUND) == Effectiveness.DOUBLE || byType.get(Type.GROUND) == Effectiveness.QUADRUPLE) {
items.add(Gen5Constants.airBalloon);
}
if (!consumableOnly) {
if (Gen5Constants.abilityBoostingItems.containsKey(ability)) {
items.addAll(Gen5Constants.abilityBoostingItems.get(ability));
}
if (tp.pokemon.primaryType == Type.POISON || tp.pokemon.secondaryType == Type.POISON) {
items.add(Gen4Constants.blackSludge);
}
List<Integer> speciesItems = Gen5Constants.speciesBoostingItems.get(tp.pokemon.number);
if (speciesItems != null) {
for (int i = 0; i < frequencyBoostCount; i++) {
items.addAll(speciesItems);
}
}
if (!tp.pokemon.evolutionsFrom.isEmpty() && tp.level >= 20) {
// eviolite can be too good for early game, so we gate it behind a minimum level.
// We go with the same level as the option for "No early wonder guard".
items.add(Gen5Constants.eviolite);
}
}
return items;
}
}
|