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
|
GetSpritePalette:: ; 169c
push hl
push de
push bc
ld c, a
farcall GetSpritePalette_
ld a, c
pop bc
pop de
pop hl
ret
GetSpriteVTile::
push hl
push bc
ld hl, wUsedSprites + 2
ld c, $b
ld b, a
ld a, [hMapObjectIndexBuffer]
cp $0
jr z, .asm_16c8
ld a, b
.asm_16ba
cp [hl]
jr z, .asm_16cd
inc hl
inc hl
dec c
jr nz, .asm_16ba
ld a, [wUsedSprites + 1]
scf
jr .asm_16d0
.asm_16c8
ld a, [wUsedSprites + 1]
jr .asm_16d0
.asm_16cd
inc hl
xor a
ld a, [hl]
.asm_16d0
pop bc
pop hl
ret
DoesSpriteHaveFacings::
push de
push hl
ld b, a
ld a, [hROMBank]
push af
ld a, BANK(DoesSpriteHaveFacings_)
rst Bankswitch
ld a, b
call DoesSpriteHaveFacings_
ld c, a
pop de
ld a, d
rst Bankswitch
pop hl
pop de
ret
GetPlayerStandingTile::
ld a, [wPlayerStandingTile]
call GetTileCollision
ld b, a
ret
CheckOnWater::
ld a, [wPlayerStandingTile]
call GetTileCollision
sub $1
ret z
and a
ret
GetTileCollision:: ; 16fa (0:16fa)
push de
push hl
ld hl, TileCollisionTable
ld e, a
ld d, $0
add hl, de
ld a, [hROMBank]
push af
ld a, BANK(TileCollisionTable)
rst Bankswitch
ld e, [hl]
pop af
rst Bankswitch
ld a, e
and $f
pop hl
pop de
ret
CheckGrassTile::
ld d, a
and $f0
cp $10
jr z, .asm_171f
cp $20
jr z, .asm_1725
scf
ret
.asm_171f
ld a, d
and $7
ret z
scf
ret
.asm_1725
ld a, d
and $7
ret z
scf
ret
CheckSuperTallGrassTile::
cp $14
ret z
cp $1c
ret
CheckCutTreeTile::
cp $12
ret z
cp $1a
ret
CheckHeadbuttTreeTile::
cp $15
ret z
cp $1d
ret
CheckCounterTile::
cp $90
ret z
cp $98
ret
CheckPitTile::
cp $60
ret z
cp $68
ret
CheckIceTile::
cp $23
ret z
cp $2b
ret z
scf
ret
CheckWhirlpoolTile::
nop
cp $24
ret z
cp $2c
ret z
scf
ret
CheckWaterfallTile::
cp $33
ret z
cp $3b
ret
CheckStandingOnEntrance::
ld a, [wPlayerStandingTile]
cp $71
ret z
cp $79
ret z
cp $7a
ret z
cp $7b
ret
GetMapObject:: ; 176f (0:176f)
ld hl, wMapObjects
ld bc, $10
call AddNTimes
ld b, h
ld c, l
ret
CheckObjectVisibility:: ; 177b (0:177b)
ld [hConnectionStripLength], a
call GetMapObject
ld hl, 0
add hl, bc
ld a, [hl]
cp $ff
jr z, .asm_1790
ld [hObjectStructIndexBuffer], a
call GetObjectStruct
and a
ret
.asm_1790
scf
ret
CheckObjectTime::
ld hl, $6
add hl, bc
ld a, [hl]
cp $ff
jr nz, .asm_17be
ld hl, $7
add hl, bc
ld a, [hl]
cp $ff
jr z, .asm_17b9
ld hl, .TimeOfDayValues_17bb
ld a, [wTimeOfDay]
add l
ld l, a
jr nc, .asm_17af
inc h
.asm_17af
ld a, [hl]
ld hl, $7
add hl, bc
and [hl]
jr nz, .asm_17b9
scf
ret
.asm_17b9
and a
ret
.TimeOfDayValues_17bb:
db MORN
db DAY
db NITE
.asm_17be
ld hl, $6
add hl, bc
ld d, [hl]
ld hl, $7
add hl, bc
ld e, [hl]
ld hl, hHours
ld a, d
cp e
jr z, .asm_17e6
jr c, .asm_17dc
ld a, [hl]
cp d
jr nc, .asm_17e6
cp e
jr c, .asm_17e6
jr z, .asm_17e6
jr .asm_17e8
.asm_17dc
ld a, e
cp [hl]
jr c, .asm_17e8
ld a, [hl]
cp d
jr nc, .asm_17e6
jr .asm_17e8
.asm_17e6
and a
ret
.asm_17e8
scf
ret
Function17ea::
ld [hMapObjectIndexBuffer], a
call GetMapObject
call CopyObjectStruct_
ret
CopyObjectStruct::
ld [hMapObjectIndexBuffer], a
call UnmaskObject
ld a, [hConnectionStripLength]
call GetMapObject
farcall CopyObjectStruct_
ret
ApplyDeletionToMapObject:: ; 1804 (0:1804)
ld [hConnectionStripLength], a
call GetMapObject
ld hl, 0
add hl, bc
ld a, [hl]
cp $ff
ret z
ld [hl], $ff
push af
call DeleteOject_CheckStopFollow
pop af
call GetObjectStruct
farcall DeleteMapObject
ret
DeleteOject_CheckStopFollow:: ; 1822 (0:1822)
ld hl, wObjectFollow_Leader
cp [hl]
jr z, .asm_182d
ld hl, wObjectFollow_Follower
cp [hl]
ret nz
.asm_182d
farcall StopFollow
ld a, $ff
ld [wObjectFollow_Leader], a
ld [wObjectFollow_Follower], a
ret
DeleteObjectStruct::
call ApplyDeletionToMapObject
call MaskObject
ret
CopyPlayerObjectTemplate::
push hl
call GetMapObject
ld d, b
ld e, c
ld a, $ff
ld [de], a
inc de
pop hl
ld bc, $f
call CopyBytes
ret
Function1855::
call GetMapObject
ld hl, 0
add hl, bc
ld a, [hl]
push af
ld [hl], $ff
inc hl
ld bc, $f
xor a
call ByteFill
pop af
cp $ff
ret z
cp $d
ret nc
ld b, a
ld a, [wObjectFollow_Leader]
cp b
jr nz, .asm_187b
ld a, $ff
ld [wObjectFollow_Leader], a
.asm_187b
ld a, b
call GetObjectStruct
farcall DeleteMapObject
ret
LoadMovementDataPointer::
ld [wMovementPerson], a
ld a, [hROMBank]
ld [wMovementDataPointerBank], a
ld a, l
ld [wMovementDataPointerAddr], a
ld a, h
ld [wMovementDataPointerAddr + 1], a
ld a, [wMovementPerson]
call CheckObjectVisibility
ret c
ld hl, $3
add hl, bc
ld [hl], $14
ld hl, $9
add hl, bc
ld [hl], $0
ld hl, wVramState
set 7, [hl]
and a
ret
FindFirstEmptyObjectStruct::
push bc
push de
ld hl, wObjectStructs
ld de, $28
ld c, $d
.asm_18ba
ld a, [hl]
and a
jr z, .asm_18c5
add hl, de
dec c
jr nz, .asm_18ba
xor a
jr .asm_18c9
.asm_18c5
ld a, $d
sub c
scf
.asm_18c9
pop de
pop bc
ret
GetSpriteMovementFunction::
ld hl, $3
add hl, bc
ld a, [hl]
cp $25
jr c, .asm_18d6
xor a
.asm_18d6
ld hl, SpriteMovementData
ld e, a
ld d, $0
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
ld a, [hl]
ret
GetInitialFacing::
push bc
push de
ld e, a
ld d, $0
ld hl, SpriteMovementData + 1
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
ld a, BANK(SpriteMovementData)
call GetFarByte
add a
add a
and $c
pop de
pop bc
ret
CopySpriteMovementData::
ld l, a
ld a, [hROMBank]
push af
ld a, BANK(SpriteMovementData)
rst Bankswitch
ld a, l
push bc
call .CopyData
pop bc
pop af
rst Bankswitch
ret
.CopyData:
ld hl, $3
add hl, de
ld [hl], a
push de
ld e, a
ld d, $0
ld hl, $4275
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
add hl, de
ld b, h
ld c, l
pop de
ld a, [bc]
inc bc
rlca
rlca
and $c
ld hl, $8
add hl, de
ld [hl], a
ld a, [bc]
inc bc
ld hl, $b
add hl, de
ld [hl], a
ld a, [bc]
inc bc
ld hl, $4
add hl, de
ld [hl], a
ld a, [bc]
inc bc
ld hl, $5
add hl, de
ld [hl], a
ld a, [bc]
inc bc
ld hl, $6
add hl, de
ld [hl], a
ret
GetMovementByte_::
ld a, [hROMBank]
push af
ld a, [hli]
rst Bankswitch
ld a, [hli]
ld d, [hl]
ld hl, $1b
add hl, bc
add [hl]
ld e, a
ld a, d
adc $0
ld d, a
inc [hl]
ld a, [de]
ld h, a
pop af
rst Bankswitch
ld a, h
ret
SetVramState_Bit0::
ld hl, wVramState
set 0, [hl]
ret
ResetVramState_Bit0::
ld hl, wVramState
res 0, [hl]
ret
UpdateSprites:: ; 196f (0:196f)
ld a, [wVramState]
bit 0, a
ret z
farcall Function557f
farcall UpdateSprites_
ret
GetObjectStruct:: ; 1982 (0:1982)
ld bc, $28
ld hl, wObjectStructs
call AddNTimes
ld b, h
ld c, l
ret
DoesObjectHaveASprite::
ld hl, 0
add hl, bc
ld a, [hl]
and a
ret
SetSpriteDirection::
push af
ld hl, $8
add hl, bc
ld a, [hl]
and $f3
ld e, a
pop af
and $c
or e
ld [hl], a
ret
GetSpriteDirection::
ld hl, $8
add hl, bc
ld a, [hl]
and $c
ret
|