summaryrefslogtreecommitdiff
path: root/home/audio.asm
blob: 4e931ab4130e1f74e266721de2c03152a78fdf4f (plain)
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
DisableAudio:: ; 3d4f (0:3d4f)
	push hl
	push de
	push bc
	push af
	ld a, [hROMBank]
	push af
	ld a, BANK(DisableAudio_)
	ld [hROMBank], a
	ld [MBC3RomBank], a
	call DisableAudio_
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
	pop af
	pop bc
	pop de
	pop hl
	ret

UpdateSound:: ; 3d6b (0:3d6b)
	push hl
	push de
	push bc
	push af
	ld a, [hROMBank]
	push af
	ld a, BANK(UpdateSound_)
	ld [hROMBank], a
	ld [MBC3RomBank], a
	call UpdateSound_
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
	pop af
	pop bc
	pop de
	pop hl
	ret

LoadMusicByte_::
	ld [hROMBank], a
	ld [MBC3RomBank], a

	ld a, [de]
	ld [wCurMusicByte], a
	ld a, BANK(UpdateSound_)

	ld [hROMBank], a
	ld [MBC3RomBank], a
	ret

PlayMusic:: ; 3d98 (0:3d98)
	push hl
	push de
	push bc
	push af
	ld a, [hROMBank]
	push af
	ld a, BANK(PlayMusic_)
	ld [hROMBank], a
	ld [MBC3RomBank], a
	ld a, e
	and a
	jr z, .asm_3daf
	call PlayMusic_ ; $4b30
	jr .asm_3db2

.asm_3daf
	call DisableAudio_
.asm_3db2
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
	pop af
	pop bc
	pop de
	pop hl
	ret

PlayMusic2::
	push hl
	push de
	push bc
	push af
	ld a, [hROMBank]
	push af
	ld a, BANK(PlayMusic_)
	ld [hROMBank], a
	ld [MBC3RomBank], a
	push de
	ld de, MUSIC_NONE
	call PlayMusic_
	call DelayFrame
	pop de
	call PlayMusic_
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
	pop af
	pop bc
	pop de
	pop hl
	ret

PlayCryHeader:: ; 3de4 (0:3de4)
	push hl
	push de
	push bc
	push af
	ld a, [hROMBank]
	push af
	ld a, BANK(CryHeaders) ; $3c
	ld [hROMBank], a
	ld [MBC3RomBank], a
	ld hl, CryHeaders ; $6747
	add hl, de
	add hl, de
	add hl, de
	add hl, de
	add hl, de
	add hl, de
	ld e, [hl]
	inc hl
	ld d, [hl]
	inc hl
	ld a, [hli]
	ld [wCryPitch], a
	ld a, [hli]
	ld [wCryPitch + 1], a
	ld a, [hli]
	ld [wCryLength], a
	ld a, [hl]
	ld [wCryLength + 1], a
	ld a, BANK(PlayCryHeader_)
	ld [hROMBank], a
	ld [MBC3RomBank], a
	call PlayCryHeader_
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
	pop af
	pop bc
	pop de
	pop hl
	ret

PlaySFX:: ; 3e24 (0:3e24)
	push hl
	push de
	push bc
	push af
	call CheckSFX
	jr nc, .asm_3e33
	ld a, [wCurSFX]
	cp e
	jr c, .asm_3e4a
.asm_3e33
	ld a, [hROMBank]
	push af
	ld a, BANK(PlaySFX_) ; $3a
	ld [hROMBank], a
	ld [MBC3RomBank], a
	ld a, e
	ld [wCurSFX], a
	call PlaySFX_ ; $4c04
	pop af
	ld [hROMBank], a
	ld [MBC3RomBank], a
.asm_3e4a
	pop af
	pop bc
	pop de
	pop hl
	ret

WaitPlaySFX::
	call WaitSFX
	call PlaySFX
	ret

WaitSFX:: ; 3e56 (0:3e56)
	push hl
.asm_3e57
	ld hl, wChannel5Flags
	bit 0, [hl]
	jr nz, .asm_3e57
	ld hl, wChannel6Flags
	bit 0, [hl]
	jr nz, .asm_3e57
	ld hl, wChannel7Flags
	bit 0, [hl]
	jr nz, .asm_3e57
	ld hl, wChannel8Flags
	bit 0, [hl]
	jr nz, .asm_3e57
	pop hl
	ret

MaxVolume::
	ld a, $77
	ld [wVolume], a
	ret

LowVolume::
	ld a, $33
	ld [wVolume], a
	ret

VolumeOff::
	xor a
	ld [wVolume], a
	ret

FadeOutMusic::
	ld a, $4
	ld [wMusicFade], a
	ret

FadeInMusic::
	ld a, 4 | 1 << 7
	ld [wMusicFade], a
	ret

Function3e92:: ; 3e92 (0:3e92)
	and a
	ret z
	dec a
	call UpdateSound
	jr Function3e92

FadeToMapMusic::
	push hl
	push de
	push bc
	push af
	call GetMapMusic
	ld a, [wMapMusic]
	cp e
	jr z, .asm_3eb8
	ld a, $8
	ld [wMusicFade], a
	ld a, e
	ld [wMusicFadeID], a
	ld a, d
	ld [wMusicFadeID + 1], a
	ld a, e
	ld [wChannelsEnd], a
.asm_3eb8
	pop af
	pop bc
	pop de
	pop hl
	ret

PlayMapMusic::
	push hl
	push de
	push bc
	push af
	call GetMapMusic
	ld a, [wMapMusic]
	cp e
	jr z, .asm_3edc
	push de
	ld de, MUSIC_NONE
	call PlayMusic
	call DelayFrame
	pop de
	ld a, e
	ld [wMapMusic], a
	call PlayMusic
.asm_3edc
	pop af
	pop bc
	pop de
	pop hl
	ret

EnterMapMusic::
	push hl
	push de
	push bc
	push af
	xor a
	ld [wDontPlayMapMusicOnReload], a
	ld de, MUSIC_BICYCLE
	ld a, [wPlayerBikeSurfState]
	cp $1
	jr z, .asm_3ef6
	call GetMapMusic
.asm_3ef6
	push de
	ld de, MUSIC_NONE
	call PlayMusic
	call DelayFrame
	pop de
	ld a, e
	ld [wChannelsEnd], a
	call PlayMusic
	pop af
	pop bc
	pop de
	pop hl
	ret

TryRestartMapMusic::
	ld a, [wDontPlayMapMusicOnReload]
	and a
	jr z, RestartMapMusic
	xor a
	ld [wChannelsEnd], a
	ld de, MUSIC_NONE
	call PlayMusic
	call DelayFrame
	xor a
	ld [wDontPlayMapMusicOnReload], a
	ret

RestartMapMusic::
	push hl
	push de
	push bc
	push af
	ld de, MUSIC_NONE
	call PlayMusic
	call DelayFrame
	ld a, [wChannelsEnd]
	ld e, a
	ld d, $0
	call PlayMusic
	pop af
	pop bc
	pop de
	pop hl
	ret

SpecialMapMusic:: ; 3f40 (0:3f40)
	ld a, [wPlayerBikeSurfState]
	cp PLAYER_SURF
	jr z, .surf
	cp PLAYER_SURF_PIKA
	jr z, .surf
	CheckFlag ENGINE_BUG_CONTEST_TIMER
	jr nz, .contest
.normal
	and a
	ret

.bike
	ld de, MUSIC_BICYCLE
	scf
	ret

.surf
	ld de, MUSIC_SURF
	scf
	ret

.contest
	ld a, [wMapGroup]
	cp GROUP_ROUTE_35_NATIONAL_PARK_GATE
	jr nz, .normal
	ld a, [wMapNumber]
	cp MAP_ROUTE_35_NATIONAL_PARK_GATE
	jr z, .ranking
	cp MAP_ROUTE_36_NATIONAL_PARK_GATE
	jr nz, .normal
.ranking
	ld de, MUSIC_BUG_CATCHING_CONTEST_RANKING
	scf
	ret

GetMapMusic:: ; 3f75 (0:3f75)
	call SpecialMapMusic
	ret c
	call GetMapHeaderMusic
	ret

Function3f7d::
	ld a, $20
	ld [$c398], a
	ld [$c39c], a
	ld a, $50
	ld [$c399], a
	ld a, $58
	ld [$c39d], a
	xor a
	ld [$c39b], a
	ld [$c39f], a
	ld a, [wc196]
	cp $64
	jr nc, .asm_3fb3
	add $1
	daa
	ld b, a
	swap a
	and $f
	add $f6
	ld [$c39a], a
	ld a, b
	and $f
	add $f6
	ld [$c39e], a
	ret

.asm_3fb3
	ld a, $ff
	ld [$c39a], a
	ld [$c39e], a
	ret

CheckSFX:: ; 3fbc (0:3fbc)
	ld a, [wChannel5Flags]
	bit 0, a
	jr nz, .asm_3fda
	ld a, [wChannel6Flags]
	bit 0, a
	jr nz, .asm_3fda
	ld a, [wChannel7Flags]
	bit 0, a
	jr nz, .asm_3fda
	ld a, [wChannel8Flags]
	bit 0, a
	jr nz, .asm_3fda
	and a
	ret

.asm_3fda
	scf
	ret

TerminateExpBarSound::
	xor a
	ld [wChannel5Flags], a
	ld [wSoundInput], a
	ld [rNR10], a
	ld [rNR11], a
	ld [rNR12], a
	ld [rNR13], a
	ld [rNR14], a
	ret