src/strings.cpp
Mon, 24 Nov 2008 20:51:55 +0000 rubidium (svn r14623) -Codechange: a sprinkle of coding style.
Mon, 24 Nov 2008 18:53:17 +0000 rubidium (svn r14618) -Feature: when the chosen language isn't supported by the current font, try to find a font that does and use that instead. Thanks to glx/michi_cc for the Windows implementation.
Mon, 24 Nov 2008 11:20:07 +0000 rubidium (svn r14617) -Change: unduplicate the languagepack(header).
Wed, 19 Nov 2008 23:55:34 +0000 rubidium (svn r14598) -Feature: Action0Industries property 24 (industry suuplies default name for nearby station).
Sun, 02 Nov 2008 11:20:15 +0000 skidd13 (svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible
Tue, 28 Oct 2008 14:42:31 +0000 rubidium (svn r14540) -Codechange: introduce [v]seprintf which are like [v]snprintf but do return the number of characters written instead of the number of characters that would be written; as size_t is unsigned substraction can cause integer underflows quite quickly.
Fri, 17 Oct 2008 17:42:51 +0000 rubidium (svn r14480) -Add: warning when trying to use a right-to-left language without support for it in OpenTTD.
Tue, 30 Sep 2008 21:18:28 +0000 rubidium (svn r14423) -Codechange: also do r14221 for the strings.
Tue, 30 Sep 2008 20:51:04 +0000 rubidium (svn r14422) -Codechange: also reflect the changes of r14421 in the filenames.
Tue, 30 Sep 2008 20:39:50 +0000 rubidium (svn r14421) -Codechange: rename all player variables/types to company *or* client so it is immediatelly clear which one you are working with.
Sun, 28 Sep 2008 13:50:11 +0000 rubidium (svn r14410) -Codechange: one can't inject a negative number of parameters, so enforce this by using a uint.
Sun, 14 Sep 2008 14:31:37 +0000 rubidium (svn r14321) -Add: support for newgrfs printing bytes/words/dwords as hexadecimals.
Fri, 12 Sep 2008 17:16:04 +0000 rubidium (svn r14298) -Fix [FS#2214]: "{CARGO} from unknown destination".
Fri, 12 Sep 2008 17:14:07 +0000 rubidium (svn r14297) -Fix: one could be trying to get the station name of a station that is outside of the pool.
Fri, 12 Sep 2008 17:11:28 +0000 rubidium (svn r14296) -Codechange: there is no case where an invalid waypoint index should be passed to be drawn as a string.
Sun, 31 Aug 2008 10:50:05 +0000 rubidium (svn r14199) -Codechange: split fileio.h into fileio_type.h and fileio_func.h so not everything that includes saveload.h needs to include everything else too.
Thu, 31 Jul 2008 22:55:12 +0000 glx (svn r13904) -Fix (r13715): 'cast from/to pointer to/from integer of different size' warnings
Fri, 18 Jul 2008 16:40:29 +0000 rubidium (svn r13731) -Codechange: make a pool of the array of players.
Thu, 17 Jul 2008 20:13:01 +0000 rubidium (svn r13719) -Codechange: rename IsValidPlayer to IsValidPlayerID in line with all other structs/classes that are in a pool.
Thu, 17 Jul 2008 13:47:04 +0000 rubidium (svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
Tue, 17 Jun 2008 19:38:00 +0000 smatz (svn r13552) -Codechange: use TTD_ENDIAN comparations instead of tests if TTD_[BIG/LITTLE]_ENDIAN is defined
Mon, 16 Jun 2008 19:38:41 +0000 smatz (svn r13537) -Fix [FS#2090](r13523): QSortT won't work this way, use Dimension instead of uint16[2] for resolutions
Thu, 05 Jun 2008 20:54:52 +0000 glx (svn r13390) -Codechange: introduce usererror() for fatal but not openttd related errors. Now all error() will 'crash' openttd after showing the message in win32 releases (MSVC), creating a crash.log and crash.dmp (like the '!' hack used before). On the other hand, usererror() will just close the game. So use error() only when it can be helpful to debugging, else use usererror().
Thu, 05 Jun 2008 11:26:38 +0000 rubidium (svn r13386) -Fix: global currency/units setting being overriden when loading a savegame.
Thu, 29 May 2008 15:13:28 +0000 rubidium (svn r13325) -Codechange: split the client-side only settings from the settings stored in the savegame so there is no need to have a duplicate copy of it for new games.
Sun, 25 May 2008 22:36:44 +0000 rubidium (svn r13255) -Codechange: move _opt to _settings.
Sun, 25 May 2008 12:57:39 +0000 rubidium (svn r13242) -Codechange: remove _opt_ptr.
Tue, 06 May 2008 15:11:33 +0000 rubidium (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
Sun, 04 May 2008 21:53:36 +0000 smatz (svn r12944) -Codechange: use rev.h instead of externs at many places
Tue, 29 Apr 2008 21:31:29 +0000 peter1138 (svn r12924) -Feature: Introducing the so called 'engine pool' which primarily removes the fixed engine type limits and also happens to allow (with the patch option 'dynamic_engines') multiple NewGRF vehicle sets to coexist.
Sat, 19 Apr 2008 18:03:24 +0000 peter1138 (svn r12793) -Codechange: Use enum values for station types instead of mysterious hex (ln)
Sat, 19 Apr 2008 13:04:29 +0000 rubidium (svn r12786) -Change: remove more function from functions.h.
Sat, 19 Apr 2008 08:21:55 +0000 rubidium (svn r12782) -Codechange: remove some functions from functions.h and do not statically 'waste' memory when the old name array is not needed anymore.
Fri, 18 Apr 2008 04:37:06 +0000 rubidium (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
Sat, 12 Apr 2008 10:00:52 +0000 rubidium (svn r12665) -Codechange: make the internal speed <-> display speed conversions available to a bigger part of the code.
Mon, 31 Mar 2008 07:25:49 +0000 rubidium (svn r12501) -Codechange: split signs.h.
Mon, 31 Mar 2008 00:17:39 +0000 rubidium (svn r12490) -Codechange: rename engine.h to engine_func.h and remove unneeded inclusions of engine.h and/or replace them with engine_type.h.
Mon, 31 Mar 2008 00:06:17 +0000 rubidium (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
Fri, 28 Mar 2008 09:15:08 +0000 rubidium (svn r12460) -Change: rename src/namegen.h to src/namegen_func.h so MSVC can have both files in it's treelist.
Fri, 28 Mar 2008 08:53:36 +0000 rubidium (svn r12459) -Codechange: split news.h into news_type.h and news_func.h.
Tue, 25 Mar 2008 19:56:16 +0000 maedhros (svn r12420) -Cleanup: Fix the indentation, improve a variable name, and add a NOT_REACHED to DeterminePluralForm.
Tue, 25 Mar 2008 17:39:02 +0000 maedhros (svn r12417) -Fix: Add a new plural rule for Icelandic.
Tue, 29 Jan 2008 17:09:00 +0000 peter1138 (svn r12015) -Fix [FS#1716] (Revert r11422): Patch in FS#1430 avoided 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.
Thu, 17 Jan 2008 02:10:26 +0000 glx (svn r11888) -Codechange: simplify sorting of the strings in town names dropdown
Thu, 17 Jan 2008 00:21:43 +0000 glx (svn r11886) -Add: sort the strings in languages dropdown
Sun, 13 Jan 2008 21:41:24 +0000 rubidium (svn r11839) -Codechange: move some variables from variables.h to a more logical location.
Sun, 13 Jan 2008 14:37:30 +0000 rubidium (svn r11834) -Codechange: only include settings_type.h if needed.
Sun, 13 Jan 2008 01:21:35 +0000 rubidium (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Sat, 12 Jan 2008 19:58:06 +0000 peter1138 (svn r11822) -Codechange: Replaced fixed size custom name array. Names are now attached to their object directly and there is
Sat, 12 Jan 2008 14:10:35 +0000 rubidium (svn r11818) -Codechange: split player.h into smaller pieces.
Wed, 09 Jan 2008 21:27:39 +0000 rubidium (svn r11801) -Codechange: remove some unneeded includes from some header files.
Mon, 07 Jan 2008 14:23:25 +0000 rubidium (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
Sat, 05 Jan 2008 22:34:04 +0000 rubidium (svn r11765) -Fix: compile warning (Roujin).
Sat, 05 Jan 2008 22:19:27 +0000 rubidium (svn r11764) -Change: make the 'do characters exist in the current font file(s)' more robust.
Thu, 27 Dec 2007 13:35:39 +0000 rubidium (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
Wed, 26 Dec 2007 13:50:40 +0000 rubidium (svn r11702) -Codechange: move all date related stuff to date*.
Tue, 25 Dec 2007 13:28:09 +0000 rubidium (svn r11694) -Codechange: move more endianness related stuff to endian_func.hpp.
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
Tue, 25 Dec 2007 09:48:53 +0000 rubidium (svn r11691) -Codechange: move+rename helpers.hpp and only include it when it is really needed.
Sat, 22 Dec 2007 21:01:49 +0000 rubidium (svn r11681) -Fix (r11674): hopefully fix the compile error on big endian machines.