2022-03-21 21:54:48 -04:00
|
|
|
#include "ZSymbol.h"
|
|
|
|
|
|
|
|
#include "Utils/StringHelper.h"
|
|
|
|
#include "WarningHandler.h"
|
|
|
|
#include "ZFile.h"
|
|
|
|
|
|
|
|
REGISTER_ZFILENODE(Symbol, ZSymbol);
|
|
|
|
|
|
|
|
ZSymbol::ZSymbol(ZFile* nParent) : ZResource(nParent)
|
|
|
|
{
|
|
|
|
RegisterOptionalAttribute("Type");
|
|
|
|
RegisterOptionalAttribute("TypeSize");
|
|
|
|
RegisterOptionalAttribute("Count");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZSymbol::ParseXML(tinyxml2::XMLElement* reader)
|
|
|
|
{
|
|
|
|
ZResource::ParseXML(reader);
|
|
|
|
|
|
|
|
std::string typeXml = registeredAttributes.at("Type").value;
|
|
|
|
|
|
|
|
if (typeXml == "")
|
|
|
|
{
|
|
|
|
HANDLE_WARNING_RESOURCE(WarningType::MissingAttribute, parent, this, rawDataIndex,
|
|
|
|
"missing 'Type' attribute in <Symbol>", "Defaulting to 'void*'.");
|
|
|
|
type = "void*";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
type = typeXml;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string typeSizeXml = registeredAttributes.at("TypeSize").value;
|
|
|
|
if (typeSizeXml == "")
|
|
|
|
{
|
|
|
|
HANDLE_WARNING_RESOURCE(WarningType::MissingAttribute, parent, this, rawDataIndex,
|
|
|
|
"missing 'TypeSize' attribute in <Symbol>", "Defaulting to '4'.");
|
|
|
|
typeSize = 4; // Size of a word.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
typeSize = StringHelper::StrToL(typeSizeXml, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (registeredAttributes.at("Count").wasSet)
|
|
|
|
{
|
|
|
|
isArray = true;
|
|
|
|
|
|
|
|
std::string countXml = registeredAttributes.at("Count").value;
|
|
|
|
if (countXml != "")
|
|
|
|
count = StringHelper::StrToL(countXml, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (registeredAttributes.at("Static").value == "On")
|
|
|
|
{
|
|
|
|
HANDLE_WARNING_RESOURCE(WarningType::InvalidAttributeValue, parent, this, rawDataIndex,
|
|
|
|
"a <Symbol> cannot be marked as static",
|
|
|
|
"Disabling static for this resource.");
|
|
|
|
}
|
|
|
|
staticConf = StaticConfig::Off;
|
|
|
|
}
|
|
|
|
|
|
|
|
Declaration* ZSymbol::DeclareVar([[maybe_unused]] const std::string& prefix,
|
|
|
|
[[maybe_unused]] const std::string& bodyStr)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ZSymbol::GetRawDataSize() const
|
|
|
|
{
|
|
|
|
if (isArray)
|
|
|
|
return count * typeSize;
|
|
|
|
|
|
|
|
return typeSize;
|
|
|
|
}
|
|
|
|
|
2022-07-10 10:51:12 -04:00
|
|
|
std::string ZSymbol::GetSourceOutputHeader([[maybe_unused]] const std::string& prefix, std::set<std::string> *nameSet)
|
2022-03-21 21:54:48 -04:00
|
|
|
{
|
|
|
|
if (isArray)
|
|
|
|
{
|
|
|
|
if (count == 0)
|
|
|
|
return StringHelper::Sprintf("extern %s %s[];\n", type.c_str(), name.c_str());
|
|
|
|
else
|
|
|
|
return StringHelper::Sprintf("extern %s %s[%i];\n", type.c_str(), name.c_str(), count);
|
|
|
|
}
|
|
|
|
|
|
|
|
return StringHelper::Sprintf("extern %s %s;\n", type.c_str(), name.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ZSymbol::GetSourceTypeName() const
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
ZResourceType ZSymbol::GetResourceType() const
|
|
|
|
{
|
|
|
|
return ZResourceType::Symbol;
|
|
|
|
}
|