From 3c487c5cd69c53d6fea948643c0a76df03516605 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Apr 2022 21:23:39 +0200 Subject: Moved Stars45 to StarsEx --- StarsEx/ParseUtil.h | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 StarsEx/ParseUtil.h (limited to 'StarsEx/ParseUtil.h') diff --git a/StarsEx/ParseUtil.h b/StarsEx/ParseUtil.h new file mode 100644 index 0000000..c234d00 --- /dev/null +++ b/StarsEx/ParseUtil.h @@ -0,0 +1,51 @@ +/* Starshatter: The Open Source Project + Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors + Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors + Copyright (c) 1997-2006, Destroyer Studios LLC. + + AUTHOR: John DiCamillo + + + OVERVIEW + ======== + Parser utility functions +*/ + +#ifndef ParseUtil_h +#define ParseUtil_h + +#include +#include "Types.h" +#include "Geometry.h" +#include "Color.h" + +#include "Text.h" +#include "Parser.h" +#include "Reader.h" +#include "Token.h" + +// +--------------------------------------------------------------------+ + +bool GetDefBool(bool& dst, TermDef* def, const char* file); +bool GetDefText(Text& dst, TermDef* def, const char* file); +bool GetDefText(char* dst, TermDef* def, const char* file); +bool GetDefNumber(int& dst, TermDef* def, const char* file); +bool GetDefNumber(DWORD& dst, TermDef* def, const char* file); +bool GetDefNumber(float& dst, TermDef* def, const char* file); +bool GetDefNumber(double& dst, TermDef* def, const char* file); +bool GetDefVec(Vec3& dst, TermDef* def, const char* file); +bool GetDefColor(Color& dst, TermDef* def, const char* file); +bool GetDefColor(ColorValue& dst, TermDef* def, const char* file); +bool GetDefRect(Rect& dst, TermDef* def, const char* file); +bool GetDefInsets(Insets& dst, TermDef* def, const char* file); +bool GetDefTime(int& dst, TermDef* def, const char* file); + +bool GetDefArray(int* dst, int size, TermDef* def, const char* file); +bool GetDefArray(float* dst, int size, TermDef* def, const char* file); +bool GetDefArray(double* dst, int size, TermDef* def, const char* file); +bool GetDefArray(std::vector& array, TermDef* def, const char* file); +bool GetDefArray(std::vector& array, TermDef* def, const char* file); + +// +--------------------------------------------------------------------+ + +#endif // ParseUtil_h -- cgit v1.1