The first commit

This commit is contained in:
Banjo Kazooie
2022-07-15 17:09:41 -05:00
commit dd13d34074
1087 changed files with 391897 additions and 0 deletions

79
src/CCW/code_6EC0.c Normal file
View File

@@ -0,0 +1,79 @@
#include <ultra64.h>
#include "functions.h"
#include "variables.h"
typedef struct{
s16 map;
s16 unk2;
s16 unk4;
}Struct_CCW_6EC0_0;
typedef struct{
Struct_CCW_6EC0_0 *unk0;
}ActorLocal_CCW_6EC0;
void func_8038D368(Actor *this);
Actor *func_8038D30C(ActorMarker* marker, Gfx** gfx, Mtx** mtx, Vtx** vtx);
/* .data */
extern Struct_CCW_6EC0_0 D_8038F600[];
extern ActorInfo D_8038F614 = {
0x1CE, 0x31A, 0x48F,
0x0, NULL,
func_8038D368, NULL, func_8038D30C,
0, 0, 2.2f, 0
};
/* .code */
void func_8038D2B0(Actor *this, s32 next_state) {
if (next_state == 1) {
func_80335924(this->unk148, 0x1A6, 0.2f, 5.5f);
}
this->state = next_state;
}
Actor *func_8038D30C(ActorMarker* marker, Gfx** gfx, Mtx** mtx, Vtx** vtx) {
if (levelSpecificFlags_get(0x25) == 0) {
return func_80325340(marker, gfx, mtx, vtx);
}
return func_80325888(marker, gfx, mtx, vtx);
}
void func_8038D368(Actor *this) {
ActorLocal_CCW_6EC0 *local;
f32 plyr_pos[3];
local = (ActorLocal_CCW_6EC0 *)&this->local;
if (!this->unk16C_4) {
this->marker->propPtr->unk8_3 = TRUE;
this->unk16C_4 = TRUE;
this->unk138_24 = FALSE;
local->unk0 = D_8038F600;
while (local->unk0->map != 0 && map_get() != local->unk0->map) {
local->unk0++;
}
func_8038D2B0(this, 1);
if (jiggyscore_isCollected(JIGGY_4B_CCW_GNAWTY)) {
levelSpecificFlags_set(0x25, TRUE);
}
return;
}
if(!this->unk138_24){
player_getPosition(plyr_pos);
if (ml_vec3f_distance(this->position, plyr_pos) < 600.0f) {
if (!jiggyscore_isCollected(JIGGY_4B_CCW_GNAWTY)) {
func_80311480(local->unk0->unk2, 4, NULL, NULL, NULL, NULL);
} else {
if (local->unk0->unk4) {
func_80311480(local->unk0->unk4, 4, NULL, NULL, NULL, NULL);
}
}
this->unk138_24 = TRUE;
}
}
}