diff options
author | rubidium <rubidium@openttd.org> | 2008-09-14 14:31:37 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-09-14 14:31:37 +0000 |
commit | feb15bb4216cf1e51c0b67b7eb1eac6c536d4ec9 (patch) | |
tree | 6bb9bd6e268d2b6609498af869e15e7a681ceff2 /src/table | |
parent | efe93c527b4683d6aec2bfc688db5cef8b68ed61 (diff) | |
download | openttd-feb15bb4216cf1e51c0b67b7eb1eac6c536d4ec9.tar.xz |
(svn r14321) -Add: support for newgrfs printing bytes/words/dwords as hexadecimals.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/control_codes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/table/control_codes.h b/src/table/control_codes.h index 69cabda67..03a383556 100644 --- a/src/table/control_codes.h +++ b/src/table/control_codes.h @@ -64,6 +64,7 @@ enum StringControlCode { SCC_STRING, SCC_COMMA, SCC_NUM, + SCC_HEX, SCC_STRING_ID, SCC_RAW_STRING_POINTER, @@ -101,7 +102,7 @@ enum StringControlCode { SCC_NEWGRF_FIRST, SCC_NEWGRF_PRINT_DWORD = SCC_NEWGRF_FIRST, ///< Read 4 bytes from the stack SCC_NEWGRF_PRINT_SIGNED_WORD, ///< Read 2 bytes from the stack as signed value - SCC_NEWGRF_PRINT_SIGNED_BYTE, ///< Read 1 bytes from the stack as signed value + SCC_NEWGRF_PRINT_SIGNED_BYTE, ///< Read 1 byte from the stack as signed value SCC_NEWGRF_PRINT_UNSIGNED_WORD, ///< Read 2 bytes from the stack as unsigned value SCC_NEWGRF_PRINT_DWORD_CURRENCY, ///< Read 4 bytes from the stack as currency SCC_NEWGRF_PRINT_STRING_ID, ///< Read 2 bytes from the stack as String ID @@ -110,6 +111,9 @@ enum StringControlCode { SCC_NEWGRF_PRINT_WORD_SPEED, ///< Read 2 bytes from the stack as signed speed SCC_NEWGRF_PRINT_WORD_LITRES, ///< Read 2 bytes from the stack as signed litres SCC_NEWGRF_PRINT_QWORD_CURRENCY, ///< Read 8 bytes from the stack as currency + SCC_NEWGRF_PRINT_HEX_BYTE, ///< Read 1 byte from the stack and print it as hex + SCC_NEWGRF_PRINT_HEX_WORD, ///< Read 2 bytes from the stack and print it as hex + SCC_NEWGRF_PRINT_HEX_DWORD, ///< Read 4 bytes from the stack and print it as hex SCC_NEWGRF_PUSH_WORD, ///< Pushes 2 bytes onto the stack SCC_NEWGRF_UNPRINT, ///< "Unprints" the given number of bytes from the string SCC_NEWGRF_DISCARD_WORD, ///< Discard the next two bytes |