Sat, 13 Sep 2008 10:19:51 +0000 |
smatz |
(svn r14307) -Fix: when deleting a station, remove news items regarding it
draft
|
Tue, 02 Sep 2008 15:20:38 +0000 |
rubidium |
(svn r14223) -Codechange: make GetSprite aware of the 4 different types of sprites: fonts, recolour, mapgen and normal sprites.
draft
|
Fri, 15 Aug 2008 17:54:43 +0000 |
peter1138 |
(svn r14078) -Codechange: Rename *VehicleInfo::base_cost to cost_factor, indicating what it actually is.
draft
|
Fri, 15 Aug 2008 13:57:43 +0000 |
frosch |
(svn r14076) -Codechange: Merge the four start/stop commands into a single CMD_START_STOP_VEHICLE.
draft
|
Wed, 09 Jul 2008 20:55:47 +0000 |
smatz |
(svn r13691) -Codechange: make it easier to determine whether a command is ran in the context of autoreplace or not
draft
|
Wed, 11 Jun 2008 13:54:01 +0000 |
rubidium |
(svn r13464) -Codechange: support NewGRF Action 0x05, type 12.
draft
|
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.
draft
|
Sun, 25 May 2008 22:36:44 +0000 |
rubidium |
(svn r13255) -Codechange: move _opt to _settings.
draft
|
Sun, 25 May 2008 19:17:03 +0000 |
rubidium |
(svn r13251) -Codechange: rename _patches to _settings as that is more logic.
draft
|
Sun, 18 May 2008 16:51:44 +0000 |
rubidium |
(svn r13165) -Codechange: replace some RebuildXXXList/ResortXXXList+InvalidateWindowXXX with InvalidateWindowXXXData.
draft
|
Thu, 15 May 2008 13:39:36 +0000 |
rubidium |
(svn r13100) -Codechange: reduce the amount of parameters passed via AddNewsMessage as there is (for each news message type) a tuple of 4 parameters that is the same for all calls.
draft
|
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.
draft
|
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.
draft
|
Thu, 24 Apr 2008 13:05:51 +0000 |
smatz |
(svn r12870) -Codechange: remove some magic numbers from u.ship.state handling
draft
|
Wed, 23 Apr 2008 20:56:08 +0000 |
rubidium |
(svn r12855) -Codechange: do not use autoptr's for testing whether certain objects can be build, but check it directly in the pool so we do not have to call destructors in the testing phase. Stations still use the autoptr though.
draft
|
Mon, 21 Apr 2008 20:50:58 +0000 |
peter1138 |
(svn r12824) -Codechange: Standardise routines for drawing vehicle images, using correct types and less duplication.
draft
|
Mon, 21 Apr 2008 13:45:03 +0000 |
rubidium |
(svn r12818) -Codechange: make callbacks 31 and 37 behave like they do in TTDP according to frosch's survey.
draft
|
Sun, 20 Apr 2008 11:12:07 +0000 |
rubidium |
(svn r12804) -Codechange: move the effect vehicle handling out of vehicle.cpp
draft
|
Sun, 20 Apr 2008 10:13:54 +0000 |
rubidium |
(svn r12803) -Cleanup: rename SpecialVehicle to EffectVehicle to have a uniform naming of the thing instead of using both names for the same thing.
draft
|
Sat, 19 Apr 2008 21:23:42 +0000 |
rubidium |
(svn r12795) -Fix [FS#1938]: vehicles could break down during loading and keep loading. The intention of the break down code is not to break down when having zero speed, therefor break downs now do not happen when loading.
draft
|
Thu, 17 Apr 2008 19:10:30 +0000 |
rubidium |
(svn r12754) -Codechange: split depot.h into depot_map.h, depot_func.h and depot_base.h and remove quite a lot of unneeded (before this) includes of depot.h.
draft
|
Thu, 17 Apr 2008 18:24:45 +0000 |
smatz |
(svn r12753) -Codechange: do not use IsDepotTypeTile() where simpler function can be used
draft
|
Thu, 17 Apr 2008 00:44:20 +0000 |
smatz |
(svn r12745) -Codechange: a bit of naming conventions, introduce Is*DepotTile()
draft
|
Mon, 14 Apr 2008 07:08:43 +0000 |
rubidium |
(svn r12698) -Codechange: skip orders to stations that do not have a train part anymore, just like is done for road vehicles and ships.
draft
|
Fri, 11 Apr 2008 08:40:10 +0000 |
rubidium |
(svn r12658) -Codechange: unify a vast portion of the CmdSend<VehicleType>ToDepot commands.
draft
|
Fri, 11 Apr 2008 08:14:43 +0000 |
rubidium |
(svn r12657) -Codechange: add 'FindClosestDepot' to the vehicle class.
draft
|
Tue, 08 Apr 2008 15:48:32 +0000 |
frosch |
(svn r12629) -Codechange: Split VehicleNeedsService() into Vehicle::NeedsServicing() and Vehicle::NeedsAutomaticServicing().
draft
|
Mon, 07 Apr 2008 19:18:56 +0000 |
rubidium |
(svn r12615) -Codechange: rename some enums related to depot orders to make it more clear that they are no loading/unloading flags. Also add more type strictness.
draft
|
Sun, 06 Apr 2008 15:09:45 +0000 |
rubidium |
(svn r12593) -Codechange: hide Order's flags in most of the code.
draft
|
Sun, 06 Apr 2008 07:48:51 +0000 |
rubidium |
(svn r12588) -Codechange: do not access the destination of an order directly.
draft
|