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 | ///////////////////////////////////////////
// NUS Downloader: Form1.cs //
// $Rev:: $ //
// $Author:: $ //
// $Date:: $ //
///////////////////////////////////////////
///////////////////////////////////////
// Copyright (C) 2010
//
// 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/>
///////////////////////////////////////
using System;
using System.Windows.Forms;
using System.IO;
using System.Net;
using System.Security.Cryptography;
using System.Xml;
using System.Drawing;
using System.Text.RegularExpressions;
using System.ComponentModel;
using System.Threading;
using System.Text;
using System.Diagnostics;
namespace NUS_Downloader
{
partial class Form1 : Form
{
private readonly string CURRENT_DIR = Directory.GetCurrentDirectory();
#if DEBUG
private static string svnversion = "$Rev$";
private static string version = String.Format("SVN r{0}", ((int.Parse(svnversion.Replace("$"+"R"+"e"+"v"+": ","").Replace(" "+"$","")))+1));
#else
// TODO: Always remember to change version!
private string version = "v1.9";
#endif
// Cross-thread Windows Formsing
private delegate void AddToolStripItemToStripCallback(
ToolStripMenuItem menulist, ToolStripMenuItem[] additionitems);
private delegate void WriteStatusCallback(string Update, Color writecolor);
private delegate void BootChecksCallback();
private delegate void SetEnableForDownloadCallback(bool enabled);
private delegate void SetPropertyThreadSafeCallback(System.ComponentModel.Component what, object setto, string property);
private delegate string OfficialWADNamingCallback(string whut);
private string WAD_Saveas_Filename;
// TODO: OOP scripting
/*private string script_filename;
private bool script_mode = false;
private string[] nusentries;*/
// Proxy stuff...
private string proxy_url;
private string proxy_usr;
private string proxy_pwd;
// Database threads
private BackgroundWorker databaseWorker;
private BackgroundWorker dsiDatabaseWorker;
// Scripts Thread
private BackgroundWorker scriptsWorker;
// Colours for status box
private System.Drawing.Color normalcolor = Color.FromName("Black");
private System.Drawing.Color warningcolor = Color.FromName("DarkGoldenrod");
private System.Drawing.Color errorcolor = Color.FromName("Crimson");
private System.Drawing.Color infocolor = Color.FromName("RoyalBlue");
// This is the standard entry to the GUI
public Form1()
{
InitializeComponent();
GUISetup();
BootChecks();
}
// CLI Mode
public Form1(string[] args)
{
InitializeComponent();
Debug.WriteLine("CLI Parameters passed");
GUISetup();
if ((args.Length == 1) && (File.Exists(args[0])))
{
BootChecks();
string script_content = File.ReadAllText(args[0]);
FileInfo script_file = new FileInfo(args[0]);
script_content += String.Format(";{0}", script_file.Name.Replace("." + script_file.Extension, ""));
BackgroundWorker scripter = new BackgroundWorker();
scripter.DoWork += new DoWorkEventHandler(RunScriptBg);
scripter.RunWorkerAsync(script_content);
}
else if (args.Length >= 2)
{
RunCommandMode(args);
Environment.Exit(0);
//this.Close();
}
else
{
BootChecks();
}
}
private void RunCommandMode(string[] args)
{
// CLI mode, inspired and taken from wiiNinja's mod.
// Initialize the checkboxes and radio boxes
packbox.Checked = false; // Create wad - default OFF
localuse.Checked = true; // Use local content if already downloaded - default ON
decryptbox.Checked = false;
keepenccontents.Checked = false;
//consoleCBox.SelectedIndex = 0; // 0 is Wii, 1 is DS
// Clear 3 items in ios patches list. This feature is not supported in the command line version at this time.
iosPatchCheckbox.Checked = false;
iosPatchesListBox.SetItemChecked(0, false);
iosPatchesListBox.SetItemChecked(1, false);
iosPatchesListBox.SetItemChecked(2, false);
Console.WriteLine("NUS Downloader - v{0}", version);
if (args.Length < 2)
{
Console.WriteLine("Usage:");
Console.WriteLine(" nusd <titleID> <titleVersion | *> [optionalArgs]");
Console.WriteLine("\nWhere:");
Console.WriteLine(" titleID = The ID of the title to be downloaded");
Console.WriteLine(" titleVersion = The version of the title to be downloaded");
Console.WriteLine(" Use \"*\" (no quotes) to get the latest version");
Console.WriteLine(" OptionalArgs:");
Console.WriteLine(" packwad = A wad file will be generated");
Console.WriteLine(" localuse = Use local contents if available");
Console.WriteLine(" decrypt = Create decrypted contents");
Console.WriteLine(" keepencrypt = Keep encrypted contents");
}
else
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine("{0}", args[i]);
switch (i)
{
case 0:
// First command line argument is ALWAYS the TitleID
titleidbox.Text = args[i];
break;
case 1:
// Second command line argument is ALWAYS the TitleVersion.
// User may specify a "*" to retrieve the latest version
if (args[i] == "*")
titleversion.Text = "";
else
titleversion.Text = args[i];
break;
default:
// Any other arguments beyond the 2nd one are considered optional
if (args[i] == "packwad")
packbox.Checked = true;
else if (args[i] == "localuse")
localuse.Checked = true;
else if (args[i] == "decrypt")
decryptbox.Checked = true;
else if (args[i] == "keepencrypt")
keepenccontents.Checked = true;
else
Console.WriteLine("\n>>>> Warning: Unrecognized command line argument: {0}. This option is ignored...", args[i]);
break;
}
}
// Do this to set the wad file name
UpdatePackedName();
// Call to get the files from server
NUSDownloader_DoWork(null, null);
Console.WriteLine("\nSuccessfully downloaded the title {0} version {1}", args[0], args[1]);
}
}
private void GUISetup()
{
this.Font = new System.Drawing.Font("Tahoma", 8);
this.MaximumSize = this.MinimumSize = this.Size; // Lock size down PATCHOW :D
if (Type.GetType("Mono.Runtime") != null)
{
saveaswadbtn.Text = "Save As";
clearButton.Text = "Clear";
keepenccontents.Text = "Keep Enc. Contents";
clearButton.Left -= 41;
}
else
statusbox.Font = new System.Drawing.Font("Microsoft Sans Serif", 7);
statusbox.SelectionColor = statusbox.ForeColor = normalcolor;
if (version.StartsWith("SVN"))
{
WriteStatus("!!!!! THIS IS A DEBUG BUILD FROM SVN !!!!!");
WriteStatus("Features CAN and WILL be broken in this build!");
WriteStatus("Devs: REMEMBER TO CHANGE TO THE RELEASE CONFIGURATION AND CHANGE VERSION NUMBER BEFORE BUILDING!");
WriteStatus("\r\n");
}
// Database BackgroundWorker
this.databaseWorker = new BackgroundWorker();
this.databaseWorker.DoWork += new DoWorkEventHandler(DoAllDatabaseyStuff);
this.databaseWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(DoAllDatabaseyStuff_Completed);
this.databaseWorker.ProgressChanged += new ProgressChangedEventHandler(DoAllDatabaseyStuff_ProgressChanged);
this.databaseWorker.WorkerReportsProgress = true;
// DSi Database BackgroundWorker
this.dsiDatabaseWorker = new BackgroundWorker();
this.dsiDatabaseWorker.DoWork += new DoWorkEventHandler(DSiDatabaseWork);
this.dsiDatabaseWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(DSiDatabaseWork_Completed);
this.dsiDatabaseWorker.ProgressChanged += new ProgressChangedEventHandler(DSiDatabaseWork_ProgressChanged);
this.dsiDatabaseWorker.WorkerReportsProgress = true;
// Scripts BGLoader
this.scriptsWorker = new BackgroundWorker();
this.scriptsWorker.DoWork += new DoWorkEventHandler(OrganizeScripts);
this.scriptsWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(scriptsWorker_RunWorkerCompleted);
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = String.Format("NUSD - {0}", version); ;
this.Size = this.MinimumSize;
serverLbl.Text = "Wii";
}
private bool NUSDFileExists(string filename)
{
return File.Exists(Path.Combine(CURRENT_DIR, filename));
}
/// <summary>
/// Checks certain file existances, etc.
/// </summary>
/// <returns></returns>
private void BootChecks()
{
//Check if correct thread...
if (this.InvokeRequired)
{
Debug.WriteLine("InvokeRequired...");
BootChecksCallback bcc = new BootChecksCallback(BootChecks);
this.Invoke(bcc);
return;
}
/* Check for DSi common key bin file...
if (NUSDFileExists("dsikey.bin") == true)
{
WriteStatus("DSi Common Key detected.");
dsidecrypt = true;
}*/
/*
// Check for database.xml
if (NUSDFileExists("database.xml") == false)
{
WriteStatus("Database.xml not found. Title database not usable!");
DatabaseEnabled(false);
updateDatabaseToolStripMenuItem.Enabled = true;
updateDatabaseToolStripMenuItem.Visible = true;
updateDatabaseToolStripMenuItem.Text = "Download Database";
}
else
{
Database db = new Database();
db.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
string version = db.GetDatabaseVersion();
WriteStatus("Database.xml detected.");
WriteStatus(" - Version: " + version);
updateDatabaseToolStripMenuItem.Text = "Update Database";
//databaseButton.Enabled = false;
//databaseButton.Text = "DB Loading";
databaseButton.Text = " [ ]";
databaseButton.Image = Properties.Resources.arrow_ticker;
// Load it up...
this.fds.RunWorkerAsync();
}
// Check for database.xml
if (NUSDFileExists("dsidatabase.xml") == false)
{
WriteStatus("DSiDatabase.xml not found. DSi database not usable!");
DatabaseEnabled(false);
updateDatabaseToolStripMenuItem.Enabled = true;
updateDatabaseToolStripMenuItem.Visible = true;
updateDatabaseToolStripMenuItem.Text = "Download Database";
}
else
{
Database db = new Database();
db.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
string version = db.GetDatabaseVersion();
WriteStatus("Database.xml detected.");
WriteStatus(" - Version: " + version);
updateDatabaseToolStripMenuItem.Text = "Update Database";
//databaseButton.Enabled = false;
//databaseButton.Text = "DB Loading";
databaseButton.Text = " [ ]";
databaseButton.Image = Properties.Resources.arrow_ticker;
// Load it up...
this.fds.RunWorkerAsync();
}*/
if (NUSDFileExists("database.xml") == true)
{
Database db = new Database();
db.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
string version = db.GetDatabaseVersion();
WriteStatus("Database.xml detected.");
WriteStatus(" - Version: " + version);
updateDatabaseToolStripMenuItem.Text = "Update Database";
databaseButton.Text = " [ ]";
databaseButton.Image = Properties.Resources.arrow_ticker;
// Load it up...
this.databaseWorker.RunWorkerAsync();
}
if (NUSDFileExists("dsidatabase.xml") == true)
{
Database db = new Database();
db.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "dsidatabase.xml"));
string version = db.GetDatabaseVersion();
WriteStatus("DSiDatabase.xml detected.");
WriteStatus(" - Version: " + version);
updateDatabaseToolStripMenuItem.Text = "Update Database";
databaseButton.Text = " [ ]";
databaseButton.Image = Properties.Resources.arrow_ticker;
// Load it up...
this.dsiDatabaseWorker.RunWorkerAsync();
}
// Load scripts (local)
RunScriptOrganizer();
// Check for Proxy Settings file...
if (NUSDFileExists("proxy.txt") == true)
{
WriteStatus("Proxy settings detected.");
string[] proxy_file = File.ReadAllLines(Path.Combine(CURRENT_DIR, "proxy.txt"));
proxy_url = proxy_file[0];
// If proxy\nuser\npassword
if (proxy_file.Length > 2)
{
proxy_usr = proxy_file[1];
proxy_pwd = proxy_file[2];
}
else if (proxy_file.Length > 1)
{
proxy_usr = proxy_file[1];
SetAllEnabled(false);
ProxyVerifyBox.Visible = true;
ProxyVerifyBox.Enabled = true;
ProxyPwdBox.Enabled = true;
SaveProxyBtn.Enabled = true;
ProxyVerifyBox.Select();
}
}
}
private void DoAllDatabaseyStuff(object sender, System.ComponentModel.DoWorkEventArgs e)
{
BackgroundWorker worker = sender as BackgroundWorker;
ClearDatabaseStrip();
FillDatabaseStrip(worker);
LoadRegionCodes();
FillDatabaseScripts();
ShowInnerToolTips(false);
}
private void DoAllDatabaseyStuff_Completed(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)
{
//this.databaseButton.Enabled = true;
this.databaseButton.Text = "Database...";
this.databaseButton.Image = null;
/*
if (this.KoreaMassUpdate.HasDropDownItems || this.PALMassUpdate.HasDropDownItems || this.NTSCMassUpdate.HasDropDownItems)
{
this.scriptsbutton.Enabled = true;
}*/
}
private void DoAllDatabaseyStuff_ProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)
{
if (e.ProgressPercentage == 25)
databaseButton.Text = " [. ]";
else if (e.ProgressPercentage == 50)
databaseButton.Text = " [.. ]";
else if (e.ProgressPercentage == 75)
databaseButton.Text = " [... ]";
else if (e.ProgressPercentage == 100)
databaseButton.Text = " [....]";
}
private void RunScriptOrganizer()
{
this.scriptsWorker.RunWorkerAsync();
}
private void SetAllEnabled(bool enabled)
{
for (int a = 0; a < this.Controls.Count; a++)
{
try
{
this.Controls[a].Enabled = enabled;
}
catch
{
// ...
}
}
}
/*
/// <summary>
/// Gets the database version.
/// </summary>
/// <param name="file">The database file.</param>
/// <returns></returns>
private string GetDatabaseVersion(string file)
{
// Read version of Database.xml
XmlDocument xDoc = new XmlDocument();
if (file.Contains("<"))
xDoc.LoadXml(file);
else
{
if (File.Exists(file))
{
xDoc.Load(file);
}
else
{
return "None Found";
}
}
XmlNodeList DatabaseList = xDoc.GetElementsByTagName("database");
XmlAttributeCollection Attributes = DatabaseList[0].Attributes;
return Attributes[0].Value;
}*/
private void extrasMenuButton_Click(object sender, EventArgs e)
{
// Show extras menu
extrasStrip.Text = "Showing";
extrasStrip.Show(Extrasbtn, 2, (2+Extrasbtn.Height));
{
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
timer.Interval = 52;
timer.Tick += new EventHandler(contextmenusTimer_Tick);
timer.Start();
}
}
/// <summary>
/// Loads the title info from TMD.
/// </summary>
private void LoadTitleFromTMD()
{
// Show dialog for opening TMD file...
OpenFileDialog opentmd = new OpenFileDialog();
opentmd.Filter = "TMD Files|*tmd*";
opentmd.Title = "Open TMD";
if (opentmd.ShowDialog() != DialogResult.Cancel)
{
libWiiSharp.TMD tmdLocal = new libWiiSharp.TMD();
tmdLocal.LoadFile(opentmd.FileName);
WriteStatus(String.Format("TMD Loaded ({0} blocks)", tmdLocal.GetNandBlocks()));
titleidbox.Text = tmdLocal.TitleID.ToString("X16");
WriteStatus("Title ID: " + tmdLocal.TitleID.ToString("X16"));
titleversion.Text = tmdLocal.TitleVersion.ToString();
WriteStatus("Version: " + tmdLocal.TitleVersion);
if (tmdLocal.StartupIOS.ToString("X") != "0")
WriteStatus("Requires: IOS" + int.Parse(tmdLocal.StartupIOS.ToString("X").Substring(7, 2).ToString(), System.Globalization.NumberStyles.HexNumber));
WriteStatus("Content Count: " + tmdLocal.NumOfContents);
for (int a = 0; a < tmdLocal.Contents.Length; a++)
{
WriteStatus(String.Format(" Content {0}: {1} ({2} bytes)", a, tmdLocal.Contents[a].ContentID.ToString("X8"), tmdLocal.Contents[a].Size.ToString()));
WriteStatus(String.Format(" - Index: {0}", tmdLocal.Contents[a].Index.ToString()));
WriteStatus(String.Format(" - Type: {0}", tmdLocal.Contents[a].Type.ToString()));
WriteStatus(String.Format(" - Hash: {0}...", DisplayBytes(tmdLocal.Contents[a].Hash, String.Empty).Substring(0, 8)));
}
WriteStatus("TMD information parsed!");
}
}
/// <summary>
/// Writes the status to the statusbox.
/// </summary>
/// <param name="Update">The update.</param>
/// <param name="writecolor">The color to use for writing text into the text box.</param>
public void WriteStatus(string Update, Color writecolor)
{
// Check if thread-safe
if (statusbox.InvokeRequired)
{
Debug.WriteLine("InvokeRequired...");
WriteStatusCallback wsc = new WriteStatusCallback(WriteStatus);
this.Invoke(wsc, new object[] { Update, writecolor });
return;
}
// Small function for writing text to the statusbox...
int startlen = statusbox.TextLength;
if (statusbox.Text == "")
statusbox.Text = Update;
else
statusbox.AppendText("\r\n" + Update);
int endlen = statusbox.TextLength;
// Set the color
statusbox.Select(startlen, endlen - startlen);
statusbox.SelectionColor = writecolor;
// Scroll to end of text box.
statusbox.SelectionStart = statusbox.TextLength;
statusbox.SelectionLength = 0;
statusbox.ScrollToCaret();
// Also write to console
Console.WriteLine(Update);
}
/// <summary>
/// Writes the status to the statusbox.
/// </summary>
/// <param name="Update">The update.</param>
public void WriteStatus(string Update)
{
WriteStatus(Update, normalcolor);
}
/// <summary>
/// Reads the type of the Title ID.
/// </summary>
/// <param name="ttlid">The TitleID.</param>
private void ReadIDType(string ttlid)
{
/* Wiibrew TitleID Info...
# 3 00000001: Essential system titles
# 4 00010000 and 00010004 : Disc-based games
# 5 00010001: Downloaded channels
* 5.1 000010001-Cxxx : Commodore 64 Games
* 5.2 000010001-Exxx : NeoGeo Games
* 5.3 000010001-Fxxx : NES Games
* 5.4 000010001-Hxxx : Channels
* 5.5 000010001-Jxxx : SNES Games
* 5.6 000010001-Nxxx : Nintendo 64 Games
* 5.7 000010001-Wxxx : WiiWare
# 6 00010002: System channels
# 7 00010004: Game channels and games that use them
# 8 00010005: Downloaded Game Content
# 9 00010008: "Hidden" channels
*/
if (ttlid.Substring(0, 8) == "00000001")
WriteStatus("ID Type: System Title. BE CAREFUL!", warningcolor);
else if ((ttlid.Substring(0, 8) == "00010000") || (ttlid.Substring(0, 8) == "00010004"))
WriteStatus("ID Type: Disc-Based Game. Unlikely NUS Content!");
else if (ttlid.Substring(0, 8) == "00010001")
WriteStatus("ID Type: Downloaded Channel. Possible NUS Content.");
else if (ttlid.Substring(0, 8) == "00010002")
WriteStatus("ID Type: System Channel. BE CAREFUL!", warningcolor);
else if (ttlid.Substring(0, 8) == "00010004")
WriteStatus("ID Type: Game Channel. Unlikely NUS Content!");
else if (ttlid.Substring(0, 8) == "00010005")
WriteStatus("ID Type: Downloaded Game Content. Unlikely NUS Content!");
else if (ttlid.Substring(0, 8) == "00010008")
WriteStatus("ID Type: 'Hidden' Channel. Unlikely NUS Content!");
else
WriteStatus("ID Type: Unknown. Unlikely NUS Content!");
}
private void DownloadBtn_Click(object sender, EventArgs e)
{
if (titleidbox.Text == String.Empty)
{
// Prevent mass deletion and fail
WriteStatus("Please enter a Title ID!", errorcolor);
return;
}
else if (!(packbox.Checked) && !(decryptbox.Checked) && !(keepenccontents.Checked))
{
// Prevent pointless running by n00bs.
WriteStatus("Running with your current settings will produce no output!", errorcolor);
WriteStatus(" - To amend this, look below and check an output type.", errorcolor);
return;
}/*
else if (!(script_mode))
{
try
{
if (!statusbox.Lines[0].StartsWith(" ---"))
SetTextThreadSafe(statusbox, " --- " + titleidbox.Text + " ---");
}
catch // No lines present...
{
SetTextThreadSafe(statusbox, " --- " + titleidbox.Text + " ---");
}
}
else
WriteStatus(" --- " + titleidbox.Text + " ---");*/
// Running Downloads in background so no form freezing
NUSDownloader.RunWorkerAsync();
}
private void SetTextThreadSafe(System.Windows.Forms.Control what, string setto)
{
SetPropertyThreadSafe(what, "Name", setto);
}
private void SetPropertyThreadSafe(System.ComponentModel.Component what, object setto, string property)
{
if (this.InvokeRequired)
{
SetPropertyThreadSafeCallback sptscb = new SetPropertyThreadSafeCallback(SetPropertyThreadSafe);
try
{
this.Invoke(sptscb, new object[] { what, setto, property });
}
catch (Exception)
{
// FFFFF!
}
return;
}
what.GetType().GetProperty(property).SetValue(what, setto, null);
//what.Text = setto;
}
private void NUSDownloader_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
Control.CheckForIllegalCrossThreadCalls = false; // this function would need major rewriting to get rid of this...
WriteStatus("Starting NUS Download. Please be patient!", infocolor);
SetEnableforDownload(false);
downloadstartbtn.Text = "Starting NUS Download!";
// WebClient configuration
WebClient nusWC = new WebClient();
nusWC = ConfigureWithProxy(nusWC);
// Create\Configure NusClient
libWiiSharp.NusClient nusClient = new libWiiSharp.NusClient();
nusClient.ConfigureNusClient(nusWC);
nusClient.UseLocalFiles = localuse.Checked;
nusClient.ContinueWithoutTicket = true;
// Server
if (serverLbl.Text == "Wii")
nusClient.SetToWiiServer();
else if (serverLbl.Text == "DSi")
nusClient.SetToDSiServer();
// Events
nusClient.Debug += new EventHandler<libWiiSharp.MessageEventArgs>(nusClient_Debug);
nusClient.Progress += new EventHandler<ProgressChangedEventArgs>(nusClient_Progress);
libWiiSharp.StoreType[] storeTypes = new libWiiSharp.StoreType[3];
if (packbox.Checked) storeTypes[0] = libWiiSharp.StoreType.WAD; else storeTypes[0] = libWiiSharp.StoreType.Empty;
if (decryptbox.Checked) storeTypes[1] = libWiiSharp.StoreType.DecryptedContent; else storeTypes[1] = libWiiSharp.StoreType.Empty;
if (keepenccontents.Checked) storeTypes[2] = libWiiSharp.StoreType.EncryptedContent; else storeTypes[2] = libWiiSharp.StoreType.Empty;
string wadName;
if (String.IsNullOrEmpty(WAD_Saveas_Filename))
wadName = wadnamebox.Text;
else
wadName = WAD_Saveas_Filename;
try
{
nusClient.DownloadTitle(titleidbox.Text, titleversion.Text, Path.Combine(CURRENT_DIR, "titles"), wadName, storeTypes);
}
catch (Exception ex)
{
WriteStatus("Download failed: \"" + ex.Message + " ):\"", errorcolor);
}
if (iosPatchCheckbox.Checked == true) { // Apply patches then...
bool didpatch = false;
int noofpatches = 0;
string appendpatch = "";
// Okay, it's checked.
libWiiSharp.IosPatcher iosp = new libWiiSharp.IosPatcher();
libWiiSharp.WAD ioswad = new libWiiSharp.WAD();
wadName = wadName.Replace("[v]", nusClient.TitleVersion.ToString());
if (wadName.Contains(Path.DirectorySeparatorChar.ToString()) || wadName.Contains(Path.AltDirectorySeparatorChar.ToString()))
ioswad.LoadFile(wadName);
else
ioswad.LoadFile(Path.Combine(Path.Combine(Path.Combine(Path.Combine(CURRENT_DIR, "titles"), titleidbox.Text), nusClient.TitleVersion.ToString()), wadName));
try
{
iosp.LoadIOS(ref ioswad);
}
catch (Exception)
{
WriteStatus("NUS Download Finished.", infocolor);
return;
}
foreach (object checkItem in iosPatchesListBox.CheckedItems)
{
// ensure not 'indeterminate'
if (iosPatchesListBox.GetItemCheckState(iosPatchesListBox.Items.IndexOf(checkItem)).ToString() == "Checked") {
switch (checkItem.ToString()) {
case "Trucha bug":
noofpatches = iosp.PatchFakeSigning();
if (noofpatches > 0)
{
WriteStatus(" - Patched in fake-signing:", infocolor);
if (noofpatches > 1)
appendpatch = "es";
else
appendpatch = "";
WriteStatus(String.Format(" {0} patch{1} applied.", noofpatches, appendpatch));
didpatch = true;
}
else
WriteStatus(" - Could not patch fake-signing", errorcolor);
break;
case "ES_Identify":
noofpatches = iosp.PatchEsIdentify();
if (noofpatches > 0)
{
WriteStatus(" - Patched in ES_Identify:", infocolor);
if (noofpatches > 1)
appendpatch = "es";
else
appendpatch = "";
WriteStatus(String.Format(" {0} patch{1} applied.", noofpatches, appendpatch));
didpatch = true;
}
else
WriteStatus(" - Could not patch ES_Identify", errorcolor);
break;
case "NAND permissions":
noofpatches = iosp.PatchNandPermissions();
if (noofpatches > 0)
{
WriteStatus(" - Patched in NAND permissions:", infocolor);
if (noofpatches > 1)
appendpatch = "es";
else
appendpatch = "";
WriteStatus(String.Format(" {0} patch{1} applied.", noofpatches, appendpatch));
didpatch = true;
}
else
WriteStatus(" - Could not patch NAND permissions", errorcolor);
break;
}
}
else {
// WriteStatus(iosPatchesListBox.GetItemCheckState(iosPatchesListBox.Items.IndexOf(checkItem)).ToString());
}
}
if (didpatch)
{
wadName = wadName.Replace(".wad",".patched.wad");
try
{
if (wadName.Contains(Path.DirectorySeparatorChar.ToString()) || wadName.Contains(Path.AltDirectorySeparatorChar.ToString()))
ioswad.Save(wadName);
else
ioswad.Save(Path.Combine(Path.Combine(Path.Combine(Path.Combine(CURRENT_DIR, "titles"), titleidbox.Text), nusClient.TitleVersion.ToString()), wadName));
WriteStatus(String.Format("Patched WAD saved as: {0}", Path.GetFileName(wadName)), infocolor);
}
catch (Exception ex)
{
WriteStatus(String.Format("Couldn't save patched WAD: \"{0}\" :(",ex.Message), errorcolor);
}
}
}
WriteStatus("NUS Download Finished.");
}
void nusClient_Progress(object sender, ProgressChangedEventArgs e)
{
dlprogress.Value = e.ProgressPercentage;
}
void nusClient_Debug(object sender, libWiiSharp.MessageEventArgs e)
{
WriteStatus(e.Message);
}
private void NUSDownloader_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
WAD_Saveas_Filename = String.Empty;
SetEnableforDownload(true);
downloadstartbtn.Text = "Start NUS Download!";
dlprogress.Value = 0;
if (IsWin7())
dlprogress.ShowInTaskbar = false;
}
private void packbox_CheckedChanged(object sender, EventArgs e)
{
if (packbox.Checked == true)
{
wadnamebox.Enabled = true;
saveaswadbtn.Enabled = true;
// Change WAD name if applicable
UpdatePackedName();
}
else
{
wadnamebox.Enabled = false;
saveaswadbtn.Enabled = false;
wadnamebox.Text = String.Empty;
if (iosPatchCheckbox.Checked)
iosPatchCheckbox.Checked = false;
}
}
private void titleidbox_TextChanged(object sender, EventArgs e)
{
UpdatePackedName();
EnablePatchIOSBox();
}
private void titleversion_TextChanged(object sender, EventArgs e)
{
UpdatePackedName();
}
private void EnablePatchIOSBox()
{
iosPatchCheckbox.Enabled = TitleIsIOS(titleidbox.Text);
if (iosPatchCheckbox.Enabled == false)
iosPatchCheckbox.Checked = false;
}
private bool TitleIsIOS(string titleid)
{
if (titleid.Length != 16)
return false;
if ((titleid == "0000000100000001") || (titleid == "0000000100000002"))
return false;
if (titleid.Substring(0, 14) == "00000001000000")
return true;
return false;
}
/// <summary>
/// Displays the bytes.
/// </summary>
/// <param name="bytes">The bytes.</param>
/// <param name="spacer">What separates the bytes</param>
/// <returns></returns>
public string DisplayBytes(byte[] bytes, string spacer)
{
string output = "";
for (int i = 0; i < bytes.Length; ++i)
{
output += bytes[i].ToString("X2") + spacer;
}
return output;
}
private void DatabaseButton_Click(object sender, EventArgs e)
{
// Open Database button menu...
databaseStrip.Text = "Showing";
databaseStrip.Show(databaseButton, 2, (2+databaseButton.Height));
//if (!e.Equals(EventArgs.Empty))
{
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
timer.Interval = 50;
timer.Tick += new EventHandler(contextmenusTimer_Tick);
timer.Start();
}
}
void contextmenusTimer_Tick(object sender, EventArgs e)
{
if (SystemMenuList.Pressed || IOSMenuList.Pressed || VCMenuList.Pressed || WiiWareMenuList.Pressed
|| RegionCodesList.Pressed || scriptsLocalMenuEntry.Pressed || scriptsDatabaseToolStripMenuItem.Pressed
|| emulateUpdate.Pressed)
return;
if (databaseButton.ClientRectangle.Contains(databaseButton.PointToClient(MousePosition)) && ((System.Windows.Forms.Timer)sender).Interval != 50)
{
databaseStrip.Close();
scriptsStrip.Close();
extrasStrip.Close();
DatabaseButton_Click(sender, EventArgs.Empty);
((System.Windows.Forms.Timer)sender).Stop();
}
if (scriptsbutton.ClientRectangle.Contains(scriptsbutton.PointToClient(MousePosition)) && ((System.Windows.Forms.Timer)sender).Interval != 51)
{
databaseStrip.Close();
scriptsStrip.Close();
extrasStrip.Close();
scriptsbutton_Click(sender, EventArgs.Empty);
((System.Windows.Forms.Timer)sender).Stop();
}
if (Extrasbtn.ClientRectangle.Contains(Extrasbtn.PointToClient(MousePosition)) && ((System.Windows.Forms.Timer)sender).Interval != 52)
{
databaseStrip.Close();
scriptsStrip.Close();
extrasStrip.Close();
extrasMenuButton_Click(sender, EventArgs.Empty);
((System.Windows.Forms.Timer)sender).Stop();
}
//Debug.Write(((databaseStrip.Text == "Hidden").ToString() + (extrasStrip.Text == "Hidden").ToString() + (scriptsStrip.Text == "Hidden").ToString()));
if ((databaseStrip.Visible == false) && (extrasStrip.Visible == false) && (scriptsStrip.Visible == false))
((System.Windows.Forms.Timer)sender).Stop();
}
/// <summary>
/// Clears the database strip.
/// </summary>
private void ClearDatabaseStrip()
{
Control.CheckForIllegalCrossThreadCalls = false;
object[] thingstoclear = new object[] {
SystemMenuList, IOSMenuList, WiiWareMenuList, VCMenuList,
// Now Virtual Console
C64MenuList, NeoGeoMenuList, NESMenuList,
SNESMenuList, N64MenuList, TurboGrafx16MenuList,
TurboGrafxCDMenuList, MSXMenuList, SegaMSMenuList,
GenesisMenuList, VCArcadeMenuList,
// DSi Entries
dsiSystemToolStripMenu, dSiWareToolStripMenu
};
foreach (System.Windows.Forms.ToolStripMenuItem tsmiclear in thingstoclear)
{
if (tsmiclear.Name != "VCMenuList") // Don't clear the VC Menu...
tsmiclear.DropDownItems.Clear();
/*
if (tsmiclear.OwnerItem != VCMenuList) // and don't disable the VC menu subparts...
tsmiclear.Enabled = false;*/
}
}
/// <summary>
/// Fills the database strip with the local database.xml file.
/// </summary>
private void FillDatabaseStrip(BackgroundWorker worker)
{
// Something needs to be done to remove this i guess
//Control.CheckForIllegalCrossThreadCalls = false;
// Set fake items visible and real ones not. Only way to stop buggy enabled stuff.
SetPropertyThreadSafe(SystemMenuList, false, "Visible");
SetPropertyThreadSafe(IOSMenuList, false, "Visible");
SetPropertyThreadSafe(VCMenuList, false, "Visible");
SetPropertyThreadSafe(WiiWareMenuList, false, "Visible");
SetPropertyThreadSafe(systemFakeMenuItem, true, "Visible");
SetPropertyThreadSafe(iosFakeMenuItem, true, "Visible");
SetPropertyThreadSafe(vcFakeMenuItem, true, "Visible");
SetPropertyThreadSafe(wwFakeMenuItem, true, "Visible");
Database databaseObj = new Database();
databaseObj.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
ToolStripMenuItem[] systemItems = databaseObj.LoadSystemTitles();
for (int a = 0; a < systemItems.Length; a++)
{
systemItems[a].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
for (int b = 0; b < systemItems[a].DropDownItems.Count; b++)
{
ToolStripMenuItem syslowerentry = (ToolStripMenuItem)systemItems[a].DropDownItems[b];
if (syslowerentry.DropDownItems.Count > 0)
{
syslowerentry.DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
}
}
//AddToolStripItemToStrip(SystemMenuList, systemItems[a]);
//SystemMenuList.DropDownItems.Add(systemItems[a]);
}
Array.Sort(systemItems, delegate(ToolStripMenuItem tsmi1, ToolStripMenuItem tsmi2)
{
return tsmi1.Text
.Substring(18, tsmi1.Text.Length - 19).CompareTo(tsmi2.Text.Substring(18, tsmi2.Text.Length - 19));
});
AddToolStripItemToStrip(SystemMenuList, systemItems);
SetPropertyThreadSafe(systemFakeMenuItem, false, "Visible");
SetPropertyThreadSafe(SystemMenuList, true, "Visible");
Debug.WriteLine("Database: SysTitles added");
worker.ReportProgress(25);
ToolStripMenuItem[] iosItems = databaseObj.LoadIosTitles();
for (int a = 0; a < iosItems.Length; a++)
{
iosItems[a].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
//AddToolStripItemToStrip(IOSMenuList, iosItems[a]);
//IOSMenuList.DropDownItems.Add(iosItems[a]);
}
AddToolStripItemToStrip(IOSMenuList, iosItems);
SetPropertyThreadSafe(iosFakeMenuItem, false, "Visible");
SetPropertyThreadSafe(IOSMenuList, true, "Visible");
Debug.WriteLine("Database: IosTitles added");
worker.ReportProgress(50);
ToolStripMenuItem[][] vcItems = databaseObj.LoadVirtualConsoleTitles();
for (int a = 0; a < vcItems.Length; a++)
{
for (int b = 0; b < vcItems[a].Length; b++)
{
vcItems[a][b].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
for (int c = 0; c < vcItems[a][b].DropDownItems.Count; c++)
{
ToolStripMenuItem lowerentry = (ToolStripMenuItem)vcItems[a][b].DropDownItems[c];
lowerentry.DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
}
}
Array.Sort(vcItems[a], delegate(ToolStripMenuItem tsmi1, ToolStripMenuItem tsmi2)
{
return tsmi1.Text
.Substring(18, tsmi1.Text.Length - 19).CompareTo(tsmi2.Text.Substring(18, tsmi2.Text.Length - 19));
});
AddToolStripItemToStrip((ToolStripMenuItem)VCMenuList.DropDownItems[a], vcItems[a]);
}
SetPropertyThreadSafe(vcFakeMenuItem, false, "Visible");
SetPropertyThreadSafe(VCMenuList, true, "Visible");
Debug.WriteLine("Database: VCTitles added");
worker.ReportProgress(75);
ToolStripMenuItem[] wwItems = databaseObj.LoadWiiWareTitles();
for (int a = 0; a < wwItems.Length; a++)
{
wwItems[a].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
for (int b = 0; b < wwItems[a].DropDownItems.Count; b++)
{
ToolStripMenuItem lowerentry = (ToolStripMenuItem)wwItems[a].DropDownItems[b];
if (lowerentry.DropDownItems.Count > 0)
{
lowerentry.DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
}
}
//AddToolStripItemToStrip(WiiWareMenuList, wwItems[a]);
//WiiWareMenuList.DropDownItems.Add(wwItems[a]);
}
Array.Sort(wwItems, delegate(ToolStripMenuItem tsmi1, ToolStripMenuItem tsmi2)
{
return tsmi1.Text
.Substring(18, tsmi1.Text.Length - 19).CompareTo(tsmi2.Text.Substring(18, tsmi2.Text.Length - 19));
});
AddToolStripItemToStrip(WiiWareMenuList, wwItems);
SetPropertyThreadSafe(wwFakeMenuItem, false, "Visible");
SetPropertyThreadSafe(WiiWareMenuList, true, "Visible");
Debug.WriteLine("Database: WiiWareTitles added");
worker.ReportProgress(100);
}
/// <summary>
/// Fills the database strip with the local database.xml file.
/// </summary>
private void FillDSiDatabaseStrip(BackgroundWorker worker)
{
// Set fake items visible and real ones not. Only way to stop buggy enabled stuff.
SetPropertyThreadSafe(dsiSystemToolStripMenu, false, "Visible");
SetPropertyThreadSafe(dSiWareToolStripMenu, false, "Visible");
SetPropertyThreadSafe(dsiFakeSystemToolStripMenu, true, "Visible");
SetPropertyThreadSafe(dSiWareFakeToolStripMenu, true, "Visible");
Database databaseObj = new Database();
databaseObj.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "dsidatabase.xml"));
ToolStripMenuItem[] systemItems = databaseObj.LoadDSiSystemTitles();
for (int a = 0; a < systemItems.Length; a++)
{
systemItems[a].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
for (int b = 0; b < systemItems[a].DropDownItems.Count; b++)
{
ToolStripMenuItem syslowerentry = (ToolStripMenuItem)systemItems[a].DropDownItems[b];
if (syslowerentry.DropDownItems.Count > 0)
{
syslowerentry.DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
}
}
}
Array.Sort(systemItems, delegate(ToolStripMenuItem tsmi1, ToolStripMenuItem tsmi2)
{
return tsmi1.Text
.Substring(18, tsmi1.Text.Length - 19).CompareTo(tsmi2.Text.Substring(18, tsmi2.Text.Length - 19));
});
AddToolStripItemToStrip(dsiSystemToolStripMenu, systemItems);
SetPropertyThreadSafe(dsiFakeSystemToolStripMenu, false, "Visible");
SetPropertyThreadSafe(dsiSystemToolStripMenu, true, "Visible");
Debug.WriteLine("Database: DSiSysTitles added");
worker.ReportProgress(50);
ToolStripMenuItem[] dsiWareItems = databaseObj.LoadDsiWareTitles();
for (int a = 0; a < dsiWareItems.Length; a++)
{
dsiWareItems[a].DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
for (int b = 0; b < dsiWareItems[a].DropDownItems.Count; b++)
{
ToolStripMenuItem lowerentry = (ToolStripMenuItem)dsiWareItems[a].DropDownItems[b];
if (lowerentry.DropDownItems.Count > 0)
{
lowerentry.DropDownItemClicked += new ToolStripItemClickedEventHandler(DatabaseItem_Clicked);
}
}
}
Array.Sort(dsiWareItems, delegate(ToolStripMenuItem tsmi1, ToolStripMenuItem tsmi2)
{
return tsmi1.Text
.Substring(18, tsmi1.Text.Length - 19).CompareTo(tsmi2.Text.Substring(18, tsmi2.Text.Length - 19));
});
AddToolStripItemToStrip(dSiWareToolStripMenu, dsiWareItems);
SetPropertyThreadSafe(dSiWareFakeToolStripMenu, false, "Visible");
SetPropertyThreadSafe(dSiWareToolStripMenu, true, "Visible");
Debug.WriteLine("Database: DSiWareTitles added");
worker.ReportProgress(100);
}
/// <summary>
/// Adds the tool strip item to strip.
/// </summary>
/// <param name="type">The type.</param>
/// <param name="additionitem">The additionitem.</param>
/// <param name="attributes">The attributes.</param>
// private void AddToolStripItemToStrip(ToolStripMenuItem menulist, ToolStripMenuItem additionitem)
private void AddToolStripItemToStrip(ToolStripMenuItem menulist, ToolStripMenuItem[] additionitems)
{
//Control.CheckForIllegalCrossThreadCalls = false;
//Debug.WriteLine(String.Format("Adding item"));
if (this.InvokeRequired)
{
//Debug.WriteLine("InvokeRequired...");
AddToolStripItemToStripCallback atsitsc = new AddToolStripItemToStripCallback(AddToolStripItemToStrip);
this.Invoke(atsitsc, new object[] { menulist, additionitems });
return;
}
menulist.DropDownItems.AddRange(additionitems);
/*
// Do not sort IOS menu (alphabetization fail)
if (menulist.Text == IOSMenuList.Text)
{
menulist.DropDownItems.Add(additionitem);
return;
}
if (menulist.DropDownItems.Count < 1)
{
menulist.DropDownItems.Add(additionitem);
return;
}
// Sorting of items by name 18 chars in...
//try
//{
for (int a = 0; a < menulist.DropDownItems.Count; a++)
{
if (menulist.DropDownItems[a].Text
.Substring(18, menulist.DropDownItems[a].Text.Length - 19)
.CompareTo(additionitem.Text.Substring(18, additionitem.Text.Length - 19)) == 1)
{
menulist.DropDownItems.Insert((a), additionitem);
return;
}
}
//}
//catch (Exception)
//{
//Debug.WriteLine("Tryfail at : " + additionitem.Text);
//menulist.DropDownItems.Add(additionitem);
//}*/
//menulist.DropDownItems.Add(additionitem);
}
/// <summary>
/// Mods WAD names to be official.
/// </summary>
/// <param name="titlename">The titlename.</param>
public string OfficialWADNaming(string titlename)
{
if (titlename == "MIOS")
titlename = "RVL-mios-[v].wad";
else if (titlename.Contains("IOS"))
titlename = titlename + "-64-[v].wad";
else if (titlename.Contains("System Menu"))
titlename = "RVL-WiiSystemmenu-[v].wad";
else if (titlename.Contains("System Menu"))
titlename = "RVL-WiiSystemmenu-[v].wad";
else if (titlename == "BC")
titlename = "RVL-bc-[v].wad";
else if (titlename.Contains("Mii Channel"))
titlename = "RVL-NigaoeNR-[v].wad";
else if (titlename.Contains("Shopping Channel"))
titlename = "RVL-Shopping-[v].wad";
else if (titlename.Contains("Weather Channel"))
titlename = "RVL-Weather-[v].wad";
else
titlename = titlename + "-NUS-[v].wad";
if (wadnamebox.InvokeRequired)
{
OfficialWADNamingCallback ownc = new OfficialWADNamingCallback(OfficialWADNaming);
wadnamebox.Invoke(ownc, new object[] { titlename });
return titlename;
}
wadnamebox.Text = titlename;
if (titleversion.Text != "")
wadnamebox.Text = wadnamebox.Text.Replace("[v]", "v" + titleversion.Text);
return titlename;
}
/*
private void upditem_itemclicked(object sender, ToolStripItemClickedEventArgs e)
{
WriteStatus("Preparing to run download script...");
//script_mode = true;
SetTextThreadSafe(statusbox, "");
//WriteStatus("Starting script download. Please be patient!");
string[] NUS_Entries = e.ClickedItem.AccessibleDescription.Split('\n');
// TODO: Find somewhere better to put this. AND FAST!
for (int i = 0; i < NUS_Entries.Length; i++)
{
WriteStatus(NUS_Entries[i]);
}
script_filename = "\000";
nusentries = NUS_Entries;
BackgroundWorker scripter = new BackgroundWorker();
scripter.DoWork += new DoWorkEventHandler(RunScript);
scripter.RunWorkerAsync();
}*/
public void DatabaseItem_Clicked(object sender, ToolStripItemClickedEventArgs e)
{
Regex IdandTitle = new Regex(@"[0-9A-Z]*\s-\s.*");
Regex RegionEntry = new Regex(@"[0-9A-Z][0-9A-Z] \(.*\)");
Regex VersionEntry = new Regex(@"v[0-9]*.*");
object[] wiiMenuLists = new object[] {
SystemMenuList, IOSMenuList, WiiWareMenuList, VCMenuList
};
object[] dsiMenuLists = new object[] {
dsiSystemToolStripMenu, dSiWareToolStripMenu
};
// This item is a Titleid - Descname entry
if (IdandTitle.IsMatch(e.ClickedItem.Text))
{
string text = e.ClickedItem.Text.Replace(" - ", "~");
string[] values = text.Split('~');
titleidbox.Text = values[0];
statusbox.Text = String.Format(" --- {0} ---", values[1]);
titleversion.Text = String.Empty;
if ((e.ClickedItem.Image) == (Database.orange) || (e.ClickedItem.Image) == (Database.redorange))
{
WriteStatus("Note: This title has no ticket and cannot be packed/decrypted!");
packbox.Checked = false;
decryptbox.Checked = false;
}
// Check for danger item
if ((e.ClickedItem.Image) == (Database.redgreen) || (e.ClickedItem.Image) == (Database.redorange))
WriteStatus("\n" + e.ClickedItem.ToolTipText);
// Set server selection
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in wiiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.Name)
serverLbl.Text = "Wii";
}
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in dsiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.Name)
serverLbl.Text = "DSi";
}
}
// Region ClickedItem
if (RegionEntry.IsMatch(e.ClickedItem.Text))
{
string text = e.ClickedItem.OwnerItem.Text.Replace(" - ", "~");
string[] values = text.Split('~');
titleidbox.Text = values[0];
statusbox.Text = String.Format(" --- {0} ---", values[1]);
titleversion.Text = String.Empty;
// Put 'XX' into title ID
titleidbox.Text = titleidbox.Text.Replace("XX", e.ClickedItem.Text.Substring(0, 2));
if ((e.ClickedItem.OwnerItem.Image) == (Database.orange) || (e.ClickedItem.OwnerItem.Image) == (Database.redorange))
{
WriteStatus("Note: This title has no ticket and cannot be packed/decrypted!");
packbox.Checked = false;
decryptbox.Checked = false;
}
// Check for danger item
if ((e.ClickedItem.OwnerItem.Image) == (Database.redgreen) || (e.ClickedItem.OwnerItem.Image) == (Database.redorange))
WriteStatus("\n" + e.ClickedItem.OwnerItem.ToolTipText);
// Set server selection
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in wiiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "Wii";
}
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in dsiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "DSi";
}
}
// Version ClickedItem
if (VersionEntry.IsMatch(e.ClickedItem.Text) || e.ClickedItem.Text == "Latest Version")
{
if (RegionEntry.IsMatch(e.ClickedItem.OwnerItem.Text))
{
string text = e.ClickedItem.OwnerItem.OwnerItem.Text.Replace(" - ", "~");
string[] values = text.Split('~');
titleidbox.Text = values[0];
statusbox.Text = String.Format(" --- {0} ---", values[1]);
// Put 'XX' into title ID
titleidbox.Text = titleidbox.Text.Replace("XX", e.ClickedItem.OwnerItem.Text.Substring(0, 2));
}
else
{
string text = e.ClickedItem.OwnerItem.Text.Replace(" - ", "~");
string[] values = text.Split('~');
titleidbox.Text = values[0];
statusbox.Text = String.Format(" --- {0} ---", values[1]);
}
// Set version
if (e.ClickedItem.Text == "Latest Version")
titleversion.Text = String.Empty;
else
{
string[] version = e.ClickedItem.Text.Replace("v", "").Split(' ');
titleversion.Text = version[0];
}
if (RegionEntry.IsMatch(e.ClickedItem.OwnerItem.Text))
{
if ((e.ClickedItem.OwnerItem.OwnerItem.Image) == (Database.orange) || (e.ClickedItem.OwnerItem.OwnerItem.Image) == (Database.redorange))
{
WriteStatus("Note: This title has no ticket and cannot be packed/decrypted!");
packbox.Checked = false;
decryptbox.Checked = false;
}
// Check for danger item
if ((e.ClickedItem.OwnerItem.OwnerItem.Image) == (Database.redgreen) || (e.ClickedItem.OwnerItem.OwnerItem.Image) == (Database.redorange))
WriteStatus("\n" + e.ClickedItem.OwnerItem.OwnerItem.ToolTipText);
// Set server selection
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in wiiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "Wii";
}
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in dsiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "DSi";
}
}
else
{
if ((e.ClickedItem.OwnerItem.Image) == (Database.orange) || (e.ClickedItem.OwnerItem.Image) == (Database.redorange))
{
WriteStatus("Note: This title has no ticket and cannot be packed/decrypted!");
packbox.Checked = false;
decryptbox.Checked = false;
}
// Check for danger item
if ((e.ClickedItem.OwnerItem.Image) == (Database.redgreen) || (e.ClickedItem.OwnerItem.Image) == (Database.redorange))
WriteStatus("\n" + e.ClickedItem.OwnerItem.ToolTipText);
// Set server selection
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in wiiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "Wii";
}
foreach (System.Windows.Forms.ToolStripMenuItem tsmi in dsiMenuLists)
{
if (tsmi.Name == e.ClickedItem.OwnerItem.OwnerItem.Name)
serverLbl.Text = "DSi";
}
}
}
}
/// <summary>
/// Gathers the region based on index
/// </summary>
/// <param name="index">The index.</param>
/// <param name="databasexml">XmlDocument with database inside</param>
/// <returns>Region desc</returns>
private string RegionFromIndex(int index, XmlDocument databasexml)
{
/* Typical Region XML
* <REGIONS>
<region index="0">41 (All/System)</region>
<region index=1>44 (German)</region>
<region index=2>45 (USA/NTSC)</region>
<region index=3>46 (French)</region>
<region index=4>4A (Japan)</region>
<region index=5>4B (Korea)</region>
<region index=6>4C (Japanese Import to Europe/Australia/PAL)</region>
<region index=7>4D (American Import to Europe/Australia/PAL)</region>
<region index=8>4E (Japanese Import to USA/NTSC)</region>
<region index=9>50 (Europe/PAL)</region>
<region index=10>51 (Korea w/ Japanese Language)</region>
<region index=11>54 (Korea w/ English Language)</region>
<region index=12>58 (Some Homebrew)</region>
</REGIONS>
*/
XmlNodeList XMLRegionList = databasexml.GetElementsByTagName("REGIONS");
XmlNodeList ChildrenOfTheNode = XMLRegionList[0].ChildNodes;
// For each child node (region node)
for (int z = 0; z < ChildrenOfTheNode.Count; z++)
{
// Gather attributes (index='x')
XmlAttributeCollection XMLAttributes = ChildrenOfTheNode[z].Attributes;
// Return value of node if index matches
if (Convert.ToInt32(XMLAttributes[0].Value) == index)
return ChildrenOfTheNode[z].InnerText;
}
return "XX (Error)";
}
/// <summary>
/// Loads the region codes.
/// </summary>
private void LoadRegionCodes()
{
// TODO: make this check InvokeRequired...
if (this.InvokeRequired)
{
BootChecksCallback bcc = new BootChecksCallback(LoadRegionCodes);
this.Invoke(bcc);
return;
}
wiiRegionCodesMenu.DropDownItems.Clear();
dsiRegionCodesMenu.DropDownItems.Clear();
Database databaseObj = new Database();
databaseObj.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
ToolStripMenuItem[] regionItems = databaseObj.LoadRegionCodes();
// For each child node (region node)
for (int z = 0; z < regionItems.Length; z++)
{
wiiRegionCodesMenu.DropDownItems.Add(regionItems[z].Text);
}
Database dsiDatabaseObj = new Database();
dsiDatabaseObj.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "dsidatabase.xml"));
ToolStripMenuItem[] dsiRegionItems = dsiDatabaseObj.LoadRegionCodes();
// For each child node (region node)
for (int z = 0; z < dsiRegionItems.Length; z++)
{
dsiRegionCodesMenu.DropDownItems.Add(dsiRegionItems[z].Text);
}
}
/// <summary>
/// Removes the illegal characters.
/// </summary>
/// <param name="databasestr">removes the illegal chars</param>
/// <returns>legal string</returns>
private static string RemoveIllegalCharacters(string databasestr)
{
// Database strings must contain filename-legal characters.
foreach (char illegalchar in System.IO.Path.GetInvalidFileNameChars())
{
if (databasestr.Contains(illegalchar.ToString()))
databasestr = databasestr.Replace(illegalchar, '-');
}
return databasestr;
}
private void ClearStatusbox(object sender, EventArgs e)
{
// Clear Statusbox.text
statusbox.Text = "";
}
/// <summary>
/// Makes everything disabled/enabled.
/// </summary>
/// <param name="enabled">if set to <c>true</c> [enabled].</param>
private void SetEnableforDownload(bool enabled)
{
if (this.InvokeRequired)
{
SetEnableForDownloadCallback sefdcb = new SetEnableForDownloadCallback(SetEnableforDownload);
this.Invoke(sefdcb, new object[] { enabled });
return;
}
// Disable things the user should not mess with during download...
downloadstartbtn.Enabled = enabled;
titleidbox.Enabled = enabled;
titleversion.Enabled = enabled;
Extrasbtn.Enabled = enabled;
databaseButton.Enabled = enabled;
packbox.Enabled = enabled;
localuse.Enabled = enabled;
saveaswadbtn.Enabled = enabled;
decryptbox.Enabled = enabled;
keepenccontents.Enabled = enabled;
scriptsbutton.Enabled = enabled;
serverLbl.Enabled = enabled;
iosPatchCheckbox.Enabled = enabled;
}
/// <summary>
/// Makes tooltips disappear in the database, as many contain danger tag info.
/// </summary>
/// <param name="enabled">if set to <c>true</c> [enabled].</param>
private void ShowInnerToolTips(bool enabled)
{
// Force tooltips to GTFO in sub menus...
foreach (ToolStripItem item in databaseStrip.Items)
{
try
{
ToolStripMenuItem menuitem = (ToolStripMenuItem) item;
menuitem.DropDown.ShowItemToolTips = false;
}
catch (Exception)
{
// Do nothing, some objects will not cast.
}
}
foreach (ToolStripItem item in scriptsStrip.Items)
{
try
{
ToolStripMenuItem menuitem = (ToolStripMenuItem)item;
menuitem.DropDown.ShowItemToolTips = false;
}
catch (Exception)
{
// Do nothing, some objects will not cast.
}
}
}
/// <summary>
/// Updates the name of the packed WAD in the textbox.
/// </summary>
private void UpdatePackedName()
{
// Change WAD name if applicable
string title_name = null;
if ((titleidbox.Enabled == true) && (packbox.Checked == true))
{
if (titleversion.Text != "")
{
wadnamebox.Text = titleidbox.Text + "-NUS-v" + titleversion.Text + ".wad";
}
else
{
wadnamebox.Text = titleidbox.Text + "-NUS-[v]" + titleversion.Text + ".wad";
}
if ((File.Exists("database.xml") == true) && (titleidbox.Text.Length == 16))
title_name = NameFromDatabase(titleidbox.Text);
if (title_name != null)
{
wadnamebox.Text = wadnamebox.Text.Replace(titleidbox.Text, title_name);
OfficialWADNaming(title_name);
}
}
wadnamebox.Text = RemoveIllegalCharacters(wadnamebox.Text);
}
/// <summary>
/// Determines whether OS is win7.
/// </summary>
/// <returns>
/// <c>true</c> if OS = win7; otherwise, <c>false</c>.
/// </returns>
private static bool IsWin7()
{
return (Environment.OSVersion.VersionString.Contains("6.1") == true);
}
private byte[] NewIntegertoByteArray(int theInt, int arrayLen)
{
byte[] resultArray = new byte[arrayLen];
for (int i = arrayLen - 1; i >= 0; i--)
{
resultArray[i] = (byte) ((theInt >> (8*i)) & 0xFF);
}
Array.Reverse(resultArray);
// Fix duplication, rewrite extra to 0x00;
if (arrayLen > 4)
{
for (int i = 0; i < (arrayLen - 4); i++)
{
resultArray[i] = 0x00;
}
}
return resultArray;
}
private WebClient ConfigureWithProxy(WebClient client)
{
// Proxy
if (!(String.IsNullOrEmpty(proxy_url)))
{
WebProxy customproxy = new WebProxy();
customproxy.Address = new Uri(proxy_url);
if (String.IsNullOrEmpty(proxy_usr))
customproxy.UseDefaultCredentials = true;
else
{
NetworkCredential cred = new NetworkCredential();
cred.UserName = proxy_usr;
if (!(String.IsNullOrEmpty(proxy_pwd)))
cred.Password = proxy_pwd;
customproxy.Credentials = cred;
}
client.Proxy = customproxy;
WriteStatus(" - Custom proxy settings applied!");
}
else
{
try
{
client.Proxy = WebRequest.GetSystemWebProxy();
client.UseDefaultCredentials = true;
}
catch (NotImplementedException)
{
// Linux support
WriteStatus("This operating system does not support automatic system proxy usage. Operating without a proxy...");
}
}
return client;
}
/// <summary>
/// Retrieves the new database file.
/// </summary>
/// <returns>Database as a String</returns>
private void RetrieveNewDatabase(object sender, DoWorkEventArgs e)
{
// Retrieve Wiibrew/DSiBrew database page source code
WebClient databasedl = new WebClient();
// Proxy
//databasedl = ConfigureWithProxy(databasedl);
string databaseSource =
databasedl.DownloadString(e.Argument.ToString() + "?cachesmash=" +
System.DateTime.Now.ToString());
// Strip out HTML
databaseSource = Regex.Replace(databaseSource, @"<(.|\n)*?>", "");
// Shrink to fix only the database
string startofdatabase = "<database v";
string endofdatabase = "</database>";
databaseSource = databaseSource.Substring(databaseSource.IndexOf(startofdatabase),
databaseSource.Length - databaseSource.IndexOf(startofdatabase));
databaseSource = databaseSource.Substring(0, databaseSource.IndexOf(endofdatabase) + endofdatabase.Length);
// Fix ", <, >, and spaces
databaseSource = databaseSource.Replace("<", "<");
databaseSource = databaseSource.Replace(">", ">");
databaseSource = databaseSource.Replace(""", '"'.ToString());
databaseSource = databaseSource.Replace(" ", " "); // Shouldn't occur, but they happen...
// Return parsed xml database...
e.Result = databaseSource;
}
private void RetrieveNewDatabase_Completed(object sender, RunWorkerCompletedEventArgs e)
{
string database = e.Result.ToString();
string databaseFilename = "";
if (database.Contains("DSISYSTEM"))
{
databaseFilename = "dsidatabase.xml";
}
else if (database.Contains("0000000100000002"))
{
databaseFilename = "database.xml";
}
try
{
Database db = new Database();
db.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, databaseFilename));
string currentversion = db.GetDatabaseVersion();
string onlineversion = Database.GetDatabaseVersion(database);
WriteStatus(String.Format(" - Database successfully parsed! ({0})", databaseFilename));
WriteStatus(" - Current Database Version: " + currentversion);
WriteStatus(" - Online Database Version: " + onlineversion);
if (currentversion == onlineversion)
{
WriteStatus(" - You have the latest database version!");
return;
}
}
catch (FileNotFoundException)
{
WriteStatus(" - Database does not yet exist.");
WriteStatus(" - Online Database Version: " + Database.GetDatabaseVersion(database));
}
bool isCreation = false;
if (File.Exists(databaseFilename))
{
WriteStatus(" - Overwriting your current database...");
WriteStatus(String.Format(" - The old database will become 'old{0}' in case the new one is faulty.", databaseFilename));
string olddatabase = File.ReadAllText(databaseFilename);
File.WriteAllText("old" + databaseFilename, olddatabase);
File.Delete(databaseFilename);
File.WriteAllText(databaseFilename, database);
}
else
{
WriteStatus(String.Format(" - {0} has been created.", databaseFilename));
File.WriteAllText(databaseFilename, database);
isCreation = true;
}
// Load it up...
this.databaseWorker.RunWorkerAsync();
if (isCreation)
{
WriteStatus("Database successfully created!");
databaseButton.Visible = true;
//databaseButton.Enabled = false;
updateDatabaseToolStripMenuItem.Text = "Download Database";
}
else
{
WriteStatus("Database successfully updated!");
}
}
private void updateDatabaseToolStripMenuItem_Click(object sender, EventArgs e)
{
statusbox.Text = "";
WriteStatus("Updating your databases from Wiibrew/DSibrew");
string[] wiibrewValues = new string[] { "http://www.wiibrew.org/wiki/NUS_Downloader/database", "http://www.dsibrew.org/wiki/NUS_Downloader/database" };
BackgroundWorker dbFetcher = new BackgroundWorker();
dbFetcher.DoWork += new DoWorkEventHandler(RetrieveNewDatabase);
dbFetcher.RunWorkerCompleted += new RunWorkerCompletedEventHandler(RetrieveNewDatabase_Completed);
dbFetcher.RunWorkerAsync(wiibrewValues[0]);
BackgroundWorker dbDsiFetcher = new BackgroundWorker();
dbDsiFetcher.DoWork += new DoWorkEventHandler(RetrieveNewDatabase);
dbDsiFetcher.RunWorkerCompleted += new RunWorkerCompletedEventHandler(RetrieveNewDatabase_Completed);
dbDsiFetcher.RunWorkerAsync(wiibrewValues[1]);
}
private void loadInfoFromTMDToolStripMenuItem_Click(object sender, EventArgs e)
{
// Extras menu -> Load TMD...
LoadTitleFromTMD();
}
/// <summary>
/// Sends the SOAP request to NUS.
/// </summary>
/// <param name="soap_xml">The Request</param>
/// <returns></returns>
public string SendSOAPRequest(string soap_xml)
{
System.Net.HttpWebRequest req =
(System.Net.HttpWebRequest)
System.Net.HttpWebRequest.Create("http://nus.shop.wii.com:80/nus/services/NetUpdateSOAP");
req.Method = "POST";
req.UserAgent = "wii libnup/1.0";
req.Headers.Add("SOAPAction", '"' + "urn:nus.wsapi.broadon.com/" + '"');
// Proxy
if (!(String.IsNullOrEmpty(proxy_url)))
{
WebProxy customproxy = new WebProxy();
customproxy.Address = new Uri(proxy_url);
if (String.IsNullOrEmpty(proxy_usr))
customproxy.UseDefaultCredentials = true;
else
{
NetworkCredential cred = new NetworkCredential();
cred.UserName = proxy_usr;
if (!(String.IsNullOrEmpty(proxy_pwd)))
cred.Password = proxy_pwd;
customproxy.Credentials = cred;
}
req.Proxy = customproxy;
WriteStatus(" - Custom proxy settings applied!");
}
else
{
req.Proxy = WebRequest.GetSystemWebProxy();
req.UseDefaultCredentials = true;
}
Stream writeStream = req.GetRequestStream();
UTF8Encoding encoding = new UTF8Encoding();
byte[] bytes = encoding.GetBytes(soap_xml);
req.ContentType = "text/xml; charset=utf-8";
//req.ContentLength = bytes.Length;
writeStream.Write(bytes, 0, bytes.Length);
writeStream.Close();
Application.DoEvents();
try
{
string result;
System.Net.HttpWebResponse resp = (System.Net.HttpWebResponse) req.GetResponse();
using (Stream responseStream = resp.GetResponseStream())
{
using (StreamReader readStream = new StreamReader(responseStream, Encoding.UTF8))
{
result = readStream.ReadToEnd();
}
}
req.Abort();
Application.DoEvents();
return result;
}
catch (Exception ex)
{
req.Abort();
return ex.Message.ToString();
}
}
private void emulateUpdate_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
// Begin Wii System Update
statusbox.Text = "";
WriteStatus("Starting Wii System Update...");
scriptsStrip.Close();
string deviceID = "4362227770";
string messageID = "13198105123219138";
string attr = "2";
string RegionID = e.ClickedItem.Text.Substring(0, 3);
if (RegionID == "JAP") // Japan fix, only region not w/ 1st 3 letters same as ID.
RegionID = "JPN";
string CountryCode = RegionID.Substring(0, 2);
/* [14:26] <Galaxy|> RegionID: USA, Country: US;
RegionID: JPN, Country: JP;
RegionID: EUR, Country: EU;
RegionID: KOR, Country: KO; */
string soap_req = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"" +
" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"" +
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n" +
"<soapenv:Body>\n<GetSystemUpdateRequest xmlns=\"urn:nus.wsapi.broadon.com\">\n" +
"<Version>1.0</Version>\n<MessageId>" + messageID + "</MessageId>\n<DeviceId>" + deviceID +
"</DeviceId>\n" +
"<RegionId>" + RegionID + "</RegionId>\n<CountryCode>" + CountryCode +
"</CountryCode>\n<TitleVersion>\n<TitleId>0000000100000001</TitleId>\n" +
"<Version>2</Version>\n</TitleVersion>\n<TitleVersion>\n<TitleId>0000000100000002</TitleId>\n" +
"<Version>33</Version>\n</TitleVersion>\n<TitleVersion>\n<TitleId>0000000100000009</TitleId>\n" +
"<Version>516</Version>\n</TitleVersion>\n<Attribute>" + attr +
"</Attribute>\n<AuditData></AuditData>\n" +
"</GetSystemUpdateRequest>\n</soapenv:Body>\n</soapenv:Envelope>";
WriteStatus(" - Sending SOAP Request to NUS...");
WriteStatus(" - Region: " + RegionID);
string update_xml = SendSOAPRequest(soap_req);
if (update_xml != null)
WriteStatus(" - Recieved Update Info!");
else
{
WriteStatus(" - Fail.");
return;
}
WriteStatus(" - Title information:");
string script_text = "";
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(update_xml);
XmlNodeList TitleList = xDoc.GetElementsByTagName("TitleVersion");
for (int a = 0; a < TitleList.Count; a++)
{
XmlNodeList TitleInfo = TitleList[a].ChildNodes;
string TitleID = "";
string Version = "";
for (int b = 0; b < TitleInfo.Count; b++)
{
switch (TitleInfo[b].Name)
{
case "TitleId":
TitleID = TitleInfo[b].InnerText;
break;
case "Version":
Version = TitleInfo[b].InnerText;
break;
default:
break;
}
}
WriteStatus(String.Format(" - {0} [v{1}]", TitleID, Version));
if ((NUSDFileExists("database.xml") == true) && ((!(String.IsNullOrEmpty(NameFromDatabase(TitleID))))))
//statusbox.Text += String.Format(" [{0}]", NameFromDatabase(TitleID));
WriteStatus(String.Format(" [{0}]", NameFromDatabase(TitleID)));
script_text += String.Format("{0} {1}\n", TitleID,
DisplayBytes(NewIntegertoByteArray(Convert.ToInt32(Version), 2), ""));
}
WriteStatus(" - Outputting results to NUS script...");
if (!(Directory.Exists(Path.Combine(CURRENT_DIR, "scripts"))))
{
Directory.CreateDirectory(Path.Combine(CURRENT_DIR, "scripts"));
WriteStatus(" - Created 'scripts\' directory.");
}
string time = RemoveIllegalCharacters(DateTime.Now.ToShortTimeString());
File.WriteAllText(
String.Format(Path.Combine(CURRENT_DIR, Path.Combine("scripts","{0}_Update_{1}_{2}_{3} at {4}.nus")), RegionID,
DateTime.Now.Month, DateTime.Now.Day, DateTime.Now.Year, time), script_text);
WriteStatus(" - Script written!");
scriptsLocalMenuEntry.Enabled = false;
this.scriptsWorker.RunWorkerAsync();
WriteStatus(" - Run this script if you feel like downloading the update!");
// TODO: run the script...
}
/// <summary>
/// Looks for a title's name by TitleID in Database.
/// </summary>
/// <param name="titleid">The titleid.</param>
/// <returns>Existing name; else null</returns>
private string NameFromDatabase(string titleid)
{
// DANGER: BAD h4x HERE!!
// Fix MIOS/BC naming
if (titleid == "0000000100000101")
return "MIOS";
else if (titleid == "0000000100000100")
return "BC";
XmlDocument xDoc = new XmlDocument();
xDoc.Load("database.xml");
// Variables
string[] XMLNodeTypes = new string[4] {"SYS", "IOS", "VC", "WW"};
// Loop through XMLNodeTypes
for (int i = 0; i < XMLNodeTypes.Length; i++) // FOR THE FOUR TYPES OF NODES
{
XmlNodeList XMLSpecificNodeTypeList = xDoc.GetElementsByTagName(XMLNodeTypes[i]);
for (int x = 0; x < XMLSpecificNodeTypeList.Count; x++) // FOR EACH ITEM IN THE LIST OF A NODE TYPE
{
bool found_it = false;
// Lol.
XmlNodeList ChildrenOfTheNode = XMLSpecificNodeTypeList[x].ChildNodes;
for (int z = 0; z < ChildrenOfTheNode.Count; z++) // FOR EACH CHILD NODE
{
switch (ChildrenOfTheNode[z].Name)
{
case "titleID":
if (ChildrenOfTheNode[z].InnerText == titleid)
found_it = true;
else if ((ChildrenOfTheNode[z].InnerText.Substring(0, 14) + "XX") ==
(titleid.Substring(0, 14) + "XX") &&
(titleid.Substring(0, 14) != "00000001000000"))
found_it = true;
else
found_it = false;
break;
default:
break;
}
}
if (found_it)
{
for (int z = 0; z < ChildrenOfTheNode.Count; z++) // FOR EACH CHILD NODE
{
switch (ChildrenOfTheNode[z].Name)
{
case "name":
return ChildrenOfTheNode[z].InnerText;
default:
break;
}
}
}
}
}
return null;
}
private void packbox_EnabledChanged(object sender, EventArgs e)
{
saveaswadbtn.Enabled = packbox.Enabled;
//deletecontentsbox.Enabled = packbox.Enabled;
}
private void SaveProxyBtn_Click(object sender, EventArgs e)
{
if ((String.IsNullOrEmpty(ProxyURL.Text)) && (String.IsNullOrEmpty(ProxyUser.Text)) &&
((File.Exists(Path.Combine(CURRENT_DIR, "proxy.txt")))))
{
File.Delete(Path.Combine(CURRENT_DIR, "proxy.txt"));
proxyBox.Visible = false;
proxy_usr = "";
proxy_url = "";
proxy_pwd = "";
WriteStatus("Proxy settings deleted!");
return;
}
else if ((String.IsNullOrEmpty(ProxyURL.Text)) && (String.IsNullOrEmpty(ProxyUser.Text)) &&
((!(File.Exists(Path.Combine(CURRENT_DIR, "proxy.txt"))))))
{
proxyBox.Visible = false;
WriteStatus("No proxy settings saved!");
return;
}
string proxy_file = "";
if (!(String.IsNullOrEmpty(ProxyURL.Text)))
{
proxy_file += ProxyURL.Text + "\n";
proxy_url = ProxyURL.Text;
}
if (!(String.IsNullOrEmpty(ProxyUser.Text)))
{
proxy_file += ProxyUser.Text;
proxy_usr = ProxyUser.Text;
}
if (!(String.IsNullOrEmpty(proxy_file)))
{
File.WriteAllText(Path.Combine(CURRENT_DIR, "proxy.txt"), proxy_file);
WriteStatus("Proxy settings saved!");
}
proxyBox.Visible = false;
SetAllEnabled(false);
ProxyVerifyBox.Visible = true;
ProxyVerifyBox.Enabled = true;
ProxyPwdBox.Enabled = true;
SaveProxyBtn.Enabled = true;
ProxyVerifyBox.Select();
}
private void proxySettingsToolStripMenuItem_Click(object sender, EventArgs e)
{
// Check for Proxy Settings file...
if (File.Exists(Path.Combine(CURRENT_DIR, "proxy.txt")) == true)
{
string[] proxy_file = File.ReadAllLines(Path.Combine(CURRENT_DIR, "proxy.txt"));
ProxyURL.Text = proxy_file[0];
if (proxy_file.Length > 1)
{
ProxyUser.Text = proxy_file[1];
}
}
proxyBox.Visible = true;
}
private void SaveProxyPwdButton_Click(object sender, EventArgs e)
{
proxy_pwd = ProxyPwdBox.Text;
ProxyVerifyBox.Visible = false;
SetAllEnabled(true);
}
private void ProxyPwdBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == Convert.ToChar(Keys.Enter))
SaveProxyPwdButton_Click("LOLWUT", EventArgs.Empty);
}
private void ProxyAssistBtn_Click(object sender, EventArgs e)
{
MessageBox.Show("If you are behind a proxy, set these settings to get through to NUS." +
" If you have an alternate port for accessing your proxy, add ':' followed by the port.");
}
private void loadNUSScriptToolStripMenuItem_Click(object sender, EventArgs e)
{
// Open a NUS script.
OpenFileDialog ofd = new OpenFileDialog();
ofd.Multiselect = false;
ofd.Filter = "NUS Scripts|*.nus|All Files|*.*";
if (Directory.Exists(Path.Combine(CURRENT_DIR, "scripts")))
ofd.InitialDirectory = Path.Combine(CURRENT_DIR, "scripts");
ofd.Title = "Load a NUS/Wiimpersonator script.";
if (ofd.ShowDialog() != DialogResult.Cancel)
{
string script_content = File.ReadAllText(ofd.FileName);
FileInfo script_file = new FileInfo(ofd.FileName);
script_content += String.Format(";{0}", script_file.Name.Replace("." + script_file.Extension, ""));
BackgroundWorker scripter = new BackgroundWorker();
scripter.DoWork += new DoWorkEventHandler(RunScriptBg);
scripter.RunWorkerAsync(script_content);
}
}
/// <summary>
/// Runs a NUS script (BG).
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="System.ComponentModel.DoWorkEventArgs"/> instance containing the event data.</param>
private void RunScriptBg(object sender, System.ComponentModel.DoWorkEventArgs e)
{
char ArgsSplitChar = ';';
string[] scriptArgs = e.Argument.ToString().Split(ArgsSplitChar);
if (scriptArgs.Length < 2)
RunScript(scriptArgs[0], "random");
else
{
RunScript(scriptArgs[0], RemoveIllegalCharacters(scriptArgs[1]));
}
/*
script_mode = true;
SetTextThreadSafe(statusbox, "");
WriteStatus("Starting script download. Please be patient!");
if (!File.Exists(Path.Combine(CURRENT_DIR, "output_" + Path.GetFileNameWithoutExtension(script_filename))))
Directory.CreateDirectory(Path.Combine(CURRENT_DIR, "output_" + Path.GetFileNameWithoutExtension(script_filename)));
string[] NUS_Entries;
if (script_filename != "\000")
{
NUS_Entries = File.ReadAllLines(script_filename);
}
else
{
NUS_Entries = nusentries;
}
WriteStatus(String.Format(" - Script loaded ({0} Titles)", NUS_Entries.Length));
for (int a = 0; a < NUS_Entries.Length; a++)
{
// Download the title
WriteStatus(String.Format("===== Running Download ({0}/{1}) =====", a + 1, NUS_Entries.Length));
string[] title_info = NUS_Entries[a].Split(' ');
// don't let the delete issue reappear...
if (string.IsNullOrEmpty(title_info[0]))
break;
// WebClient configuration
WebClient nusWC = new WebClient();
nusWC = ConfigureWithProxy(nusWC);
nusWC.Headers.Add("User-Agent", "wii libnup/1.0"); // Set UserAgent to Wii value
// Create\Configure NusClient
libWiiSharp.NusClient nusClient = new libWiiSharp.NusClient();
nusClient.ConfigureNusClient(nusWC);
nusClient.UseLocalFiles = localuse.Checked;
nusClient.ContinueWithoutTicket = true;
nusClient.Debug += new EventHandler<libWiiSharp.MessageEventArgs>(nusClient_Debug);
libWiiSharp.StoreType[] storeTypes = new libWiiSharp.StoreType[1];
// There's no harm in outputting everything i suppose
storeTypes[0] = libWiiSharp.StoreType.All;
int title_version = int.Parse(title_info[1], System.Globalization.NumberStyles.HexNumber);
string wadName = NameFromDatabase(title_info[0]);
if (wadName != null)
wadName = OfficialWADNaming(wadName);
else
wadName = title_info[0] + "-NUS-v" + title_version + ".wad";
nusClient.DownloadTitle(title_info[0], title_version.ToString(), Path.Combine(CURRENT_DIR, ("output_" + Path.GetFileNameWithoutExtension(script_filename))), wadName, storeTypes);
/*
SetTextThreadSafe(titleidbox, title_info[0]);
SetTextThreadSafe(titleversion,
Convert.ToString(256*
(byte.Parse(title_info[1].Substring(0, 2),
System.Globalization.NumberStyles.HexNumber))));
SetTextThreadSafe(titleversion,
Convert.ToString(Convert.ToInt32(titleversion.Text) +
byte.Parse(title_info[1].Substring(2, 2),
System.Globalization.NumberStyles.HexNumber)));
button3_Click("Scripter", EventArgs.Empty);
Thread.Sleep(1000);
while (NUSDownloader.IsBusy)
{
Thread.Sleep(1000);
}
}
script_mode = false;
WriteStatus("Script completed!");*/
}
private void scriptsbutton_Click(object sender, EventArgs e)
{
// Show scripts menu
scriptsStrip.Text = "Showing";
scriptsStrip.Show(scriptsbutton, 2, (2+scriptsbutton.Height));
//if (!e.Equals(EventArgs.Empty))
{
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
timer.Interval = 51;
timer.Tick += new EventHandler(contextmenusTimer_Tick);
timer.Start();
}
}
private void DatabaseEnabled(bool enabled)
{
for (int a = 0; a < databaseStrip.Items.Count; a++)
{
databaseStrip.Items[a].Enabled = enabled;
databaseStrip.Items[a].Visible = enabled;
}
for (int b = 0; b < VCMenuList.DropDownItems.Count; b++)
{
VCMenuList.DropDownItems[b].Enabled = true;
VCMenuList.DropDownItems[b].Visible = true;
}
}
void scriptsWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
scriptsLocalMenuEntry.Enabled = true;
}
void OrganizeScripts(object sender, DoWorkEventArgs e)
{
//throw new NotImplementedException();
if (Directory.Exists(Path.Combine(CURRENT_DIR, "scripts")) == false)
{
WriteStatus("Scripts directory not found...");
WriteStatus("- Creating it.");
Directory.CreateDirectory(Path.Combine(CURRENT_DIR, "scripts"));
}
// Clear any entries from previous runthrough
if (scriptsLocalMenuEntry.DropDownItems.Count > 0)
{
// TODO: i suppose this is bad amiright
Control.CheckForIllegalCrossThreadCalls = false;
scriptsLocalMenuEntry.DropDownItems.Clear();
}
// Add directories w/ scripts in \scripts\
foreach (string directory in Directory.GetDirectories(Path.Combine(CURRENT_DIR, "scripts"), "*", SearchOption.TopDirectoryOnly))
{
if (Directory.GetFiles(directory, "*.nus", SearchOption.TopDirectoryOnly).Length > 0)
{
DirectoryInfo dinfo = new DirectoryInfo(directory);
ToolStripMenuItem folder_item = new ToolStripMenuItem();
folder_item.Text = dinfo.Name + Path.DirectorySeparatorChar;
folder_item.Image = Properties.Resources.folder_table;
foreach (string nusscript in Directory.GetFiles(directory, "*.nus", SearchOption.TopDirectoryOnly))
{
FileInfo finfo = new FileInfo(nusscript);
ToolStripMenuItem nus_script_item = new ToolStripMenuItem();
nus_script_item.Text = finfo.Name;
nus_script_item.Image = Properties.Resources.script_start;
folder_item.DropDownItems.Add(nus_script_item);
nus_script_item.Click += new EventHandler(nus_script_item_Click);
}
scriptsLocalMenuEntry.DropDownItems.Add(folder_item);
}
}
// Add scripts in \scripts\
foreach (string nusscript in Directory.GetFiles(Path.Combine(CURRENT_DIR, "scripts"), "*.nus", SearchOption.TopDirectoryOnly))
{
FileInfo finfo = new FileInfo(nusscript);
ToolStripMenuItem nus_script_item = new ToolStripMenuItem();
nus_script_item.Text = finfo.Name;
nus_script_item.Image = Properties.Resources.script_start;
scriptsLocalMenuEntry.DropDownItems.Add(nus_script_item);
nus_script_item.Click += new EventHandler(nus_script_item_Click);
}
}
private void aboutNUSDToolStripMenuItem_Click(object sender, EventArgs e)
{
// Display About Text...
statusbox.Text = "";
WriteStatus("NUS Downloader (NUSD)");
WriteStatus("You are running version: " + version);
if (version.StartsWith("SVN"))
WriteStatus("SVN BUILD: DO NOT REPORT BROKEN FEATURES!");
WriteStatus("This application created by WB3000");
WriteStatus("Various contributions by lukegb");
WriteStatus(String.Empty);
if (NUSDFileExists("key.bin") == true)
WriteStatus("Wii Decryption: Local (key.bin)");
if (NUSDFileExists("kkey.bin") == true)
WriteStatus("Wii Korea Decryption: Local (kkey.bin)");
if (NUSDFileExists("dsikey.bin") == true)
WriteStatus("DSi Decryption: Local (dsikey.bin)");
if (NUSDFileExists("database.xml") == false)
WriteStatus("Database (Wii): Need (database.xml)");
else
WriteStatus("Database (Wii): OK");
if (NUSDFileExists("dsidatabase.xml") == false)
WriteStatus("Database (DSi): Need (dsidatabase.xml)");
else
WriteStatus("Database (DSi): OK");
if (IsWin7())
WriteStatus("Windows 7 Features: Enabled");
WriteStatus("");
WriteStatus("Special thanks to:");
WriteStatus(" * Crediar for his wadmaker tool + source, and for the advice!");
WriteStatus(" * Leathl for libWiiSharp.");
WriteStatus(" * SquidMan/Galaxy/comex/Xuzz/#WiiDev for advice.");
WriteStatus(" * Pasta for impressive database contributions.");
WriteStatus(" * Napo7 for testing proxy settings.");
WriteStatus(" * Wyatt O'Day for the Windows7ProgressBar Control.");
WriteStatus(" * Famfamfam for the Silk Icon Set.");
WriteStatus(" * Anyone who has helped beta test!");
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
SaveProxyPwdPermanentBtn.Enabled = checkBox1.Checked;
}
private void SaveProxyPwdPermanentBtn_Click(object sender, EventArgs e)
{
proxy_pwd = ProxyPwdBox.Text;
string proxy_file = File.ReadAllText(Path.Combine(CURRENT_DIR, "proxy.txt"));
proxy_file += String.Format("\n{0}", proxy_pwd);
File.WriteAllText(Path.Combine(CURRENT_DIR, "proxy.txt"), proxy_file);
ProxyVerifyBox.Visible = false;
SetAllEnabled(true);
WriteStatus("To delete all traces of proxy settings, delete the proxy.txt file!");
}
private void clearButton_MouseEnter(object sender, EventArgs e)
{
// expand clear button
/*button3.Left = 194;
button3.Size = new System.Drawing.Size(68, 21);*/
clearButton.Text = "Clear";
//button3.ImageAlign = ContentAlignment.MiddleLeft;
}
private void clearButton_MouseLeave(object sender, EventArgs e)
{
// shrink clear button
/*button3.Left = 239;
button3.Size = new System.Drawing.Size(23, 21);*/
if (Type.GetType ("Mono.Runtime") == null)
clearButton.Text = String.Empty;
//button3.ImageAlign = ContentAlignment.MiddleCenter;
}
private void saveaswadbtn_MouseEnter(object sender, EventArgs e)
{
/*saveaswadbtn.Left = 190;
saveaswadbtn.Size = new Size(72, 22);*/
saveaswadbtn.Text = "Save As";
/*saveaswadbtn.ImageAlign = ContentAlignment.MiddleLeft;*/
}
private void saveaswadbtn_MouseLeave(object sender, EventArgs e)
{
/*saveaswadbtn.Left = 230;
saveaswadbtn.Size = new Size(32, 22);*/
if (Type.GetType("Mono.Runtime") == null)
saveaswadbtn.Text = String.Empty;
//saveaswadbtn.ImageAlign = ContentAlignment.MiddleCenter;
}
void nus_script_item_Click(object sender, EventArgs e)
{
ToolStripMenuItem tsmi = (ToolStripMenuItem)sender;
string folderpath = "";
if (!tsmi.OwnerItem.Equals(this.scriptsLocalMenuEntry))
{
folderpath = Path.Combine(tsmi.OwnerItem.Text, folderpath);
}
folderpath = Path.Combine(this.CURRENT_DIR, Path.Combine("scripts", Path.Combine(folderpath, tsmi.Text)));
string script_content = File.ReadAllText(folderpath);
script_content += String.Format(";{0}", tsmi.Text.Replace(".nus", ""));
BackgroundWorker scripter = new BackgroundWorker();
scripter.DoWork += new DoWorkEventHandler(RunScriptBg);
scripter.RunWorkerAsync(script_content);
}
private void saveaswadbtn_Click(object sender, EventArgs e)
{
SaveFileDialog wad_saveas = new SaveFileDialog();
wad_saveas.Title = "Save WAD File...";
wad_saveas.Filter = "WAD Files|*.wad|All Files|*.*";
wad_saveas.AddExtension = true;
DialogResult dres = wad_saveas.ShowDialog();
if (dres != DialogResult.Cancel)
WAD_Saveas_Filename = wad_saveas.FileName;
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
// This prevents errors when exiting before the database is parsed.
// This is also probably not the best way to accomplish this...
Environment.Exit(0);
}
private void iosPatchCheckbox_CheckedChanged(object sender, EventArgs e)
{
if (iosPatchCheckbox.Checked == true)
{
//packbox.Enabled = false;
packbox.Checked = true;
SetAllEnabled(false);
iosPatchGroupBox.Visible = true;
iosPatchGroupBox.Enabled = true;
iosPatchesListBox.Enabled = true;
iosPatchGroupBoxOKbtn.Enabled = true;
}
}
private void iosPatchGroupBoxOKbtn_Click(object sender, EventArgs e)
{
SetAllEnabled(true);
iosPatchGroupBox.Visible = false;
if (iosPatchesListBox.CheckedIndices.Count == 0)
// Uncheck the checkbox to indicate no patches
iosPatchCheckbox.Checked = false;
}
private void FillDatabaseScripts()
{
SetPropertyThreadSafe(scriptsDatabaseToolStripMenuItem, false, "Visible");
Database databaseObj = new Database();
databaseObj.LoadDatabaseToStream(Path.Combine(CURRENT_DIR, "database.xml"));
ToolStripMenuItem[] scriptItems = databaseObj.LoadScripts();
for (int a = 0; a < scriptItems.Length; a++)
{
scriptItems[a].Click += new EventHandler(ScriptItem_Clicked);
//AddToolStripItemToStrip(scriptsDatabaseToolStripMenuItem, scriptItems[a]);
//SystemMenuList.DropDownItems.Add(systemItems[a]);
}
AddToolStripItemToStrip(scriptsDatabaseToolStripMenuItem, scriptItems);
SetPropertyThreadSafe(scriptsDatabaseToolStripMenuItem, true, "Enabled");
SetPropertyThreadSafe(scriptsDatabaseToolStripMenuItem, true, "Visible");
}
public void ScriptItem_Clicked(object sender, EventArgs e)
{
// Scripts from database are stored in tooltips...
ToolStripMenuItem tsmi = (ToolStripMenuItem)sender;
string script_content = tsmi.ToolTipText;
script_content += String.Format(";{0}", tsmi.Text);
BackgroundWorker scripter = new BackgroundWorker();
scripter.DoWork += new DoWorkEventHandler(RunScriptBg);
scripter.RunWorkerAsync(script_content);
}
void ReorganizePreviousFolderStructure(object sender, DoWorkEventArgs e)
{
// 0000000000000000v000\* become titles\0000000000000000\v000\*
Regex TitleDirectoryRegex = new Regex(@"[a-zA-Z0-9]{16}v?([0-9]*)?");
if (Directory.Exists(Path.Combine(CURRENT_DIR, "titles")) == false)
Directory.CreateDirectory(Path.Combine(CURRENT_DIR, "titles"));
string[] directories = Directory.GetDirectories(CURRENT_DIR, "*", SearchOption.TopDirectoryOnly);
Debug.WriteLine("Dirs: " + directories.Length);
foreach (string directory in directories)
{
Debug.WriteLine("ff: " + directory);
DirectoryInfo dinfo = new DirectoryInfo(directory);
// name is XXXXXXXXXXXXXXXXvYYYY
if (TitleDirectoryRegex.IsMatch(dinfo.Name.ToString()) && dinfo.Name.Contains("v"))
{
string[] title_info = dinfo.Name.Split('v');
string titleid_dir = Path.Combine(Path.Combine(CURRENT_DIR, "titles"), title_info[0]);
string newfull_dir = Path.Combine(titleid_dir, String.Format("{0}", title_info[1]));
if (Directory.Exists(titleid_dir) == false)
Directory.CreateDirectory(titleid_dir);
if (Directory.Exists(newfull_dir) == false)
Directory.CreateDirectory(newfull_dir);
string[] files = Directory.GetFiles(directory, "*", SearchOption.TopDirectoryOnly);
foreach (string file in files)
{
FileInfo titlefile = new FileInfo(file);
if (File.Exists(Path.Combine(newfull_dir, titlefile.Name)) == false)
titlefile.MoveTo(Path.Combine(newfull_dir, titlefile.Name));
}
if (dinfo.GetFiles().Length <= 0 && dinfo.GetDirectories().Length <= 0)
Directory.Delete(directory);
}
else if (TitleDirectoryRegex.IsMatch(dinfo.Name.ToString()))
{
string titleid_dir = Path.Combine(Path.Combine(CURRENT_DIR, "titles"), dinfo.Name.ToString());
libWiiSharp.TMD tmdfile = new libWiiSharp.TMD();
int count = 0;
string[] tmdfiles = Directory.GetFiles(directory, "*tmd*", SearchOption.TopDirectoryOnly);
if (tmdfiles.Length > 1)
continue; //Too many TMD files ?
foreach (string file in tmdfiles)
{
if (file.Contains("tmd"))
{
tmdfile.LoadFile(file);
count++;
}
}
if (count == 0)
continue;
string version = tmdfile.TitleVersion.ToString();
string newfull_dir = Path.Combine(titleid_dir, String.Format("{0}", version));
if (Directory.Exists(titleid_dir) == false)
Directory.CreateDirectory(titleid_dir);
if (Directory.Exists(newfull_dir) == false)
Directory.CreateDirectory(newfull_dir);
string[] files = Directory.GetFiles(directory, "*", SearchOption.TopDirectoryOnly);
foreach (string file in files)
{
FileInfo titlefile = new FileInfo(file);
if (File.Exists(Path.Combine(newfull_dir, titlefile.Name)) == false)
titlefile.MoveTo(Path.Combine(newfull_dir, titlefile.Name));
}
if (dinfo.GetFiles().Length <= 0 && dinfo.GetDirectories().Length <= 0)
Directory.Delete(directory);
}
}
}
void ReorganizePreviousFolderStructure_Completed(object sender, RunWorkerCompletedEventArgs e)
{
WriteStatus(" - Operation complete!");
}
private void RunScript(string scriptstr, string scriptname)
{
// Form and folder stuffs
SetTextThreadSafe(statusbox, "");
WriteStatus("Starting script download. Please be patient!");
string scriptdir;
if (scriptname == "random")
scriptdir = Path.Combine(Path.Combine(CURRENT_DIR, "scripts"), RandomString(7) + "_output");
else
scriptdir = Path.Combine(Path.Combine(CURRENT_DIR, "scripts"), scriptname + "_output");
if (!File.Exists(scriptdir))
Directory.CreateDirectory(scriptdir);
// Parse entries
string[] NUS_Entries = scriptstr.Split(Environment.NewLine.ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
WriteStatus(String.Format(" - Script loaded ({0} Titles)", NUS_Entries.Length));
WriteStatus(" - Output: " + scriptdir.Replace(CURRENT_DIR, ""));
for (int a = 0; a < NUS_Entries.Length; a++)
{
// Download the title
WriteStatus(String.Format("===== Running Download ({0}/{1}) =====", a + 1, NUS_Entries.Length));
string[] title_info = NUS_Entries[a].Split(' ');
// don't let the delete issue reappear...
if (string.IsNullOrEmpty(title_info[0]))
continue;
// WebClient configuration
WebClient nusWC = new WebClient();
nusWC = ConfigureWithProxy(nusWC);
nusWC.Headers.Add("User-Agent", "wii libnup/1.0"); // Set UserAgent to Wii value
// Create\Configure NusClient
libWiiSharp.NusClient nusClient = new libWiiSharp.NusClient();
nusClient.ConfigureNusClient(nusWC);
nusClient.UseLocalFiles = localuse.Checked;
nusClient.ContinueWithoutTicket = true;
nusClient.Debug += new EventHandler<libWiiSharp.MessageEventArgs>(nusClient_Debug);
libWiiSharp.StoreType[] storeTypes = new libWiiSharp.StoreType[1];
// There's no harm in outputting everything i suppose
storeTypes[0] = libWiiSharp.StoreType.All;
int title_version = int.Parse(title_info[1], System.Globalization.NumberStyles.HexNumber);
string wadName = NameFromDatabase(title_info[0]);
if (wadName != null)
wadName = OfficialWADNaming(wadName);
else
wadName = title_info[0] + "-NUS-v" + title_version + ".wad";
nusClient.DownloadTitle(title_info[0], title_version.ToString(), scriptdir, wadName, storeTypes);
}
WriteStatus("Script completed!");
}
// Random string function for temp foldernames in RunScript.
// Probably going to be removed TODO
private readonly Random _rng = new Random();
private const string _chars = "abcdefghijklmnopqrstuvwxyz";
private string RandomString(int size)
{
char[] buffer = new char[size];
for (int i = 0; i < size; i++)
{
buffer[i] = _chars[_rng.Next(_chars.Length)];
}
return new string(buffer);
}
void Form1_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e)
{
//Debug.WriteLine("Delta: " + e.Delta.ToString());
if (SystemMenuList.DropDown.DisplayRectangle.Contains(e.Location) ||
SystemMenuList.DropDown.Bounds.Contains(e.Location) ||
WiiWareMenuList.DropDown.DisplayRectangle.Contains(e.Location) ||
WiiWareMenuList.DropDown.Bounds.Contains(e.Location) ||
VCMenuList.DropDown.DisplayRectangle.Contains(e.Location) ||
VCMenuList.DropDown.Bounds.Contains(e.Location) ||
IOSMenuList.DropDown.DisplayRectangle.Contains(e.Location) ||
IOSMenuList.DropDown.Bounds.Contains(e.Location))
{
if (e.Delta > 0)
{
System.Windows.Forms.SendKeys.Send("{UP}");
System.Windows.Forms.SendKeys.Send("{UP}");
System.Windows.Forms.SendKeys.Send("{UP}");
System.Windows.Forms.SendKeys.Send("{UP}");
System.Windows.Forms.SendKeys.Send("{UP}");
}
else
{
System.Windows.Forms.SendKeys.Send("{DOWN}");
System.Windows.Forms.SendKeys.Send("{DOWN}");
System.Windows.Forms.SendKeys.Send("{DOWN}");
System.Windows.Forms.SendKeys.Send("{DOWN}");
System.Windows.Forms.SendKeys.Send("{DOWN}");
}
}
}
private void openNUSDDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{
// Opens the directory NUSD is working in... (CURREND_DIR)
Process.Start(CURRENT_DIR);
}
private void mainPageToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start("http://www.wiibrew.org/wiki/NUS_Downloader");
}
private void databasePageToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start("http://www.wiibrew.org/wiki/NUS_Downloader/database");
}
private void extrasStrip_Opening(object sender, CancelEventArgs e)
{
// Show additional features based on held keys...
#if DEBUG
moreExtrasToolStripMenuItem.Visible = true;
#else
moreExtrasToolStripMenuItem.Visible = Control.ModifierKeys == Keys.Control; // If Ctrl Pressed.
#endif
}
private void runFolderFixToolStripMenuItem_Click(object sender, EventArgs e)
{
// Run folderfix to make \titles\
// Organizing folders from past NUSD releases...
BackgroundWorker folder_fixer = new BackgroundWorker();
folder_fixer.DoWork += new DoWorkEventHandler(ReorganizePreviousFolderStructure);
folder_fixer.RunWorkerCompleted += new RunWorkerCompletedEventHandler(ReorganizePreviousFolderStructure_Completed);
Debug.WriteLine("folderfix active");
WriteStatus("Organizing your old folder structure...");
folder_fixer.RunWorkerAsync();
}
private void removeNUSDFilesFoldersToolStripMenuItem_Click(object sender, EventArgs e)
{
// Extras thing, remove all of NUSD files...
if (MessageBox.Show("This will delete all the files\folders you have downloaded from NUS! Are you sure you want to do this?", "Wait a second!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != System.Windows.Forms.DialogResult.Yes)
return;
if (Directory.Exists(Path.Combine(CURRENT_DIR, "titles")))
Directory.Delete(Path.Combine(CURRENT_DIR, "titles"), true);
if (Directory.Exists(Path.Combine(CURRENT_DIR, "scripts")))
Directory.Delete(Path.Combine(CURRENT_DIR, "scripts"), true);
if (File.Exists(Path.Combine(CURRENT_DIR, "database.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "database.xml"));
if (File.Exists(Path.Combine(CURRENT_DIR, "dsidatabase.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "dsidatabase.xml"));
if (File.Exists(Path.Combine(CURRENT_DIR, "olddatabase.xml")))
File.Delete(Path.Combine(CURRENT_DIR, "olddatabase.xml"));
if (File.Exists(Path.Combine(CURRENT_DIR, "proxy.txt")))
File.Delete(Path.Combine(CURRENT_DIR, "proxy.txt"));
if (File.Exists(Path.Combine(CURRENT_DIR, "key.bin")))
File.Delete(Path.Combine(CURRENT_DIR, "key.bin"));
if (File.Exists(Path.Combine(CURRENT_DIR, "kkey.bin")))
File.Delete(Path.Combine(CURRENT_DIR, "kkey.bin"));
if (File.Exists(Path.Combine(CURRENT_DIR, "dsikey.bin")))
File.Delete(Path.Combine(CURRENT_DIR, "dsikey.bin"));
}
private void anyStrip_Closed(object sender, ToolStripDropDownClosedEventArgs e)
{
((ContextMenuStrip)sender).Text = "Hidden";
//Debug.Write(((ContextMenuStrip)sender).Name);
}
private void localTicketInventoryToolStripMenuItem_Click(object sender, EventArgs e)
{
// Alters icons if tickets exist locally...
WriteStatus("Adding ticket information to database entries...");
ToolStripMenuItem[] Lists = new ToolStripMenuItem[6] { SystemMenuList, IOSMenuList, VCMenuList, WiiWareMenuList, dsiSystemToolStripMenu, dSiWareToolStripMenu };
for (int l = 0; l < Lists.Length; l++)
{
for (int a = 0; a < Lists[l].DropDownItems.Count; a++)
{
if (Lists[l].DropDownItems[a].Text.Length < 16)
continue;
string itemTitleId = Lists[l].DropDownItems[a].Text.Substring(0, 16);
string itemDir = Path.Combine(Path.Combine(CURRENT_DIR, "titles"), itemTitleId);
if (Directory.Exists(itemDir) == false)
continue;
string[] files = Directory.GetFiles(itemDir, "cetk", SearchOption.AllDirectories);
if (files.Length > 0)
{
if (Lists[l].DropDownItems[a].Image == Database.green)
Lists[l].DropDownItems[a].Image = Database.green_blue;
if (Lists[l].DropDownItems[a].Image == Database.orange)
Lists[l].DropDownItems[a].Image = Database.orange_blue;
if (Lists[l].DropDownItems[a].Image == Database.redorange)
Lists[l].DropDownItems[a].Image = Database.redorange_blue;
if (Lists[l].DropDownItems[a].Image == Database.redgreen)
Lists[l].DropDownItems[a].Image = Database.redgreen_blue;
}
}
}
WriteStatus(" - Operation completed!");
}
private void donateToolStripMenuItem_Click(object sender, EventArgs e)
{
//TODO: Organize how this will work...
Process.Start("http://wb3000.atspace.name/donations.html");
}
private void DSiDatabaseWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
while (databaseWorker.IsBusy)
{
Thread.Sleep(1000);
}
BackgroundWorker worker = sender as BackgroundWorker;
FillDSiDatabaseStrip(worker);
LoadRegionCodes();
//FillDatabaseScripts();
ShowInnerToolTips(false);
}
private void DSiDatabaseWork_Completed(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)
{
this.databaseButton.Text = "Database...";
this.databaseButton.Image = null;
}
private void DSiDatabaseWork_ProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)
{
if (e.ProgressPercentage == 50)
databaseButton.Text = " [. ]";
else if (e.ProgressPercentage == 100)
databaseButton.Text = " [..]";
}
private void wiiRegionCodesMenu_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
if (titleidbox.Text.Length == 16)
titleidbox.Text = titleidbox.Text.Substring(0, 14) + e.ClickedItem.Text.Substring(0, 2);
}
private void dsiRegionCodesMenu_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
if (titleidbox.Text.Length == 16)
titleidbox.Text = titleidbox.Text.Substring(0, 14) + e.ClickedItem.Text.Substring(0, 2);
}
private void serverLbl_MouseEnter(object sender, EventArgs e)
{
serverLbl.Font = new Font(serverLbl.Font, FontStyle.Underline);
}
private void serverLbl_MouseLeave(object sender, EventArgs e)
{
serverLbl.Font = new Font(serverLbl.Font, FontStyle.Regular);
}
private void serverLbl_TextChanged(object sender, EventArgs e)
{
if (serverLbl.Text == "Wii")
{
// Can pack WADs / Decrypt
packbox.Enabled = true;
}
if (serverLbl.Text == "DSi")
{
// Cannot Pack WADs
packbox.Checked = false;
packbox.Enabled = false;
wadnamebox.Enabled = false;
wadnamebox.Text = "";
}
}
private void serverLbl_Click(object sender, EventArgs e)
{
// Switch what server is displayed in the label, when clicked.
string[] serverLblServers = new string[2] { "Wii", "DSi" };
for (int a = 0; a < serverLblServers.Length; a++)
{
if (serverLbl.Text == serverLblServers[a])
{
if (serverLblServers.Length == (a + 1))
serverLbl.Text = serverLblServers[0];
else
serverLbl.Text = serverLblServers[a+1];
break;
}
}
}
}
}
|