summaryrefslogtreecommitdiff
path: root/src/train_cmd.cpp
AgeCommit message (Collapse)Author
2011-02-04(svn r21960) -Change: show the length of vehicles in tiles, instead of half ↵rubidium
tiles in the depot -Fix [FS#4461]: don't count the number of vehicles but the length of vehicles to (configurably) limit train length
2011-01-31(svn r21933) -Codechange: Split cur_order_index into cur_auto_order_index ↵frosch
and cur_real_order_index to keep track of the current real order in an unambiguous way. -Fix [FS#4440]: Automatic orders behave now stable wrt. service orders and are not added or removed depending on the need of servicing. -Fix: Various other issues with automatic orders, e.g. vehicles getting stuck with "no orders" when there are automatic orders at the end of the order list.
2011-01-26(svn r21914) -Codechange: move the algorithmic part of Train::UpdateSpeed to ↵rubidium
a function in GroundVehicle
2011-01-26(svn r21911) -Codechange: move tcache.last_speed to gcache.last_speed and ↵rubidium
make SetLastSpeed a function of GroundVehicle
2011-01-23(svn r21903) -Codechange: warn only once for a train that has invalid ↵smatz
length, not for each its wagon with invalid length
2011-01-21(svn r21880) -Fix: when a train after reversing ended at the last bit of a ↵smatz
bridge ramp and directed outside the bridge, it could still have track set to TRACK_BIT_WORMHOLE
2011-01-21(svn r21879) -Codechange: reset vehicle's GOINGUP/DOWN bits when it crashessmatz
2011-01-21(svn r21875) -Codechange: indentation of some comments was wrongsmatz
2011-01-21(svn r21874) -Fix: when a single-vehicle train was reversed while on a ↵smatz
slope, its GOINGUP/DOWN weren't swapped
2011-01-19(svn r21847) -Fix [FS#4423]: slowing down of trains was done by reducing the ↵rubidium
speed by 10%, but also when you're just 1% too fast, so limit the slowdown till the new maximum speed
2011-01-18(svn r21836) -Fix: when a train was reversed while inside a tunnel/bridge, ↵smatz
it wouldn't have (re)set the GOINGUP/DOWN bits after leaving the tunnel/bridge
2011-01-18(svn r21835) -Codechange: use UpdateStatusAfterSwap() instead of copying the ↵smatz
same code three times
2011-01-15(svn r21800) -Fix [FS#3569]: under certain circumstances one could crash a ↵rubidium
competitor's train; take the lazy non-future proof version of the fix from the 1.0 branch as fixing the real bug is significantly more complex and might even break some backwards compatability if not done perfectly
2010-12-15(svn r21529) -Doc: update comment after function name change (Krille)rubidium
2010-12-14(svn r21521) -Codechange: Unify some cached values that were present in both ↵terkhen
road vehicles and trains.
2010-12-14(svn r21518) -Codechange: Rename AccelerationCache to GroundVehicleCache.terkhen
2010-12-13(svn r21509) -Codechange: rename the rail pathfinders "path_not_found" ↵rubidium
parameter to "path_found" and remove the ! where the variables are set / read
2010-12-13(svn r21508) -Codechange: move the code to handle the pathfinder's "path ↵rubidium
found" status to a separate function
2010-12-13(svn r21506) -Codechange: rename the train/vehicle lost warning strings to ↵rubidium
be more generic
2010-12-13(svn r21505) -Change: generalise the lost_train_warning setting to ↵rubidium
lost_vehicle_warning
2010-12-13(svn r21504) -Codechange: move the "lost" bit from the train's flags to ↵rubidium
vehicle flags
2010-12-13(svn r21502) -Change/Fix [FS#3991] (r150, r18402): before r18402 a train ↵rubidium
crash caused 2 "driver" deaths and a flooding 4 (added in r150). In r18402 the counting was merged and the flooding code was taken for counting drivers. Given those numbers were inconsistent (unlike for other vehicles) we better use the real original amount of driver deaths instead of the erroneous amount.
2010-11-20(svn r21273) -Codechange: Return values should start at the same line.alberth
2010-11-18(svn r21237) -Codechange: Move HandleLocomotiveSmokeCloud to ↵rubidium
Vehicle::ShowVisualEffect (Hirundo)
2010-11-18(svn r21236) -Codechange: Make the visual effects drawing routine work for ↵rubidium
all vehicle types (Hirundo)
2010-11-18(svn r21235) -Codechange: Move Train::UpdateVisualEffect to the Vehicle ↵rubidium
class (Hirundo)
2010-11-18(svn r21234) -Codechange: Make Train::UpdateVisualEffect work for all ↵rubidium
vehicle types (Hirundo)
2010-11-18(svn r21233) -Codechange: Introduce an enum to remove some magic numbers ↵rubidium
from the visual effect code (Hirundo)
2010-11-18(svn r21232) -Codechange: Move cached_vis_effect from the TrainCache to the ↵rubidium
VehicleCache (Hirundo)
2010-11-18(svn r21231) -Codechange: Generalize the naming of some settings and ↵rubidium
variables related to visual effects (Hirundo)
2010-11-18(svn r21230) -Fix/Change/Feature: [NewGRF] Make positioning of diesel fumes ↵rubidium
and electric sparks actually work (Hirundo).
2010-11-16(svn r21218) -Fix (r21189)[FS#4236]: don't force a minimum speed when brakingyexo
2010-11-16(svn r21205) -Fix [FS#4207]: Under some conditions, group count would be ↵terkhen
wrong after moving train engines in the depot window.
2010-11-14(svn r21189) -Fix: Force a minimum speed for trains when using the realistic ↵terkhen
acceleration model.
2010-11-10(svn r21136) -Fix [FS#4213]: bridge speed limits should apply to all wagons ↵rubidium
of a vehicle, not just the head of the vehicle
2010-11-09(svn r21123) -Codechange: Remove max_speed from the Vehicle class.terkhen
2010-11-06(svn r21097) -Codechange: Unify cached max speed for all vehicle types.terkhen
2010-11-05(svn r21088) -Doc: Additions/corrections of doxygen comments.alberth
2010-10-30(svn r21060) -Doc: Improved wording of comments (mostly by __ln__)alberth
2010-10-22(svn r21014) -Fix [FS#4179](r20098): Reversing of trains in stations while ↵frosch
last wagon was in a depot or on a bridge-/tunnelhead caused trouble.
2010-09-08(svn r20768) -Codechange: unify send-to-depot commandsrubidium
2010-08-28(svn r20645) -Codechange [FS#4086]: unify the code for checking for ↵rubidium
breakdown handling as well (Hirundo)
2010-08-28(svn r20644) -Codechange [FS#4086]: unify the vehicle breakdown code (Hirundo)rubidium
2010-08-26(svn r20632) -Cleanup: remove "a few" unneeded includes, and add them to ↵rubidium
some headers
2010-08-26(svn r20623) -Codechange: unify the storing of animation related informationrubidium
2010-08-20(svn r20582) -Fix [FS#4044]: Autoreplace can trigger an assertion when at ↵rubidium
the vehicle limit
2010-08-19(svn r20573) -Codechange: free/reserve some bits in the sell vehicle command ↵rubidium
to increase the vehicle pool limit
2010-08-19(svn r20572) -Codechange: free/reserve some bits in the wagon move command ↵rubidium
to increase the vehicle pool limit
2010-08-18(svn r20547) -Change: the way order backups are performed. Now restoring an ↵rubidium
order doesn't require up to 765 commands.
2010-08-18(svn r20536) -Codechange: unify the refitting of vehiclesrubidium