tron [Mon, 31 Jan 2005 19:22:44 +0000] rev 1251
(svn r1755) Trim trailing whitespace
darkvater [Mon, 31 Jan 2005 12:04:40 +0000] rev 1250
(svn r1754) - Fix: you can once again load newgrf files with lots of sprites. Index wasn't reset in second run, thus counting them double.
darkvater [Mon, 31 Jan 2005 11:36:16 +0000] rev 1249
(svn r1753) - Fix: [ 1113037 ] crash when accessing hi-scores in editor, it is now disabled.
darkvater [Mon, 31 Jan 2005 11:33:21 +0000] rev 1248
(svn r1752) - Fix: MSVC acting up once again, as well as project file updates for the missing files.
matthijs [Mon, 31 Jan 2005 11:23:10 +0000] rev 1247
(svn r1751) - Feature: New PathFinder (NPF).
- Supports trains, road vehicles and ships.
- Uses A* pathfinding (same codebase as the new ai).
- Currently unlimited search depth, so might perform badly on large maps/networks (especially ships).
- Will always find a route if there is one.
- Allows custom penalties for obstacles to be set in openttd.cfg (npf_ values).
- With NPF enabled, ships can have orders that are very far apart. Be careful, this will break (ships get lost) when the old pathfinder is used again.
- Feature: Disabling 90 degree turns for trains and ships.
- Requires NPF to be enabled.
- Ships and trains can no longer make weird 90 degree turns on tile borders.
- Codechange: Removed table/directions.h.
- table/directions.h contained ugly static tables but was included more than once. The tables, along with a few new ones are in npf.[ch] now. Better suggestions for a location?
- Fix: Binary heap in queue.c did not allocate enough space, resulting in a segfault.
- Codechange: Rewritten FindFirstBit2x64, added KillFirstBit2x64.
- Codechange: Introduced constant INVALID_TILE, to replace the usage of 0 as an invalid tile. Also replaces TILE_WRAPPED.
- Codechange: Moved TileAddWrap() to map.[ch]
- Add TileIndexDiffCByDir(), TileIndexDiffCByDir().
- Codechange: Moved IsTrainStationTile() to station.h
- Add: IsRoadStationTile() and GetRoadStationDir().
darkvater [Mon, 31 Jan 2005 11:03:23 +0000] rev 1246
(svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each vehicle type (bociusz)
tron [Mon, 31 Jan 2005 07:23:15 +0000] rev 1245
(svn r1749) Move the functions which calculate distances to map.[ch] and give the more meaningful names
tron [Mon, 31 Jan 2005 06:46:53 +0000] rev 1244
(svn r1748) Enforce map size limits
darkvater [Mon, 31 Jan 2005 00:12:44 +0000] rev 1243
(svn r1747) - Fix: [network] ottd should compile when networking is disabled.
- Change: change strgen project file to get rid of warning.
darkvater [Sun, 30 Jan 2005 23:41:57 +0000] rev 1242
(svn r1746) - Feature: [GUI] [ 1107690 ] Resizable orders GUI (nzhook)