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
|
; DebugColor_GFX tile IDs
const_def $6a
const DEBUGTEST_TICKS_1 ; $6a
const DEBUGTEST_TICKS_2 ; $6b
const DEBUGTEST_WHITE ; $6c
const DEBUGTEST_LIGHT ; $6d
const DEBUGTEST_DARK ; $6e
const DEBUGTEST_BLACK ; $6f
const DEBUGTEST_0 ; $70
const DEBUGTEST_1 ; $71
const DEBUGTEST_2 ; $72
const DEBUGTEST_3 ; $73
const DEBUGTEST_4 ; $74
const DEBUGTEST_5 ; $75
const DEBUGTEST_6 ; $76
const DEBUGTEST_7 ; $77
const DEBUGTEST_8 ; $78
const DEBUGTEST_9 ; $79
const DEBUGTEST_A ; $7a
const DEBUGTEST_B ; $7b
const DEBUGTEST_C ; $7c
const DEBUGTEST_D ; $7d
const DEBUGTEST_E ; $7e
const DEBUGTEST_F ; $7f
; DebugColorMain.Jumptable indexes
const_def
const DEBUGCOLORMAIN_INITSCREEN ; 0
const DEBUGCOLORMAIN_UPDATESCREEN ; 1
const DEBUGCOLORMAIN_UPDATEPALETTES ; 2
const DEBUGCOLORMAIN_JOYPAD ; 3
const DEBUGCOLORMAIN_INITTMHM ; 4
const DEBUGCOLORMAIN_TMHMJOYPAD ; 5
DebugColorPicker: ; unreferenced
; A debug menu to test monster and trainer palettes at runtime.
ldh a, [hCGB]
and a
jr nz, .cgb
ldh a, [hSGB]
and a
ret z
.cgb
ldh a, [hInMenu]
push af
ld a, TRUE
ldh [hInMenu], a
call DisableLCD
call DebugColor_InitVRAM
call DebugColor_LoadGFX
call DebugColor_InitPalettes
call DebugColor_InitMonOrTrainerColor
call EnableLCD
ld de, MUSIC_NONE
call PlayMusic
xor a ; DEBUGCOLORMAIN_INITSCREEN
ld [wJumptableIndex], a
ld [wDebugColorCurMon], a
ld [wDebugColorIsShiny], a
.loop
ld a, [wJumptableIndex]
bit 7, a
jr nz, .exit
call DebugColorMain
call DebugColor_PlaceCursor
call DelayFrame
jr .loop
.exit
pop af
ldh [hInMenu], a
ret
DebugColor_InitMonOrTrainerColor:
ld a, [wDebugColorIsTrainer]
and a
jr nz, DebugColor_InitTrainerColor
ld hl, PokemonPalettes
; fallthrough
DebugColor_InitMonColor:
ld de, wDebugOriginalColors
ld c, NUM_POKEMON + 1
.loop
push bc
push hl
call DebugColor_InitColor
pop hl
ld bc, 8
add hl, bc
pop bc
dec c
jr nz, .loop
ret
DebugColor_InitTrainerColor:
ld hl, TrainerPalettes
ld de, wDebugOriginalColors
ld c, NUM_TRAINER_CLASSES + 1
.loop
push bc
push hl
call DebugColor_InitColor
pop hl
ld bc, 4
add hl, bc
pop bc
dec c
jr nz, .loop
ret
DebugColor_InitColor:
rept 3
ld a, BANK(PokemonPalettes) ; aka BANK(TrainerPalettes)
call GetFarByte
ld [de], a
inc de
inc hl
endr
ld a, BANK(PokemonPalettes) ; aka BANK(TrainerPalettes)
call GetFarByte
ld [de], a
inc de
ret
DebugColor_InitVRAM:
ld a, $1
ldh [rVBK], a
ld hl, VRAM_Begin
ld bc, VRAM_End - VRAM_Begin
xor a
call ByteFill
ld a, $0
ldh [rVBK], a
ld hl, VRAM_Begin
ld bc, VRAM_End - VRAM_Begin
xor a
call ByteFill
hlcoord 0, 0, wAttrmap
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
xor a
call ByteFill
hlcoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
xor a
call ByteFill
call ClearSprites
ret
DebugColor_LoadGFX:
ld hl, DebugColor_GFX
ld de, vTiles2 tile DEBUGTEST_TICKS_1
ld bc, 22 tiles
call CopyBytes
ld hl, DebugColor_UpArrowGFX
ld de, vTiles0
ld bc, 1 tiles
call CopyBytes
; Invert the font colors.
call LoadStandardFont
ld hl, vTiles1
ld bc, $80 tiles
.loop
ld a, [hl]
xor $ff
ld [hli], a
dec bc
ld a, c
or b
jr nz, .loop
ret
DebugColor_InitPalettes:
ldh a, [hCGB]
and a
ret z
ld hl, Palette_DebugBG
ld de, wBGPals2
ld bc, 16 palettes
call CopyBytes
ld a, 1 << rBGPI_AUTO_INCREMENT
ldh [rBGPI], a
ld hl, Palette_DebugBG
ld c, 8 palettes
xor a
.bg_loop
ldh [rBGPD], a
dec c
jr nz, .bg_loop
ld a, 1 << rOBPI_AUTO_INCREMENT
ldh [rOBPI], a
ld hl, Palette_DebugOB
ld c, 8 palettes
.ob_loop
ld a, [hli]
ldh [rOBPD], a
dec c
jr nz, .ob_loop
ld a, LOW(palred 20 + palgreen 20 + palblue 20)
ld [wDebugLightColor + 0], a
ld a, HIGH(palred 20 + palgreen 20 + palblue 20)
ld [wDebugLightColor + 1], a
ld a, LOW(palred 10 + palgreen 10 + palblue 10)
ld [wDebugDarkColor + 0], a
ld a, HIGH(palred 10 + palgreen 10 + palblue 10)
ld [wDebugDarkColor + 1], a
ret
Palette_DebugBG:
INCLUDE "gfx/debug/bg.pal"
Palette_DebugOB:
INCLUDE "gfx/debug/ob.pal"
DebugColorMain:
call JoyTextDelay
ld a, [wJumptableIndex]
cp DEBUGCOLORMAIN_INITTMHM
jr nc, .no_start_select
ld hl, hJoyLast
ld a, [hl]
and SELECT
jr nz, .NextMon
ld a, [hl]
and START
jr nz, .PreviousMon
.no_start_select
jumptable .Jumptable, wJumptableIndex
.NextMon:
call DebugColor_BackupSpriteColors
call .SetMaxNum
ld e, a
ld a, [wDebugColorCurMon]
inc a
cp e
jr c, .SwitchMon
xor a
jr .SwitchMon
.PreviousMon:
call DebugColor_BackupSpriteColors
ld a, [wDebugColorCurMon]
dec a
cp -1
jr nz, .SwitchMon
call .SetMaxNum
dec a
.SwitchMon:
ld [wDebugColorCurMon], a
ld a, DEBUGCOLORMAIN_INITSCREEN
ld [wJumptableIndex], a
ret
.SetMaxNum:
; Looping back around the pic set.
ld a, [wDebugColorIsTrainer]
and a
jr nz, .trainer
; mon
ld a, NUM_POKEMON ; CELEBI
ret
.trainer
ld a, NUM_TRAINER_CLASSES ; GRUNTF
ret
.Jumptable:
; entries correspond to DEBUGCOLORMAIN_* constants
dw DebugColor_InitScreen
dw DebugColor_UpdateScreen
dw DebugColor_UpdatePalettes
dw DebugColor_Joypad
dw DebugColor_InitTMHM
dw DebugColor_TMHMJoypad
DebugColor_InitScreen:
xor a
ldh [hBGMapMode], a
hlcoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
ld a, DEBUGTEST_BLACK
call ByteFill
hlcoord 1, 3
lb bc, 7, 18
ld a, DEBUGTEST_WHITE
call DebugColor_FillBoxWithByte
hlcoord 11, 0
lb bc, 2, 3
ld a, DEBUGTEST_LIGHT
call DebugColor_FillBoxWithByte
hlcoord 16, 0
lb bc, 2, 3
ld a, DEBUGTEST_DARK
call DebugColor_FillBoxWithByte
call DebugColor_LoadRGBMeter
call DebugColor_SetRGBMeter
ld a, [wDebugColorCurMon]
inc a
ld [wCurPartySpecies], a
ld [wTextDecimalByte], a
hlcoord 0, 1
ld de, wTextDecimalByte
lb bc, PRINTNUM_LEADINGZEROS | 1, 3
call PrintNum
ld a, [wDebugColorIsTrainer]
and a
jr nz, .trainer
; mon
ld a, UNOWN_A
ld [wUnownLetter], a
call GetPokemonName
hlcoord 4, 1
call PlaceString
xor a
ld [wBoxAlignment], a
hlcoord 2, 3
call _PrepMonFrontpic
ld de, vTiles2 tile $31
predef GetMonBackpic
ld a, $31
ldh [hGraphicStartTile], a
hlcoord 12, 4
lb bc, 6, 6
predef PlaceGraphic
ld a, [wDebugColorIsShiny]
and a
jr z, .normal
; shiny
ld de, .ShinyText
jr .place_text
.normal
ld de, .NormalText
.place_text
hlcoord 7, 17
call PlaceString
hlcoord 0, 17
ld de, .SwitchText
call PlaceString
jr .done
.trainer
ld a, [wTextDecimalByte]
ld [wTrainerClass], a
callfar GetTrainerAttributes
ld de, wStringBuffer1
hlcoord 4, 1
call PlaceString
ld de, vTiles2
callfar GetTrainerPic
xor a
ld [wTempEnemyMonSpecies], a
ldh [hGraphicStartTile], a
hlcoord 2, 3
lb bc, 7, 7
predef PlaceGraphic
.done
ld a, DEBUGCOLORMAIN_UPDATESCREEN
ld [wJumptableIndex], a
ret
.ShinyText:
db "レア", DEBUGTEST_BLACK, DEBUGTEST_BLACK, "@" ; Rare (shiny)
.NormalText:
db "ノーマル@" ; Normal
.SwitchText:
db DEBUGTEST_A, "きりかえ▶@" ; (A) Switches
DebugColor_LoadRGBMeter:
decoord 0, 11, wAttrmap
hlcoord 2, 11
ld a, 1
call .load_meter
decoord 0, 13, wAttrmap
hlcoord 2, 13
ld a, 2
call .load_meter
decoord 0, 15, wAttrmap
hlcoord 2, 15
ld a, 3
.load_meter:
push af
ld a, DEBUGTEST_TICKS_1
ld [hli], a
ld bc, 15
ld a, DEBUGTEST_TICKS_2
call ByteFill
ld l, e
ld h, d
pop af
ld bc, 20 * 2
call ByteFill
ret
DebugColor_SetRGBMeter:
ld a, [wDebugColorCurMon]
inc a
ld l, a
ld h, 0
add hl, hl
add hl, hl
ld de, wDebugOriginalColors
add hl, de
ld de, wDebugMiddleColors
ld bc, 4
call CopyBytes
xor a
ld [wDebugColorRGBJumptableIndex], a
ld [wDebugColorCurColor], a
ld de, wDebugLightColor
call DebugColor_CalculateRGB
ret
DebugColor_UpdateScreen:
ldh a, [hCGB]
and a
jr z, .sgb
ld a, 2
ldh [hBGMapMode], a
call DelayFrame
call DelayFrame
call DelayFrame
.sgb
call WaitBGMap
ld a, DEBUGCOLORMAIN_UPDATEPALETTES
ld [wJumptableIndex], a
ret
DebugColor_UpdatePalettes:
ldh a, [hCGB]
and a
jr z, .sgb
; cgb
ld hl, wBGPals2
ld de, wDebugMiddleColors
ld c, 1
call DebugColor_LoadPalettes_White_Col1_Col2_Black
hlcoord 10, 2
ld de, wDebugLightColor
call DebugColor_PrintHexColor
hlcoord 15, 2
ld de, wDebugDarkColor
call DebugColor_PrintHexColor
ld a, TRUE
ldh [hCGBPalUpdate], a
ld a, DEBUGCOLORMAIN_JOYPAD
ld [wJumptableIndex], a
ret
.sgb
ld hl, wSGBPals
ld a, 1
ld [hli], a
ld a, LOW(PALRGB_WHITE)
ld [hli], a
ld a, HIGH(PALRGB_WHITE)
ld [hli], a
ld a, [wDebugLightColor + 0]
ld [hli], a
ld a, [wDebugLightColor + 1]
ld [hli], a
ld a, [wDebugDarkColor + 0]
ld [hli], a
ld a, [wDebugDarkColor + 1]
ld [hli], a
xor a
ld [hli], a
ld [hli], a
ld [hl], a
ld hl, wSGBPals
call DebugColor_PushSGBPals
hlcoord 10, 2
ld de, wDebugLightColor
call DebugColor_PrintHexColor
hlcoord 15, 2
ld de, wDebugDarkColor
call DebugColor_PrintHexColor
ld a, DEBUGCOLORMAIN_JOYPAD
ld [wJumptableIndex], a
ret
DebugColor_PrintHexColor:
inc hl
inc hl
inc hl
ld a, [de]
call .place_tile
ld a, [de]
swap a
call .place_tile
inc de
ld a, [de]
call .place_tile
ld a, [de]
swap a
.place_tile:
and $f
add DEBUGTEST_0
ld [hld], a
ret
DebugColor_Joypad:
ldh a, [hJoyLast]
and B_BUTTON
jr nz, .tmhm
ldh a, [hJoyLast]
and A_BUTTON
jr nz, .toggle_shiny
ld a, [wDebugColorRGBJumptableIndex]
maskbits 4 ; .PointerTable length
ld e, a
ld d, 0
ld hl, .PointerTable
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
jp hl
.tmhm
; Enter the TM/HM checker.
ld a, DEBUGCOLORMAIN_INITTMHM
ld [wJumptableIndex], a
ret
.toggle_shiny
; Toggle between the normal and shiny mon colors.
ld a, [wDebugColorIsTrainer]
and a
ret nz
ld a, [wDebugColorIsShiny]
xor %00000100
ld [wDebugColorIsShiny], a
ld c, a
ld b, 0
ld hl, PokemonPalettes
add hl, bc
call DebugColor_InitMonColor
ld a, DEBUGCOLORMAIN_INITSCREEN
ld [wJumptableIndex], a
ret
.PointerTable:
dw DebugColor_SelectColorBox
dw DebugColor_ChangeRedValue
dw DebugColor_ChangeGreenValue
dw DebugColor_ChangeBlueValue
DebugColor_SelectColorBox:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugColor_NextRGBColor
ld a, [hl]
and D_LEFT
jr nz, .light
ld a, [hl]
and D_RIGHT
jr nz, .dark
ret
.light
xor a ; FALSE
ld [wDebugColorCurColor], a
ld de, wDebugLightColor
call DebugColor_CalculateRGB
ret
.dark
ld a, TRUE
ld [wDebugColorCurColor], a
ld de, wDebugDarkColor
call DebugColor_CalculateRGB
ret
DebugColor_ChangeRedValue:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugColor_NextRGBColor
ld a, [hl]
and D_UP
jr nz, DebugColor_PreviousRGBColor
ld hl, wDebugRedChannel
jr DebugColor_UpdateRGBColor
DebugColor_ChangeGreenValue:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugColor_NextRGBColor
ld a, [hl]
and D_UP
jr nz, DebugColor_PreviousRGBColor
ld hl, wDebugGreenChannel
jr DebugColor_UpdateRGBColor
DebugColor_ChangeBlueValue:
ld hl, hJoyLast
ld a, [hl]
and D_UP
jr nz, DebugColor_PreviousRGBColor
ld hl, wDebugBlueChannel
; fallthrough
DebugColor_UpdateRGBColor:
ldh a, [hJoyLast]
and D_RIGHT
jr nz, .increment
ldh a, [hJoyLast]
and D_LEFT
jr nz, .decrement
ret
.increment
ld a, [hl]
cp 31
ret nc
inc [hl]
jr .done
.decrement
ld a, [hl]
and a
ret z
dec [hl]
.done
call DebugColor_CalculatePalette
ld a, DEBUGCOLORMAIN_UPDATEPALETTES
ld [wJumptableIndex], a
ret
DebugColor_PreviousRGBColor:
ld hl, wDebugColorRGBJumptableIndex
dec [hl]
ret
DebugColor_NextRGBColor:
ld hl, wDebugColorRGBJumptableIndex
inc [hl]
ret
DebugColor_InitTMHM:
hlcoord 0, 10
ld bc, SCREEN_WIDTH * 8
ld a, DEBUGTEST_BLACK
call ByteFill
hlcoord 2, 12
ld de, DebugColor_AreYouFinishedString
call PlaceString
xor a
ld [wDebugColorCurTMHM], a
call DebugColor_PrintTMHMMove
ld a, DEBUGCOLORMAIN_TMHMJOYPAD
ld [wJumptableIndex], a
ret
DebugColor_TMHMJoypad:
ld hl, hJoyPressed
ld a, [hl]
and B_BUTTON
jr nz, .cancel
call .scroll
ret
.cancel
ld a, DEBUGCOLORMAIN_INITSCREEN
ld [wJumptableIndex], a
ret
.exit ; unreferenced
ld hl, wJumptableIndex
set 7, [hl]
ret
.scroll:
ld hl, hJoyLast
ld a, [hl]
and D_UP
jr nz, .up
ld a, [hl]
and D_DOWN
jr nz, .down
ret
.up
ld a, [wDebugColorCurTMHM]
cp NUM_TM_HM - 1
jr z, .wrap_down
inc a
jr .done
.wrap_down
xor a
jr .done
.down
ld a, [wDebugColorCurTMHM]
and a
jr z, .wrap_up
dec a
jr .done
.wrap_up
ld a, NUM_TM_HM - 1
.done
ld [wDebugColorCurTMHM], a
call DebugColor_PrintTMHMMove
ret
DebugColor_PrintTMHMMove:
hlcoord 10, 11
call .ClearRow
hlcoord 10, 12
call .ClearRow
hlcoord 10, 13
call .ClearRow
hlcoord 10, 14
call .ClearRow
ld a, [wDebugColorCurTMHM]
inc a
ld [wTempTMHM], a
predef GetTMHMMove
ld a, [wTempTMHM]
ld [wPutativeTMHMMove], a
call GetMoveName
hlcoord 10, 12
call PlaceString
ld a, [wDebugColorCurTMHM]
call .GetNumberedTMHM
ld [wCurItem], a
predef CanLearnTMHMMove
ld a, c
and a
ld de, .AbleText
jr nz, .place_string
ld de, .NotAbleText
.place_string
hlcoord 10, 14
call PlaceString
ret
.AbleText:
db "おぼえられる@" ; Learnable
.NotAbleText:
db "おぼえられない@" ; Not learnable
.GetNumberedTMHM:
cp NUM_TMS
jr c, .tm
; hm - skip two gap items
inc a
inc a
.tm
add TM01
ret
.ClearRow:
ld bc, 10
ld a, DEBUGTEST_BLACK
call ByteFill
ret
DebugColor_CalculatePalette:
ld a, [wDebugRedChannel]
and %00011111
ld e, a
ld a, [wDebugGreenChannel]
and %00000111
sla a
swap a
or e
ld e, a
ld a, [wDebugGreenChannel]
and %00011000
sla a
swap a
ld d, a
ld a, [wDebugBlueChannel]
and %00011111
sla a
sla a
or d
ld d, a
ld a, [wDebugColorCurColor]
and a
jr z, .light
; dark
ld a, e
ld [wDebugDarkColor + 0], a
ld a, d
ld [wDebugDarkColor + 1], a
ret
.light
ld a, e
ld [wDebugLightColor + 0], a
ld a, d
ld [wDebugLightColor + 1], a
ret
DebugColor_CalculateRGB:
ld a, [de]
and %00011111
ld [wDebugRedChannel], a
ld a, [de]
and %11100000
swap a
srl a
ld b, a
inc de
ld a, [de]
and %00000011
swap a
srl a
or b
ld [wDebugGreenChannel], a
ld a, [de]
and %01111100
srl a
srl a
ld [wDebugBlueChannel], a
ret
DebugColor_BackupSpriteColors:
ld a, [wDebugColorCurMon]
inc a
ld l, a
ld h, 0
add hl, hl
add hl, hl
ld de, wDebugOriginalColors
add hl, de
ld e, l
ld d, h
ld hl, wDebugMiddleColors
ld bc, 4
call CopyBytes
ret
DebugColor_LoadPalettes_White_Col1_Col2_Black:
.loop
ld a, LOW(PALRGB_WHITE)
ld [hli], a
ld a, HIGH(PALRGB_WHITE)
ld [hli], a
rept 4
ld a, [de]
inc de
ld [hli], a
endr
xor a
ld [hli], a
ld [hli], a
dec c
jr nz, .loop
ret
DebugColor_FillBoxWithByte:
; For some reason, we have another copy of FillBoxWithByte here
.row
push bc
push hl
.col
ld [hli], a
dec c
jr nz, .col
pop hl
ld bc, SCREEN_WIDTH
add hl, bc
pop bc
dec b
jr nz, .row
ret
DebugColor_PushSGBPals:
ld a, [wJoypadDisable]
push af
set JOYPAD_DISABLE_SGB_TRANSFER_F, a
ld [wJoypadDisable], a
call _DebugColor_PushSGBPals
pop af
ld [wJoypadDisable], a
ret
_DebugColor_PushSGBPals:
ld a, [hl]
and $7
ret z
ld b, a
.loop
push bc
xor a
ldh [rJOYP], a
ld a, $30
ldh [rJOYP], a
ld b, $10
.loop2
ld e, $8
ld a, [hli]
ld d, a
.loop3
bit 0, d
ld a, $10
jr nz, .okay
ld a, $20
.okay
ldh [rJOYP], a
ld a, $30
ldh [rJOYP], a
rr d
dec e
jr nz, .loop3
dec b
jr nz, .loop2
ld a, $20
ldh [rJOYP], a
ld a, $30
ldh [rJOYP], a
ld de, 7000
.wait
nop
nop
nop
dec de
ld a, d
or e
jr nz, .wait
pop bc
dec b
jr nz, .loop
ret
DebugColor_PlaceCursor:
ld a, DEBUGTEST_BLACK
hlcoord 10, 0
ld [hl], a
hlcoord 15, 0
ld [hl], a
hlcoord 1, 11
ld [hl], a
hlcoord 1, 13
ld [hl], a
hlcoord 1, 15
ld [hl], a
ld a, [wJumptableIndex]
cp DEBUGCOLORMAIN_JOYPAD
jr nz, .clearsprites
ld a, [wDebugColorRGBJumptableIndex]
and a
jr z, .place_cursor
dec a
hlcoord 1, 11
ld bc, 2 * SCREEN_WIDTH
call AddNTimes
ld [hl], "▶"
.place_cursor
ld a, [wDebugColorCurColor]
and a
jr z, .light
; dark
hlcoord 15, 0
jr .place
.light
hlcoord 10, 0
.place
ld [hl], "▶"
ld b, $70 ; initial tile id
ld c, 5 ; initial palette
ld hl, wVirtualOAM
ld de, wDebugRedChannel
call .placesprite
ld de, wDebugGreenChannel
call .placesprite
ld de, wDebugBlueChannel
call .placesprite
ret
.placesprite:
ld a, b
ld [hli], a ; y
ld a, [de]
add a
add a
add 3 * TILE_WIDTH
ld [hli], a ; x
xor a
ld [hli], a ; tile id
ld a, c
ld [hli], a ; attributes
ld a, 2 * TILE_WIDTH
add b
ld b, a
inc c
ret
.clearsprites:
call ClearSprites
ret
DebugColor_AreYouFinishedString:
db "おわりますか?" ; Are you finished?
next "はい<DOT><DOT><DOT>", DEBUGTEST_A ; YES...(A)
next "いいえ<DOT><DOT>", DEBUGTEST_B ; NO..(B)
db "@"
DebugColor_UpArrowGFX:
INCBIN "gfx/debug/up_arrow.2bpp"
DebugColor_GFX:
INCBIN "gfx/debug/color_test.2bpp"
TilesetColorPicker: ; unreferenced
; A debug menu to test tileset palettes at runtime.
; dummied out
ret
xor a
ld [wJumptableIndex], a
ld [wDebugTilesetCurPalette], a
ld [wDebugTilesetRGBJumptableIndex], a
ld [wDebugTilesetCurColor], a
ldh [hMapAnims], a
call ClearSprites
call OverworldTextModeSwitch
call WaitBGMap2
xor a
ldh [hBGMapMode], a
ld de, DebugColor_GFX
ld hl, vTiles2 tile DEBUGTEST_TICKS_1
lb bc, BANK(DebugColor_GFX), 22
call Request2bpp
ld de, DebugColor_UpArrowGFX
ld hl, vTiles1
lb bc, BANK(DebugColor_UpArrowGFX), 1
call Request2bpp
ld a, HIGH(vBGMap1)
ldh [hBGMapAddress + 1], a
hlcoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
ld a, DEBUGTEST_BLACK
call ByteFill
hlcoord 0, 0, wAttrmap
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
ld a, PAL_BG_TEXT
call ByteFill
decoord 1, 1, 0
ld a, DEBUGTEST_WHITE
call DebugTileset_DrawColorSwatch
decoord 6, 1, 0
ld a, DEBUGTEST_LIGHT
call DebugTileset_DrawColorSwatch
decoord 11, 1, 0
ld a, DEBUGTEST_DARK
call DebugTileset_DrawColorSwatch
decoord 16, 1, 0
ld a, DEBUGTEST_BLACK
call DebugTileset_DrawColorSwatch
call DebugTileset_LoadRGBMeter
call DebugTileset_LoadPalettes
call WaitBGMap2
ld [wJumptableIndex], a
ld a, $40
ldh [hWY], a
ret
DebugTileset_DrawColorSwatch:
hlcoord 0, 0
call _DebugColor_DrawSwatch
DebugColor_DrawAttributeSwatch:
ld a, [wDebugTilesetCurPalette]
hlcoord 0, 0, wAttrmap
; fallthrough
_DebugColor_DrawSwatch:
; Fills a 4x3 box at de with byte a.
add hl, de
rept 4
ld [hli], a
endr
rept 2
ld bc, SCREEN_WIDTH - 4
add hl, bc
rept 4
ld [hli], a
endr
endr
ret
DebugTileset_LoadRGBMeter:
hlcoord 2, 4
call .Place
hlcoord 2, 6
call .Place
hlcoord 2, 8
.Place:
ld a, DEBUGTEST_TICKS_1
ld [hli], a
ld bc, 15
ld a, DEBUGTEST_TICKS_2
call ByteFill
ret
DebugTileset_LoadPalettes:
ld a, [wDebugTilesetCurPalette]
ld l, a
ld h, 0
add hl, hl
add hl, hl
add hl, hl
ld de, wBGPals1
add hl, de
ld de, wDebugPalette
ld bc, 1 palettes
call CopyBytes
ld de, wDebugPalette
call DebugColor_CalculateRGB
ret
DebugColorMain2: ; unreferenced
ld hl, hJoyLast
ld a, [hl]
and SELECT
jr nz, .next_palette
ld a, [hl]
and B_BUTTON
jr nz, .cancel
call DebugTileset_Joypad
ret
.next_palette
ld hl, wDebugTilesetCurPalette
ld a, [hl]
inc a
and PALETTE_MASK
cp PAL_BG_TEXT
jr nz, .palette_ok
xor a ; PAL_BG_GRAY
.palette_ok
ld [hl], a
decoord 1, 1, 0
call DebugColor_DrawAttributeSwatch
decoord 6, 1, 0
call DebugColor_DrawAttributeSwatch
decoord 11, 1, 0
call DebugColor_DrawAttributeSwatch
decoord 16, 1, 0
call DebugColor_DrawAttributeSwatch
ld hl, wBGPals2
ld a, [wDebugTilesetCurPalette]
ld bc, 1 palettes
call AddNTimes
ld de, wDebugPalette
ld bc, 1 palettes
call CopyBytes
ld a, 2
ldh [hBGMapMode], a
ld c, 3
call DelayFrames
ld a, 1
ldh [hBGMapMode], a
ret
.cancel
call ClearSprites
ldh a, [hWY]
xor %11010000
ldh [hWY], a
ret
DebugTileset_UpdatePalettes:
ld hl, wBGPals2
ld a, [wDebugTilesetCurPalette]
ld bc, 1 palettes
call AddNTimes
ld e, l
ld d, h
ld hl, wDebugPalette
ld bc, 1 palettes
call CopyBytes
hlcoord 1, 0
ld de, wDebugWhiteTileColor
call DebugColor_PrintHexColor
hlcoord 6, 0
ld de, wDebugLightTileColor
call DebugColor_PrintHexColor
hlcoord 11, 0
ld de, wDebugDarkTileColor
call DebugColor_PrintHexColor
hlcoord 16, 0
ld de, wDebugBlackTileColor
call DebugColor_PrintHexColor
ld a, TRUE
ldh [hCGBPalUpdate], a
call DelayFrame
ret
DebugTileset_Joypad:
ld a, [wDebugTilesetRGBJumptableIndex]
maskbits 4 ; .PointerTable length
ld e, a
ld d, 0
ld hl, .PointerTable
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
jp hl
.PointerTable:
dw DebugTileset_SelectColorBox
dw DebugTileset_ChangeRedValue
dw DebugTileset_ChangeGreenValue
dw DebugTileset_ChangeBlueValue
DebugTileset_SelectColorBox:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugTileset_NextRGBColor
ld a, [hl]
and D_LEFT
jr nz, .left
ld a, [hl]
and D_RIGHT
jr nz, .right
ret
.left
ld a, [wDebugTilesetCurColor]
dec a
jr .done
.right
ld a, [wDebugTilesetCurColor]
inc a
.done
maskbits NUM_PAL_COLORS
ld [wDebugTilesetCurColor], a
ld e, a
ld d, 0
ld hl, wDebugPalette
add hl, de
add hl, de
ld e, l
ld d, h
call DebugColor_CalculateRGB
ret
DebugTileset_ChangeRedValue:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugTileset_NextRGBColor
ld a, [hl]
and D_UP
jr nz, DebugTileset_PreviousRGBColor
ld hl, wDebugRedChannel
jr DebugTileset_UpdateRGBColor
DebugTileset_ChangeGreenValue:
ld hl, hJoyLast
ld a, [hl]
and D_DOWN
jr nz, DebugTileset_NextRGBColor
ld a, [hl]
and D_UP
jr nz, DebugTileset_PreviousRGBColor
ld hl, wDebugGreenChannel
jr DebugTileset_UpdateRGBColor
DebugTileset_ChangeBlueValue:
ld hl, hJoyLast
ld a, [hl]
and D_UP
jr nz, DebugTileset_PreviousRGBColor
ld hl, wDebugBlueChannel
; fallthrough
DebugTileset_UpdateRGBColor:
ldh a, [hJoyLast]
and D_RIGHT
jr nz, .increment
ldh a, [hJoyLast]
and D_LEFT
jr nz, .decrement
ret
.increment
ld a, [hl]
cp 31
ret nc
inc [hl]
jr .done
.decrement
ld a, [hl]
and a
ret z
dec [hl]
.done
call DebugTileset_CalculatePalette
call DebugTileset_UpdatePalettes
ret
DebugTileset_PreviousRGBColor:
ld hl, wDebugTilesetRGBJumptableIndex
dec [hl]
ret
DebugTileset_NextRGBColor:
ld hl, wDebugTilesetRGBJumptableIndex
inc [hl]
ret
DebugTileset_CalculatePalette:
ld a, [wDebugRedChannel]
and %00011111
ld e, a
ld a, [wDebugGreenChannel]
and %0000111
sla a
swap a
or e
ld e, a
ld a, [wDebugGreenChannel]
and %00011000
sla a
swap a
ld d, a
ld a, [wDebugBlueChannel]
and %00011111
sla a
sla a
or d
ld d, a
ld a, [wDebugTilesetCurColor]
ld c, a
ld b, 0
ld hl, wDebugPalette
add hl, bc
add hl, bc
ld a, e
ld [hli], a
ld [hl], d
ret
DebugTileset_PlaceCursor: ; unreferenced
ld a, DEBUGTEST_BLACK
hlcoord 0, 4
ld [hl], a
hlcoord 0, 6
ld [hl], a
hlcoord 0, 8
ld [hl], a
hlcoord 0, 2
ld [hl], a
hlcoord 5, 2
ld [hl], a
hlcoord 10, 2
ld [hl], a
hlcoord 15, 2
ld [hl], a
ld a, [wDebugTilesetRGBJumptableIndex]
and a
jr z, .place_cursor
dec a
hlcoord 0, 4
ld bc, 2 * SCREEN_WIDTH
call AddNTimes
ld [hl], "▶"
.place_cursor
ld a, [wDebugTilesetCurColor]
hlcoord 0, 2
ld bc, 5
call AddNTimes
ld [hl], "▶"
ld b, $78 ; initial tile id
ld hl, wVirtualOAM
ld de, wDebugRedChannel
call .placesprite
ld de, wDebugGreenChannel
call .placesprite
ld de, wDebugBlueChannel
call .placesprite
ret
.placesprite:
ld a, b
ld [hli], a ; y
ld a, [de]
add a
add a
add 3 * TILE_WIDTH
ld [hli], a ; x
ld a, 16 * TILE_WIDTH
ld [hli], a ; tile id
ld a, 5
ld [hli], a ; attributes
ld a, 2 * TILE_WIDTH
add b
ld b, a
inc c
ret
.clearsprites: ; unreferenced
call ClearSprites
ret
.dummy: ; unreferenced
ret
|