mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 18:27:41 +00:00
Additional state imps
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
#include "CGameArea.hpp"
|
||||
#include "GameGlobalObjects.hpp"
|
||||
#include "CSimplePool.hpp"
|
||||
#include "CStateManager.hpp"
|
||||
#include "CInGameTweakManagerBase.hpp"
|
||||
#include "AutoMapper/CMapWorld.hpp"
|
||||
|
||||
namespace urde
|
||||
@@ -16,37 +18,54 @@ CDummyWorld::CDummyWorld(ResId mlvlId, bool loadMap)
|
||||
|
||||
ResId CDummyWorld::IGetWorldAssetId() const
|
||||
{
|
||||
return xc_mlvlId;
|
||||
}
|
||||
|
||||
ResId CDummyWorld::IGetStringTableAssetId() const
|
||||
{
|
||||
return x10_strgId;
|
||||
}
|
||||
|
||||
ResId CDummyWorld::IGetSaveWorldAssetId() const
|
||||
{
|
||||
return x14_savwId;
|
||||
}
|
||||
|
||||
const CMapWorld* CDummyWorld::IGetMapWorld() const
|
||||
{
|
||||
return x2c_mapWorld.GetObj();
|
||||
}
|
||||
|
||||
CMapWorld* CDummyWorld::IMapWorld()
|
||||
{
|
||||
return x2c_mapWorld.GetObj();
|
||||
}
|
||||
|
||||
IGameArea* CDummyWorld::IGetAreaAlways(TAreaId id) const
|
||||
const IGameArea* CDummyWorld::IGetAreaAlways(TAreaId id) const
|
||||
{
|
||||
return &x18_areas.at(id);
|
||||
}
|
||||
|
||||
ResId CDummyWorld::IGetCurrentAreaId() const
|
||||
TAreaId CDummyWorld::IGetCurrentAreaId() const
|
||||
{
|
||||
return x3c_curAreaId;
|
||||
}
|
||||
|
||||
int CDummyWorld::IGetAreaIndex(TAreaId id) const
|
||||
TAreaId CDummyWorld::IGetAreaId(ResId id) const
|
||||
{
|
||||
int ret = 0;
|
||||
if (id == -1)
|
||||
return kInvalidAreaId;
|
||||
for (const CDummyGameArea& area : x18_areas)
|
||||
{
|
||||
if (area.xc_mrea == id)
|
||||
return ret;
|
||||
++ret;
|
||||
}
|
||||
return kInvalidAreaId;
|
||||
}
|
||||
|
||||
std::vector<CWorld::CRelay> ReadMemoryRelays(athena::io::MemoryReader& r)
|
||||
std::vector<CWorld::CRelay> CWorld::CRelay::ReadMemoryRelays(athena::io::MemoryReader& r)
|
||||
{
|
||||
std::vector<CWorld::CRelay> ret;
|
||||
u32 count = r.readUint32Big();
|
||||
@@ -56,7 +75,7 @@ std::vector<CWorld::CRelay> ReadMemoryRelays(athena::io::MemoryReader& r)
|
||||
return ret;
|
||||
}
|
||||
|
||||
CWorldLayers ReadWorldLayers(athena::io::MemoryReader& r)
|
||||
CWorldLayers CWorldLayers::ReadWorldLayers(athena::io::MemoryReader& r)
|
||||
{
|
||||
CWorldLayers ret;
|
||||
|
||||
@@ -99,7 +118,7 @@ bool CDummyWorld::ICheckWorldComplete()
|
||||
if (version >= 12)
|
||||
r.readUint32Big();
|
||||
if (version >= 17)
|
||||
ReadMemoryRelays(r);
|
||||
CWorld::CRelay::ReadMemoryRelays(r);
|
||||
|
||||
u32 areaCount = r.readUint32Big();
|
||||
r.readUint32Big();
|
||||
@@ -110,10 +129,7 @@ bool CDummyWorld::ICheckWorldComplete()
|
||||
|
||||
x28_mapWorldId = r.readUint32Big();
|
||||
if (x4_loadMap)
|
||||
{
|
||||
x2c_mapWorld = g_SimplePool->GetObj(SObjectTag{FOURCC('MAPW'), x28_mapWorldId});
|
||||
x2c_mapWorld.Lock();
|
||||
}
|
||||
|
||||
if (version > 10)
|
||||
{
|
||||
@@ -128,7 +144,7 @@ bool CDummyWorld::ICheckWorldComplete()
|
||||
if (version > 12)
|
||||
r.readString();
|
||||
|
||||
ReadWorldLayers(r);
|
||||
CWorldLayers::ReadWorldLayers(r);
|
||||
|
||||
if (x4_loadMap)
|
||||
x8_phase = Phase::LoadingMap;
|
||||
@@ -164,54 +180,195 @@ bool CDummyWorld::ICheckWorldComplete()
|
||||
|
||||
std::string CDummyWorld::IGetDefaultAudioTrack() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
int CDummyWorld::IGetAreaCount() const
|
||||
{
|
||||
return x18_areas.size();
|
||||
}
|
||||
|
||||
CWorld::CWorld(IObjectStore& objStore, IFactory& resFactory, ResId mlvlId)
|
||||
: x60_objectStore(objStore), x64_resFactory(resFactory)
|
||||
{
|
||||
SObjectTag tag{FOURCC('MLVL'), mlvlId};
|
||||
resFactory.LoadResourceAsync(tag, x40_loadBuf);
|
||||
}
|
||||
|
||||
ResId CWorld::IGetWorldAssetId() const
|
||||
{
|
||||
return x8_mlvlId;
|
||||
}
|
||||
|
||||
ResId CWorld::IGetStringTableAssetId() const
|
||||
{
|
||||
return xc_strgId;
|
||||
}
|
||||
|
||||
ResId CWorld::IGetSaveWorldAssetId() const
|
||||
{
|
||||
return x10_savwId;
|
||||
}
|
||||
|
||||
const CMapWorld* CWorld::IGetMapWorld() const
|
||||
{
|
||||
return GetMapWorld();
|
||||
}
|
||||
|
||||
CMapWorld* CWorld::IMapWorld()
|
||||
{
|
||||
return (CMapWorld*)GetMapWorld();
|
||||
}
|
||||
|
||||
IGameArea* CWorld::IGetAreaAlways(TAreaId id) const
|
||||
const IGameArea* CWorld::IGetAreaAlways(TAreaId id) const
|
||||
{
|
||||
return x18_areas.at(id).get();
|
||||
}
|
||||
|
||||
TAreaId CWorld::IGetCurrentAreaId() const
|
||||
{
|
||||
return x68_curAreaId;
|
||||
}
|
||||
|
||||
TAreaId CWorld::IGetAreaId(ResId id) const
|
||||
{
|
||||
int ret = 0;
|
||||
if (id == -1)
|
||||
return kInvalidAreaId;
|
||||
for (const std::unique_ptr<CGameArea>& area : x18_areas)
|
||||
{
|
||||
if (area->x84_mrea == id)
|
||||
return ret;
|
||||
++ret;
|
||||
}
|
||||
return kInvalidAreaId;
|
||||
}
|
||||
|
||||
void CWorld::MoveToChain(CGameArea* area, EChain chain)
|
||||
{
|
||||
}
|
||||
|
||||
ResId CWorld::IGetCurrentAreaId() const
|
||||
bool CWorld::CheckWorldComplete(CStateManager* mgr, TAreaId id, ResId mreaId)
|
||||
{
|
||||
}
|
||||
if (mreaId != -1)
|
||||
{
|
||||
x68_curAreaId = 0;
|
||||
TAreaId aid = 0;
|
||||
for (const std::unique_ptr<CGameArea>& area : x18_areas)
|
||||
{
|
||||
if (area->x84_mrea == mreaId)
|
||||
{
|
||||
x68_curAreaId = aid;
|
||||
break;
|
||||
}
|
||||
++aid;
|
||||
}
|
||||
}
|
||||
else
|
||||
x68_curAreaId = id;
|
||||
|
||||
switch (x4_phase)
|
||||
{
|
||||
case Phase::Loading:
|
||||
{
|
||||
if (!x40_loadBuf)
|
||||
return false;
|
||||
athena::io::MemoryReader r(x40_loadBuf.get(), UINT32_MAX, false);
|
||||
r.readUint32Big();
|
||||
int version = r.readUint32Big();
|
||||
xc_strgId = r.readUint32Big();
|
||||
|
||||
if (version >= 15)
|
||||
x10_savwId = r.readUint32Big();
|
||||
if (version >= 12)
|
||||
{
|
||||
ResId skyboxId = r.readUint32Big();
|
||||
if (skyboxId != -1 && mgr)
|
||||
x84_skybox = g_SimplePool->GetObj(SObjectTag{FOURCC('CMDL'), skyboxId});
|
||||
}
|
||||
if (version >= 17)
|
||||
x2c_relays = CWorld::CRelay::ReadMemoryRelays(r);
|
||||
|
||||
u32 areaCount = r.readUint32Big();
|
||||
r.readUint32Big();
|
||||
|
||||
x18_areas.reserve(areaCount);
|
||||
for (u32 i=0 ; i<areaCount ; ++i)
|
||||
x18_areas.push_back(std::make_unique<CGameArea>(r, i, version));
|
||||
|
||||
if (x48_chainCount < 5)
|
||||
{
|
||||
for (int i=x48_chainCount ; i<5 ; ++i)
|
||||
x4c_chainHeads[i] = nullptr;
|
||||
x48_chainCount = 5;
|
||||
}
|
||||
|
||||
for (std::unique_ptr<CGameArea>& area : x18_areas)
|
||||
MoveToChain(area.get(), EChain::One);
|
||||
|
||||
x24_mapwId = r.readUint32Big();
|
||||
x28_mapWorld = g_SimplePool->GetObj(SObjectTag{FOURCC('MAPW'), x24_mapwId});
|
||||
|
||||
if (mgr)
|
||||
{
|
||||
std::vector<TEditorId> ids;
|
||||
mgr->LoadScriptObjects(kInvalidAreaId, r, ids);
|
||||
mgr->InitScriptObjects(ids);
|
||||
}
|
||||
|
||||
if (version > 10)
|
||||
{
|
||||
u32 audioGroupCount = r.readUint32Big();
|
||||
x74_soundGroupData.reserve(audioGroupCount);
|
||||
for (u32 i=0 ; i<audioGroupCount ; ++i)
|
||||
{
|
||||
int grpId = r.readUint32Big();
|
||||
ResId agscId = r.readUint32Big();
|
||||
x74_soundGroupData.emplace_back(grpId, agscId);
|
||||
}
|
||||
}
|
||||
|
||||
if (version > 12)
|
||||
{
|
||||
x84_defAudioTrack = r.readString();
|
||||
std::string trackKey = hecl::Format("WorldDefault: %8.8x", u32(x8_mlvlId));
|
||||
if (g_TweakManager->HasTweakValue(trackKey))
|
||||
x84_defAudioTrack = g_TweakManager->GetTweakValue(trackKey)->x30_str;
|
||||
}
|
||||
|
||||
CWorldLayers::ReadWorldLayers(r);
|
||||
|
||||
x4_phase = Phase::LoadingMap;
|
||||
}
|
||||
case Phase::LoadingMap:
|
||||
{
|
||||
x4_phase = Phase::LoadingMapAreas;
|
||||
}
|
||||
case Phase::LoadingMapAreas:
|
||||
{
|
||||
x4_phase = Phase::Done;
|
||||
}
|
||||
case Phase::Done:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
||||
int CWorld::IGetAreaIndex(TAreaId id) const
|
||||
{
|
||||
}
|
||||
|
||||
bool CWorld::ICheckWorldComplete()
|
||||
{
|
||||
return CheckWorldComplete(nullptr, kInvalidAreaId, -1);
|
||||
}
|
||||
|
||||
std::string CWorld::IGetDefaultAudioTrack() const
|
||||
{
|
||||
return x84_defAudioTrack;
|
||||
}
|
||||
|
||||
int CWorld::IGetAreaCount() const
|
||||
{
|
||||
return x18_areas.size();
|
||||
}
|
||||
|
||||
bool CWorld::DoesAreaExist(TAreaId area) const
|
||||
|
||||
Reference in New Issue
Block a user