summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-02-20(svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular ↵peter1138
struct array (with accessor) and implement new initialization method using cargo labels.
2007-02-20(svn r8825) -Fix: Make sure strings read from newgrf files are 0 terminated ↵maedhros
and 0 terminate them if they aren't, so we don't read beyond the end of the memory allocated for the line.
2007-02-20(svn r8824) -Fix (r8821): don't use MSVC2005 runtime library-only ↵Darkvater
_snwprintf_s function, but use 'insecure/deprecated' version and zero-terminate string ourselves. Thanks for testing glx.
2007-02-20(svn r8823) -Fix (r8821): wrapping opendir to ottd-specific function failed ↵Darkvater
on non-windows because this wrapper was only active for win32 (thx Rubidium)
2007-02-20(svn r8822) -Fixtron
Variable scope, const
2007-02-20(svn r8821) -Regression: Unable to browse directories on *nix if the ↵Darkvater
filesystem is not in UTF-8 charset and special characters are used. The string passed to opendir() which is UTF-8 was not parsed back to the filesystem format. Use a wrapper called ttd_opendir() instead of redefining opendir itself.
2007-02-20(svn r8820) -Codechange (r8807, r8806): Remove the unneeded calloc/free ↵Darkvater
allocation of GRFConfig and turn it into a simple variable (it's supposed to be data-only). Thanks Tron.
2007-02-19(svn r8818) -Codechange: remove the #ifdef _cplusplus remnants.rubidium
2007-02-19(svn r8809) -Fix (r8715): accidentally removed a part of an expression.rubidium
2007-02-19(svn r8808) -Fix [FS#631]: do not show the 'edit sign' window for spectators.rubidium
2007-02-18(svn r8807) -Feature: Add support for loading (some of) the TTDP extra ↵Darkvater
chunks mainly list of GRFIDs and TTDP version the game was saved with. GRFID list is read and active GRFs are loaded with the game if present in the data/ directory. TTDP versioning information only works for newer versions, old versions will only give rough information but it's not worth the effort to precisely figure out what bit means what where and when.
2007-02-18(svn r8806) -Codechange (r7582): Remove a duplicate append of static GRF's ↵Darkvater
when loading the game and hide the intrinsics of adding elements to the GRFConfig list by using an AppendToGRFConfigList function.
2007-02-18(svn r8805) -Codechange (r8757): DO set eol-style and keywords on new files...Darkvater
2007-02-18(svn r8802) -Fixtron
-Fix: When inserting an order for a ship while checking the distance between the new order and the order it is inserted after adhere the order types to determine the correct type of destination (i.e. station or depot) Also do a better job in determining the preceding order NOTE: 0.5 candidate
2007-02-18(svn r8800) -Fixtron
Simplify MoveGoodsToSation() under the assumption that 0 is less or equal than 0
2007-02-18(svn r8799) -Fixtron
Reduce variable scope
2007-02-18(svn r8797) -Fix (8741): the 'drive through station built on town owned ↵rubidium
road' bit was not set.
2007-02-18(svn r8796) -Fixtron
Remove the unused function AllocateStation() which was left over from r8125
2007-02-18(svn r8795) -Fixtron
Remove the explicit check for buoys when inserting goto station orders. This is already covered by the preceding OWNER_NONE test.
2007-02-18(svn r8794) -Fixtron
Remove the possiblity to take over stations with OWNER_NONE by building a station next to it -Fix: It was possible to take over buoys by building a station next to them Also remove the now unnecessary special case which prevented taking over oilrigs NOTE: 0.5 candidate
2007-02-17(svn r8793) -Fix: corrected spelling of real french townnames and 'removed' ↵glx
a duplicate
2007-02-17(svn r8792) -Fix (r6623): Don't check whether a string length is 1 when you ↵maedhros
already know it isn't.
2007-02-17(svn r8791) -Revert: r8790 Committed too much in last commitmiham
2007-02-17(svn r8790) [Namegen] -Revert: r8789 (Tron kinda convinced me it is a bad ↵miham
thing, sorry for it)
2007-02-17(svn r8789) [Namegen] -Change: Sorted townnameparts for hungarian, and added ↵miham
a few more
2007-02-17(svn r8788) [Translations] -Fix: Removed bogus 3sk case from slovenian, as ↵miham
it is handled in WebTranslator2 from now on
2007-02-17(svn r8787) -Change r8771: allow fast aircraft in small airportsbjarni
We should keep the list in sync with the build command as hacked clients can avoid a block in the GUI only
2007-02-17(svn r8786) -Cleanup: replaced a switch-case to get the right refit command ↵bjarni
for a certain vehicle type. We have a function to do that
2007-02-17(svn r8785) -Fix: Entry point for commuter airport incorrect.richk
2007-02-17(svn r8784) -Regression (r7274 most likely): Unable to load TTDP (on *NIX) ↵Darkvater
games because the static buffer used for name conversion is overwritten in the callback function.
2007-02-17(svn r8783) -Fix r8771: aircraft vehicle subtype and aircraft engine subtype ↵bjarni
aren't the same (even though they both tell if it's a plane or helicopter)
2007-02-17(svn r8782) -Fixtron
Adapt GetClosestStationFromTile() more to the way it is used: - All but deleted stations get filtered later, so do not include non-deleted station in the first place - Remove the two parameters, which are the same for all callers
2007-02-17(svn r8781) -Fixtron
A spectator cannot build stations, so do not include a special case for him
2007-02-17(svn r8780) -Fix: Spelling of CatchmentArea incorrect.richk
2007-02-17(svn r8779) -Fixtron
-Codechange: Use a more generic test, which tests the allowed aircraft instead of hardcoding the airport type numbers, to generate station names
2007-02-17(svn r8778) -Fixtron
-Codechange: Allow goto station orders to public stations in general, not just oilrigs (though this is the same till now)
2007-02-17(svn r8777) -Fix: FS#596 Cloning Maglev in UKRS forgets Mail refitbjarni
Cloning were unaware that articulated locomotives could refit without refitting the front unit
2007-02-17(svn r8771) -Fix r8343: build aircraft windows will no longer show aircraft ↵bjarni
that can't use the airport in question Now it's even better than ever because unless the no jetcrash cheat is enabled, the small airports will not show fast aircraft
2007-02-17(svn r8770) -Fix r8661: corrected some aircraft sprite placement issues in ↵bjarni
the depot window
2007-02-17(svn r8768) -Fix (r8767): VC8 compilation failed 'warning C4146: unary minus ↵KUDr
operator applied to unsigned type, result still unsigned'
2007-02-17(svn r8767) -Fixtron
-Codechange: Do not hardcode the catchment radius of airports, but hold the information in AirportFTAClass -Fix (r979): The default AI tested possible airport locations with a fixed catchment radius instead of the radius of the to be built airport
2007-02-17(svn r8766) -Fix[YAPF]: rail station platform penalty not calculated properlyKUDr
2007-02-16(svn r8765) -Codechange: remove logic redundancy by moving it from the gui ↵rubidium
into the cmd code.
2007-02-16(svn r8764) -Update: WebTranslator2 update to 2007-02-16 22:03:24miham
afrikaans - 1 changed by TrueTenacity (1) brazilian_portuguese - 1 fixed, 1 changed by fukumori (2) bulgarian - 4 fixed by groupsky (4) dutch - 3 fixed by habell (3) esperanto - 3 fixed by LaPingvino (3) finnish - 5 fixed by kerba (5) icelandic - 15 fixed, 30 changed by scrooge (45) italian - 3 fixed by sidew (3) norwegian_bokmal - 13 fixed by oletk (13) turkish - 3 fixed by jnmbk (3)
2007-02-16(svn r8763) -Fixtron
Don't do bogus initialisations and prefer simpler code
2007-02-16(svn r8759) -Feature: Allow airports to have up to 4 entry points depending ↵celestar
on approach direction. Note: they're not yet used, but will be soon
2007-02-16(svn r8757) -Add: added libtimidity music driver (it is a nice small library ↵truelight
simular to timidity via extmidi) [PSP] -Add: added PSP specific code for libtimidity. libtimidity code is based on the work of Turulo. Tnx a bunch!
2007-02-16(svn r8756) [PSP] -Fix: made the dedicated code compile with PSP. It is ↵truelight
almost UNIX, just it needs more includes ;) (or more, it compiles, if it works is a whole other story ;))
2007-02-16(svn r8755) -Fixtron
Abbreviate GetAirport(st->airport_type) to st->Airport()
2007-02-16(svn r8754) -Fixtron
Do not handle a special case for goto hangar orders to oilrigs - they do not have a hangar anyway