mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 23:55:06 -04:00
c80f9fbd57
* WIP Multiversion support * GC PAL Non-MQ support complete * Updated OtrGui to handle different game versions * Added version file * Added new extract mode to ZAPD and optimized OTR gen time * Fixed bug causing crash * Further optimized OTRExporter, saving around ~20 seconds. * ZAPD is now multi-threaded. * Fixed merge issue * Fixed memory leak and fog issue on pause screen. * Additional fog fixes. Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
102 lines
2.3 KiB
C++
102 lines
2.3 KiB
C++
#include "ZPlayerAnimationData.h"
|
|
|
|
#include "Utils/BitConverter.h"
|
|
#include "Utils/StringHelper.h"
|
|
#include "ZFile.h"
|
|
#include <Globals.h>
|
|
|
|
REGISTER_ZFILENODE(PlayerAnimationData, ZPlayerAnimationData);
|
|
|
|
ZPlayerAnimationData::ZPlayerAnimationData(ZFile* nParent) : ZResource(nParent)
|
|
{
|
|
RegisterRequiredAttribute("FrameCount");
|
|
}
|
|
|
|
void ZPlayerAnimationData::ParseXML(tinyxml2::XMLElement* reader)
|
|
{
|
|
ZResource::ParseXML(reader);
|
|
|
|
std::string& frameCountXml = registeredAttributes.at("FrameCount").value;
|
|
|
|
frameCount = StringHelper::StrToL(frameCountXml);
|
|
}
|
|
|
|
void ZPlayerAnimationData::ParseRawData()
|
|
{
|
|
ZResource::ParseRawData();
|
|
|
|
const auto& rawData = parent->GetRawData();
|
|
|
|
size_t totalSize = GetRawDataSize();
|
|
// Divided by 2 because each value is an s16
|
|
limbRotData.reserve(totalSize * frameCount / 2);
|
|
|
|
for (size_t i = 0; i < totalSize; i += 2)
|
|
{
|
|
limbRotData.push_back(BitConverter::ToUInt16BE(rawData, rawDataIndex + i));
|
|
}
|
|
}
|
|
|
|
Declaration* ZPlayerAnimationData::DeclareVar(const std::string& prefix, const std::string& bodyStr)
|
|
{
|
|
std::string auxName = name;
|
|
|
|
if (auxName == "")
|
|
auxName = GetDefaultName(prefix);
|
|
|
|
Declaration* decl =
|
|
parent->AddDeclarationArray(rawDataIndex, GetDeclarationAlignment(), GetRawDataSize(),
|
|
GetSourceTypeName(), name, limbRotData.size(), bodyStr);
|
|
decl->staticConf = staticConf;
|
|
return decl;
|
|
}
|
|
|
|
std::string ZPlayerAnimationData::GetBodySourceCode() const
|
|
{
|
|
std::string declaration = "";
|
|
|
|
if (Globals::Instance->otrMode)
|
|
return "";
|
|
|
|
size_t index = 0;
|
|
for (const auto& entry : limbRotData)
|
|
{
|
|
if (index % 8 == 0)
|
|
{
|
|
declaration += "\t";
|
|
}
|
|
|
|
declaration += StringHelper::Sprintf("0x%04X, ", entry);
|
|
|
|
if ((index + 1) % 8 == 0)
|
|
{
|
|
declaration += "\n";
|
|
}
|
|
|
|
index++;
|
|
}
|
|
|
|
return declaration;
|
|
}
|
|
|
|
std::string ZPlayerAnimationData::GetDefaultName(const std::string& prefix) const
|
|
{
|
|
return StringHelper::Sprintf("%sPlayerAnimationData_%06X", prefix.c_str(), rawDataIndex);
|
|
}
|
|
|
|
std::string ZPlayerAnimationData::GetSourceTypeName() const
|
|
{
|
|
return "s16";
|
|
}
|
|
|
|
ZResourceType ZPlayerAnimationData::GetResourceType() const
|
|
{
|
|
return ZResourceType::PlayerAnimationData;
|
|
}
|
|
|
|
size_t ZPlayerAnimationData::GetRawDataSize() const
|
|
{
|
|
// (sizeof(Vec3s) * limbCount + 2) * frameCount
|
|
return (6 * 22 + 2) * frameCount;
|
|
}
|