summaryrefslogtreecommitdiff
path: root/src/strings.cpp
AgeCommit message (Collapse)Author
2008-04-19(svn r12793) -Codechange: Use enum values for station types instead of ↵peter1138
mysterious hex (ln)
2008-04-19(svn r12786) -Change: remove more function from functions.h.rubidium
2008-04-19(svn r12782) -Codechange: remove some functions from functions.h and do not ↵rubidium
statically 'waste' memory when the old name array is not needed anymore.
2008-04-18(svn r12761) -Codechange: lots of minor whitespace coding style fixes around ↵rubidium
operators.
2008-04-12(svn r12665) -Codechange: make the internal speed <-> display speed ↵rubidium
conversions available to a bigger part of the code.
2008-03-31(svn r12501) -Codechange: split signs.h.rubidium
2008-03-31(svn r12490) -Codechange: rename engine.h to engine_func.h and remove ↵rubidium
unneeded inclusions of engine.h and/or replace them with engine_type.h.
2008-03-31(svn r12489) -Codechange: split station.h into station_base.h and ↵rubidium
station_func.h.
2008-03-28(svn r12460) -Change: rename src/namegen.h to src/namegen_func.h so MSVC can ↵rubidium
have both files in it's treelist.
2008-03-28(svn r12459) -Codechange: split news.h into news_type.h and news_func.h.rubidium
2008-03-25(svn r12420) -Cleanup: Fix the indentation, improve a variable name, and add ↵maedhros
a NOT_REACHED to DeterminePluralForm.
2008-03-25(svn r12417) -Fix: Add a new plural rule for Icelandic.maedhros
2008-01-29(svn r12015) -Fix [FS#1716] (Revert r11422): Patch in FS#1430 avoided ↵peter1138
instead of fixed the problem. GetStringWithArgs() discards information that SCC_GENDER_LIST needs to work. Now use pointers to retrieve GRF strings, so that GetStringPtr() will work correctly. This is advantageous as now no buffer copy is made when using all GRF strings.
2008-01-17(svn r11888) -Codechange: simplify sorting of the strings in town names dropdownglx
2008-01-17(svn r11886) -Add: sort the strings in languages dropdownglx
2008-01-13(svn r11839) -Codechange: move some variables from variables.h to a more ↵rubidium
logical location.
2008-01-13(svn r11834) -Codechange: only include settings_type.h if needed.rubidium
2008-01-13(svn r11828) -Codechange: include table/* as the last includes and remove an ↵rubidium
unneeded include from openttd.h.
2008-01-12(svn r11822) -Codechange: Replaced fixed size custom name array. Names are ↵peter1138
now attached to their object directly and there is no limit to the amount of names. -Fix: NewGRF engines could not be renamed.
2008-01-12(svn r11818) -Codechange: split player.h into smaller pieces.rubidium
2008-01-09(svn r11801) -Codechange: remove some unneeded includes from some header files.rubidium
2008-01-07(svn r11777) -Codechange: split the string header and make do not include it ↵rubidium
when it's not necessary.
2008-01-05(svn r11765) -Fix: compile warning (Roujin).rubidium
2008-01-05(svn r11764) -Change: make the 'do characters exist in the current font ↵rubidium
file(s)' more robust.
2007-12-27(svn r11706) -Codechange: split vehicle.h and remove another bunch of ↵rubidium
useless includes.
2007-12-26(svn r11702) -Codechange: move all date related stuff to date*.rubidium
2007-12-25(svn r11694) -Codechange: move more endianness related stuff to endian_func.hpp.rubidium
2007-12-25(svn r11692) -Codechange: move some functions from 'functions.h' to a more ↵rubidium
logical place and remove about 50% of the includes of 'functions.h'
2007-12-25(svn r11691) -Codechange: move+rename helpers.hpp and only include it when ↵rubidium
it is really needed.
2007-12-22(svn r11681) -Fix (r11674): hopefully fix the compile error on big endian ↵rubidium
machines.
2007-12-21(svn r11675) -Codechange: split the string types from the string functions.rubidium
2007-12-16(svn r11648) -Fix [FS#1560]: the company password was not set when one ↵rubidium
pressed the enter key.
2007-12-16(svn r11647) -Fix (r11646): it did not compile without freetype...rubidium
2007-12-16(svn r11646) -Codechange: check whether (some) characters are missing in the ↵rubidium
current 'font' for the 'currently' chosen language and give a warning when that does happen.
2007-11-24(svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them ↵skidd13
fitting to the naming style
2007-11-19(svn r11481) -Codechange: Rename the HASBIT function to fit with the naming ↵skidd13
style
2007-11-12(svn r11422) -Fix [FS#1430]: properly support genders coming from newgrfs ↵rubidium
instead of crashing.
2007-10-30(svn r11360) -Fix [FS#1375]: do not crash when trying to "draw" an invalid ↵rubidium
string, just draw a message saying it is invalid.
2007-10-20(svn r11312) -Codechange: implement a overflow safe integer and use that for ↵rubidium
money and don't misuses CommandCost to have a overflow safe integer. Based on a patch by Noldo.
2007-09-22(svn r11145) -Codechange: add support for "decoding" TTDPs string codes wrt ↵rubidium
to registers 0x100 to 0x10F.
2007-08-11(svn r10851) -Feature [OSX]: OpenTTD will now pick the same language as ↵bjarni
finder is set to if no config file is found (ln-)
2007-08-07(svn r10820) -Codechange: make negative currencies red and restore the ↵rubidium
colour from before the currency was printed; this removes the need to make two strings for printing currencies (one for positive currencies and one for negative currencies). -Fix [FS#1036]: do not use green for currencies as it is practically unreadable on CRT monitors.
2007-08-05(svn r10792) -Fix [FS#1104]: when determining the gender of a string, do not ↵rubidium
assume that the gender is in the front of the string when there can be case switching code at that location.
2007-08-03(svn r10762) -Codechange: Change enum StringIDEnum { to static const ↵peter1138
StringID = for each STR_ entry. This avoids the need for a cast to StringID in some places and thus better type-safety.
2007-08-02(svn r10759) -Codechange: make the industry struct use the pool item class ↵rubidium
as super class.
2007-08-02(svn r10755) -Codechange: make the town struct use the pool item class as ↵rubidium
super class.
2007-08-02(svn r10751) -Codechange: make the group struct use the pool item class as ↵rubidium
super class.
2007-07-29(svn r10719) -Codechange: since DParams are now 64 bits we should make NUM ↵rubidium
and COMMA handle writing 64 bit integers to the strings.
2007-07-27(svn r10711) -Fix [Win32]: take default language from current user's locale ↵KUDr
on Windows (In-)
2007-07-24(svn r10671) -Codechange: don't mix both lookup and ↵truelight
temp-variable-with-value-of-lookup (skidd13)