2022-03-21 21:54:48 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ZResource.h"
|
|
|
|
#include "tinyxml2.h"
|
|
|
|
|
|
|
|
class ZSymbol : public ZResource
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::string type;
|
|
|
|
size_t typeSize;
|
|
|
|
bool isArray = false;
|
|
|
|
uint32_t count = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ZSymbol(ZFile* nParent);
|
|
|
|
|
|
|
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
|
|
|
|
|
|
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
|
|
|
|
2022-07-10 10:51:12 -04:00
|
|
|
std::string GetSourceOutputHeader(const std::string& prefix, std::set<std::string> *nameSet) override;
|
2022-03-21 21:54:48 -04:00
|
|
|
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
};
|