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
|
Wed, 14 May 2008 18:31:21 +0000 |
smatz |
(svn r13090) -Codechange: add functions for direct conversion from DiagDirection to Track and Trackbits
draft
|
Wed, 14 May 2008 16:38:53 +0000 |
smatz |
(svn r13088) -Codechange: use SigSegState enum instead of bool variable (michi_cc)
draft
|
Tue, 13 May 2008 20:39:57 +0000 |
peter1138 |
(svn r13074) -Fix: For multiheaded engines, halve power and running cost when used instead of when loading, to allow callback values to work properly.
draft
|
Tue, 06 May 2008 21:28:30 +0000 |
rubidium |
(svn r12975) -Codechange: replace DeleteWindow(w) with delete w.
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 07:44:21 +0000 |
peter1138 |
(svn r12860) -Fix [FS#1947]: Train depart animation trigger was not called in some cases.
draft
|
Wed, 23 Apr 2008 21:55:24 +0000 |
peter1138 |
(svn r12856) -Fix: Taking r12377 further, ensure that prop 25 is set for all vehicles in the consist before other properties.
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 14:33:33 +0000 |
rubidium |
(svn r12819) -Codechange: handle more NewGRFs in the same way as TTDP does it, i.e. testing the low bits for 0xFF or 0 instead of all bits.
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 23:19:12 +0000 |
peter1138 |
(svn r12798) -Feature: Add some support for NewGRF station animation. (Thanks to mart3p for samples and fixes)
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
|
Fri, 18 Apr 2008 04:37:06 +0000 |
rubidium |
(svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
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 20:48:17 +0000 |
glx |
(svn r12711) -Codechange: remove unneeded loops
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
|
Mon, 07 Apr 2008 12:36:50 +0000 |
smatz |
(svn r12605) -Cleanup: variable scope and coding style in train*
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
|
Sat, 05 Apr 2008 23:36:54 +0000 |
rubidium |
(svn r12584) -Codechange: do not access the order type directly.
draft
|
Sat, 05 Apr 2008 15:30:15 +0000 |
rubidium |
(svn r12580) -Codechange: merge some logical related to non-stop orders.
draft
|
Sat, 05 Apr 2008 12:01:34 +0000 |
rubidium |
(svn r12578) -Codechange: merge the aircrafts ProcessOrder too into the 'unified' ProcessOrder.
draft
|
Sat, 05 Apr 2008 10:55:50 +0000 |
rubidium |
(svn r12575) -Codechange: unduplicate Process*Orders for trains, ships and road vehicles.
draft
|
Tue, 01 Apr 2008 14:47:57 +0000 |
frosch |
(svn r12532) -Cleanup: Replace two tables of magic values with already existing functions.
draft
|
Tue, 01 Apr 2008 14:03:20 +0000 |
frosch |
(svn r12531) -Codechange: Rename some variables for consistency.
draft
|
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.
draft
|
Mon, 31 Mar 2008 00:06:17 +0000 |
rubidium |
(svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
draft
|
Sun, 30 Mar 2008 23:24:18 +0000 |
rubidium |
(svn r12488) -Codechange: split order.h into order_base.h and order_func.h.
draft
|
Fri, 28 Mar 2008 22:59:43 +0000 |
bjarni |
(svn r12482) -Fix: [build train] we don't need to have a depot in order to just check the price of a rail vehicle so don't check for compatible rails on the tile either
draft
|
Fri, 28 Mar 2008 08:53:36 +0000 |
rubidium |
(svn r12459) -Codechange: split news.h into news_type.h and news_func.h.
draft
|
Wed, 19 Mar 2008 20:50:19 +0000 |
smatz |
(svn r12386) -Fix [FS#1841](r2428): train could break apart when reversed while partially in a depot
draft
|
Wed, 19 Mar 2008 20:42:05 +0000 |
smatz |
(svn r12384) -Fix (r2428): do not disconnect train when reversing, it may 'think' it is whole in a depot
draft
|
Mon, 17 Mar 2008 22:13:00 +0000 |
glx |
(svn r12380) -Fix: update train acceleration and max speed after setting cached value to ensure the correct max speed is used with disabled real acceleration
draft
|
Mon, 17 Mar 2008 22:04:15 +0000 |
glx |
(svn r12379) -Codechange: removed now redondant InvalidateWindow() calls
draft
|
Mon, 17 Mar 2008 21:50:53 +0000 |
glx |
(svn r12378) -Fix: refresh vehicle details window when cached values are updated
draft
|
Mon, 17 Mar 2008 21:49:14 +0000 |
glx |
(svn r12377) -Fix [FS#1854]: set cached value for vehicle property 25 before other cached values
draft
|
Sat, 15 Mar 2008 19:24:13 +0000 |
smatz |
(svn r12369) -Fix (r1681): reset train speed limits when _patches.realistic_acceleration changes
draft
|
Sat, 15 Mar 2008 13:21:31 +0000 |
smatz |
(svn r12368) -Codechange: use explicit body for loops and conditions and remove -Wno-empty-body from the configure script
draft
|
Mon, 03 Mar 2008 21:42:37 +0000 |
peter1138 |
(svn r12332) -Fix (r12331): Invalidate cached data and update image after setting flag.
draft
|
Mon, 03 Mar 2008 20:56:30 +0000 |
glx |
(svn r12331) -Feature: [NewGRF] vehicle variable FE bit 8
draft
|
Thu, 21 Feb 2008 19:09:10 +0000 |
peter1138 |
(svn r12209) -Fix: [NewGRF] Support using any base price for rail and road vehicles' running cost, and show running cost of wagons if they have it.
draft
|
Wed, 20 Feb 2008 20:56:54 +0000 |
peter1138 |
(svn r12205) -Codechange: rename RailVehicleInfo::running_cost_base to running_cost, inline with other vehicle types (It is the factor, not the base)
draft
|
Wed, 20 Feb 2008 19:37:46 +0000 |
frosch |
(svn r12203) -Fix (r12199): Make trains pay attention to signals again.
draft
|
Wed, 20 Feb 2008 17:49:50 +0000 |
frosch |
(svn r12199) -Codechange: Remove magic around the results of GetTileTrackStatus().
draft
|
Wed, 20 Feb 2008 17:06:58 +0000 |
smatz |
(svn r12197) -Fix [FS#1788](r12134): show correct last year profit when the train had negative income
draft
|
Wed, 20 Feb 2008 15:18:35 +0000 |
smatz |
(svn r12194) -Codechange: apply coding style on enum TrainSubtype
draft
|
Wed, 20 Feb 2008 12:07:22 +0000 |
smatz |
(svn r12189) -Codechange: mark some functions in train_cmd.cpp inline (called once or very short)
draft
|
Wed, 20 Feb 2008 11:00:17 +0000 |
smatz |
(svn r12188) -Codechange [FS#1782]: do not check twice for correct rail owner (patch by Vikthor)
draft
|
Mon, 18 Feb 2008 18:35:36 +0000 |
smatz |
(svn r12179) -Codechange: use GetCrossingRailTrack() and GetCrossingRailAxis() to improve code readability
draft
|
Mon, 18 Feb 2008 16:35:38 +0000 |
smatz |
(svn r12178) -Codechange: use the 'side' parameter in TrainController and TrainCheckIfLineEnds to simplify the code
draft
|