2023-06-29 04:10:08 -04:00
|
|
|
#include "legoplantmanager.h"
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
#include "3dmanager/lego3dmanager.h"
|
2024-06-18 13:35:03 -04:00
|
|
|
#include "legocharactermanager.h"
|
2024-03-15 22:20:44 -04:00
|
|
|
#include "legoentity.h"
|
2024-06-17 14:11:27 -04:00
|
|
|
#include "legoplants.h"
|
2024-06-19 12:57:05 -04:00
|
|
|
#include "legovideomanager.h"
|
2024-06-18 13:35:03 -04:00
|
|
|
#include "legoworld.h"
|
|
|
|
#include "misc.h"
|
2024-06-19 12:02:54 -04:00
|
|
|
#include "misc/legostorage.h"
|
|
|
|
#include "scripts.h"
|
|
|
|
#include "sndanim_actions.h"
|
2024-06-19 12:57:05 -04:00
|
|
|
#include "viewmanager/viewmanager.h"
|
2024-06-18 13:35:03 -04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2024-03-15 22:20:44 -04:00
|
|
|
|
2024-02-10 20:52:16 -05:00
|
|
|
DECOMP_SIZE_ASSERT(LegoPlantManager, 0x2c)
|
|
|
|
|
2024-06-18 13:35:03 -04:00
|
|
|
// GLOBAL: LEGO1 0x100f1660
|
|
|
|
const char* g_plantLodNames[4][5] = {
|
|
|
|
{"flwrwht", "flwrblk", "flwryel", "flwrred", "flwrgrn"},
|
|
|
|
{"treewht", "treeblk", "treeyel", "treered", "tree"},
|
|
|
|
{"bushwht", "bushblk", "bushyel", "bushred", "bush"},
|
|
|
|
{"palmwht", "palmblk", "palmyel", "palmred", "palm"}
|
|
|
|
};
|
|
|
|
|
2024-06-19 12:02:54 -04:00
|
|
|
// GLOBAL: LEGO1 0x100f16b0
|
|
|
|
float g_unk0x100f16b0[] = {0.1f, 0.7f, 0.5f, 0.9f};
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x100f16c0
|
|
|
|
MxU8 g_unk0x100f16c0[] = {1, 2, 2, 3};
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// GLOBAL: LEGO1 0x100f315c
|
|
|
|
MxU32 LegoPlantManager::g_maxSound = 8;
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x100f3160
|
|
|
|
MxU32 g_unk0x100f3160 = 56;
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x100f3164
|
|
|
|
MxU32 g_unk0x100f3164 = 66;
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x100f3168
|
|
|
|
MxS32 LegoPlantManager::g_maxMove[4] = {3, 3, 3, 3};
|
|
|
|
|
|
|
|
// GLOBAL: LEGO1 0x100f3178
|
|
|
|
MxU32 g_plantAnimationId[4] = {30, 33, 36, 39};
|
|
|
|
|
2024-02-21 15:30:02 -05:00
|
|
|
// GLOBAL: LEGO1 0x100f3188
|
|
|
|
char* LegoPlantManager::g_customizeAnimFile = NULL;
|
|
|
|
|
2024-06-17 14:11:27 -04:00
|
|
|
// GLOBAL: LEGO1 0x10103180
|
|
|
|
LegoPlantInfo g_plantInfo[81];
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10026220
|
2023-06-29 04:10:08 -04:00
|
|
|
LegoPlantManager::LegoPlantManager()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
Init();
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-06-17 14:11:27 -04:00
|
|
|
// FUNCTION: LEGO1 0x100262c0
|
2023-06-29 04:10:08 -04:00
|
|
|
LegoPlantManager::~LegoPlantManager()
|
|
|
|
{
|
2024-06-17 14:11:27 -04:00
|
|
|
delete[] g_customizeAnimFile;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-06-17 14:11:27 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026330
|
|
|
|
// FUNCTION: BETA10 0x100c4f90
|
2023-11-21 03:44:45 -05:00
|
|
|
void LegoPlantManager::Init()
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2024-06-17 14:11:27 -04:00
|
|
|
for (MxS32 i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
g_plantInfo[i] = g_plantInfoInit[i];
|
|
|
|
}
|
|
|
|
|
2024-06-18 13:35:03 -04:00
|
|
|
m_worldId = -1;
|
2024-06-17 14:11:27 -04:00
|
|
|
m_unk0x0c = 0;
|
|
|
|
m_unk0x24 = 0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-06-18 13:35:03 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026360
|
2024-06-17 14:11:27 -04:00
|
|
|
// FUNCTION: BETA10 0x100c5032
|
2024-06-18 13:35:03 -04:00
|
|
|
void LegoPlantManager::LoadWorldInfo(MxS32 p_worldId)
|
2024-01-12 17:27:07 -05:00
|
|
|
{
|
2024-06-18 13:35:03 -04:00
|
|
|
m_worldId = p_worldId;
|
|
|
|
LegoWorld* world = CurrentWorld();
|
|
|
|
|
|
|
|
for (MxS32 i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
CreatePlant(i, world, p_worldId);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_unk0x0c = 0;
|
2024-01-12 17:27:07 -05:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:02:54 -04:00
|
|
|
// FUNCTION: LEGO1 0x100263a0
|
|
|
|
void LegoPlantManager::Reset(MxS32 p_worldId)
|
2024-01-27 11:48:50 -05:00
|
|
|
{
|
2024-06-19 12:02:54 -04:00
|
|
|
MxU32 i;
|
|
|
|
DeleteObjects(g_sndAnimScript, SndanimScript::c_AnimC1, SndanimScript::c_AnimBld18);
|
|
|
|
|
|
|
|
for (i = 0; i < m_unk0x24; i++) {
|
|
|
|
delete m_unk0x10[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
m_unk0x24 = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
RemovePlant(i, p_worldId);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_worldId = -1;
|
|
|
|
m_unk0x0c = 0;
|
2024-01-27 11:48:50 -05:00
|
|
|
}
|
|
|
|
|
2024-06-18 13:35:03 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026590
|
|
|
|
// FUNCTION: BETA10 0x100c561e
|
|
|
|
LegoEntity* LegoPlantManager::CreatePlant(MxS32 p_index, LegoWorld* p_world, MxS32 p_worldId)
|
|
|
|
{
|
|
|
|
LegoEntity* entity = NULL;
|
|
|
|
|
|
|
|
if (p_index < sizeOfArray(g_plantInfo)) {
|
|
|
|
MxU32 world = 1 << (MxU8) p_worldId;
|
|
|
|
|
|
|
|
if (g_plantInfo[p_index].m_worlds & world && g_plantInfo[p_index].m_unk0x16 != 0) {
|
|
|
|
if (g_plantInfo[p_index].m_entity == NULL) {
|
|
|
|
char name[256];
|
|
|
|
char lodName[256];
|
|
|
|
|
|
|
|
sprintf(name, "plant%d", p_index);
|
|
|
|
sprintf(lodName, "%s", g_plantLodNames[g_plantInfo[p_index].m_variant][g_plantInfo[p_index].m_color]);
|
|
|
|
|
|
|
|
LegoROI* roi = CharacterManager()->CreateAutoROI(name, lodName, TRUE);
|
|
|
|
roi->SetVisibility(TRUE);
|
|
|
|
|
|
|
|
entity = roi->GetEntity();
|
|
|
|
entity->SetLocation(
|
|
|
|
g_plantInfo[p_index].m_position,
|
|
|
|
g_plantInfo[p_index].m_direction,
|
|
|
|
g_plantInfo[p_index].m_up,
|
|
|
|
FALSE
|
|
|
|
);
|
|
|
|
entity->SetType(LegoEntity::e_plant);
|
|
|
|
g_plantInfo[p_index].m_entity = entity;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
entity = g_plantInfo[p_index].m_entity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return entity;
|
|
|
|
}
|
|
|
|
|
2024-06-19 12:02:54 -04:00
|
|
|
// FUNCTION: LEGO1 0x100266c0
|
|
|
|
// FUNCTION: BETA10 0x100c5859
|
|
|
|
void LegoPlantManager::RemovePlant(MxS32 p_index, MxS32 p_worldId)
|
|
|
|
{
|
|
|
|
if (p_index < sizeOfArray(g_plantInfo)) {
|
|
|
|
MxU32 world = 1 << (MxU8) p_worldId;
|
|
|
|
|
|
|
|
if (g_plantInfo[p_index].m_worlds & world && g_plantInfo[p_index].m_entity != NULL) {
|
|
|
|
CharacterManager()->ReleaseAutoROI(g_plantInfo[p_index].m_entity->GetROI());
|
|
|
|
g_plantInfo[p_index].m_entity = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10026720
|
2024-06-17 14:11:27 -04:00
|
|
|
// FUNCTION: BETA10 0x100c5918
|
|
|
|
MxResult LegoPlantManager::Write(LegoStorage* p_storage)
|
2024-02-27 15:04:17 -05:00
|
|
|
{
|
2024-06-19 12:02:54 -04:00
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
|
|
|
for (MxS32 i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
LegoPlantInfo* info = &g_plantInfo[i];
|
|
|
|
|
|
|
|
if (p_storage->Write(&info->m_variant, sizeof(info->m_variant)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Write(&info->m_sound, sizeof(info->m_sound)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Write(&info->m_move, sizeof(info->m_move)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Write(&info->m_mood, sizeof(info->m_mood)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Write(&info->m_color, sizeof(info->m_color)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Write(&info->m_initialUnk0x16, sizeof(info->m_initialUnk0x16)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = SUCCESS;
|
|
|
|
|
|
|
|
done:
|
|
|
|
return result;
|
2024-02-27 15:04:17 -05:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:02:54 -04:00
|
|
|
// FUNCTION: LEGO1 0x100267b0
|
2024-06-17 14:11:27 -04:00
|
|
|
// FUNCTION: BETA10 0x100c5a76
|
2024-04-21 09:42:08 -04:00
|
|
|
MxResult LegoPlantManager::Read(LegoStorage* p_storage)
|
2024-02-27 15:04:17 -05:00
|
|
|
{
|
2024-06-19 12:02:54 -04:00
|
|
|
MxResult result = FAILURE;
|
|
|
|
|
|
|
|
for (MxS32 i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
LegoPlantInfo* info = &g_plantInfo[i];
|
|
|
|
|
|
|
|
if (p_storage->Read(&info->m_variant, sizeof(info->m_variant)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Read(&info->m_sound, sizeof(info->m_sound)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Read(&info->m_move, sizeof(info->m_move)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Read(&info->m_mood, sizeof(info->m_mood)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Read(&info->m_color, sizeof(info->m_color)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (p_storage->Read(&info->m_unk0x16, sizeof(info->m_unk0x16)) != SUCCESS) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
info->m_initialUnk0x16 = info->m_unk0x16;
|
|
|
|
FUN_10026860(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
result = SUCCESS;
|
|
|
|
|
|
|
|
done:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10026860
|
|
|
|
// FUNCTION: BETA10 0x100c5be0
|
|
|
|
void LegoPlantManager::FUN_10026860(MxS32 p_index)
|
|
|
|
{
|
|
|
|
MxU8 variant = g_plantInfo[p_index].m_variant;
|
|
|
|
|
|
|
|
if (g_plantInfo[p_index].m_unk0x16 >= 0) {
|
|
|
|
float value = g_unk0x100f16c0[variant] - g_plantInfo[p_index].m_unk0x16;
|
|
|
|
g_plantInfo[p_index].m_position[1] = g_plantInfoInit[p_index].m_position[1] - value * g_unk0x100f16b0[variant];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_plantInfo[p_index].m_position[1] = g_plantInfoInit[p_index].m_position[1];
|
|
|
|
}
|
2024-02-27 15:04:17 -05:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x100268e0
|
|
|
|
// FUNCTION: BETA10 0x100c5c95
|
|
|
|
LegoPlantInfo* LegoPlantManager::GetInfo(LegoEntity* p_entity)
|
|
|
|
{
|
|
|
|
MxS32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
if (g_plantInfo[i].m_entity == p_entity) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < sizeOfArray(g_plantInfo)) {
|
|
|
|
return &g_plantInfo[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10026920
|
|
|
|
// FUNCTION: BETA10 0x100c5dc9
|
2024-06-05 13:40:44 -04:00
|
|
|
MxBool LegoPlantManager::SwitchColor(LegoEntity* p_entity)
|
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoROI* roi = p_entity->GetROI();
|
|
|
|
info->m_color++;
|
|
|
|
|
|
|
|
if (info->m_color > LegoPlantInfo::e_green) {
|
|
|
|
info->m_color = LegoPlantInfo::e_white;
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewLODList* lodList = GetViewLODListManager()->Lookup(g_plantLodNames[info->m_variant][info->m_color]);
|
|
|
|
|
|
|
|
if (roi->GetUnknown0xe0() >= 0) {
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->GetViewManager()->RemoveROIDetailFromScene(roi);
|
|
|
|
}
|
|
|
|
|
|
|
|
roi->SetLODList(lodList);
|
|
|
|
lodList->Release();
|
|
|
|
CharacterManager()->FUN_10085870(roi);
|
|
|
|
return TRUE;
|
2024-06-05 13:40:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x100269e0
|
|
|
|
// FUNCTION: BETA10 0x100c5ee2
|
2024-06-05 13:40:44 -04:00
|
|
|
MxBool LegoPlantManager::SwitchVariant(LegoEntity* p_entity)
|
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info == NULL || info->m_unk0x16 != -1) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoROI* roi = p_entity->GetROI();
|
|
|
|
info->m_variant++;
|
|
|
|
|
|
|
|
if (info->m_variant > LegoPlantInfo::e_palm) {
|
|
|
|
info->m_variant = LegoPlantInfo::e_flower;
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewLODList* lodList = GetViewLODListManager()->Lookup(g_plantLodNames[info->m_variant][info->m_color]);
|
|
|
|
|
|
|
|
if (roi->GetUnknown0xe0() >= 0) {
|
|
|
|
VideoManager()->Get3DManager()->GetLego3DView()->GetViewManager()->RemoveROIDetailFromScene(roi);
|
|
|
|
}
|
|
|
|
|
|
|
|
roi->SetLODList(lodList);
|
|
|
|
lodList->Release();
|
|
|
|
CharacterManager()->FUN_10085870(roi);
|
|
|
|
|
|
|
|
if (info->m_move != 0 && info->m_move >= g_maxMove[info->m_variant]) {
|
|
|
|
info->m_move = g_maxMove[info->m_variant] - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2024-06-05 13:40:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026ad0
|
|
|
|
// FUNCTION: BETA10 0x100c6049
|
2024-06-05 13:40:44 -04:00
|
|
|
MxBool LegoPlantManager::SwitchSound(LegoEntity* p_entity)
|
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
MxBool result = FALSE;
|
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info != NULL) {
|
|
|
|
info->m_sound++;
|
|
|
|
|
|
|
|
if (info->m_sound >= g_maxSound) {
|
|
|
|
info->m_sound = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-06-05 13:40:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026b00
|
|
|
|
// FUNCTION: BETA10 0x100c60a7
|
2024-06-05 13:40:44 -04:00
|
|
|
MxBool LegoPlantManager::SwitchMove(LegoEntity* p_entity)
|
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
MxBool result = FALSE;
|
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info != NULL) {
|
|
|
|
info->m_move++;
|
|
|
|
|
|
|
|
if (info->m_move >= g_maxMove[info->m_variant]) {
|
|
|
|
info->m_move = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-06-05 13:40:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026b40
|
|
|
|
// FUNCTION: BETA10 0x100c610e
|
2024-06-05 13:40:44 -04:00
|
|
|
MxBool LegoPlantManager::SwitchMood(LegoEntity* p_entity)
|
2024-03-15 22:20:44 -04:00
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
MxBool result = FALSE;
|
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info != NULL) {
|
|
|
|
info->m_mood++;
|
|
|
|
|
|
|
|
if (info->m_mood > 3) {
|
|
|
|
info->m_mood = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-03-15 22:20:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026b70
|
|
|
|
// FUNCTION: BETA10 0x100c6168
|
|
|
|
MxU32 LegoPlantManager::GetAnimationId(LegoEntity* p_entity)
|
2024-06-05 13:00:46 -04:00
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info != NULL) {
|
|
|
|
return g_plantAnimationId[info->m_variant] + info->m_move;
|
|
|
|
}
|
|
|
|
|
2024-06-05 13:00:46 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-06-19 12:57:05 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026ba0
|
|
|
|
// FUNCTION: BETA10 0x100c61ba
|
|
|
|
MxU32 LegoPlantManager::GetSoundId(LegoEntity* p_entity, MxBool p_state)
|
2024-03-06 14:12:20 -05:00
|
|
|
{
|
2024-06-19 12:57:05 -04:00
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (p_state) {
|
|
|
|
return (info->m_mood & 1) + g_unk0x100f3164;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info != NULL) {
|
|
|
|
return info->m_sound + g_unk0x100f3160;
|
|
|
|
}
|
|
|
|
|
2024-03-06 14:12:20 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-21 15:30:02 -05:00
|
|
|
// FUNCTION: LEGO1 0x10026be0
|
2024-06-25 11:28:10 -04:00
|
|
|
// FUNCTION: BETA10 0x100c62bc
|
2024-02-21 15:30:02 -05:00
|
|
|
void LegoPlantManager::SetCustomizeAnimFile(const char* p_value)
|
|
|
|
{
|
|
|
|
if (g_customizeAnimFile != NULL) {
|
|
|
|
delete[] g_customizeAnimFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_value != NULL) {
|
|
|
|
g_customizeAnimFile = new char[strlen(p_value) + 1];
|
|
|
|
|
|
|
|
if (g_customizeAnimFile != NULL) {
|
|
|
|
strcpy(g_customizeAnimFile, p_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_customizeAnimFile = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-25 11:28:10 -04:00
|
|
|
// FUNCTION: LEGO1 0x10026c50
|
|
|
|
// FUNCTION: BETA10 0x100c6349
|
|
|
|
MxBool LegoPlantManager::FUN_10026c50(LegoEntity* p_entity)
|
2024-04-06 13:59:38 -04:00
|
|
|
{
|
2024-06-25 11:28:10 -04:00
|
|
|
LegoPlantInfo* info = GetInfo(p_entity);
|
|
|
|
|
|
|
|
if (info == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FUN_10026c80(info - g_plantInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x10026c80
|
|
|
|
// FUNCTION: BETA10 0x100c63eb
|
|
|
|
MxBool LegoPlantManager::FUN_10026c80(MxS32 p_index)
|
|
|
|
{
|
|
|
|
if (p_index >= sizeOfArray(g_plantInfo)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
LegoPlantInfo* info = &g_plantInfo[p_index];
|
|
|
|
|
|
|
|
if (info == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
MxBool result = TRUE;
|
|
|
|
|
|
|
|
if (info->m_unk0x16 < 0) {
|
|
|
|
info->m_unk0x16 = g_unk0x100f16c0[info->m_variant];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info->m_unk0x16 > 0) {
|
|
|
|
LegoROI* roi = info->m_entity->GetROI();
|
|
|
|
info->m_unk0x16--;
|
|
|
|
|
|
|
|
if (info->m_unk0x16 == 1) {
|
|
|
|
info->m_unk0x16 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info->m_unk0x16 == 0) {
|
|
|
|
roi->SetVisibility(FALSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
FUN_10026860(info - g_plantInfo);
|
|
|
|
info->m_entity->SetLocation(info->m_position, info->m_direction, info->m_up, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2024-04-06 13:59:38 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// STUB: LEGO1 0x10026e00
|
2023-11-21 03:44:45 -05:00
|
|
|
MxResult LegoPlantManager::Tickle()
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
// TODO
|
2023-11-21 03:44:45 -05:00
|
|
|
return 0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2024-02-05 12:35:26 -05:00
|
|
|
|
2024-06-26 09:39:36 -04:00
|
|
|
// FUNCTION: LEGO1 0x10027120
|
2024-02-05 12:35:26 -05:00
|
|
|
void LegoPlantManager::FUN_10027120()
|
|
|
|
{
|
2024-06-26 09:39:36 -04:00
|
|
|
LegoWorld* world = CurrentWorld();
|
|
|
|
|
|
|
|
for (MxS32 i = 0; i < sizeOfArray(g_plantInfo); i++) {
|
|
|
|
g_plantInfo[i].m_unk0x16 = -1;
|
|
|
|
g_plantInfo[i].m_initialUnk0x16 = -1;
|
|
|
|
FUN_10026860(i);
|
|
|
|
|
|
|
|
if (g_plantInfo[i].m_entity != NULL) {
|
|
|
|
g_plantInfo[i].m_entity->SetLocation(
|
|
|
|
g_plantInfo[i].m_position,
|
|
|
|
g_plantInfo[i].m_direction,
|
|
|
|
g_plantInfo[i].m_up,
|
|
|
|
FALSE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2024-02-05 12:35:26 -05:00
|
|
|
}
|