Cyrus Mod Loader
Loading...
Searching...
No Matches
MapData.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
5class MapData : public PropertyClass {
6public:
7 std::string getMapStringKey() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setMapStringKey(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getMapImageFile() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setMapImageFile(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 std::string getPlayerGlyphFile() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
25 }
26
27 void setPlayerGlyphFile(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
29 }
30
31 std::string getMapIconsFile() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
33 }
34
35 void setMapIconsFile(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
37 }
38
39 std::string getNamePlateFile() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8);
41 }
42
43 void setNamePlateFile(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xC8) = val;
45 }
46
47 Point<float> getTopLeft() { // Property Generated Getter
48 return *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xE8);
49 }
50
51 void setTopLeft(Point<float> val) { // Property Generated Setter
52 *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xE8) = val;
53 }
54
55 Point<float> getTopRight() { // Property Generated Getter
56 return *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xF0);
57 }
58
59 void setTopRight(Point<float> val) { // Property Generated Setter
60 *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xF0) = val;
61 }
62
63 Point<float> getBottomRight() { // Property Generated Getter
64 return *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xF8);
65 }
66
67 void setBottomRight(Point<float> val) { // Property Generated Setter
68 *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0xF8) = val;
69 }
70
71 Point<float> getBottomLeft() { // Property Generated Getter
72 return *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0x100);
73 }
74
75 void setBottomLeft(Point<float> val) { // Property Generated Setter
76 *reinterpret_cast<Point<float>*>(reinterpret_cast<uintptr_t>(this) + 0x100) = val;
77 }
78
79 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetMapStringKey() { // Function Generated
80 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(MapData *self);
81 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C10);
82 return inner(this);
83 }
84
85 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetMapImageFile() { // Function Generated
86 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(MapData *self);
87 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C20);
88 return inner(this);
89 }
90
91 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetPlayerGlyphFile() { // Function Generated
92 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(MapData *self);
93 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C30);
94 return inner(this);
95 }
96
97 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetMapIconsFile() { // Function Generated
98 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(MapData *self);
99 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C40);
100 return inner(this);
101 }
102
103 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetNamePlateFile() { // Function Generated
104 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(MapData *self);
105 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C50);
106 return inner(this);
107 }
108
109 Point<float> GetTopLeft() { // Function Generated
110 using FunctionPointerType = Point<float> (*)(MapData *self);
111 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C60);
112 return inner(this);
113 }
114
115 Point<float> GetTopRight() { // Function Generated
116 using FunctionPointerType = Point<float> (*)(MapData *self);
117 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31C80);
118 return inner(this);
119 }
120
121 Point<float> GetBottomRight() { // Function Generated
122 using FunctionPointerType = Point<float> (*)(MapData *self);
123 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31CA0);
124 return inner(this);
125 }
126
127 Point<float> GetBottomLeft() { // Function Generated
128 using FunctionPointerType = Point<float> (*)(MapData *self);
129 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31CC0);
130 return inner(this);
131 }
132
133 void SetMapStringKey(std::string a0) { // Function Generated
134 using FunctionPointerType = void (*)(MapData *self, std::string a0);
135 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31CE0);
136 return inner(this, a0);
137 }
138
139 void SetMapImageFile(std::string a0) { // Function Generated
140 using FunctionPointerType = void (*)(MapData *self, std::string a0);
141 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31D10);
142 return inner(this, a0);
143 }
144
145 void SetPlayerGlyphFile(std::string a0) { // Function Generated
146 using FunctionPointerType = void (*)(MapData *self, std::string a0);
147 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31D40);
148 return inner(this, a0);
149 }
150
151 void SetMapIconsFile(std::string a0) { // Function Generated
152 using FunctionPointerType = void (*)(MapData *self, std::string a0);
153 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31D70);
154 return inner(this, a0);
155 }
156
157 void SetNamePlateFile(std::string a0) { // Function Generated
158 using FunctionPointerType = void (*)(MapData *self, std::string a0);
159 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31DA0);
160 return inner(this, a0);
161 }
162
163 void SetTopLeft(Point<float> a0) { // Function Generated
164 using FunctionPointerType = void (*)(MapData *self, Point<float> a0);
165 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31DD0);
166 return inner(this, a0);
167 }
168
169 void SetTopRight(Point<float> a0) { // Function Generated
170 using FunctionPointerType = void (*)(MapData *self, Point<float> a0);
171 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31DF0);
172 return inner(this, a0);
173 }
174
175 void SetBottomRight(Point<float> a0) { // Function Generated
176 using FunctionPointerType = void (*)(MapData *self, Point<float> a0);
177 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31E10);
178 return inner(this, a0);
179 }
180
181 void SetBottomLeft(Point<float> a0) { // Function Generated
182 using FunctionPointerType = void (*)(MapData *self, Point<float> a0);
183 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F31E30);
184 return inner(this, a0);
185 }
186
187 void SaveToXML(std::string a0, std::string a1) { // Function Generated
188 using FunctionPointerType = void (*)(MapData *self, std::string a0, std::string a1);
189 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1F319F0);
190 return inner(this, a0, a1);
191 }
192
193};
Definition MapData.h:5
std::string getMapIconsFile()
Definition MapData.h:31
void SetPlayerGlyphFile(std::string a0)
Definition MapData.h:145
void SetTopLeft(Point< float > a0)
Definition MapData.h:163
std::string getMapStringKey()
Definition MapData.h:7
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetMapIconsFile()
Definition MapData.h:97
std::string getNamePlateFile()
Definition MapData.h:39
void SetMapImageFile(std::string a0)
Definition MapData.h:139
Point< float > getTopRight()
Definition MapData.h:55
Point< float > GetBottomLeft()
Definition MapData.h:127
std::string getMapImageFile()
Definition MapData.h:15
void SetBottomRight(Point< float > a0)
Definition MapData.h:175
void setBottomLeft(Point< float > val)
Definition MapData.h:75
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetNamePlateFile()
Definition MapData.h:103
void setMapStringKey(std::string val)
Definition MapData.h:11
std::string getPlayerGlyphFile()
Definition MapData.h:23
void SetTopRight(Point< float > a0)
Definition MapData.h:169
Point< float > getTopLeft()
Definition MapData.h:47
void setTopRight(Point< float > val)
Definition MapData.h:59
Point< float > GetBottomRight()
Definition MapData.h:121
void SetMapIconsFile(std::string a0)
Definition MapData.h:151
Point< float > getBottomRight()
Definition MapData.h:63
void setTopLeft(Point< float > val)
Definition MapData.h:51
Point< float > getBottomLeft()
Definition MapData.h:71
void setBottomRight(Point< float > val)
Definition MapData.h:67
void SetMapStringKey(std::string a0)
Definition MapData.h:133
Point< float > GetTopLeft()
Definition MapData.h:109
void setPlayerGlyphFile(std::string val)
Definition MapData.h:27
void setMapIconsFile(std::string val)
Definition MapData.h:35
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetPlayerGlyphFile()
Definition MapData.h:91
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetMapImageFile()
Definition MapData.h:85
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetMapStringKey()
Definition MapData.h:79
void SaveToXML(std::string a0, std::string a1)
Definition MapData.h:187
void setNamePlateFile(std::string val)
Definition MapData.h:43
Point< float > GetTopRight()
Definition MapData.h:115
void setMapImageFile(std::string val)
Definition MapData.h:19
void SetNamePlateFile(std::string a0)
Definition MapData.h:157
void SetBottomLeft(Point< float > a0)
Definition MapData.h:181
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86