forked from Masaru2/pokejp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hram.asm
402 lines (315 loc) · 7.14 KB
/
hram.asm
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
SECTION "HRAM", HRAM
; Initialized to 16.
; Decremented each input iteration if the player
; presses the reset sequence (A+B+SEL+START).
; Soft reset when 0 is reached.
hSoftReset:: db
UNION
hBaseTileID:: ; base tile ID to which offsets are added
hDexWeight::
hWarpDestinationMap::
hOAMTile::
hROMBankTemp::
hPreviousTileset::
hRLEByteValue::
db
hSpriteIndexOrTextID:: ; DisplayTextID's argument
hPartyMonIndex::
db
hVRAMSlot::
db
hFourTileSpriteCount::
hHalveItemPrices::
db
NEXTU
hItemPrice:: ds 3 ; BCD number
NEXTU
hSlideAmount:: db
; the total number of tiles being shifted each time the pic slides by one tile
hSlidingRegionSize:: db
; -1 = left
; 0 = right
hSlideDirection:: db
NEXTU
hSpriteInterlaceCounter::
hSpriteWidth:: db ; in tiles
hSpriteHeight:: db ; in tiles
hSpriteOffset:: db
NEXTU
; counters for blinking down arrow
hDownArrowBlinkCount1:: db
hDownArrowBlinkCount2:: db
NEXTU
hMapStride::
hEastWestConnectedMapWidth::
hNorthSouthConnectionStripWidth::
db
hMapWidth::
hNorthSouthConnectedMapWidth::
db
NEXTU
hSpriteDataOffset:: db
hSpriteIndex:: db
hSpriteImageIndex::
hSpriteFacingDirection::
hSpriteMovementByte2::
db
NEXTU
ds 2
hLoadSpriteTemp1:: db
hLoadSpriteTemp2:: db
NEXTU
ds 2
hEnemySpeed:: dw
ENDU
UNION
hSpriteOffset2:: db
hOAMBufferOffset:: db
hSpriteScreenX:: db
hSpriteScreenY:: db
NEXTU
hFF8F:: db
hFF90:: db
hFF91:: db
hFF92:: db
ENDU
hTilePlayerStandingOn:: db
hSpritePriority:: db
UNION
;; Multiplication and division variables are meant
;; to overlap for back-to-back usage. Big endian.
UNION
ds 1
hMultiplicand:: ds 3
hMultiplier:: db
ds 1
hMultiplyBuffer:: ds 4
NEXTU
hProduct:: ds 4
NEXTU
hDividend:: ds 4
hDivisor:: db
hDivideBuffer:: ds 5
NEXTU
hQuotient:: ds 4
hRemainder:: db
ENDU
NEXTU
; PrintNumber (big endian).
hPastLeadingZeros:: db ; last char printed
hNumToPrint:: ds 3
hPowerOf10:: ds 3
hSavedNumToPrint:: ds 3
NEXTU
hNPCMovementDirections2Index::
hNPCSpriteOffset::
; distance in steps between NPC and player
hNPCPlayerYDistance::
db
hNPCPlayerXDistance::
db
hFindPathNumSteps:: db
; bit 0: set when the end of the path's Y coordinate matches the target's
; bit 1: set when the end of the path's X coordinate matches the target's
; When both bits are set, the end of the path is at the target's position
; (i.e. the path has been found).
hFindPathFlags:: db
hFindPathYProgress:: db
hFindPathXProgress:: db
; 0 = from player to NPC
; 1 = from NPC to player
hNPCPlayerRelativePosPerspective:: db
ds 1
; bit 0:
; 0 = target is to the south or aligned
; 1 = target is to the north
; bit 1:
; 0 = target is to the east or aligned
; 1 = target is to the west
hNPCPlayerRelativePosFlags:: db
NEXTU
hSwapItemID:: db
hSwapItemQuantity:: db
NEXTU
hSignCoordPointer:: dw
NEXTU
ds 1
hMutateWY:: db
hMutateWX:: db
NEXTU
; temp value used when swapping bytes or words
hSwapTemp:: db
hExperience:: ds 3 ; big endian
ENDU
UNION
hMoney:: ds 3 ; BCD number
NEXTU
; some code zeroes this for no reason when writing a coin amount
hUnusedCoinsByte:: db
hCoins:: ds 2 ; BCD number
ENDU
hDivideBCDDivisor::
hDivideBCDQuotient::
ds 3 ; BCD number
hDivideBCDBuffer::
ds 3 ; BCD number
ds 1
hSerialReceivedNewData:: db
; $01 = using external clock
; $02 = using internal clock
; $ff = establishing connection
hSerialConnectionStatus:: db
hSerialIgnoringInitialData:: db
hSerialSendData:: db
hSerialReceiveData:: db
; these values are copied to rSCX, rSCY, and rWY during V-blank
hSCX:: db
hSCY:: db
hWY:: db
hJoyLast:: db
hJoyReleased:: db
hJoyPressed:: db
hJoyHeld:: db
hJoy5:: db
hJoy6:: db
hJoy7:: db
hLoadedROMBank:: db
hSavedROMBank:: db
; is automatic background transfer during V-blank enabled?
; if nonzero, yes
; if zero, no
hAutoBGTransferEnabled:: db
; 00 = top third of background
; 01 = middle third of background
; 02 = bottom third of background
hAutoBGTransferPortion:: db
; the destination address of the automatic background transfer
hAutoBGTransferDest:: dw
hRedrawMapViewRowOffset:: db
; temporary storage for stack pointer during memory transfers that use pop
; to increase speed
hSPTemp:: dw
; source address for VBlankCopyBgMap function
; the first byte doubles as the byte that enabled the transfer.
; if it is 0, the transfer is disabled
; if it is not 0, the transfer is enabled
; this means that XX00 is not a valid source address
hVBlankCopyBGSource:: dw
; destination address for VBlankCopyBgMap function
hVBlankCopyBGDest:: dw
; number of rows for VBlankCopyBgMap to copy
hVBlankCopyBGNumRows:: db
; size of VBlankCopy transfer in 16-byte units
hVBlankCopySize:: db
; source address for VBlankCopy function
hVBlankCopySource:: dw
; destination address for VBlankCopy function
hVBlankCopyDest:: dw
; size of source data for VBlankCopyDouble in 8-byte units
hVBlankCopyDoubleSize:: db
; source address for VBlankCopyDouble function
hVBlankCopyDoubleSource:: dw
; destination address for VBlankCopyDouble function
hVBlankCopyDoubleDest:: dw
; controls whether a row or column of 2x2 tile blocks is redrawn in V-blank
; 00 = no redraw
; 01 = redraw column
; 02 = redraw row
hRedrawRowOrColumnMode:: db
hRedrawRowOrColumnDest:: dw
hRandomAdd:: db
hRandomSub:: db
hFrameCounter:: db ; decremented every V-blank (used for delays)
; V-blank sets this to 0 each time it runs.
; So, by setting it to a nonzero value and waiting for it to become 0 again,
; you can detect that the V-blank handler has run since then.
hVBlankOccurred:: db
; 00 = indoor
; 01 = cave
; 02 = outdoor
; this is often set to 00 in order to turn off water and flower BG tile animations
hTilesetType:: db
hMovingBGTilesCounter1:: db
ds 1
hCurrentSpriteOffset:: db ; multiple of $10
UNION
hPlayerFacing:: db
hPlayerYCoord:: db
hPlayerXCoord:: db
NEXTU
; $00 = bag full
; $01 = got item
; $80 = didn't meet required number of owned mons
; $FF = player cancelled
hOaksAideResult::
hOaksAideRequirement:: ; required number of owned mons
db
hOaksAideRewardItem:: db
hOaksAideNumMonsOwned:: db
NEXTU
hVendingMachineItem:: db
hVendingMachinePrice:: ds 3 ; BCD number
NEXTU
hGymGateIndex:: db
hGymGateAnswer:: db
NEXTU
hDexRatingNumMonsSeen:: db
hDexRatingNumMonsOwned:: db
NEXTU
hItemToRemoveID:: db
hItemToRemoveIndex:: db
NEXTU
hItemCounter::
hSavedCoordIndex::
hMissableObjectIndex::
hGymTrashCanRandNumMask::
db
NEXTU
hFFDB:: db
hFFDC:: db
ENDU
ds 1
hBackupGymGateIndex::
hUnlockedSilphCoDoors::
db
; the first tile ID in a sequence of tile IDs that increase by 1 each step
hStartTileID:: db
ds 2
hNewPartyLength:: db
UNION
hDividend2:: db
hDivisor2:: db
hQuotient2:: db
NEXTU
hIsHiddenMissableObject:: db
ENDU
hMapROMBank:: db
hSpriteVRAMSlotAndFacing:: db
hCoordsInFrontOfPlayerMatch::
hSpriteAnimFrameCounter::
db
UNION
hSpriteScreenYCoord:: db
hSpriteScreenXCoord:: db
hSpriteMapYCoord:: db
hSpriteMapXCoord:: db
NEXTU
hItemAlreadyFound:: db
ds 2
hDidntFindAnyHiddenObject:: db
NEXTU
ds 1
hSavedMapTextPtr:: dw
ds 1
ENDU
ds 4
hWhoseTurn:: db ; 0 on player's turn, 1 on enemy's turn
hClearLetterPrintingDelayFlags:: db
ds 1
; bit 0: draw HP fraction to the right of bar instead of below (for party menu)
; bit 1: menu is double spaced
hFlagsFFF6:: db
hFieldMoveMonMenuTopMenuItemX:: db
hJoyInput:: db
hDisableJoypadPolling:: db
ds 5