mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 02:54:24 +00:00
Delete macros.h; Delete global.h (#2516)
This commit is contained in:
parent
ea22c2ac38
commit
f7a270655b
128 changed files with 0 additions and 256 deletions
|
@ -2,7 +2,6 @@
|
||||||
#define BUFFERS_H
|
#define BUFFERS_H
|
||||||
|
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
extern u16 gZBuffer[SCREEN_HEIGHT][SCREEN_WIDTH]; // 0x25800 bytes
|
extern u16 gZBuffer[SCREEN_HEIGHT][SCREEN_WIDTH]; // 0x25800 bytes
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#ifndef GLOBAL_H
|
|
||||||
#define GLOBAL_H
|
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,4 +0,0 @@
|
||||||
#ifndef MACROS_H
|
|
||||||
#define MACROS_H
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -5,7 +5,6 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
struct PlayState;
|
struct PlayState;
|
||||||
struct Actor;
|
struct Actor;
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#define Z64SCENE_H
|
#define Z64SCENE_H
|
||||||
|
|
||||||
#include "avoid_ub.h"
|
#include "avoid_ub.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64bgcheck.h"
|
#include "z64bgcheck.h"
|
||||||
#include "z64environment.h"
|
#include "z64environment.h"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#define Z64VIEW_H
|
#define Z64VIEW_H
|
||||||
|
|
||||||
#include "avoid_ub.h"
|
#include "avoid_ub.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
#include "z64ocarina.h"
|
#include "z64ocarina.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define ABS_ALT(x) ((x) < 0 ? -(x) : (x))
|
#define ABS_ALT(x) ((x) < 0 ? -(x) : (x))
|
||||||
|
|
||||||
#if !PLATFORM_N64
|
#if !PLATFORM_N64
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "versions.h"
|
#include "versions.h"
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define MK_ASYNC_MSG(retData, tableType, id, loadStatus) \
|
#define MK_ASYNC_MSG(retData, tableType, id, loadStatus) \
|
||||||
(((retData) << 24) | ((tableType) << 16) | ((id) << 8) | (loadStatus))
|
(((retData) << 24) | ((tableType) << 16) | ((id) << 8) | (loadStatus))
|
||||||
#define ASYNC_TBLTYPE(v) ((u8)(v >> 16))
|
#define ASYNC_TBLTYPE(v) ((u8)(v >> 16))
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
|
|
||||||
void Audio_InitNoteSub(Note* note, NoteSubEu* sub, NoteSubAttributes* attrs) {
|
void Audio_InitNoteSub(Note* note, NoteSubEu* sub, NoteSubAttributes* attrs) {
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
#include "attributes.h"
|
#include "attributes.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "audiothread_cmd.h"
|
#include "audiothread_cmd.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "versions.h"
|
#include "versions.h"
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "buffers.h"
|
#include "buffers.h"
|
||||||
#include "z64audio.h"
|
#include "z64audio.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/audio/sequence_sizes.h"
|
#include "assets/audio/sequence_sizes.h"
|
||||||
#include "assets/audio/soundfont_sizes.h"
|
#include "assets/audio/soundfont_sizes.h"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "audiothread_cmd.h"
|
#include "audiothread_cmd.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#include "z_locale.h"
|
#include "z_locale.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:128"
|
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:128"
|
||||||
|
|
||||||
StackEntry sBootThreadInfo;
|
StackEntry sBootThreadInfo;
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
#include "sched.h"
|
#include "sched.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
s32 func_80001714(void);
|
s32 func_80001714(void);
|
||||||
|
|
||||||
OSTask D_800067C0_unknown = {
|
OSTask D_800067C0_unknown = {
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:192 gc-eu-mq:192 gc-jp:192 gc-jp-ce:192 gc-jp-mq:192 gc-us:192 gc-us-mq:192" \
|
#pragma increment_block_number "gc-eu:192 gc-eu-mq:192 gc-jp:192 gc-jp-ce:192 gc-jp-mq:192 gc-us:192 gc-us-mq:192" \
|
||||||
"ntsc-1.0:192 ntsc-1.1:192 ntsc-1.2:192 pal-1.0:192 pal-1.1:192"
|
"ntsc-1.0:192 ntsc-1.1:192 ntsc-1.2:192 pal-1.0:192 pal-1.1:192"
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "idle.h"
|
#include "idle.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
s8 D_80009430 = 1;
|
s8 D_80009430 = 1;
|
||||||
vu8 gViConfigBlack = true;
|
vu8 gViConfigBlack = true;
|
||||||
u8 gViConfigAdditionalScanLines = 0;
|
u8 gViConfigAdditionalScanLines = 0;
|
||||||
|
|
|
@ -11,9 +11,6 @@
|
||||||
#include "vi_mode.h"
|
#include "vi_mode.h"
|
||||||
#include "z_locale.h"
|
#include "z_locale.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
s32 gCurrentRegion = 0;
|
s32 gCurrentRegion = 0;
|
||||||
|
|
||||||
typedef struct LocaleCartInfo {
|
typedef struct LocaleCartInfo {
|
||||||
|
|
|
@ -45,8 +45,6 @@
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:66" \
|
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.2:66" \
|
||||||
"pal-1.0:64 pal-1.1:64"
|
"pal-1.0:64 pal-1.1:64"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "alignment.h"
|
#include "alignment.h"
|
||||||
#include "buffers.h"
|
#include "buffers.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "ultra64/ultratypes.h"
|
#include "ultra64/ultratypes.h"
|
||||||
|
|
||||||
ALIGNED(64) u16 gZBuffer[SCREEN_HEIGHT][SCREEN_WIDTH];
|
ALIGNED(64) u16 gZBuffer[SCREEN_HEIGHT][SCREEN_WIDTH];
|
||||||
|
|
|
@ -13,9 +13,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void PreRender_SetValuesSave(PreRender* this, u32 width, u32 height, void* fbuf, void* zbuf, void* cvg) {
|
void PreRender_SetValuesSave(PreRender* this, u32 width, u32 height, void* fbuf, void* zbuf, void* cvg) {
|
||||||
this->widthSave = width;
|
this->widthSave = width;
|
||||||
this->heightSave = height;
|
this->heightSave = height;
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
u8 sSfxBankIds[] = {
|
u8 sSfxBankIds[] = {
|
||||||
BANK_PLAYER, BANK_ITEM, BANK_ENV, BANK_ENEMY, BANK_SYSTEM, BANK_OCARINA, BANK_VOICE,
|
BANK_PLAYER, BANK_ITEM, BANK_ENV, BANK_ENEMY, BANK_SYSTEM, BANK_OCARINA, BANK_VOICE,
|
||||||
};
|
};
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void AudioMgr_NotifyTaskDone(AudioMgr* audioMgr) {
|
void AudioMgr_NotifyTaskDone(AudioMgr* audioMgr) {
|
||||||
AudioTask* task = audioMgr->rspTask;
|
AudioTask* task = audioMgr->rspTask;
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define LOG_SEVERITY_NOLOG 0
|
#define LOG_SEVERITY_NOLOG 0
|
||||||
#define LOG_SEVERITY_ERROR 2
|
#define LOG_SEVERITY_ERROR 2
|
||||||
#define LOG_SEVERITY_VERBOSE 3
|
#define LOG_SEVERITY_VERBOSE 3
|
||||||
|
|
|
@ -58,8 +58,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void Fault_Init(void);
|
void Fault_Init(void);
|
||||||
void Fault_SetOsSyncPrintfEnabled(u32 enabled);
|
void Fault_SetOsSyncPrintfEnabled(u32 enabled);
|
||||||
void Fault_DrawRecImpl(s32 xStart, s32 yStart, s32 xEnd, s32 yEnd, u16 color);
|
void Fault_DrawRecImpl(s32 xStart, s32 yStart, s32 xEnd, s32 yEnd, u16 color);
|
||||||
|
|
|
@ -7,12 +7,9 @@
|
||||||
|
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "fault.h"
|
#include "fault.h"
|
||||||
|
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128"
|
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128"
|
||||||
|
|
||||||
typedef struct FaultDrawer {
|
typedef struct FaultDrawer {
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "ntsc-1.0:144 ntsc-1.1:144 ntsc-1.2:144 pal-1.0:144 pal-1.1:144"
|
#pragma increment_block_number "ntsc-1.0:144 ntsc-1.1:144 ntsc-1.2:144 pal-1.0:144 pal-1.1:144"
|
||||||
|
|
||||||
typedef struct FaultMgr {
|
typedef struct FaultMgr {
|
||||||
|
|
|
@ -32,9 +32,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64vis.h"
|
#include "z64vis.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128"
|
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128"
|
||||||
|
|
||||||
SpeedMeter D_801664D0;
|
SpeedMeter D_801664D0;
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "gamealloc.h"
|
#include "gamealloc.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void GameAlloc_Log(GameAlloc* this) {
|
void GameAlloc_Log(GameAlloc* this) {
|
||||||
GameAllocEntry* iter;
|
GameAllocEntry* iter;
|
||||||
|
|
||||||
|
|
|
@ -30,9 +30,6 @@
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define GFXPOOL_HEAD_MAGIC 0x1234
|
#define GFXPOOL_HEAD_MAGIC 0x1234
|
||||||
#define GFXPOOL_TAIL_MAGIC 0x5678
|
#define GFXPOOL_TAIL_MAGIC 0x5678
|
||||||
|
|
||||||
|
|
|
@ -42,8 +42,6 @@
|
||||||
#include "versions.h"
|
#include "versions.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
vu32 gIrqMgrResetStatus = IRQ_RESET_STATUS_IDLE;
|
vu32 gIrqMgrResetStatus = IRQ_RESET_STATUS_IDLE;
|
||||||
volatile OSTime sIrqMgrResetTime = 0;
|
volatile OSTime sIrqMgrResetTime = 0;
|
||||||
volatile OSTime gIrqMgrRetraceTime = 0;
|
volatile OSTime gIrqMgrRetraceTime = 0;
|
||||||
|
|
|
@ -43,8 +43,6 @@ extern struct IrqMgr gIrqMgr;
|
||||||
#include "z64debug.h"
|
#include "z64debug.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128" \
|
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128" \
|
||||||
"ique-cn:0 ntsc-1.0:34 ntsc-1.1:34 ntsc-1.2:34 pal-1.0:32 pal-1.1:32"
|
"ique-cn:0 ntsc-1.0:34 ntsc-1.1:34 ntsc-1.2:34 pal-1.0:32 pal-1.1:32"
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
#include "padmgr.h"
|
#include "padmgr.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define MEMPAK_MAX_FILES 11
|
#define MEMPAK_MAX_FILES 11
|
||||||
|
|
||||||
OSPfs sMempakPfsHandle;
|
OSPfs sMempakPfsHandle;
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64object.h"
|
#include "z64object.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
s16 gLinkObjectIds[] = { OBJECT_LINK_BOY, OBJECT_LINK_CHILD };
|
s16 gLinkObjectIds[] = { OBJECT_LINK_BOY, OBJECT_LINK_CHILD };
|
||||||
|
|
||||||
u32 gObjectTableSize = ARRAY_COUNT(gObjectTable);
|
u32 gObjectTableSize = ARRAY_COUNT(gObjectTable);
|
||||||
|
|
|
@ -38,8 +38,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "line_numbers.h"
|
#include "line_numbers.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define PADMGR_LOG(controllerNum, msg) \
|
#define PADMGR_LOG(controllerNum, msg) \
|
||||||
if (DEBUG_FEATURES) { \
|
if (DEBUG_FEATURES) { \
|
||||||
PRINTF_COLOR_YELLOW(); \
|
PRINTF_COLOR_YELLOW(); \
|
||||||
|
|
|
@ -54,9 +54,6 @@
|
||||||
#include "vi_mode.h"
|
#include "vi_mode.h"
|
||||||
#include "z64thread.h"
|
#include "z64thread.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define RSP_DONE_MSG 667
|
#define RSP_DONE_MSG 667
|
||||||
#define RDP_DONE_MSG 668
|
#define RDP_DONE_MSG 668
|
||||||
#define NOTIFY_MSG 670 // original name: ENTRY_MSG
|
#define NOTIFY_MSG 670 // original name: ENTRY_MSG
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
typedef enum LetterboxState {
|
typedef enum LetterboxState {
|
||||||
/* 0 */ LETTERBOX_STATE_IDLE,
|
/* 0 */ LETTERBOX_STATE_IDLE,
|
||||||
/* 1 */ LETTERBOX_STATE_GROWING,
|
/* 1 */ LETTERBOX_STATE_GROWING,
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128" \
|
#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128" \
|
||||||
"pal-1.1:128"
|
"pal-1.1:128"
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "sys_freeze.h"
|
#include "sys_freeze.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
NORETURN void func_800D31A0(void) {
|
NORETURN void func_800D31A0(void) {
|
||||||
PRINTF(VT_FGCOL(RED) "\n**** Freeze!! ****\n" VT_RST);
|
PRINTF(VT_FGCOL(RED) "\n**** Freeze!! ****\n" VT_RST);
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include "z_lib.h"
|
#include "z_lib.h"
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:77 gc-eu-mq:77 gc-jp:77 gc-jp-ce:77 gc-jp-mq:77 gc-us:77 gc-us-mq:77 ique-cn:67" \
|
#pragma increment_block_number "gc-eu:77 gc-eu-mq:77 gc-jp:77 gc-jp-ce:77 gc-jp-mq:77 gc-us:77 gc-us-mq:77 ique-cn:67" \
|
||||||
"ntsc-1.0:64 ntsc-1.1:64 ntsc-1.2:64 pal-1.0:64 pal-1.1:64"
|
"ntsc-1.0:64 ntsc-1.1:64 ntsc-1.2:64 pal-1.0:64 pal-1.1:64"
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "sys_math.h"
|
#include "sys_math.h"
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
static u16 sAtan2Tbl[] = {
|
static u16 sAtan2Tbl[] = {
|
||||||
0x0000, 0x000A, 0x0014, 0x001F, 0x0029, 0x0033, 0x003D, 0x0047, 0x0051, 0x005C, 0x0066, 0x0070, 0x007A, 0x0084,
|
0x0000, 0x000A, 0x0014, 0x001F, 0x0029, 0x0033, 0x003D, 0x0047, 0x0051, 0x005C, 0x0066, 0x0070, 0x007A, 0x0084,
|
||||||
0x008F, 0x0099, 0x00A3, 0x00AD, 0x00B7, 0x00C2, 0x00CC, 0x00D6, 0x00E0, 0x00EA, 0x00F4, 0x00FF, 0x0109, 0x0113,
|
0x008F, 0x0099, 0x00A3, 0x00AD, 0x00B7, 0x00C2, 0x00CC, 0x00D6, 0x00E0, 0x00EA, 0x00F4, 0x00FF, 0x0109, 0x0113,
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#if DEBUG_FEATURES
|
#if DEBUG_FEATURES
|
||||||
#include "fault.h"
|
#include "fault.h"
|
||||||
#endif
|
#endif
|
||||||
#include "macros.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "sys_matrix.h"
|
#include "sys_matrix.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void Setup_InitImpl(SetupState* this) {
|
void Setup_InitImpl(SetupState* this) {
|
||||||
PRINTF(T("ゼルダ共通データ初期化\n", "Zelda common data initialization\n"));
|
PRINTF(T("ゼルダ共通データ初期化\n", "Zelda common data initialization\n"));
|
||||||
SaveContext_Init();
|
SaveContext_Init();
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include "ucode_disas.h"
|
#include "ucode_disas.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#if DEBUG_FEATURES
|
#if DEBUG_FEATURES
|
||||||
|
|
||||||
typedef struct F3dzexConst {
|
typedef struct F3dzexConst {
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z_game_dlftbls.h"
|
#include "z_game_dlftbls.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void Overlay_LoadGameState(GameStateOverlay* overlayEntry) {
|
void Overlay_LoadGameState(GameStateOverlay* overlayEntry) {
|
||||||
if (overlayEntry->loadedRamAddr != NULL) {
|
if (overlayEntry->loadedRamAddr != NULL) {
|
||||||
PRINTF(T("既にリンクされています\n", "Already linked\n"));
|
PRINTF(T("既にリンクされています\n", "Already linked\n"));
|
||||||
|
|
|
@ -28,8 +28,6 @@
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
#include "z64skin_matrix.h"
|
#include "z64skin_matrix.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "overlays/actors/ovl_Arms_Hook/z_arms_hook.h"
|
#include "overlays/actors/ovl_Arms_Hook/z_arms_hook.h"
|
||||||
#include "overlays/actors/ovl_En_Part/z_en_part.h"
|
#include "overlays/actors/ovl_En_Part/z_en_part.h"
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "segment_symbols.h"
|
#include "segment_symbols.h"
|
||||||
#include "z_actor_dlftbls.h"
|
#include "z_actor_dlftbls.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// Linker symbol declarations (used in the table below)
|
// Linker symbol declarations (used in the table below)
|
||||||
#define DEFINE_ACTOR(name, _1, _2, _3) DECLARE_OVERLAY_SEGMENT(name)
|
#define DEFINE_ACTOR(name, _1, _2, _3) DECLARE_OVERLAY_SEGMENT(name)
|
||||||
#define DEFINE_ACTOR_INTERNAL(_0, _1, _2, _3)
|
#define DEFINE_ACTOR_INTERNAL(_0, _1, _2, _3)
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
typedef struct CameraModeValue {
|
typedef struct CameraModeValue {
|
||||||
s16 val;
|
s16 val;
|
||||||
s16 dataType;
|
s16 dataType;
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64collision_check.h"
|
#include "z64collision_check.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
static DamageTable sDamageTablePresets[] = {
|
static DamageTable sDamageTablePresets[] = {
|
||||||
{ {
|
{ {
|
||||||
// 0
|
// 0
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
#include "z64camera.h"
|
#include "z64camera.h"
|
||||||
#include "z64cutscene_spline.h"
|
#include "z64cutscene_spline.h"
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// The code in this file is very similar to a spline system used in Super Mario 64 for cutscene camera movement
|
// The code in this file is very similar to a spline system used in Super Mario 64 for cutscene camera movement
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "z64debug.h"
|
#include "z64debug.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
typedef struct DebugCamTextBufferEntry {
|
typedef struct DebugCamTextBufferEntry {
|
||||||
/* 0x0 */ u8 x;
|
/* 0x0 */ u8 x;
|
||||||
/* 0x1 */ u8 y;
|
/* 0x1 */ u8 y;
|
||||||
|
|
|
@ -30,8 +30,6 @@
|
||||||
#include "z64player.h"
|
#include "z64player.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/scenes/indoors/tokinoma/tokinoma_scene.h"
|
#include "assets/scenes/indoors/tokinoma/tokinoma_scene.h"
|
||||||
|
|
||||||
#include "assets/scenes/overworld/ganon_tou/ganon_tou_scene.h"
|
#include "assets/scenes/overworld/ganon_tou/ganon_tou_scene.h"
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
#include "z64effect.h"
|
#include "z64effect.h"
|
||||||
#include "z64skin_matrix.h"
|
#include "z64skin_matrix.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "z64.h" // required for gameplay keep, the header doesnt include any external dependencies
|
#include "z64.h" // required for gameplay keep, the header doesnt include any external dependencies
|
||||||
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64skin_matrix.h"
|
#include "z64skin_matrix.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
||||||
|
|
||||||
static Vtx sVertices[5] = {
|
static Vtx sVertices[5] = {
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64skin_matrix.h"
|
#include "z64skin_matrix.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
||||||
|
|
||||||
// original name: "spark"
|
// original name: "spark"
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
#include "z64transition_instances.h"
|
#include "z64transition_instances.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// color framebuffer
|
// color framebuffer
|
||||||
extern u16 D_0F000000[];
|
extern u16 D_0F000000[];
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
typedef enum TransitionCircleDirection {
|
typedef enum TransitionCircleDirection {
|
||||||
/* 0 */ TRANS_CIRCLE_DIR_IN,
|
/* 0 */ TRANS_CIRCLE_DIR_IN,
|
||||||
/* 1 */ TRANS_CIRCLE_DIR_OUT
|
/* 1 */ TRANS_CIRCLE_DIR_OUT
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
#include "z64transition_instances.h"
|
#include "z64transition_instances.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
typedef enum TransitionFadeDirection {
|
typedef enum TransitionFadeDirection {
|
||||||
/* 0 */ TRANS_FADE_DIR_IN,
|
/* 0 */ TRANS_FADE_DIR_IN,
|
||||||
/* 1 */ TRANS_FADE_DIR_OUT
|
/* 1 */ TRANS_FADE_DIR_OUT
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "transition_triforce.h"
|
#include "transition_triforce.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
|
|
||||||
#include "assets/code/fbdemo_triforce/z_fbdemo_triforce.c"
|
#include "assets/code/fbdemo_triforce/z_fbdemo_triforce.c"
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
* File: z_fcurve_data.c
|
* File: z_fcurve_data.c
|
||||||
* Description: Interpolation functions for use with Curve SkelAnime
|
* Description: Interpolation functions for use with Curve SkelAnime
|
||||||
*/
|
*/
|
||||||
#include "global.h"
|
|
||||||
#include "z64curve.h"
|
#include "z64curve.h"
|
||||||
|
|
||||||
#define FCURVE_INTERP_CUBIC 0 // Interpolate using a Hermite cubic spline
|
#define FCURVE_INTERP_CUBIC 0 // Interpolate using a Hermite cubic spline
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
#include "controller.h"
|
#include "controller.h"
|
||||||
#include "libu64/pad.h"
|
#include "libu64/pad.h"
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void FrameAdvance_Init(FrameAdvanceContext* frameAdvCtx) {
|
void FrameAdvance_Init(FrameAdvanceContext* frameAdvCtx) {
|
||||||
frameAdvCtx->timer = 0;
|
frameAdvCtx->timer = 0;
|
||||||
|
|
|
@ -8,9 +8,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void GameOver_Init(PlayState* play) {
|
void GameOver_Init(PlayState* play) {
|
||||||
play->gameOverCtx.state = GAMEOVER_INACTIVE;
|
play->gameOverCtx.state = GAMEOVER_INACTIVE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define MARKER_ESCAPE 0x00
|
#define MARKER_ESCAPE 0x00
|
||||||
#define MARKER_SOI 0xD8
|
#define MARKER_SOI 0xD8
|
||||||
#define MARKER_SOF 0xC0
|
#define MARKER_SOF 0xC0
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define KALEIDO_OVERLAY(name, nameString) \
|
#define KALEIDO_OVERLAY(name, nameString) \
|
||||||
{ NULL, ROM_FILE(ovl_##name), _ovl_##name##SegmentStart, _ovl_##name##SegmentEnd, 0, nameString, }
|
{ NULL, ROM_FILE(ovl_##name), _ovl_##name##SegmentStart, _ovl_##name##SegmentEnd, 0, nameString, }
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void (*sKaleidoScopeUpdateFunc)(PlayState* play);
|
void (*sKaleidoScopeUpdateFunc)(PlayState* play);
|
||||||
void (*sKaleidoScopeDrawFunc)(PlayState* play);
|
void (*sKaleidoScopeDrawFunc)(PlayState* play);
|
||||||
f32 gBossMarkScale;
|
f32 gBossMarkScale;
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#include "z64font.h"
|
#include "z64font.h"
|
||||||
#include "z64message.h"
|
#include "z64message.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a texture from kanji for the requested `character` into the character texture buffer
|
* Loads a texture from kanji for the requested `character` into the character texture buffer
|
||||||
* at `codePointIndex`. The value of `character` is the SHIFT-JIS encoding of the character.
|
* at `codePointIndex`. The value of `character` is the SHIFT-JIS encoding of the character.
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include "ichain.h"
|
#include "ichain.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "sys_math.h"
|
#include "sys_math.h"
|
||||||
#include "rand.h"
|
#include "rand.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define LOG_SEVERITY_NOLOG 0
|
#define LOG_SEVERITY_NOLOG 0
|
||||||
#define LOG_SEVERITY_ERROR 2
|
#define LOG_SEVERITY_ERROR 2
|
||||||
#define LOG_SEVERITY_VERBOSE 3
|
#define LOG_SEVERITY_VERBOSE 3
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#include "z64player.h"
|
#include "z64player.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
#include "assets/objects/gameplay_keep/gameplay_keep.h"
|
||||||
#include "assets/textures/parameter_static/parameter_static.h"
|
#include "assets/textures/parameter_static/parameter_static.h"
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
|
|
||||||
#include "assets/textures/parameter_static/parameter_static.h"
|
#include "assets/textures/parameter_static/parameter_static.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
typedef struct MapMarkInfo {
|
typedef struct MapMarkInfo {
|
||||||
/* 0x00 */ void* texture;
|
/* 0x00 */ void* texture;
|
||||||
/* 0x04 */ u32 imageFormat;
|
/* 0x04 */ u32 imageFormat;
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#include "z64player.h"
|
#include "z64player.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/textures/parameter_static/parameter_static.h"
|
#include "assets/textures/parameter_static/parameter_static.h"
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.0:32" \
|
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ntsc-1.0:32" \
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
// how big to draw the characters on screen
|
// how big to draw the characters on screen
|
||||||
#define DISP_CHAR_WIDTH 8
|
#define DISP_CHAR_WIDTH 8
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
#include "z64player.h"
|
#include "z64player.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#include "assets/textures/parameter_static/parameter_static.h"
|
#include "assets/textures/parameter_static/parameter_static.h"
|
||||||
#include "assets/textures/do_action_static/do_action_static.h"
|
#include "assets/textures/do_action_static/do_action_static.h"
|
||||||
#include "assets/textures/icon_item_static/icon_item_static.h"
|
#include "assets/textures/icon_item_static/icon_item_static.h"
|
||||||
|
|
|
@ -47,8 +47,6 @@
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
#include "z64vis.h"
|
#include "z64vis.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ique-cn:224" \
|
#pragma increment_block_number "gc-eu:0 gc-eu-mq:0 gc-jp:0 gc-jp-ce:0 gc-jp-mq:0 gc-us:0 gc-us-mq:0 ique-cn:224" \
|
||||||
"ntsc-1.0:240 ntsc-1.1:240 ntsc-1.2:240 pal-1.0:240 pal-1.1:240"
|
"ntsc-1.0:240 ntsc-1.1:240 ntsc-1.2:240 pal-1.0:240 pal-1.1:240"
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
#include "versions.h"
|
#include "versions.h"
|
||||||
#include "vi_mode.h"
|
#include "vi_mode.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void func_80092320(PreNMIState* this) {
|
void func_80092320(PreNMIState* this) {
|
||||||
this->state.running = false;
|
this->state.running = false;
|
||||||
this->state.init = NULL;
|
this->state.init = NULL;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#include "prenmi_buff.h"
|
#include "prenmi_buff.h"
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define COLD_RESET 0
|
#define COLD_RESET 0
|
||||||
#define NMI 1
|
#define NMI 1
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "libc64/qrand.h"
|
#include "libc64/qrand.h"
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "macros.h"
|
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "quake.h"
|
#include "quake.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64skin_matrix.h"
|
#include "z64skin_matrix.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
void SfxSource_InitAll(PlayState* play) {
|
void SfxSource_InitAll(PlayState* play) {
|
||||||
SfxSource* sources = &play->sfxSources[0];
|
SfxSource* sources = &play->sfxSources[0];
|
||||||
s32 i;
|
s32 i;
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
#include "z64animation_legacy.h"
|
#include "z64animation_legacy.h"
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define ANIM_INTERP 1
|
#define ANIM_INTERP 1
|
||||||
|
|
||||||
s32 LinkAnimation_Loop(PlayState* play, SkelAnime* skelAnime);
|
s32 LinkAnimation_Loop(PlayState* play, SkelAnime* skelAnime);
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z_lib.h"
|
#include "z_lib.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// clang-format off
|
// clang-format off
|
||||||
MtxF sMtxFClear = {
|
MtxF sMtxFClear = {
|
||||||
1.0f, 0.0f, 0.0f, 0.0f,
|
1.0f, 0.0f, 0.0f, 0.0f,
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#include "z64scene.h"
|
#include "z64scene.h"
|
||||||
#include "z64ss_sram.h"
|
#include "z64ss_sram.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define SLOT_SIZE (sizeof(SaveContext) + 0x28)
|
#define SLOT_SIZE (sizeof(SaveContext) + 0x28)
|
||||||
#define CHECKSUM_SIZE (sizeof(Save) / 2)
|
#define CHECKSUM_SIZE (sizeof(Save) / 2)
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
#include "z64ss_sram.h"
|
#include "z64ss_sram.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
typedef struct SsSramContext {
|
typedef struct SsSramContext {
|
||||||
/* 0x00 */ OSPiHandle piHandle;
|
/* 0x00 */ OSPiHandle piHandle;
|
||||||
/* 0x74 */ OSIoMesg ioMesg;
|
/* 0x74 */ OSIoMesg ioMesg;
|
||||||
|
|
|
@ -9,9 +9,6 @@
|
||||||
#include "regs.h"
|
#include "regs.h"
|
||||||
#include "versions.h"
|
#include "versions.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void ViMode_LogPrint(OSViMode* osViMode) {
|
void ViMode_LogPrint(OSViMode* osViMode) {
|
||||||
LOG_ADDRESS("osvimodep", osViMode, "../z_vimode.c", 87);
|
LOG_ADDRESS("osvimodep", osViMode, "../z_vimode.c", 87);
|
||||||
LOG_HEX32("osvimodep->comRegs.ctrl", osViMode->comRegs.ctrl, "../z_vimode.c", 88);
|
LOG_HEX32("osvimodep->comRegs.ctrl", osViMode->comRegs.ctrl, "../z_vimode.c", 88);
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "z64vis.h"
|
#include "z64vis.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Draws only coverage: does not retain any of the original pixel RGB, primColor is used as background color.
|
* Draws only coverage: does not retain any of the original pixel RGB, primColor is used as background color.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
#include "gfxalloc.h"
|
#include "gfxalloc.h"
|
||||||
#include "z64vis.h"
|
#include "z64vis.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// Height of the fragments the color frame buffer (CFB) is split into.
|
// Height of the fragments the color frame buffer (CFB) is split into.
|
||||||
// It is the maximum amount of lines such that all rgba16 SCREEN_WIDTH-long lines fit into
|
// It is the maximum amount of lines such that all rgba16 SCREEN_WIDTH-long lines fit into
|
||||||
// the half of TMEM dedicated to color-indexed data.
|
// the half of TMEM dedicated to color-indexed data.
|
||||||
|
|
|
@ -35,8 +35,6 @@
|
||||||
#include "gfx.h"
|
#include "gfx.h"
|
||||||
#include "z64vis.h"
|
#include "z64vis.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
// Height of the fragments the z-buffer is split into.
|
// Height of the fragments the z-buffer is split into.
|
||||||
// It is the maximum amount of lines such that all rgba16 SCREEN_WIDTH-long lines fit into TMEM.
|
// It is the maximum amount of lines such that all rgba16 SCREEN_WIDTH-long lines fit into TMEM.
|
||||||
#define VISZBUF_ZBUFFRAG_HEIGHT (TMEM_SIZE / (SCREEN_WIDTH * G_IM_SIZ_16b_BYTES))
|
#define VISZBUF_ZBUFFRAG_HEIGHT (TMEM_SIZE / (SCREEN_WIDTH * G_IM_SIZ_16b_BYTES))
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include "z64play.h"
|
#include "z64play.h"
|
||||||
#include "z64save.h"
|
#include "z64save.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
typedef struct SkyboxFaceParams {
|
typedef struct SkyboxFaceParams {
|
||||||
/* 0x000 */ s32 xStart;
|
/* 0x000 */ s32 xStart;
|
||||||
/* 0x004 */ s32 yStart;
|
/* 0x004 */ s32 yStart;
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define FILL_ALLOC_BLOCK_FLAG (1 << 0)
|
#define FILL_ALLOC_BLOCK_FLAG (1 << 0)
|
||||||
#define FILL_FREE_BLOCK_FLAG (1 << 1)
|
#define FILL_FREE_BLOCK_FLAG (1 << 1)
|
||||||
#define CHECK_FREE_BLOCK_FLAG (1 << 2)
|
#define CHECK_FREE_BLOCK_FLAG (1 << 2)
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "fault.h"
|
#include "fault.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#define NODE_MAGIC 0x7373
|
#define NODE_MAGIC 0x7373
|
||||||
|
|
||||||
#define NODE_IS_VALID(node) ((node)->magic == NODE_MAGIC)
|
#define NODE_IS_VALID(node) ((node)->magic == NODE_MAGIC)
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#define LOG_SEVERITY_NOLOG 0
|
#define LOG_SEVERITY_NOLOG 0
|
||||||
#define LOG_SEVERITY_ERROR 2
|
#define LOG_SEVERITY_ERROR 2
|
||||||
#define LOG_SEVERITY_VERBOSE 3
|
#define LOG_SEVERITY_VERBOSE 3
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "libc64/math64.h"
|
#include "libc64/math64.h"
|
||||||
#include "z64math.h"
|
#include "z64math.h"
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
#if !PLATFORM_N64
|
#if !PLATFORM_N64
|
||||||
s32 gUseAtanContFrac;
|
s32 gUseAtanContFrac;
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
static s32 __leoResetCalled = false;
|
static s32 __leoResetCalled = false;
|
||||||
static s32 __leoQueuesCreated = false;
|
static s32 __leoQueuesCreated = false;
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "array_count.h"
|
#include "array_count.h"
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
u16 leoLba_to_phys(u32 lba) {
|
u16 leoLba_to_phys(u32 lba) {
|
||||||
u16 vzone_num;
|
u16 vzone_num;
|
||||||
u16 zone_slba;
|
u16 zone_slba;
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#if PLATFORM_N64 || DEBUG_FEATURES
|
#if PLATFORM_N64 || DEBUG_FEATURES
|
||||||
f32 LogUtils_CheckFloatRange(const char* exp, int line, const char* valueName, f32 value, const char* minName, f32 min,
|
f32 LogUtils_CheckFloatRange(const char* exp, int line, const char* valueName, f32 value, const char* minName, f32 min,
|
||||||
const char* maxName, f32 max) {
|
const char* maxName, f32 max) {
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "attributes.h"
|
#include "attributes.h"
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
u16 sGfxPrintFontTLUT[64] = {
|
u16 sGfxPrintFontTLUT[64] = {
|
||||||
0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000,
|
0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000, 0xFFFF, 0x0000,
|
||||||
0xFFFF, 0x0000, 0xFFFF, 0x0000, 0x0000, 0xFFFF, 0xFFFF, 0x0000, 0x0000, 0xFFFF, 0xFFFF, 0x0000, 0x0000,
|
0xFFFF, 0x0000, 0xFFFF, 0x0000, 0x0000, 0xFFFF, 0xFFFF, 0x0000, 0x0000, 0xFFFF, 0xFFFF, 0x0000, 0x0000,
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
size_t Overlay_Load(uintptr_t vromStart, uintptr_t vromEnd, void* vramStart, void* vramEnd, void* allocatedRamAddr) {
|
size_t Overlay_Load(uintptr_t vromStart, uintptr_t vromEnd, void* vramStart, void* vramEnd, void* allocatedRamAddr) {
|
||||||
s32 pad[3];
|
s32 pad[3];
|
||||||
uintptr_t end;
|
uintptr_t end;
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "libu64/overlay.h"
|
#include "libu64/overlay.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
void* Overlay_AllocateAndLoad(uintptr_t vromStart, uintptr_t vromEnd, void* vramStart, void* vramEnd) {
|
void* Overlay_AllocateAndLoad(uintptr_t vromStart, uintptr_t vromEnd, void* vramStart, void* vramEnd) {
|
||||||
void* allocatedRamAddr = SYSTEM_ARENA_MALLOC_R((intptr_t)vramEnd - (intptr_t)vramStart, "../loadfragment2.c", 31);
|
void* allocatedRamAddr = SYSTEM_ARENA_MALLOC_R((intptr_t)vramEnd - (intptr_t)vramStart, "../loadfragment2.c", 31);
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
#include "translation.h"
|
#include "translation.h"
|
||||||
#include "z64dma.h"
|
#include "z64dma.h"
|
||||||
|
|
||||||
#include "macros.h"
|
|
||||||
|
|
||||||
s32 gOverlayLogSeverity = 2;
|
s32 gOverlayLogSeverity = 2;
|
||||||
|
|
||||||
// Extract MIPS register rs from an instruction word
|
// Extract MIPS register rs from an instruction word
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "ultra64.h"
|
#include "ultra64.h"
|
||||||
#include "printf.h"
|
#include "printf.h"
|
||||||
|
|
||||||
#include "global.h"
|
|
||||||
|
|
||||||
#if PLATFORM_N64 || DEBUG_FEATURES
|
#if PLATFORM_N64 || DEBUG_FEATURES
|
||||||
#define RCP_UTILS_PRINTF osSyncPrintf
|
#define RCP_UTILS_PRINTF osSyncPrintf
|
||||||
#elif IDO_PRINTF_WORKAROUND
|
#elif IDO_PRINTF_WORKAROUND
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue