truelight [Sat, 18 Jun 2005 10:02:47 +0000] rev 1951
(svn r2457) -Fix: typo in Makefile for OSX builds
matthijs [Fri, 17 Jun 2005 17:11:05 +0000] rev 1950
(svn r2456) * Prettyfied npf.c using enums and wrappers from rail.h.
* Moved GetTileRailType() from npf.c to rail.[ch].
miham [Fri, 17 Jun 2005 13:39:59 +0000] rev 1949
(svn r2455) [Translations] Updated to 2005-06-17 (100+ strs / 10+ langs)
matthijs [Fri, 17 Jun 2005 11:30:50 +0000] rev 1948
(svn r2454) * Codechange: Move #include "stdafx.h" and "openttd.h" from rail.h to rail.c
* Codechange: Move declaration of lookup arrays into the functions that need them. This doesn't pollute the global namespace with the array names.
* Add: rail.h to the openttd.vcproj and openttd.dsp for MSVC.
matthijs [Fri, 17 Jun 2005 09:53:22 +0000] rev 1947
(svn r2453) * CodeChange: Declared the lookup arrays in rail.h as extern, so the linker will complain if they are not defined (ie when rail.c is not included).
tron [Fri, 17 Jun 2005 07:35:10 +0000] rev 1946
(svn r2452) Fix defect in r2448 which caused building tracks unexpectedly fail or succeed
matthijs [Fri, 17 Jun 2005 00:46:33 +0000] rev 1945
(svn r2451) * Fix: Assertion caused by passing a trackdir where a track was expected.
matthijs [Fri, 17 Jun 2005 00:22:46 +0000] rev 1944
(svn r2450) * Codechange: Replaced all uses of the arrays in tile.h with calls to the associated wrapper functions.
* Codechange: Made npf.c use some map array accessing wrappers instead of direct access.
* Codechange/Fix: Named every enum in tile.h. Fixes a nasty bug on MSVC where arrays would be initialised with zeroes (tnx Asterix_)
* Removed magic numbers from tables in tile.c.
* Added some explicit casts in tile.h.
matthijs [Thu, 16 Jun 2005 20:54:37 +0000] rev 1943
(svn r2449) * Added an extra warning to the stopall command, "For debugging only!".
matthijs [Thu, 16 Jun 2005 18:04:02 +0000] rev 1942
(svn r2448) General cleanup of rail related code, more to follow.
* Add: rail.[ch] for rail-related enums and wrapper functions.
* Codechange: Removed dozens of magic numbers with below enums.
* Codechange: Rewrote CheckTrackCombination().
* Add: TILE_SIZE, TILE_PIXELS and TILE_HEIGHT constants.
* Add: enums RailTileType, RailTileSubtype, SignalType to mask against the map arrays.
* Add: enums Track, TrackBits, Trackdir, TrackdirBits for railway track data. (Note that the old RAIL_BIT constants are replaced by TRACK_BIT ones).
* Add: enums Direction and DiagDirection
* Codechange: Moved a bunch of track(dir) related lookup arrays from npf.[ch] to rail.[ch].
* Codechange: move RailType enum from tile.h to rail.h.
* Add: Wrapper functions for masking signal status in the map arrays: SignalAlongTrackdir, SignalAgainstTrackdir and SignalOnTrack.
* Add: Wrapper functions to access rail tiles, using above enums
* Add: Wrapper functions to modify tracks, trackdirs, directions, etc.
* Add: Wrapper functions for all lookup arrays in rail.[ch] (Arrays are still used in parts of the code)
* Codechange: Renamed some variables and arguments to better represent what they contain (railbit -> track, bits -> trackdirbits, etc.).
* Codechange: Don't use FindLandscapeHeight() in CmdRemoveSingleRail(), since it returns way too much info. Use GetTileSlope() instead.
* Codechange: [NPF] Removed some unused globals and code from npf.c.