-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRobTopStringContainer.hpp
More file actions
104 lines (84 loc) · 3.98 KB
/
RobTopStringContainer.hpp
File metadata and controls
104 lines (84 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* LevelAPI - Geometry Dash level cacher with search functionality and more.
Copyright (C) 2023 Sergei Baigerov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#pragma once
#include <unordered_map>
#include <string>
#include <functional>
#include <variant>
#include <vector>
#define GKSTRING 0
#define GKINT 1
#define GKBOOL 2
#define GKBASE64 3
#define GKFLOAT 4
#define GKVINT 5
#define GET_KEY_GKSTRING(container, keyN, member) \
if (container->variableExists(keyN)) member = container->getVariable<std::string>(keyN);
#define GET_KEY_GKINT(container, keyN, member) \
if (container->variableExists(keyN)) member = container->getVariable<int>(keyN);
#define GET_KEY_GKBOOL(container, keyN, member) \
if (container->variableExists(keyN)) member = container->getVariable<bool>(keyN);
#define GET_KEY_GKFLOAT(container, keyN, member) \
if (container->variableExists(keyN)) member = container->getVariable<float>(keyN);
#define GET_KEY_GKVINT(container, keyN, member) \
if (container->variableExists(keyN)) member = container->getVariable<std::vector<int>>(keyN);
#define GET_KEY_GKBASE64(container, keyN, member) GET_KEY_GKSTRING(container, keyN, member);
#define GET_KEY(container, keyN, member, vType) GET_KEY_##vType(container, keyN, member)
class RobTopStringContainer {
protected:
std::string m_sOriginalString;
using ParsableTypes = std::variant<std::string, int, float, bool, std::vector<int>>;
using ParseFunc = std::function<ParsableTypes(const std::string &inputString, int inputID, RobTopStringContainer* container)>;
using ParseFuncCustom = std::function<ParsableTypes(const std::string &inputString, int inputID, int custom_variable, RobTopStringContainer* container)>;
std::unordered_map<
int, ParsableTypes
> m_mContainer;
std::unordered_map<int, std::variant<
ParseFunc,
ParseFuncCustom
>> m_mFunctionContainer;
std::unordered_map<int, int> m_mFuncCustomArgList;
virtual std::string variantToString(ParsableTypes var);
char m_sObjectSeparator = ':';
char m_sArrayEntrySeparator = ',';
public:
// virtual std::variant<std::string, int, float, bool> getVariable(int id);
template<typename T = int>
// if variable does not exist then empty
// constuctor for T would be used
inline T getVariable(int id) const {
if (!variableExists(id) || !std::holds_alternative<T>(m_mContainer.at(id))) return T{};
try {
return std::get<T>(m_mContainer.at(id));
} catch (const std::bad_variant_access &ex) {
printf("%s:%s (id=%d): %s\n", __FILE__, __LINE__, id, ex.what());
return T{};
}
}
virtual void setParserForVariable(int index, ParseFunc func);
virtual void setParserForVariable(const std::vector<int> &indexes, ParseFunc func);
virtual void setParserForVariable(int index, ParseFuncCustom func, int carg);
virtual void setParserForVariable(const std::vector<int> &indexes, ParseFuncCustom func, int carg);
virtual void parse();
virtual bool variableExists(int id) const;
virtual void setString(std::string str);
virtual void setObjectSeparator(char sep);
virtual void setArrayEntrySeparator(char sep);
virtual char getObjectSeparator() const;
virtual char getArrayEntrySeparator() const;
virtual void resetValues();
RobTopStringContainer(std::string str);
RobTopStringContainer();
};