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
|
DoMysteryGift:
call ClearTilemap
call ClearSprites
call WaitBGMap
farcall InitMysteryGiftLayout
hlcoord 3, 8
ld de, .String_PressAToLink_BToCancel
call PlaceString
call WaitBGMap
farcall PrepMysteryGiftDataToSend
call MysteryGift_ClearTrainerData
ld a, $2
ld [wc901], a
ld a, $14
ld [wc902], a
ldh a, [rIE]
push af
call Function29fc9
ld d, a
xor a
ldh [rIF], a
pop af
ldh [rIE], a
push de
call ClearTilemap
call EnableLCD
call WaitBGMap
ld b, SCGB_DIPLOMA
call GetSGBLayout
call SetPalettes
pop de
hlcoord 2, 8
ld a, d
ld de, .MysteryGiftCanceledText ; Link has been canceled
cp $10
jp z, .LinkCanceled
cp $6c
jp nz, .CommunicationError
ld a, [wc800]
cp 3
jr z, .skip_checks
call .CheckAlreadyGotFiveGiftsToday
ld hl, .MysteryGiftFiveADayText ; Only 5 gifts a day
jp nc, .PrintTextAndExit
call .CheckAlreadyGotAGiftFromThatPerson
ld hl, .MysteryGiftOneADayText ; Only one gift a day per person
jp c, .PrintTextAndExit
.skip_checks
ld a, [wMysteryGiftPlayerBackupItem]
and a
jr nz, .GiftWaiting
ld a, [wMysteryGiftPartnerBackupItem]
and a
jr nz, .FriendNotReady
ld a, [wc800]
cp 3
jr z, .skip_append_save
call .AddMysteryGiftPartnerID
ld a, [wc800]
cp 4
jr z, .skip_append_save
call .SaveMysteryGiftTrainerName
.skip_append_save
ld a, [wMysteryGiftPartnerSentDeco]
and a
jr z, .item
ld a, [wMysteryGiftPartnerWhichDeco]
ld c, a
farcall MysteryGiftGetDecoration
push bc
call MysteryGift_CheckAndSetDecorationAlreadyReceived
pop bc
jr nz, .item
callfar GetDecorationName_c
ld h, d
ld l, e
ld de, wStringBuffer1
ld bc, ITEM_NAME_LENGTH
call CopyBytes
ld hl, .MysteryGiftSentHomeText ; sent decoration to home
jr .PrintTextAndExit
.item
call GetMysteryGiftBank
ld a, [wMysteryGiftPartnerWhichItem]
ld c, a
farcall MysteryGiftGetItemHeldEffect
ld a, c
ld [sBackupMysteryGiftItem], a
ld [wNamedObjectIndexBuffer], a
call CloseSRAM
call GetItemName
ld hl, .MysteryGiftSentText ; sent item
jr .PrintTextAndExit
.LinkCanceled:
ld hl, .MysteryGiftCanceledText ; Link has been canceled
jr .PrintTextAndExit
.CommunicationError:
ld hl, .MysteryGiftCommErrorText ; Communication error
call PrintText
jp DoMysteryGift
.GiftWaiting:
ld hl, .RetrieveMysteryGiftText ; receive gift at counter
jr .PrintTextAndExit
.FriendNotReady:
ld hl, .YourFriendIsNotReadyText ; friend not ready
.PrintTextAndExit:
call PrintText
ld a, LCDC_DEFAULT
ldh [rLCDC], a
ret
.String_PressAToLink_BToCancel:
db "Press A to"
next "link IR-Device"
next "Press B to"
next "cancel it."
db "@"
.MysteryGiftCanceledText:
text_far _MysteryGiftCanceledText
text_end
.MysteryGiftCommErrorText:
text_far _MysteryGiftCommErrorText
text_end
.RetrieveMysteryGiftText:
text_far _RetrieveMysteryGiftText
text_end
.YourFriendIsNotReadyText:
text_far _YourFriendIsNotReadyText
text_end
.MysteryGiftFiveADayText:
text_far _MysteryGiftFiveADayText
text_end
.MysteryGiftOneADayText:
text_far _MysteryGiftOneADayText
text_end
.MysteryGiftSentText:
text_far _MysteryGiftSentText
text_end
.MysteryGiftSentHomeText:
text_far _MysteryGiftSentHomeText
text_end
.CheckAlreadyGotFiveGiftsToday:
call GetMysteryGiftBank
ld a, [sNumDailyMysteryGiftPartnerIDs]
cp $5
jp CloseSRAM
.CheckAlreadyGotAGiftFromThatPerson:
call GetMysteryGiftBank
ld a, [wMysteryGiftPartnerID]
ld b, a
ld a, [wMysteryGiftPartnerID + 1]
ld c, a
ld a, [sNumDailyMysteryGiftPartnerIDs]
ld d, a
ld hl, sDailyMysteryGiftPartnerIDs
.loop
ld a, d
and a
jr z, .No
ld a, [hli]
cp b
jr nz, .skip
ld a, [hl]
cp c
jr z, .Yes
.skip
inc hl
dec d
jr .loop
.Yes:
scf
.No:
jp CloseSRAM
.AddMysteryGiftPartnerID:
call GetMysteryGiftBank
ld hl, sNumDailyMysteryGiftPartnerIDs
ld a, [hl]
inc [hl]
ld hl, sDailyMysteryGiftPartnerIDs ; inc hl
ld e, a
ld d, $0
add hl, de
add hl, de
ld a, [wMysteryGiftPartnerID]
ld [hli], a
ld a, [wMysteryGiftPartnerID + 1]
ld [hl], a
jp CloseSRAM
.SaveMysteryGiftTrainerName:
call GetMysteryGiftBank
ld a, $1
ld [sMysteryGiftTrainerHouseFlag], a
ld hl, wMysteryGiftPartnerName
ld de, sMysteryGiftPartnerName
ld bc, NAME_LENGTH
call CopyBytes
ld a, $1
ld [de], a
inc de
ld hl, wMysteryGiftTrainerData
ld bc, (1 + 1 + NUM_MOVES) * PARTY_LENGTH + 2
call CopyBytes
jp CloseSRAM
Function29fc9:
farcall ClearChannels
call Function2a18c
.loop2
call Function2a1c4
call Function2a20b
ldh a, [hMGStatusFlags]
cp $10
jp z, Function2a103
cp $6c
jr nz, .loop2
ldh a, [hPrintNumBuffer + 8]
cp $2
jr z, Function2a055
ld hl, hPrintNumBuffer
ld b, $1
call Function2a184
jr nz, .ly_loop
call Function2a07c
jp nz, Function2a103
jr Function2a03d
; Delay frame
.ly_loop
ldh a, [rLY]
cp LY_VBLANK
jr c, .ly_loop
ld c, LOW(rRP)
ld a, $c0
ldh [c], a
ld b, 240 ; This might have been intended as a 4-second timeout buffer.
; However, it is reset with each frame.
.loop3
push bc
call MysteryGift_ReadJoypad
ld b, $2
ld c, LOW(rRP)
; Delay frame
.ly_loop2
ldh a, [c]
and b
ld b, a
ldh a, [rLY]
cp LY_VBLANK
jr nc, .ly_loop2
.ly_loop3
ldh a, [c]
and b
ld b, a
ldh a, [rLY]
cp LY_VBLANK
jr c, .ly_loop3
ld a, b
pop bc
dec b
jr z, .loop2 ; we never jump here
or a
jr nz, .loop2
; Check if we've pressed the B button
ldh a, [hMGJoypadReleased]
bit B_BUTTON_F, a
jr z, .loop3
ld a, $10
ldh [hMGStatusFlags], a
jp Function2a103
Function2a037:
call Function2a073
jp nz, Function2a103
; fall through
Function2a03d:
call Function2a166
jp nz, Function2a103
call Function2a0bb
jp nz, Function2a103
call Function2a171
jp nz, Function2a103
call Function2a461
jp Function2a103
Function2a055:
call Function2a0bb
jp nz, Function2a103
call Function2a171
jp nz, Function2a103
call Function2a073
jp nz, Function2a103
call Function2a166
jp nz, Function2a103
call Function2a45c
jp Function2a103
Function2a073:
ld hl, hPrintNumBuffer
ld b, $1
call Function2a184
ret nz
; fall through
Function2a07c:
call Function2a461
ldh a, [hMGStatusFlags]
cp $6c
ret nz
ldh a, [hPrintNumBuffer]
cp $96
jp nz, Function2a160
ld a, $90
ldh [hPrintNumBuffer], a
call Function2a166
ret nz
ld hl, hPrintNumBuffer
ld b, $1
call Function2a17c
ret nz
call Function2a45c
ldh a, [hMGStatusFlags]
cp $6c
ret nz
call Function2a171
ret nz
ld hl, wMysteryGiftTrainerData
ld a, [wc902]
ld b, a
call Function2a184
ret nz
call Function2a461
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a0bb:
ld a, $96
ldh [hPrintNumBuffer], a
ld hl, hPrintNumBuffer
ld b, $1
call Function2a17c
ret nz
call Function2a45c
ldh a, [hMGStatusFlags]
cp $6c
ret nz
call Function2a171
ret nz
ld hl, hPrintNumBuffer
ld b, $1
call Function2a184
ret nz
call Function2a461
ldh a, [hMGStatusFlags]
cp $6c
ret nz
ldh a, [hPrintNumBuffer]
cp $90
jp nz, Function2a160
call Function2a166
ret nz
ld hl, wLinkData
ld a, [wc902]
ld b, a
call Function2a17c
ret nz
call Function2a45c
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a103:
nop
ldh a, [hMGStatusFlags]
cp $10
jr z, .quit
cp $6c
jr nz, .quit
ld hl, wc901
dec [hl]
jr z, .quit
ld hl, wMysteryGiftTrainerData
ld de, wMysteryGiftPartnerData
ld bc, wMysteryGiftPartnerDataEnd - wMysteryGiftPartnerData
call CopyBytes
ld a, [wMysteryGiftTrainerData]
cp $3
jr nc, .quit
farcall StagePartyDataForMysteryGift
call MysteryGift_ClearTrainerData
ld a, $26
ld [wc902], a
ldh a, [hPrintNumBuffer + 8]
cp $2
jr z, .asm_2a143
call Function2a171
jr nz, Function2a103
jp Function2a037
.asm_2a143
call Function2a166
jr nz, Function2a103
jp Function2a055
.quit:
xor a
ldh [rIF], a
ldh a, [rIE]
or 1 << VBLANK
ldh [rIE], a
ei
call DelayFrame
ldh a, [hMGStatusFlags]
push af
call Function2a1ce
pop af
ret
Function2a160:
ld a, $80
ldh [hMGStatusFlags], a
and a
ret
Function2a166:
call Function2a1c4
call Function2a274
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a171:
call Function2a1c4
call Function2a22c
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a17c:
call Function2a2c1
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a184:
call Function2a385
ldh a, [hMGStatusFlags]
cp $6c
ret
Function2a18c:
call Function2a1a2
ld a, 1 << TIMER
ldh [rIE], a
xor a
ldh [rIF], a
call Function2a1c4
xor a
ld b, a
.asm_2a19b
inc a
jr nz, .asm_2a19b
inc b
jr nz, .asm_2a19b
ret
Function2a1a2:
xor a
ldh [rTAC], a
ld a, $fe
ldh [rTMA], a
ldh [rTIMA], a
ld a, $2
ldh [rTAC], a
or $4
ldh [rTAC], a
ret
Function2a1b4:
xor a
ldh [rTAC], a
ldh [rTMA], a
ldh [rTIMA], a
ld a, $2
ldh [rTAC], a
or $4
ldh [rTAC], a
ret
Function2a1c4:
ld a, $c0
call Function2a2ba
ld a, $1
ldh [hPrintNumBuffer + 8], a
ret
Function2a1ce:
xor a
call Function2a2ba
ld a, $2
ldh [rTAC], a
ret
Function2a1d7:
inc d
ret z
xor a
ldh [rIF], a
halt
ldh a, [c]
bit 1, a
jr z, Function2a1d7
or a
ret
Function2a1e5:
inc d
ret z
xor a
ldh [rIF], a
halt
ldh a, [c]
bit 1, a
jr nz, Function2a1e5
or a
ret
Function2a1f3:
ld a, $c1
ldh [c], a
.wait
dec d
ret z
xor a
ldh [rIF], a
halt
jr .wait
Function2a1ff:
ld a, $c0
ldh [c], a
.wait
dec d
ret z
xor a
ldh [rIF], a
halt
jr .wait
Function2a20b:
ld d, $0
ld e, d
ld a, $1
ldh [hPrintNumBuffer + 8], a
.loop
call MysteryGift_ReadJoypad
ld b, $2
ld c, LOW(rRP)
ldh a, [hMGJoypadReleased]
bit B_BUTTON_F, a
jr z, .next
ld a, $10
ldh [hMGStatusFlags], a
ret
.next
bit 0, a
jr nz, Function2a268
ldh a, [c]
and b
jr nz, .loop
Function2a22c:
ld c, LOW(rRP)
ld d, $0
ld e, d
call Function2a1e5
jp z, Function2a370
ld d, e
call Function2a1d7
jp z, Function2a370
call Function2a1e5
jp z, Function2a370
call Function2a1d7
jp z, Function2a370
ld a, $6c
ldh [hMGStatusFlags], a
ld d, $3d
call Function2a1ff
ld d, $5
call Function2a1f3
ld d, $15
call Function2a1ff
ld d, $5
call Function2a1f3
ld d, $5
call Function2a1ff
ret
Function2a268:
; Wait a random amount of time
call Random
ld e, a
and $f
ld d, a
.loop
dec de
ld a, d
or e
jr nz, .loop
Function2a274:
ld a, $2
ldh [hPrintNumBuffer + 8], a
ld c, LOW(rRP)
ld d, $0
ld e, d
ld d, $3d
call Function2a1ff
ld d, $5
call Function2a1f3
ld d, $15
call Function2a1ff
ld d, $5
call Function2a1f3
ld d, $5
call Function2a1ff
ld d, e
call Function2a1e5
jp z, Function2a370
ld d, e
call Function2a1d7
jp z, Function2a370
call Function2a1e5
jp z, Function2a370
call Function2a1d7
jp z, Function2a370
ld d, $3d
call Function2a1ff
ld a, $6c
ldh [hMGStatusFlags], a
ret
Function2a2ba:
ldh [rRP], a
ld a, $ff
ldh [hMGStatusFlags], a
ret
Function2a2c1:
xor a
ldh [hPrintNumBuffer + 4], a
ldh [hPrintNumBuffer + 5], a
push hl
push bc
ld c, LOW(rRP)
ld d, $3d
call Function2a1ff
ld hl, hPrintNumBuffer + 1
ld a, $5a
ld [hli], a
ld [hl], b
dec hl
ld b, $2
call Function2a304
pop bc
pop hl
call Function2a304
ldh a, [hPrintNumBuffer + 4]
ldh [hPrintNumBuffer + 1], a
ldh a, [hPrintNumBuffer + 5]
ldh [hPrintNumBuffer + 2], a
push hl
ld hl, hPrintNumBuffer + 1
ld b, $2
call Function2a304
ld hl, hMGStatusFlags
ld b, $1
call Function2a3dd
ldh a, [hPrintNumBuffer + 1]
ldh [hPrintNumBuffer + 4], a
ldh a, [hPrintNumBuffer + 2]
ldh [hPrintNumBuffer + 5], a
pop hl
ret
Function2a304:
ld c, LOW(rRP)
ld d, $5
call Function2a1ff
ld d, $5
call Function2a1f3
ld d, $15
call Function2a1ff
ld a, b
cpl
ld b, a
ld a, $f4
ldh [rTMA], a
.asm_2a31c
inc b
jr z, .asm_2a35c
ld a, $8
ldh [hPrintNumBuffer + 3], a
ld a, [hli]
ld e, a
ldh a, [hPrintNumBuffer + 4]
add e
ldh [hPrintNumBuffer + 4], a
ldh a, [hPrintNumBuffer + 5]
adc 0
ldh [hPrintNumBuffer + 5], a
.asm_2a330
xor a
ldh [rIF], a
halt
ld a, $c1
ldh [rRP], a
ld d, $1
ld a, e
rlca
ld e, a
jr nc, .asm_2a341
inc d
.asm_2a341
ldh a, [rTIMA]
cp $f8
jr c, .asm_2a341
ld a, $c0
ldh [rRP], a
dec d
jr z, .asm_2a353
xor a
ldh [rIF], a
halt
.asm_2a353
ldh a, [hPrintNumBuffer + 3]
dec a
jr z, .asm_2a31c
ldh [hPrintNumBuffer + 3], a
jr .asm_2a330
.asm_2a35c
ld a, $fe
ldh [rTMA], a
xor a
ldh [rIF], a
halt
ld d, $5
call Function2a1f3
ld d, $11
call Function2a1ff
ret
Function2a370:
ldh a, [hMGStatusFlags]
or $2
ldh [hMGStatusFlags], a
ret
Function2a377:
ldh a, [hMGStatusFlags]
or $1
ldh [hMGStatusFlags], a
ret
Function2a37e:
ldh a, [hMGStatusFlags]
or $80
ldh [hMGStatusFlags], a
ret
Function2a385:
xor a
ldh [hPrintNumBuffer + 4], a
ldh [hPrintNumBuffer + 5], a
push bc
push hl
ld hl, hPrintNumBuffer + 1
ld b, $2
call Function2a3dd
ldh a, [hPrintNumBuffer + 2]
ldh [hPrintNumBuffer + 7], a
ld b, a
pop hl
pop af
cp b
jp c, Function2a37e
ldh a, [hPrintNumBuffer + 1]
cp $5a
jp nz, Function2a37e
call Function2a3dd
ldh a, [hPrintNumBuffer + 4]
ld d, a
ldh a, [hPrintNumBuffer + 5]
ld e, a
push hl
push de
ld hl, hPrintNumBuffer + 1
ld b, $2
call Function2a3dd
pop de
ld hl, hPrintNumBuffer + 1
ld a, [hli]
xor d
ld b, a
ld a, [hl]
xor e
or b
call nz, Function2a377
push de
ld d, $3d
call Function2a1ff
ld hl, hMGStatusFlags
ld b, $1
call Function2a304
pop de
pop hl
ld a, d
ldh [hPrintNumBuffer + 4], a
ld a, e
ldh [hPrintNumBuffer + 5], a
ret
Function2a3dd:
ld c, LOW(rRP)
ld d, $0
call Function2a1e5
jp z, Function2a370
ld d, $0
call Function2a1d7
jp z, Function2a370
ld d, $0
call Function2a1e5
jp z, Function2a370
ld a, b
cpl
ld b, a
xor a
ldh [hMGPrevTIMA], a
call Function2a1b4
.asm_2a400
inc b
jr z, .asm_2a448
ld a, $8
ldh [hPrintNumBuffer + 3], a
.asm_2a407
ld d, $0
.asm_2a409
inc d
jr z, .asm_2a413
ldh a, [c]
bit 1, a
jr z, .asm_2a409
ld d, $0
.asm_2a413
inc d
jr z, .asm_2a41b
ldh a, [c]
bit 1, a
jr nz, .asm_2a413
.asm_2a41b
ldh a, [hMGPrevTIMA]
ld d, a
ldh a, [rTIMA]
ldh [hMGPrevTIMA], a
sub d
cp $12
jr c, .asm_2a42b
set 0, e
jr .asm_2a42d
.asm_2a42b
res 0, e
.asm_2a42d
ldh a, [hPrintNumBuffer + 3]
dec a
ldh [hPrintNumBuffer + 3], a
jr z, .asm_2a439
ld a, e
rlca
ld e, a
jr .asm_2a407
.asm_2a439
ld a, e
ld [hli], a
ldh a, [hPrintNumBuffer + 4]
add e
ldh [hPrintNumBuffer + 4], a
ldh a, [hPrintNumBuffer + 5]
adc 0
ldh [hPrintNumBuffer + 5], a
jr .asm_2a400
.asm_2a448
call Function2a1a2
xor a
ldh [rIF], a
ld d, $0
call Function2a1d7
jp z, Function2a370
ld d, $10
call Function2a1ff
ret
Function2a45c:
ld b, $0
jp Function2a2c1
Function2a461:
ld b, $0
jp Function2a385
MysteryGift_ReadJoypad:
; We can only get four inputs at a time.
; We take d-pad first for no particular reason.
ld a, R_DPAD
ldh [rJOYP], a
; Read twice to give the request time to take.
ldh a, [rJOYP]
ldh a, [rJOYP]
; The Joypad register output is in the lo nybble (inversed).
; We make the hi nybble of our new container d-pad input.
cpl
and $f
swap a
; We'll keep this in b for now.
ld b, a
; Buttons make 8 total inputs (A, B, Select, Start).
; We can fit this into one byte.
ld a, R_BUTTONS
ldh [rJOYP], a
; Wait for input to stabilize.
rept 6
ldh a, [rJOYP]
endr
; Buttons take the lo nybble.
cpl
and $f
or b
ld c, a
; To get the delta we xor the last frame's input with the new one.
ldh a, [hMGJoypadPressed]
xor c
; Released this frame:
and c
ldh [hMGJoypadReleased], a
; Pressed this frame:
ld a, c
ldh [hMGJoypadPressed], a
ld a, $30
; Reset the joypad register since we're done with it.
ldh [rJOYP], a
ret
MysteryGift_CheckAndSetDecorationAlreadyReceived:
call GetMysteryGiftBank
ld d, $0
ld b, CHECK_FLAG
ld hl, sMysteryGiftDecorationsReceived
lda_predef SmallFarFlagAction
push hl
push bc
call Predef
call CloseSRAM
ld a, c
and a
pop bc
pop hl
ret nz
call GetMysteryGiftBank
ld b, SET_FLAG
predef SmallFarFlagAction
call CloseSRAM
xor a
ret
MysteryGift_CopyReceivedDecosToPC:
call GetMysteryGiftBank
ld c, $0
.loop
push bc
ld d, $0
ld b, CHECK_FLAG
ld hl, sMysteryGiftDecorationsReceived
predef SmallFarFlagAction
ld a, c
and a
pop bc
jr z, .skip
push bc
callfar SetSpecificDecorationFlag
pop bc
.skip
inc c
ld a, c
cp TrophyIDs - DecorationIDs
jr c, .loop
jp CloseSRAM
UnlockMysteryGift:
call GetMysteryGiftBank
ld hl, sMysteryGiftUnlocked
ld a, [hl]
inc a
jr nz, .ok
ld [hld], a
ld [hl], a
.ok
jp CloseSRAM
Function2a4f6:
call GetMysteryGiftBank
ld a, [sNumDailyMysteryGiftPartnerIDs]
cp $ff
jr z, .okay
xor a
ld [sNumDailyMysteryGiftPartnerIDs], a
.okay
jp CloseSRAM
BackupMysteryGift:
call GetMysteryGiftBank
ld hl, sMysteryGiftItem
ld de, sBackupMysteryGiftItem
ld a, [hli]
ld [de], a
inc de
ld a, [hl]
ld [de], a
jp CloseSRAM
RestoreMysteryGift:
call GetMysteryGiftBank
ld hl, sBackupMysteryGiftItem
ld de, sMysteryGiftItem
ld a, [hli]
ld [de], a
inc de
ld a, [hl]
ld [de], a
jp CloseSRAM
MysteryGift_ClearTrainerData:
ld hl, wMysteryGiftTrainerData
xor a
ld b, wMysteryGiftTrainerDataEnd - wMysteryGiftTrainerData
.loop
ld [hli], a
dec b
jr nz, .loop
ret
GetMysteryGiftBank:
ld a, BANK(sBackupMysteryGiftItem)
jp OpenSRAM
|