mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 05:25:14 +00:00
Fix how DynOS decides to generate bins for geos
This commit is contained in:
parent
36c1d52e1f
commit
66433b5705
2 changed files with 29 additions and 7 deletions
|
@ -429,6 +429,9 @@ struct GfxData : NoCopy {
|
||||||
DataNodes<AnimData> mAnimations;
|
DataNodes<AnimData> mAnimations;
|
||||||
Array<Pair<String, void *>> mAnimationTable;
|
Array<Pair<String, void *>> mAnimationTable;
|
||||||
|
|
||||||
|
// Generate
|
||||||
|
Array<DataNode<GeoLayout> *> mGenerateGeoLayouts;
|
||||||
|
|
||||||
// Current
|
// Current
|
||||||
u64 mLoadIndex = 0;
|
u64 mLoadIndex = 0;
|
||||||
s32 mErrorCount = 0;
|
s32 mErrorCount = 0;
|
||||||
|
|
|
@ -146,6 +146,9 @@ static void ScanModelFile(GfxData *aGfxData, const SysPath &aFilename) {
|
||||||
FILE *_File = fopen(aFilename.c_str(), "rb");
|
FILE *_File = fopen(aFilename.c_str(), "rb");
|
||||||
if (!_File) return;
|
if (!_File) return;
|
||||||
|
|
||||||
|
// Remember the geo layout count
|
||||||
|
s32 prevGeoLayoutCount = aGfxData->mGeoLayouts.Count();
|
||||||
|
|
||||||
// Load file into a buffer while removing all comments
|
// Load file into a buffer while removing all comments
|
||||||
char *_FileBuffer = LoadFileBuffer(_File, aGfxData);
|
char *_FileBuffer = LoadFileBuffer(_File, aGfxData);
|
||||||
fclose(_File);
|
fclose(_File);
|
||||||
|
@ -268,6 +271,26 @@ static void ScanModelFile(GfxData *aGfxData, const SysPath &aFilename) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Figure out which geo layouts to generate
|
||||||
|
s32 geoLayoutCount = aGfxData->mGeoLayouts.Count();
|
||||||
|
if (geoLayoutCount > prevGeoLayoutCount) {
|
||||||
|
// find actors to generate
|
||||||
|
bool foundActor = false;
|
||||||
|
for (s32 i = prevGeoLayoutCount; i < geoLayoutCount; i++) {
|
||||||
|
String _GeoRootName = aGfxData->mGeoLayouts[i]->mName;
|
||||||
|
const void* actor = DynOS_Geo_GetActorLayoutFromName(_GeoRootName.begin());
|
||||||
|
if (actor != NULL) {
|
||||||
|
foundActor = true;
|
||||||
|
aGfxData->mGenerateGeoLayouts.Add(aGfxData->mGeoLayouts[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we haven't found an actor, just add the last geo layout found
|
||||||
|
if (!foundActor) {
|
||||||
|
aGfxData->mGenerateGeoLayouts.Add(aGfxData->mGeoLayouts[geoLayoutCount - 1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Delete(_FileBuffer);
|
Delete(_FileBuffer);
|
||||||
Print("Data read from file \"%s\"", aFilename.c_str());
|
Print("Data read from file \"%s\"", aFilename.c_str());
|
||||||
}
|
}
|
||||||
|
@ -1783,13 +1806,10 @@ static String GetActorFolder(const Array<Pair<u64, String>> &aActorsFolders, u64
|
||||||
return String();
|
return String();
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool DynOS_Gfx_GeneratePack_Internal(const SysPath &aPackFolder, Array<Pair<u64, String>> _ActorsFolders, GfxData *_GfxData, bool onlyConsiderActors) {
|
static bool DynOS_Gfx_GeneratePack_Internal(const SysPath &aPackFolder, Array<Pair<u64, String>> _ActorsFolders, GfxData *_GfxData) {
|
||||||
bool generated = false;
|
bool generated = false;
|
||||||
for (auto &_GeoNode : _GfxData->mGeoLayouts) {
|
for (auto &_GeoNode : _GfxData->mGenerateGeoLayouts) {
|
||||||
String _GeoRootName = _GeoNode->mName;
|
String _GeoRootName = _GeoNode->mName;
|
||||||
const void* actor = DynOS_Geo_GetActorLayoutFromName(_GeoRootName.begin());
|
|
||||||
if (onlyConsiderActors && actor == NULL) { continue; }
|
|
||||||
if (!onlyConsiderActors && _GeoNode != _GfxData->mGeoLayouts[_GfxData->mGeoLayouts.Count() - 1]) { continue; }
|
|
||||||
|
|
||||||
DataNode<GeoLayout> *_GeoRoot = GetGeoLayout(_GfxData, _GeoRootName);
|
DataNode<GeoLayout> *_GeoRoot = GetGeoLayout(_GfxData, _GeoRootName);
|
||||||
if (_GeoRoot != NULL) {
|
if (_GeoRoot != NULL) {
|
||||||
|
@ -1893,8 +1913,7 @@ void DynOS_Gfx_GeneratePack(const SysPath &aPackFolder) {
|
||||||
|
|
||||||
// Generate a binary file for each actor found in the GfxData
|
// Generate a binary file for each actor found in the GfxData
|
||||||
DynOS_Col_GeneratePack(aPackFolder, _ActorsFolders, _GfxData);
|
DynOS_Col_GeneratePack(aPackFolder, _ActorsFolders, _GfxData);
|
||||||
bool foundActor = DynOS_Gfx_GeneratePack_Internal(aPackFolder, _ActorsFolders, _GfxData, true);
|
DynOS_Gfx_GeneratePack_Internal(aPackFolder, _ActorsFolders, _GfxData);
|
||||||
if (!foundActor) { DynOS_Gfx_GeneratePack_Internal(aPackFolder, _ActorsFolders, _GfxData, false); }
|
|
||||||
|
|
||||||
DynOS_Gfx_Free(_GfxData);
|
DynOS_Gfx_Free(_GfxData);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue