mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-16 03:50:20 +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>
79 lines
2.7 KiB
C++
79 lines
2.7 KiB
C++
#include "Declaration.h"
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nText)
|
|
{
|
|
alignment = nAlignment;
|
|
padding = nPadding;
|
|
size = nSize;
|
|
text = nText;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, std::string nText)
|
|
: Declaration(nAlignment, DeclarationPadding::None, nSize, nText)
|
|
{
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
isArray = nIsArray;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nVarType, std::string nVarName, bool nIsArray,
|
|
std::string nText)
|
|
: Declaration(nAlignment, nPadding, nSize, nText)
|
|
{
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
isArray = nIsArray;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, size_t nArrayItemCnt,
|
|
std::string nText)
|
|
: Declaration(nAlignment, DeclarationPadding::None, nSize, nText)
|
|
{
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
isArray = nIsArray;
|
|
arrayItemCnt = nArrayItemCnt;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, std::string nArrayItemCntStr,
|
|
std::string nText)
|
|
: Declaration(nAlignment, DeclarationPadding::None, nSize, nText)
|
|
{
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
isArray = nIsArray;
|
|
arrayItemCntStr = nArrayItemCntStr;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, size_t nSize, std::string nVarType,
|
|
std::string nVarName, bool nIsArray, size_t nArrayItemCnt,
|
|
std::string nText, bool nIsExternal)
|
|
: Declaration(nAlignment, nSize, nVarType, nVarName, nIsArray, nArrayItemCnt, nText)
|
|
{
|
|
isExternal = nIsExternal;
|
|
}
|
|
|
|
Declaration::Declaration(DeclarationAlignment nAlignment, DeclarationPadding nPadding, size_t nSize,
|
|
std::string nVarType, std::string nVarName, bool nIsArray,
|
|
size_t nArrayItemCnt, std::string nText)
|
|
: Declaration(nAlignment, nPadding, nSize, nText)
|
|
{
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
isArray = nIsArray;
|
|
arrayItemCnt = nArrayItemCnt;
|
|
}
|
|
|
|
Declaration::Declaration(std::string nIncludePath, size_t nSize, std::string nVarType,
|
|
std::string nVarName)
|
|
: Declaration(DeclarationAlignment::None, DeclarationPadding::None, nSize, "")
|
|
{
|
|
includePath = nIncludePath;
|
|
varType = nVarType;
|
|
varName = nVarName;
|
|
}
|