mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-24 15:20:49 -04:00
77cfd399d0
* starting * a bunch * and another bunch * a bunch * Match func_800EB1DC * func_800EB4B4 * func_800EB6F8 * 2 more * fix prototype of a random kankyo function * func_800EBD60 non matching * func_800EC678 matched? * func_800EC6D4 * break * func_800ECD7C * A bunch of functions * func_800EE200 * func_800EDF78 and func_800EE0CC * func_800EDBE0 NON_MATCHING * Cutscene_Init NON_MATCHING * func_800EA324 NON_EQUIVALENT * Fix warnings * func_800EC924 NON_EQUIVALENT * Cutscene_ProcessCommands NON_EQUIVALENT * Format * Split z_demo data and import it * Import bss * Match func_800EB364 * Rename Cutscene_Command_SetTime * Improve Cutscene_ProcessCommands a bit (still not equivalent, probably) * Improve Cutscene_ProcessCommands thanks to engineer and anon * Cutscene_ProcessCommands NON_MATCHING * Name some commands * Fix * Renames based on Engineer knowledge of Audio stuff * More command names * Cutscene_Command_GiveTatlToPlayer * Some cutscene commands macros * more command macros * Macros for unknown commands * Improve Cutscene_Command_Textbox a bit * Rename stuff * Name Terminator and Camera * MOTIONBLUR * Macros for textbox commands * CS_PLAYER_ACTION_LIST * A few macro renames * Small cleaning * A bit more of cleanup * Rumble * Entrance comments in func_800EB6F8 * Some var renames * CS_CMD_FADESCREEN * More clean up * Clean functions protos * Move CutsceneStateHandler out of z64.h * Cutscene_DoNothing * Cutscene_IsPlayingCs & Cutscene_GetSceneSetupIndex * And more renames * name some stuff in the cutscenecontext struct * npcActionIndex->actorActionIndex * Undo names of CS_STATE_ enum * Name Cutscene_ActorTranslate family of functions * small docs pass * sfxconvert and format * Hopefully last cleanup * Add some missing functions to actorfixer * Fix merge issues and remove trailing commas * Cutscene commands fix * Cutscene_Command_Misc improved by engineer * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Address review * bss * Match Cutscene_Command_Textbox by anon58 * Fix merge issues * Match Cutscene_Command_Misc by @hensldm * review * float time macros * fix merge issues * format * Fix building assets * fix merge issues * format * Fix * format * fix merge issues * fix * fix * format * fix issues and run format * bss * Fix conflicts, bss and formatter * Update include/functions.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/functions.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/z64.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/z64cutscene.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/z64cutscene.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/z64cutscene.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * address review and fix some stuff * fix merge problems * more fixes and format * Fixes * Update include/functions.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update include/functions.h Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Update src/code/z_demo.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * Engineer suggestions * format * Elliptic review * Use dec for ShrinkWindow_SetLetterboxTarget * add a few comments * Cutscene_Command_ChooseCreditsScenes * Update src/code/z_demo.c Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> * format * some cleanups and some comments * change actorActionCmd from hex to dec in the codebase * minor comment on textboxcmd * ahhhh * Update src/code/z_demo.c Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> * brackets * minor comments * rewording * im dumb * brackets * another bracket * Dawn of the New Day * Update src/code/z_demo.c Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> * fixes * Cutscene_Command_TransitionFX by Anon Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com>
104 lines
3.9 KiB
C
104 lines
3.9 KiB
C
/* Header taken as placeholder from OoT sister project */
|
|
/* Confirm as needed */
|
|
|
|
#ifndef REGS_H
|
|
#define REGS_H
|
|
|
|
#define REG_GROUPS 29 // number of REG groups, i.e. REG, SREG, OREG, etc.
|
|
#define REG_PAGES 6
|
|
#define REG_PER_PAGE 16
|
|
#define REG_PER_GROUP REG_PAGES * REG_PER_PAGE
|
|
|
|
/* We probably want a better name for gGameInfo based on OoT discussions */
|
|
#define BASE_REG(n, r) gGameInfo->data[n * REG_PER_GROUP + r]
|
|
|
|
#define REG(r) BASE_REG(0, r)
|
|
#define SREG(r) BASE_REG(1, r)
|
|
#define OREG(r) BASE_REG(2, r)
|
|
#define PREG(r) BASE_REG(3, r)
|
|
#define QREG(r) BASE_REG(4, r)
|
|
#define MREG(r) BASE_REG(5, r)
|
|
#define YREG(r) BASE_REG(6, r)
|
|
#define DREG(r) BASE_REG(7, r)
|
|
#define UREG(r) BASE_REG(8, r)
|
|
#define IREG(r) BASE_REG(9, r)
|
|
#define ZREG(r) BASE_REG(10, r)
|
|
#define CREG(r) BASE_REG(11, r)
|
|
#define NREG(r) BASE_REG(12, r)
|
|
#define KREG(r) BASE_REG(13, r)
|
|
#define XREG(r) BASE_REG(14, r)
|
|
#define cREG(r) BASE_REG(15, r)
|
|
#define sREG(r) BASE_REG(16, r)
|
|
#define iREG(r) BASE_REG(17, r)
|
|
#define WREG(r) BASE_REG(18, r)
|
|
#define AREG(r) BASE_REG(19, r)
|
|
#define VREG(r) BASE_REG(20, r)
|
|
#define HREG(r) BASE_REG(21, r)
|
|
#define GREG(r) BASE_REG(22, r)
|
|
#define mREG(r) BASE_REG(23, r)
|
|
#define nREG(r) BASE_REG(24, r)
|
|
#define BREG(r) BASE_REG(25, r)
|
|
#define dREG(r) BASE_REG(26, r)
|
|
#define kREG(r) BASE_REG(27, r)
|
|
#define bREG(r) BASE_REG(28, r)
|
|
|
|
/* TODO: Actually confirm these, in case of miss-match it's at least a simple list to `sed` */
|
|
#define R_ENABLE_ARENA_DBG SREG(0) // Same as OoT
|
|
#define R_RUN_SPEED_LIMIT REG(45)
|
|
#define R_UPDATE_RATE SREG(30)
|
|
#define R_PAUSE_MENU_MODE SREG(94)
|
|
#define R_C_UP_ICON_X YREG(88)
|
|
#define R_C_UP_ICON_Y YREG(89)
|
|
#define R_MAGIC_FILL_COLOR(i) ZREG(0 + i)
|
|
#define R_C_BTN_COLOR(i) ZREG(39 + i)
|
|
#define R_B_BTN_COLOR(i) ZREG(43 + i)
|
|
#define R_START_LABEL_DD(i) ZREG(48 + i)
|
|
#define R_START_LABEL_Y(i) ZREG(51 + i)
|
|
#define R_START_LABEL_X(i) ZREG(54 + i)
|
|
#define R_C_UP_BTN_X ZREG(62)
|
|
#define R_C_UP_BTN_Y ZREG(63)
|
|
#define R_START_BTN_X ZREG(68)
|
|
#define R_START_BTN_Y ZREG(69)
|
|
#define R_ITEM_BTN_X(i) ZREG(70 + i)
|
|
#define R_ITEM_BTN_Y(i) ZREG(74 + i)
|
|
#define R_ITEM_BTN_DD(i) ZREG(78 + i)
|
|
#define R_ITEM_ICON_X(i) ZREG(82 + i)
|
|
#define R_ITEM_ICON_Y(i) ZREG(86 + i)
|
|
#define R_ITEM_ICON_DD(i) ZREG(90 + i)
|
|
#define R_A_BTN_Y XREG(16)
|
|
#define R_A_BTN_X XREG(17)
|
|
#define R_A_ICON_Y XREG(19)
|
|
#define R_A_ICON_X XREG(20)
|
|
#define R_A_BTN_COLOR(i) XREG(22 + i)
|
|
#define R_MAGIC_BAR_SMALL_Y XREG(48)
|
|
#define R_MAGIC_BAR_X XREG(49)
|
|
#define R_MAGIC_BAR_LARGE_Y XREG(50)
|
|
#define R_MAGIC_FILL_X XREG(51)
|
|
#define R_B_LABEL_DD WREG(0)
|
|
#define R_OW_MINIMAP_X WREG(29)
|
|
#define R_OW_MINIMAP_Y WREG(30)
|
|
#define R_MINIMAP_TOGGLED WREG(31)
|
|
#define R_B_LABEL_X(i) WREG(40 + i)
|
|
#define R_B_LABEL_Y(i) WREG(43 + i)
|
|
#define R_DGN_MINIMAP_X WREG(68)
|
|
#define R_DGN_MINIMAP_Y WREG(69)
|
|
#define R_MAP_INDEX VREG(11)
|
|
#define R_MAP_TEX_INDEX_BASE VREG(12)
|
|
#define R_MAP_TEX_INDEX VREG(13)
|
|
#define R_COMPASS_SCALE_X VREG(14)
|
|
#define R_COMPASS_SCALE_Y VREG(15)
|
|
#define R_COMPASS_OFFSET_X VREG(16)
|
|
#define R_COMPASS_OFFSET_Y VREG(17)
|
|
#define R_MINIMAP_COLOR(i) VREG(18 + i)
|
|
#define R_ITEM_AMMO_X(i) VREG(64 + i)
|
|
#define R_ITEM_AMMO_Y(i) VREG(68 + i)
|
|
#define R_ITEM_ICON_WIDTH(i) VREG(76 + i)
|
|
#define R_ITEM_BTN_WIDTH(i) VREG(80 + i)
|
|
|
|
#define R_FB_FILTER_TYPE SREG(80)
|
|
#define R_FB_FILTER_PRIM_COLOR(c) SREG(81 + c)
|
|
#define R_FB_FILTER_A SREG(84)
|
|
#define R_FB_FILTER_ENV_COLOR(c) SREG(85 + c)
|
|
|
|
#endif
|