Add (u)short
This commit is contained in:
parent
34b74896f9
commit
6b4d6d9239
@ -154,6 +154,7 @@ function makeMainHeader(output: string) {
|
||||
result += '#pragma GCC diagnostic ignored "-Wunused-function"\n';
|
||||
result += '\n// Shortcuts\n';
|
||||
result += 'typedef unsigned char uchar;\n';
|
||||
result += 'typedef unsigned short ushort;\n';
|
||||
result += 'typedef unsigned int uint;\n';
|
||||
result += '\n// Forward Declarations\n';
|
||||
for (const name in STRUCTURE_FILES) {
|
||||
|
@ -52,6 +52,9 @@ export class SimpleProperty implements Property {
|
||||
} else if (this.#type === 'char' || this.#type === 'uchar') {
|
||||
// Character
|
||||
return 1;
|
||||
} else if (this.#type === 'short' || this.#type === 'ushort') {
|
||||
// Short
|
||||
return 2;
|
||||
} else if (this.#type.startsWith('std::vector<')) {
|
||||
// C++ Vector
|
||||
return 12;
|
||||
@ -82,6 +85,9 @@ export class SimpleProperty implements Property {
|
||||
} else if (this.#type === 'char' || this.#type === 'uchar') {
|
||||
// Character
|
||||
return 1;
|
||||
} else if (this.#type === 'short' || this.#type === 'ushort') {
|
||||
// Short
|
||||
return 1;
|
||||
} else if (this.#type.startsWith('std::vector<')) {
|
||||
// C++ Vector
|
||||
return 4;
|
||||
|
@ -5,7 +5,7 @@ comment "//"
|
||||
color magenta "\<(extends|size|vtable(-size)?|property|static-property(-array)?|((static|virtual)-)?method|constructor)\>"
|
||||
|
||||
# Types
|
||||
color green "\<(char|uchar|int|uint|float|bool|void|std::(string|vector|map))\>"
|
||||
color green "\<(char|uchar|short|ushort|int|uint|float|bool|void|std::(string|vector|map))\>"
|
||||
|
||||
# Numbers
|
||||
color yellow "0x[a-f0-9]+"
|
||||
|
@ -17,6 +17,8 @@
|
||||
<list name="types">
|
||||
<item>char</item>
|
||||
<item>uchar</item>
|
||||
<item>short</item>
|
||||
<item>ushort</item>
|
||||
<item>int</item>
|
||||
<item>uint</item>
|
||||
<item>float</item>
|
||||
|
Loading…
Reference in New Issue
Block a user