(svn r21086) -Feature-ish: [NewGRF] String code to print the weight in format based on settings
This commit is contained in:
@@ -309,6 +309,9 @@ char *TranslateTTDPatchCodes(uint32 grfid, const char *str)
|
||||
case 0x0C:
|
||||
d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_STATION_NAME);
|
||||
break;
|
||||
case 0x0D:
|
||||
d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_WEIGHT);
|
||||
break;
|
||||
|
||||
default:
|
||||
grfmsg(1, "missing handler for extended format code");
|
||||
@@ -720,6 +723,7 @@ uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const
|
||||
case SCC_NEWGRF_PRINT_HEX_WORD:
|
||||
case SCC_NEWGRF_PRINT_WORD_SPEED:
|
||||
case SCC_NEWGRF_PRINT_WORD_VOLUME:
|
||||
case SCC_NEWGRF_PRINT_WORD_WEIGHT:
|
||||
case SCC_NEWGRF_PRINT_WORD_STATION_NAME:
|
||||
case SCC_NEWGRF_PRINT_UNSIGNED_WORD: *argv = _newgrf_textrefstack->PopUnsignedWord(); break;
|
||||
|
||||
@@ -771,6 +775,9 @@ uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const
|
||||
case SCC_NEWGRF_PRINT_WORD_VOLUME:
|
||||
return SCC_VOLUME;
|
||||
|
||||
case SCC_NEWGRF_PRINT_WORD_WEIGHT:
|
||||
return SCC_WEIGHT;
|
||||
|
||||
case SCC_NEWGRF_PRINT_WORD_STATION_NAME:
|
||||
return SCC_STATION_NAME;
|
||||
|
||||
|
Reference in New Issue
Block a user