2019-08-25 04:46:40 +00:00
|
|
|
#include <ultra64.h>
|
|
|
|
|
|
|
|
#include "area.h"
|
|
|
|
#include "sm64.h"
|
|
|
|
#include "behavior_data.h"
|
|
|
|
#include "game.h"
|
|
|
|
#include "display.h"
|
|
|
|
#include "object_list_processor.h"
|
|
|
|
#include "engine/surface_load.h"
|
|
|
|
#include "ingame_menu.h"
|
|
|
|
#include "screen_transition.h"
|
|
|
|
#include "mario.h"
|
|
|
|
#include "mario_actions_cutscene.h"
|
|
|
|
#include "print.h"
|
|
|
|
#include "hud.h"
|
|
|
|
#include "audio/external.h"
|
|
|
|
#include "area.h"
|
|
|
|
#include "rendering_graph_node.h"
|
|
|
|
#include "level_update.h"
|
|
|
|
#include "engine/geo_layout.h"
|
|
|
|
#include "save_file.h"
|
|
|
|
|
|
|
|
struct SpawnInfo gPlayerSpawnInfos[1];
|
|
|
|
struct GraphNode *D_8033A160[0x100];
|
|
|
|
struct Area gAreaData[8];
|
|
|
|
|
|
|
|
struct WarpTransition gWarpTransition;
|
|
|
|
|
|
|
|
s16 gCurrCourseNum;
|
|
|
|
s16 gCurrActNum;
|
|
|
|
s16 gCurrAreaIndex;
|
|
|
|
s16 gSavedCourseNum;
|
2019-10-05 19:08:05 +00:00
|
|
|
s16 gPauseScreenMode;
|
|
|
|
s16 gSaveOptSelectIndex;
|
2019-08-25 04:46:40 +00:00
|
|
|
|
|
|
|
struct SpawnInfo *gMarioSpawnInfo = &gPlayerSpawnInfos[0];
|
|
|
|
struct GraphNode **gLoadedGraphNodes = D_8033A160;
|
|
|
|
struct Area *gAreas = gAreaData;
|
|
|
|
struct Area *gCurrentArea = NULL;
|
|
|
|
struct CreditsEntry *gCurrCreditsEntry = NULL;
|
|
|
|
Vp *D_8032CE74 = NULL;
|
|
|
|
Vp *D_8032CE78 = NULL;
|
|
|
|
s16 gWarpTransDelay = 0;
|
|
|
|
u32 gFBSetColor = 0;
|
|
|
|
u32 gWarpTransFBSetColor = 0;
|
|
|
|
u8 gWarpTransRed = 0;
|
|
|
|
u8 gWarpTransGreen = 0;
|
|
|
|
u8 gWarpTransBlue = 0;
|
|
|
|
s16 gCurrSaveFileNum = 1;
|
|
|
|
s16 gCurrLevelNum = 1;
|
|
|
|
|
2019-11-03 19:36:27 +00:00
|
|
|
const BehaviorScript *D_8032CE9C[] = {
|
2019-08-25 04:46:40 +00:00
|
|
|
bhvDoorWarp, bhvStar, bhvExitPodiumWarp, bhvWarp, bhvWarpPipe, bhvFadingWarp, bhvWarps60,
|
|
|
|
bhvWarps64, bhvWarps68, bhvWarps6C, bhvWarps70, bhvWarps74, bhvWarps78, bhvWarps94,
|
|
|
|
bhvWarps7C, bhvWarps80, bhvWarps88, bhvWarps84, bhvWarps8C, bhvWarps90,
|
|
|
|
};
|
|
|
|
|
|
|
|
u8 D_8032CEEC[] = {
|
|
|
|
MARIO_SPAWN_UNKNOWN_01, MARIO_SPAWN_UNKNOWN_02, MARIO_SPAWN_UNKNOWN_03, MARIO_SPAWN_UNKNOWN_03,
|
|
|
|
MARIO_SPAWN_UNKNOWN_03, MARIO_SPAWN_UNKNOWN_04, MARIO_SPAWN_UNKNOWN_10, MARIO_SPAWN_UNKNOWN_12,
|
|
|
|
MARIO_SPAWN_UNKNOWN_13, MARIO_SPAWN_UNKNOWN_14, MARIO_SPAWN_UNKNOWN_15, MARIO_SPAWN_UNKNOWN_16,
|
|
|
|
MARIO_SPAWN_UNKNOWN_17, MARIO_SPAWN_UNKNOWN_11, MARIO_SPAWN_UNKNOWN_20, MARIO_SPAWN_UNKNOWN_21,
|
|
|
|
MARIO_SPAWN_UNKNOWN_22, MARIO_SPAWN_UNKNOWN_23, MARIO_SPAWN_UNKNOWN_24, MARIO_SPAWN_UNKNOWN_25,
|
|
|
|
};
|
|
|
|
|
|
|
|
Vp D_8032CF00 = { {
|
|
|
|
{ 640, 480, 511, 0 },
|
|
|
|
{ 640, 480, 511, 0 },
|
|
|
|
} };
|
|
|
|
|
|
|
|
#ifdef VERSION_EU
|
|
|
|
const char *gNoControllerMsg[] = {
|
|
|
|
"NO CONTROLLER",
|
|
|
|
"MANETTE DEBRANCHEE",
|
|
|
|
"CONTROLLER FEHLT",
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void func_8027A220(Vp *a, Vp *b, u8 c, u8 d, u8 e) {
|
|
|
|
u16 sp6 = ((c >> 3) << 11) | ((d >> 3) << 6) | ((e >> 3) << 1) | 1;
|
|
|
|
|
|
|
|
gFBSetColor = (sp6 << 16) | sp6;
|
|
|
|
D_8032CE74 = a;
|
|
|
|
D_8032CE78 = b;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_warp_transition_rgb(u8 red, u8 green, u8 blue) {
|
|
|
|
u16 warpTransitionRGBA16 = ((red >> 3) << 11) | ((green >> 3) << 6) | ((blue >> 3) << 1) | 1;
|
|
|
|
|
|
|
|
gWarpTransFBSetColor = (warpTransitionRGBA16 << 16) | warpTransitionRGBA16;
|
|
|
|
gWarpTransRed = red;
|
|
|
|
gWarpTransGreen = green;
|
|
|
|
gWarpTransBlue = blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_intro_text(void) {
|
|
|
|
#ifdef VERSION_EU
|
|
|
|
int language = eu_get_language();
|
|
|
|
#endif
|
|
|
|
if ((gGlobalTimer & 0x1F) < 20) {
|
|
|
|
if (gControllerBits == 0) {
|
|
|
|
#ifdef VERSION_EU
|
|
|
|
print_text_centered(160, 20, gNoControllerMsg[language]);
|
|
|
|
#else
|
|
|
|
print_text_centered(160, 20, "NO CONTROLLER");
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
#ifdef VERSION_EU
|
|
|
|
print_text_centered(20, 20, "START");
|
|
|
|
#else
|
|
|
|
print_text_centered(60, 38, "PRESS");
|
|
|
|
print_text_centered(60, 20, "START");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 get_mario_spawn_type(struct Object *o) {
|
|
|
|
s32 i;
|
2019-11-03 19:36:27 +00:00
|
|
|
const BehaviorScript *behavior = virtual_to_segmented(0x13, o->behavior);
|
2019-08-25 04:46:40 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 20; i++) {
|
2019-09-01 19:50:50 +00:00
|
|
|
if (D_8032CE9C[i] == behavior) {
|
2019-08-25 04:46:40 +00:00
|
|
|
return D_8032CEEC[i];
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ObjectWarpNode *area_get_warp_node(u8 id) {
|
|
|
|
struct ObjectWarpNode *node = NULL;
|
|
|
|
|
|
|
|
for (node = gCurrentArea->warpNodes; node != NULL; node = node->next) {
|
2019-09-01 19:50:50 +00:00
|
|
|
if (node->node.id == id) {
|
2019-08-25 04:46:40 +00:00
|
|
|
break;
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ObjectWarpNode *func_8027A478(struct Object *o) {
|
|
|
|
u8 sp1F = (o->oBehParams & 0x00FF0000) >> 16;
|
|
|
|
|
|
|
|
return area_get_warp_node(sp1F);
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_8027A4C4(void) {
|
|
|
|
struct ObjectWarpNode *sp24;
|
|
|
|
struct Object *sp20 = (struct Object *) gObjParentGraphNode.children;
|
|
|
|
|
|
|
|
do {
|
|
|
|
struct Object *sp1C = sp20;
|
|
|
|
|
|
|
|
if (sp1C->activeFlags && get_mario_spawn_type(sp1C) != 0) {
|
|
|
|
sp24 = func_8027A478(sp1C);
|
2019-09-01 19:50:50 +00:00
|
|
|
if (sp24 != NULL) {
|
2019-08-25 04:46:40 +00:00
|
|
|
sp24->object = sp1C;
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
} while ((sp20 = (struct Object *) sp20->header.gfx.node.next)
|
|
|
|
!= (struct Object *) gObjParentGraphNode.children);
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_areas(void) {
|
|
|
|
s32 i;
|
|
|
|
|
|
|
|
gCurrentArea = NULL;
|
|
|
|
gWarpTransition.isActive = FALSE;
|
|
|
|
gWarpTransition.pauseRendering = FALSE;
|
|
|
|
gMarioSpawnInfo->areaIndex = -1;
|
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
gAreaData[i].index = i;
|
|
|
|
gAreaData[i].flags = 0;
|
|
|
|
gAreaData[i].terrainType = 0;
|
|
|
|
gAreaData[i].unk04 = NULL;
|
|
|
|
gAreaData[i].terrainData = NULL;
|
|
|
|
gAreaData[i].surfaceRooms = NULL;
|
|
|
|
gAreaData[i].macroObjects = NULL;
|
|
|
|
gAreaData[i].warpNodes = NULL;
|
|
|
|
gAreaData[i].paintingWarpNodes = NULL;
|
|
|
|
gAreaData[i].instantWarps = NULL;
|
|
|
|
gAreaData[i].objectSpawnInfos = NULL;
|
|
|
|
gAreaData[i].camera = NULL;
|
|
|
|
gAreaData[i].unused28 = NULL;
|
|
|
|
gAreaData[i].whirlpools[0] = NULL;
|
|
|
|
gAreaData[i].whirlpools[1] = NULL;
|
|
|
|
gAreaData[i].dialog[0] = 255;
|
|
|
|
gAreaData[i].dialog[1] = 255;
|
|
|
|
gAreaData[i].musicParam = 0;
|
|
|
|
gAreaData[i].musicParam2 = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_8027A7C4(void) {
|
|
|
|
s32 i;
|
|
|
|
|
|
|
|
if (gCurrentArea != NULL) {
|
|
|
|
geo_call_global_function_nodes(gCurrentArea->unk04, GEO_CONTEXT_AREA_UNLOAD);
|
|
|
|
gCurrentArea = NULL;
|
|
|
|
gWarpTransition.isActive = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
if (gAreaData[i].unk04 != NULL) {
|
|
|
|
geo_call_global_function_nodes(gAreaData[i].unk04, GEO_CONTEXT_AREA_INIT);
|
|
|
|
gAreaData[i].unk04 = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_area(s32 index) {
|
|
|
|
if (gCurrentArea == NULL && gAreaData[index].unk04 != NULL) {
|
|
|
|
gCurrentArea = &gAreaData[index];
|
|
|
|
gCurrAreaIndex = gCurrentArea->index;
|
|
|
|
|
|
|
|
if (gCurrentArea->terrainData != NULL) {
|
|
|
|
load_area_terrain(index, gCurrentArea->terrainData, gCurrentArea->surfaceRooms,
|
|
|
|
gCurrentArea->macroObjects);
|
|
|
|
}
|
|
|
|
|
2019-09-01 19:50:50 +00:00
|
|
|
if (gCurrentArea->objectSpawnInfos != NULL) {
|
2019-08-25 04:46:40 +00:00
|
|
|
spawn_objects_from_info(0, gCurrentArea->objectSpawnInfos);
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
|
|
|
|
func_8027A4C4();
|
|
|
|
geo_call_global_function_nodes(gCurrentArea->unk04, GEO_CONTEXT_AREA_LOAD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_8027A998(void) {
|
|
|
|
if (gCurrentArea != NULL) {
|
|
|
|
unload_objects_from_area(0, gCurrentArea->index);
|
|
|
|
geo_call_global_function_nodes(gCurrentArea->unk04, GEO_CONTEXT_AREA_UNLOAD);
|
|
|
|
|
|
|
|
gCurrentArea->flags = 0;
|
|
|
|
gCurrentArea = NULL;
|
|
|
|
gWarpTransition.isActive = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_mario_area(void) {
|
|
|
|
func_80320890();
|
|
|
|
load_area(gMarioSpawnInfo->areaIndex);
|
|
|
|
|
|
|
|
if (gCurrentArea->index == gMarioSpawnInfo->areaIndex) {
|
|
|
|
gCurrentArea->flags |= 0x01;
|
|
|
|
spawn_objects_from_info(0, gMarioSpawnInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_8027AA88(void) {
|
|
|
|
if (gCurrentArea != NULL && (gCurrentArea->flags & 0x01)) {
|
|
|
|
unload_objects_from_area(0, gMarioSpawnInfo->activeAreaIndex);
|
|
|
|
|
|
|
|
gCurrentArea->flags &= ~0x01;
|
2019-09-01 19:50:50 +00:00
|
|
|
if (gCurrentArea->flags == 0) {
|
2019-08-25 04:46:40 +00:00
|
|
|
func_8027A998();
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void change_area(s32 index) {
|
|
|
|
s32 areaFlags = gCurrentArea->flags;
|
|
|
|
|
|
|
|
if (gCurrAreaIndex != index) {
|
|
|
|
func_8027A998();
|
|
|
|
load_area(index);
|
|
|
|
|
|
|
|
gCurrentArea->flags = areaFlags;
|
|
|
|
gMarioObject->oActiveParticleFlags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (areaFlags & 0x01) {
|
|
|
|
gMarioObject->header.gfx.unk18 = index, gMarioSpawnInfo->areaIndex = index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void area_update_objects(void) {
|
|
|
|
gAreaUpdateCounter++;
|
|
|
|
update_objects(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets up the information needed to play a warp transition, including the
|
|
|
|
* transition type, time in frames, and the RGB color that will fill the screen.
|
|
|
|
*/
|
|
|
|
void play_transition(s16 transType, s16 time, u8 red, u8 green, u8 blue) {
|
|
|
|
gWarpTransition.isActive = TRUE;
|
|
|
|
gWarpTransition.type = transType;
|
|
|
|
gWarpTransition.time = time;
|
|
|
|
gWarpTransition.pauseRendering = FALSE;
|
|
|
|
|
|
|
|
// The lowest bit of transType determines if the transition is fading in or out.
|
|
|
|
if (transType & 1) {
|
|
|
|
set_warp_transition_rgb(red, green, blue);
|
|
|
|
} else {
|
|
|
|
red = gWarpTransRed, green = gWarpTransGreen, blue = gWarpTransBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transType < 8) {
|
|
|
|
gWarpTransition.data.red = red;
|
|
|
|
gWarpTransition.data.green = green;
|
|
|
|
gWarpTransition.data.blue = blue;
|
|
|
|
} else {
|
|
|
|
gWarpTransition.data.red = red;
|
|
|
|
gWarpTransition.data.green = green;
|
|
|
|
gWarpTransition.data.blue = blue;
|
|
|
|
|
|
|
|
// Both the start and end circles are always located in the middle of the screen.
|
|
|
|
// If you really wanted to, you could place the start at one corner and the end at
|
|
|
|
// the opposite corner. This will make the transition image look like it is moving
|
|
|
|
// across the screen.
|
|
|
|
gWarpTransition.data.startCircleX = 160;
|
|
|
|
gWarpTransition.data.startCircleY = 120;
|
|
|
|
gWarpTransition.data.endCircleX = 160;
|
|
|
|
gWarpTransition.data.endCircleY = 120;
|
|
|
|
|
|
|
|
gWarpTransition.data.unk10 = 0;
|
|
|
|
|
|
|
|
if (transType & 1) // Is the image fading in?
|
|
|
|
{
|
|
|
|
gWarpTransition.data.startCircleRadius = 320;
|
2019-09-01 19:50:50 +00:00
|
|
|
if (transType >= 0x0F) {
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.data.endCircleRadius = 16;
|
2019-09-01 19:50:50 +00:00
|
|
|
} else {
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.data.endCircleRadius = 0;
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
} else // The image is fading out. (Reverses start & end circles)
|
|
|
|
{
|
2019-09-01 19:50:50 +00:00
|
|
|
if (transType >= 0x0E) {
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.data.startCircleRadius = 16;
|
2019-09-01 19:50:50 +00:00
|
|
|
} else {
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.data.startCircleRadius = 0;
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.data.endCircleRadius = 320;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets up the information needed to play a warp transition, including the
|
|
|
|
* transition type, time in frames, and the RGB color that will fill the screen.
|
|
|
|
* The transition will play only after a number of frames specified by 'delay'
|
|
|
|
*/
|
|
|
|
void play_transition_after_delay(s16 transType, s16 time, u8 red, u8 green, u8 blue, s16 delay) {
|
|
|
|
gWarpTransDelay = delay; // Number of frames to delay playing the transition.
|
|
|
|
play_transition(transType, time, red, green, blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void render_game(void) {
|
|
|
|
if (gCurrentArea != NULL && !gWarpTransition.pauseRendering) {
|
|
|
|
geo_process_root(gCurrentArea->unk04, D_8032CE74, D_8032CE78, gFBSetColor);
|
|
|
|
|
|
|
|
gSPViewport(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(&D_8032CF00));
|
|
|
|
|
2019-10-05 19:08:05 +00:00
|
|
|
gDPSetScissor(gDisplayListHead++, G_SC_NON_INTERLACE, 0, BORDER_HEIGHT, SCREEN_WIDTH,
|
|
|
|
SCREEN_HEIGHT - BORDER_HEIGHT);
|
2019-08-25 04:46:40 +00:00
|
|
|
render_hud();
|
|
|
|
|
2019-10-05 19:08:05 +00:00
|
|
|
gDPSetScissor(gDisplayListHead++, G_SC_NON_INTERLACE, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
|
2019-08-25 04:46:40 +00:00
|
|
|
render_text_labels();
|
|
|
|
do_cutscene_handler();
|
|
|
|
print_displaying_credits_entry();
|
2019-10-05 19:08:05 +00:00
|
|
|
gDPSetScissor(gDisplayListHead++, G_SC_NON_INTERLACE, 0, BORDER_HEIGHT, SCREEN_WIDTH,
|
|
|
|
SCREEN_HEIGHT - BORDER_HEIGHT);
|
|
|
|
gPauseScreenMode = render_menus_and_dialogs();
|
2019-08-25 04:46:40 +00:00
|
|
|
|
2019-10-05 19:08:05 +00:00
|
|
|
if (gPauseScreenMode != 0) {
|
|
|
|
gSaveOptSelectIndex = gPauseScreenMode;
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-10-05 19:08:05 +00:00
|
|
|
|
2019-09-01 19:50:50 +00:00
|
|
|
if (D_8032CE78 != NULL) {
|
2019-08-25 04:46:40 +00:00
|
|
|
make_viewport_clip_rect(D_8032CE78);
|
2019-09-01 19:50:50 +00:00
|
|
|
} else
|
2019-10-05 19:08:05 +00:00
|
|
|
gDPSetScissor(gDisplayListHead++, G_SC_NON_INTERLACE, 0, BORDER_HEIGHT, SCREEN_WIDTH,
|
|
|
|
SCREEN_HEIGHT - BORDER_HEIGHT);
|
2019-08-25 04:46:40 +00:00
|
|
|
|
|
|
|
if (gWarpTransition.isActive) {
|
|
|
|
if (gWarpTransDelay == 0) {
|
|
|
|
gWarpTransition.isActive = !func_802CC108(0, gWarpTransition.type, gWarpTransition.time,
|
|
|
|
&gWarpTransition.data);
|
|
|
|
if (!gWarpTransition.isActive) {
|
2019-09-01 19:50:50 +00:00
|
|
|
if (gWarpTransition.type & 1) {
|
2019-08-25 04:46:40 +00:00
|
|
|
gWarpTransition.pauseRendering = TRUE;
|
2019-09-01 19:50:50 +00:00
|
|
|
} else {
|
2019-08-25 04:46:40 +00:00
|
|
|
set_warp_transition_rgb(0, 0, 0);
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gWarpTransDelay--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
render_text_labels();
|
2019-09-01 19:50:50 +00:00
|
|
|
if (D_8032CE78 != 0) {
|
2019-08-25 04:46:40 +00:00
|
|
|
clear_viewport(D_8032CE78, gWarpTransFBSetColor);
|
2019-09-01 19:50:50 +00:00
|
|
|
} else {
|
2019-08-25 04:46:40 +00:00
|
|
|
clear_frame_buffer(gWarpTransFBSetColor);
|
2019-09-01 19:50:50 +00:00
|
|
|
}
|
2019-08-25 04:46:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
D_8032CE74 = NULL;
|
|
|
|
D_8032CE78 = 0;
|
|
|
|
}
|