mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-16 20:10:28 +00:00
* git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "769f5702a" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "769f5702a" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Add `libpng` to readme * Remove `-ifp` since it doesn't exists anymore in ZAPD * Remove extra print I added * Add UNK_09 macro and other minor fixes * Simplify PNG rules * simplify gitignore * Update README.md Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Update dockerfile * basic instructions for cygwin and mac * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "86160be69" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "86160be69" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change nanoseconds to seconds in extract_assets.py Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
65 lines
2 KiB
C++
65 lines
2 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
enum class DeclarationAlignment
|
|
{
|
|
None,
|
|
Align4,
|
|
Align8,
|
|
Align16
|
|
};
|
|
|
|
enum class DeclarationPadding
|
|
{
|
|
None,
|
|
Pad4,
|
|
Pad8,
|
|
Pad16
|
|
};
|
|
|
|
class Declaration
|
|
{
|
|
public:
|
|
DeclarationAlignment alignment;
|
|
DeclarationPadding padding;
|
|
size_t size = 0;
|
|
std::string preText;
|
|
std::string text;
|
|
std::string rightText;
|
|
std::string postText;
|
|
std::string preComment;
|
|
std::string postComment;
|
|
std::string varType;
|
|
std::string varName;
|
|
std::string includePath;
|
|
bool isExternal = false;
|
|
bool isArray = false;
|
|
size_t arrayItemCnt = 0;
|
|
std::string arrayItemCntStr;
|
|
std::vector<uint32_t> references;
|
|
bool isUnaccounted = false;
|
|
bool isPlaceholder = false;
|
|
|
|
Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, std::string nText);
|
|
Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nVarType, std::string nVarName, bool nIsArray, std::string nText);
|
|
Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, size_t nArrayItemCnt, std::string nText);
|
|
Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, std::string nArrayItemCntStr,
|
|
std::string nText);
|
|
Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, size_t nArrayItemCnt, std::string nText,
|
|
bool nIsExternal);
|
|
Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nVarType, std::string nVarName, bool nIsArray, size_t nArrayItemCnt,
|
|
std::string nText);
|
|
Declaration(std::string nIncludePath, size_t nSize, std::string nVarType, std::string nVarName);
|
|
|
|
protected:
|
|
Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nText);
|
|
};
|