2024-03-03 05:23:29 +01:00
|
|
|
#include "play_patches.h"
|
|
|
|
#include "z64debug_display.h"
|
2024-03-04 08:13:12 +01:00
|
|
|
#include "input.h"
|
2024-03-03 05:23:29 +01:00
|
|
|
|
|
|
|
extern Input D_801F6C18;
|
|
|
|
|
2024-03-04 08:13:12 +01:00
|
|
|
void controls_play_update(PlayState* play) {
|
|
|
|
gSaveContext.options.zTargetSetting = recomp_get_targeting_mode();
|
|
|
|
}
|
|
|
|
|
2024-03-03 05:23:29 +01:00
|
|
|
// @recomp Patched to add hooks for various added functionality.
|
|
|
|
void Play_Main(GameState* thisx) {
|
|
|
|
static Input* prevInput = NULL;
|
|
|
|
PlayState* this = (PlayState*)thisx;
|
|
|
|
|
|
|
|
// @recomp
|
|
|
|
debug_play_update(this);
|
2024-03-04 08:13:12 +01:00
|
|
|
controls_play_update(this);
|
2024-05-26 15:34:26 +02:00
|
|
|
analog_cam_pre_play_update(this);
|
2024-04-01 05:12:22 +02:00
|
|
|
matrix_play_update(this);
|
2024-03-03 05:23:29 +01:00
|
|
|
|
|
|
|
// @recomp avoid unused variable warning
|
|
|
|
(void)prevInput;
|
|
|
|
|
|
|
|
prevInput = CONTROLLER1(&this->state);
|
|
|
|
DebugDisplay_Init();
|
|
|
|
|
|
|
|
{
|
|
|
|
GraphicsContext* gfxCtx = this->state.gfxCtx;
|
|
|
|
|
|
|
|
if (1) {
|
|
|
|
this->state.gfxCtx = NULL;
|
|
|
|
}
|
|
|
|
camera_pre_play_update(this);
|
|
|
|
Play_Update(this);
|
|
|
|
camera_post_play_update(this);
|
2024-05-26 15:34:26 +02:00
|
|
|
analog_cam_post_play_update(this);
|
2024-05-01 10:06:53 +02:00
|
|
|
autosave_post_play_update(this);
|
2024-03-03 05:23:29 +01:00
|
|
|
this->state.gfxCtx = gfxCtx;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
Input input = *CONTROLLER1(&this->state);
|
|
|
|
|
|
|
|
if (1) {
|
|
|
|
*CONTROLLER1(&this->state) = D_801F6C18;
|
|
|
|
}
|
|
|
|
Play_Draw(this);
|
|
|
|
*CONTROLLER1(&this->state) = input;
|
|
|
|
}
|
|
|
|
|
|
|
|
CutsceneManager_Update();
|
|
|
|
CutsceneManager_ClearWaiting();
|
|
|
|
}
|
2024-03-28 05:35:10 +01:00
|
|
|
|
|
|
|
// @recomp Patched to add load a hook for loading rooms.
|
|
|
|
s32 Room_HandleLoadCallbacks(PlayState* play, RoomContext* roomCtx) {
|
|
|
|
if (roomCtx->status == 1) {
|
|
|
|
if (osRecvMesg(&roomCtx->loadQueue, NULL, OS_MESG_NOBLOCK) == 0) {
|
|
|
|
roomCtx->status = 0;
|
|
|
|
roomCtx->curRoom.segment = roomCtx->activeRoomVram;
|
|
|
|
gSegments[3] = OS_K0_TO_PHYSICAL(roomCtx->activeRoomVram);
|
|
|
|
|
|
|
|
// @recomp Call the room load hook.
|
|
|
|
room_load_hook(play, &roomCtx->curRoom);
|
|
|
|
|
|
|
|
Scene_ExecuteCommands(play, roomCtx->curRoom.segment);
|
|
|
|
func_80123140(play, GET_PLAYER(play));
|
|
|
|
Actor_SpawnTransitionActors(play, &play->actorCtx);
|
|
|
|
|
|
|
|
if (((play->sceneId != SCENE_IKANA) || (roomCtx->curRoom.num != 1)) && (play->sceneId != SCENE_IKNINSIDE)) {
|
|
|
|
play->envCtx.lightSettingOverride = LIGHT_SETTING_OVERRIDE_NONE;
|
|
|
|
play->envCtx.lightBlendOverride = LIGHT_BLEND_OVERRIDE_NONE;
|
|
|
|
}
|
|
|
|
func_800FEAB0();
|
|
|
|
if (Environment_GetStormState(play) == STORM_STATE_OFF) {
|
|
|
|
Environment_StopStormNatureAmbience(play);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|