Cyrus Mod Loader
Loading...
Searching...
No Matches
StringTable.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CharMap.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class StringTable : public PropertyClass {
7public:
8 wchar_t getThousandSeparator() { // Property Generated Getter
9 return *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xC8);
10 }
11
12 void setThousandSeparator(wchar_t val) { // Property Generated Setter
13 *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xC8) = val;
14 }
15
16 wchar_t getDecimalCharacter() { // Property Generated Getter
17 return *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xCA);
18 }
19
20 void setDecimalCharacter(wchar_t val) { // Property Generated Setter
21 *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xCA) = val;
22 }
23
24 wchar_t getDefaultSpace() { // Property Generated Getter
25 return *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xCC);
26 }
27
28 void setDefaultSpace(wchar_t val) { // Property Generated Setter
29 *reinterpret_cast<wchar_t*>(reinterpret_cast<uintptr_t>(this) + 0xCC) = val;
30 }
31
32 int getNumberPrecision() { // Property Generated Getter
33 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xD0);
34 }
35
36 void setNumberPrecision(int val) { // Property Generated Setter
37 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xD0) = val;
38 }
39
40 List<CharMap> getLowerToUpperList() { // Property Generated Getter
41 return *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xD8);
42 }
43
44 void setLowerToUpperList(List<CharMap> val) { // Property Generated Setter
45 *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xD8) = val;
46 }
47
48 List<CharMap> getUpperToLowerList() { // Property Generated Getter
49 return *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xE8);
50 }
51
52 void setUpperToLowerList(List<CharMap> val) { // Property Generated Setter
53 *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xE8) = val;
54 }
55
56 List<CharMap> getSortScoreList() { // Property Generated Getter
57 return *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xF8);
58 }
59
60 void setSortScoreList(List<CharMap> val) { // Property Generated Setter
61 *reinterpret_cast<List<CharMap>*>(reinterpret_cast<uintptr_t>(this) + 0xF8) = val;
62 }
63
64 List<unsigned short> getTypeSpaces() { // Property Generated Getter
65 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x108);
66 }
67
68 void setTypeSpaces(List<unsigned short> val) { // Property Generated Setter
69 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x108) = val;
70 }
71
72 List<unsigned short> getTypePunctuation() { // Property Generated Getter
73 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x118);
74 }
75
76 void setTypePunctuation(List<unsigned short> val) { // Property Generated Setter
77 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x118) = val;
78 }
79
80 List<unsigned short> getTypeAlphaNumeric() { // Property Generated Getter
81 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x128);
82 }
83
84 void setTypeAlphaNumeric(List<unsigned short> val) { // Property Generated Setter
85 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x128) = val;
86 }
87
88 List<unsigned short> getTypeAlpha() { // Property Generated Getter
89 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x138);
90 }
91
92 void setTypeAlpha(List<unsigned short> val) { // Property Generated Setter
93 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x138) = val;
94 }
95
96 List<unsigned short> getTypeDigit() { // Property Generated Getter
97 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x148);
98 }
99
100 void setTypeDigit(List<unsigned short> val) { // Property Generated Setter
101 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x148) = val;
102 }
103
104 List<unsigned short> getTypeHexDigit() { // Property Generated Getter
105 return *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x158);
106 }
107
108 void setTypeHexDigit(List<unsigned short> val) { // Property Generated Setter
109 *reinterpret_cast<List<unsigned short>*>(reinterpret_cast<uintptr_t>(this) + 0x158) = val;
110 }
111
112 float getMinFontSizeForDropshadow() { // Property Generated Getter
113 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0xD4);
114 }
115
116 void setMinFontSizeForDropshadow(float val) { // Property Generated Setter
117 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0xD4) = val;
118 }
119
120};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition StringTable.h:6
float getMinFontSizeForDropshadow()
Definition StringTable.h:112
List< unsigned short > getTypeDigit()
Definition StringTable.h:96
void setTypeDigit(List< unsigned short > val)
Definition StringTable.h:100
List< unsigned short > getTypeAlpha()
Definition StringTable.h:88
wchar_t getDecimalCharacter()
Definition StringTable.h:16
void setNumberPrecision(int val)
Definition StringTable.h:36
wchar_t getThousandSeparator()
Definition StringTable.h:8
List< unsigned short > getTypePunctuation()
Definition StringTable.h:72
void setTypeHexDigit(List< unsigned short > val)
Definition StringTable.h:108
void setDecimalCharacter(wchar_t val)
Definition StringTable.h:20
void setTypeSpaces(List< unsigned short > val)
Definition StringTable.h:68
void setUpperToLowerList(List< CharMap > val)
Definition StringTable.h:52
void setLowerToUpperList(List< CharMap > val)
Definition StringTable.h:44
void setTypePunctuation(List< unsigned short > val)
Definition StringTable.h:76
void setTypeAlpha(List< unsigned short > val)
Definition StringTable.h:92
void setDefaultSpace(wchar_t val)
Definition StringTable.h:28
void setTypeAlphaNumeric(List< unsigned short > val)
Definition StringTable.h:84
void setMinFontSizeForDropshadow(float val)
Definition StringTable.h:116
int getNumberPrecision()
Definition StringTable.h:32
List< CharMap > getLowerToUpperList()
Definition StringTable.h:40
List< unsigned short > getTypeAlphaNumeric()
Definition StringTable.h:80
List< CharMap > getUpperToLowerList()
Definition StringTable.h:48
void setSortScoreList(List< CharMap > val)
Definition StringTable.h:60
void setThousandSeparator(wchar_t val)
Definition StringTable.h:12
wchar_t getDefaultSpace()
Definition StringTable.h:24
List< CharMap > getSortScoreList()
Definition StringTable.h:56
List< unsigned short > getTypeHexDigit()
Definition StringTable.h:104
List< unsigned short > getTypeSpaces()
Definition StringTable.h:64