metaforce/Runtime/CFactoryMgr.cpp

91 lines
3.6 KiB
C++
Raw Normal View History

#include "Runtime/CFactoryMgr.hpp"
#include <algorithm>
#include <array>
#include <cctype>
#include <iterator>
2021-04-03 09:48:39 -07:00
#include "optick.h"
#include "Runtime/CStopwatch.hpp"
#include "Runtime/IObj.hpp"
2016-02-15 21:50:41 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
constexpr std::array TypeTable{
FOURCC('CLSN'), FOURCC('CMDL'), FOURCC('CSKR'), FOURCC('ANIM'), FOURCC('CINF'), FOURCC('TXTR'), FOURCC('PLTT'),
FOURCC('FONT'), FOURCC('ANCS'), FOURCC('EVNT'), FOURCC('MADF'), FOURCC('MLVL'), FOURCC('MREA'), FOURCC('MAPW'),
FOURCC('MAPA'), FOURCC('SAVW'), FOURCC('SAVA'), FOURCC('PART'), FOURCC('WPSC'), FOURCC('SWHC'), FOURCC('DPSC'),
FOURCC('ELSC'), FOURCC('CRSC'), FOURCC('AFSM'), FOURCC('DCLN'), FOURCC('AGSC'), FOURCC('ATBL'), FOURCC('CSNG'),
FOURCC('STRG'), FOURCC('SCAN'), FOURCC('PATH'), FOURCC('DGRP'), FOURCC('HMAP'), FOURCC('CTWK'), FOURCC('FRME'),
FOURCC('HINT'), FOURCC('MAPU'), FOURCC('DUMB'), FOURCC('OIDS'),
};
2016-02-15 21:50:41 -08:00
2021-04-10 01:42:06 -07:00
CFactoryFnReturn CFactoryMgr::MakeObject(const SObjectTag& tag, metaforce::CInputStream& in,
2018-12-07 21:30:43 -08:00
const CVParamTransfer& paramXfer, CObjectReference* selfRef) {
2022-02-20 16:03:38 -08:00
auto search = x10_factories.find(tag.type);
if (search == x10_factories.end())
2018-12-07 21:30:43 -08:00
return {};
2016-02-15 21:50:41 -08:00
2018-12-07 21:30:43 -08:00
return search->second(tag, in, paramXfer, selfRef);
2016-02-15 21:50:41 -08:00
}
2021-04-10 01:42:06 -07:00
bool CFactoryMgr::CanMakeMemory(const metaforce::SObjectTag& tag) const {
2022-02-20 16:03:38 -08:00
auto search = x24_memFactories.find(tag.type);
return search != x24_memFactories.cend();
2016-03-29 16:14:14 -07:00
}
CFactoryFnReturn CFactoryMgr::MakeObjectFromMemory(const SObjectTag& tag, std::unique_ptr<u8[]>&& buf, int size,
bool compressed, const CVParamTransfer& paramXfer,
2018-12-07 21:30:43 -08:00
CObjectReference* selfRef) {
2021-04-03 09:48:39 -07:00
OPTICK_EVENT();
2018-12-07 21:30:43 -08:00
std::unique_ptr<u8[]> localBuf = std::move(buf);
2016-02-15 21:50:41 -08:00
2022-02-20 16:03:38 -08:00
const auto memFactoryIter = x24_memFactories.find(tag.type);
if (memFactoryIter != x24_memFactories.cend()) {
2018-12-07 21:30:43 -08:00
if (compressed) {
std::unique_ptr<CInputStream> compRead =
std::make_unique<CMemoryInStream>(localBuf.get(), size, CMemoryInStream::EOwnerShip::NotOwned);
const u32 decompLen = compRead->ReadLong();
2018-12-07 21:30:43 -08:00
CZipInputStream r(std::move(compRead));
std::unique_ptr<u8[]> decompBuf(new u8[decompLen]);
r.Get(decompBuf.get(), decompLen);
return memFactoryIter->second(tag, std::move(decompBuf), decompLen, paramXfer, selfRef);
2018-12-07 21:30:43 -08:00
} else {
return memFactoryIter->second(tag, std::move(localBuf), size, paramXfer, selfRef);
2016-02-15 21:50:41 -08:00
}
2018-12-07 21:30:43 -08:00
} else {
2022-02-20 16:03:38 -08:00
const auto factoryIter = x10_factories.find(tag.type);
if (factoryIter == x10_factories.end()) {
2018-12-07 21:30:43 -08:00
return {};
}
2016-03-29 16:14:14 -07:00
2018-12-07 21:30:43 -08:00
if (compressed) {
std::unique_ptr<CInputStream> compRead =
std::make_unique<CMemoryInStream>(localBuf.get(), size, CMemoryInStream::EOwnerShip::NotOwned);
compRead->ReadLong();
2018-12-07 21:30:43 -08:00
CZipInputStream r(std::move(compRead));
return factoryIter->second(tag, r, paramXfer, selfRef);
2018-12-07 21:30:43 -08:00
} else {
CMemoryInStream r(localBuf.get(), size, CMemoryInStream::EOwnerShip::NotOwned);
return factoryIter->second(tag, r, paramXfer, selfRef);
2016-02-15 21:50:41 -08:00
}
2018-12-07 21:30:43 -08:00
}
2016-02-15 21:50:41 -08:00
}
2018-12-07 21:30:43 -08:00
CFactoryMgr::ETypeTable CFactoryMgr::FourCCToTypeIdx(FourCC fcc) {
for (size_t i = 0; i < 4; ++i) {
fcc.getChars()[i] = char(std::toupper(fcc.getChars()[i]));
}
const auto search =
std::find_if(TypeTable.cbegin(), TypeTable.cend(), [fcc](const FourCC& test) { return test == fcc; });
if (search == TypeTable.cend()) {
2018-12-07 21:30:43 -08:00
return ETypeTable::Invalid;
}
return ETypeTable(std::distance(TypeTable.cbegin(), search));
2017-10-25 22:37:46 -07:00
}
FourCC CFactoryMgr::TypeIdxToFourCC(ETypeTable fcc) { return TypeTable[size_t(fcc)]; }
2017-10-25 22:37:46 -07:00
2021-04-10 01:42:06 -07:00
} // namespace metaforce