OpenTTD
|
Deals with autoreplace execution but not the setup. More...
#include "stdafx.h"
#include "company_func.h"
#include "train.h"
#include "command_func.h"
#include "engine_func.h"
#include "vehicle_func.h"
#include "autoreplace_func.h"
#include "autoreplace_gui.h"
#include "articulated_vehicles.h"
#include "core/random_func.hpp"
#include "table/strings.h"
#include "safeguards.h"
Go to the source code of this file.
Functions | |
void | ChangeVehicleViewports (VehicleID from_index, VehicleID to_index) |
Switches viewports following vehicles, which get autoreplaced. | |
void | ChangeVehicleNews (VehicleID from_index, VehicleID to_index) |
Report a change in vehicle IDs (due to autoreplace) to affected vehicle news. | |
void | ChangeVehicleViewWindow (VehicleID from_index, VehicleID to_index) |
Report a change in vehicle IDs (due to autoreplace) to affected vehicle windows. | |
static bool | EnginesHaveCargoInCommon (EngineID engine_a, EngineID engine_b) |
Figure out if two engines got at least one type of cargo in common (refitting if needed) | |
bool | CheckAutoreplaceValidity (EngineID from, EngineID to, CompanyID company) |
Checks some basic properties whether autoreplace is allowed. | |
void | CheckCargoCapacity (Vehicle *v) |
Check the capacity of all vehicles in a chain and spread cargo if needed. | |
static void | TransferCargo (Vehicle *old_veh, Vehicle *new_head, bool part_of_chain) |
Transfer cargo from a single (articulated )old vehicle to the new vehicle chain. | |
static bool | VerifyAutoreplaceRefitForOrders (const Vehicle *v, EngineID engine_type) |
Tests whether refit orders that applied to v will also apply to the new vehicle type. | |
static CargoID | GetNewCargoTypeForReplace (Vehicle *v, EngineID engine_type, bool part_of_chain) |
Function to find what type of cargo to refit to when autoreplacing. | |
static CommandCost | GetNewEngineType (const Vehicle *v, const Company *c, bool always_replace, EngineID &e) |
Get the EngineID of the replacement for a vehicle. | |
static CommandCost | BuildReplacementVehicle (Vehicle *old_veh, Vehicle **new_vehicle, bool part_of_chain) |
Builds and refits a replacement vehicle Important: The old vehicle is still in the original vehicle chain (used for determining the cargo when the old vehicle did not carry anything, but the new one does) | |
static CommandCost | CmdStartStopVehicle (const Vehicle *v, bool evaluate_callback) |
Issue a start/stop command. | |
static CommandCost | CmdMoveVehicle (const Vehicle *v, const Vehicle *after, DoCommandFlag flags, bool whole_chain) |
Issue a train vehicle move command. | |
static CommandCost | CopyHeadSpecificThings (Vehicle *old_head, Vehicle *new_head, DoCommandFlag flags) |
Copy head specific things to the new vehicle chain after it was successfully constructed. | |
static CommandCost | ReplaceFreeUnit (Vehicle **single_unit, DoCommandFlag flags, bool *nothing_to_do) |
Replace a single unit in a free wagon chain. | |
static CommandCost | ReplaceChain (Vehicle **chain, DoCommandFlag flags, bool wagon_removal, bool *nothing_to_do) |
Replace a whole vehicle chain. | |
CommandCost | CmdAutoreplaceVehicle (TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text) |
Autoreplaces a vehicle Trains are replaced as a whole chain, free wagons in depot are replaced on their own. | |
CommandCost | CmdSetAutoReplace (TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text) |
Change engine renewal parameters. |
Deals with autoreplace execution but not the setup.
Definition in file autoreplace_cmd.cpp.
|
static |
Builds and refits a replacement vehicle Important: The old vehicle is still in the original vehicle chain (used for determining the cargo when the old vehicle did not carry anything, but the new one does)
old_veh | A single (articulated/multiheaded) vehicle that shall be replaced. |
new_vehicle | Returns the newly build and refitted vehicle |
part_of_chain | The vehicle is part of a train |
Definition at line 282 of file autoreplace_cmd.cpp.
References _current_company, CommandCost::AddCost(), CMD_REVERSE_TRAIN_DIRECTION, CT_INVALID, CT_NO_REFIT, DC_AUTOREPLACE, DC_EXEC, DoCommand(), CommandCost::Failed(), SpecializedVehicle< Train, Type >::From(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_vehicle_pool >::Get(), GetBestFittingSubType(), GetNewCargoTypeForReplace(), GetNewEngineType(), HasBit(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, INVALID_ENGINE, CommandCost::Succeeded(), Vehicle::tile, BaseVehicle::type, VEH_TRAIN, and VRF_REVERSE_DIRECTION.
Referenced by ReplaceChain(), and ReplaceFreeUnit().
Report a change in vehicle IDs (due to autoreplace) to affected vehicle news.
from_index | the old vehicle ID |
to_index | the new vehicle ID |
Definition at line 860 of file news_gui.cpp.
References NewsItem::next, NF_VEHICLE_PARAM0, and NR_VEHICLE.
Referenced by CopyHeadSpecificThings().
Switches viewports following vehicles, which get autoreplaced.
from_index | the old vehicle ID |
to_index | the new vehicle ID |
Definition at line 3389 of file window.cpp.
References ViewportData::follow_vehicle, Window::SetDirty(), and Window::viewport.
Referenced by CopyHeadSpecificThings().
Report a change in vehicle IDs (due to autoreplace) to affected vehicle windows.
from_index | the old vehicle ID |
to_index | the new vehicle ID |
Definition at line 1243 of file vehicle_gui.cpp.
References ChangeVehicleWindow(), WC_VEHICLE_DETAILS, WC_VEHICLE_ORDERS, WC_VEHICLE_REFIT, WC_VEHICLE_TIMETABLE, and WC_VEHICLE_VIEW.
Referenced by CopyHeadSpecificThings().
Checks some basic properties whether autoreplace is allowed.
from | Origin engine |
to | Destination engine |
company | Company to check for |
Definition at line 52 of file autoreplace_cmd.cpp.
References AIR_CTOL, RailtypeInfo::compatible_railtypes, EF_ROAD_TRAM, EnginesHaveCargoInCommon(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_engine_pool >::Get(), GetRailTypeInfo(), HasBit(), IsEngineBuildable(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_engine_pool >::IsValidID(), EngineInfo::misc_flags, RAILVEH_WAGON, AircraftVehicleInfo::subtype, Engine::type, VEH_AIRCRAFT, VEH_ROAD, and VEH_TRAIN.
Referenced by CmdSetAutoReplace(), and ReplaceVehicleWindow::GenerateReplaceVehList().
void CheckCargoCapacity | ( | Vehicle * | v | ) |
Check the capacity of all vehicles in a chain and spread cargo if needed.
v | The vehicle to check. |
Definition at line 99 of file autoreplace_cmd.cpp.
References Vehicle::First(), min(), CargoList< VehicleCargoList, CargoPacketList >::MTA_KEEP, and Vehicle::Next().
Referenced by CmdMoveRailVehicle(), and ReplaceChain().
CommandCost CmdAutoreplaceVehicle | ( | TileIndex | tile, |
DoCommandFlag | flags, | ||
uint32 | p1, | ||
uint32 | p2, | ||
const char * | text | ||
) |
Autoreplaces a vehicle Trains are replaced as a whole chain, free wagons in depot are replaced on their own.
tile | not used |
flags | type of operation |
p1 | Index of vehicle |
p2 | not used |
text | unused |
Definition at line 667 of file autoreplace_cmd.cpp.
References _current_company, CommandCost::AddCost(), CheckOwnership(), CMD_ERROR, DC_EXEC, EXPENSES_NEW_VEHICLES, CommandCost::Failed(), SpecializedVehicle< T, Type >::First(), SpecializedVehicle< Train, Type >::From(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::Get(), CommandCost::GetCost(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_vehicle_pool >::GetIfValid(), GetNewEngineType(), Train::GetNextUnit(), INVALID_ENGINE, Vehicle::IsArticulatedPart(), Vehicle::IsChainInDepot(), Vehicle::IsFrontEngine(), Vehicle::IsPrimaryVehicle(), GroundVehicle< T, Type >::IsRearDualheaded(), Vehicle::IsStoppedInDepot(), Vehicle::owner, CompanySettings::renew_keep_length, ReplaceChain(), ReplaceFreeUnit(), RestoreRandomSeeds(), SaveRandomSeeds(), Company::settings, CommandCost::Succeeded(), BaseVehicle::type, VEH_TRAIN, Vehicle::vehstatus, VS_CRASHED, and VS_STOPPED.
|
inlinestatic |
Issue a train vehicle move command.
v | The vehicle to move |
after | The vehicle to insert 'v' after, or NULL to start new chain |
flags | the command flags to use |
whole_chain | move all vehicles following 'v' (true), or only 'v' (false) |
Definition at line 339 of file autoreplace_cmd.cpp.
References CMD_MOVE_RAIL_VEHICLE, DC_NO_CARGO_CAP_CHECK, DoCommand(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, and INVALID_VEHICLE.
Referenced by ReplaceChain(), and ReplaceFreeUnit().
CommandCost CmdSetAutoReplace | ( | TileIndex | tile, |
DoCommandFlag | flags, | ||
uint32 | p1, | ||
uint32 | p2, | ||
const char * | text | ||
) |
Change engine renewal parameters.
tile | unused |
flags | operation to perform |
p1 | packed data
|
p2 | packed data
|
text | unused |
Definition at line 757 of file autoreplace_cmd.cpp.
References _current_company, AddEngineReplacementForCompany(), CheckAutoreplaceValidity(), CMD_ERROR, DC_EXEC, GB(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_engine_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_group_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_company_pool >::GetIfValid(), HasBit(), INVALID_ENGINE, InvalidateAutoreplaceWindow(), IsAllGroupID(), IsLocalCompany(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_engine_pool >::IsValidID(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_group_pool >::IsValidID(), RemoveEngineReplacementForCompany(), SetWindowDirty(), GroupStatistics::UpdateAutoreplace(), and WC_REPLACE_VEHICLE.
|
inlinestatic |
Issue a start/stop command.
v | a vehicle |
evaluate_callback | shall the start/stop callback be evaluated? |
Definition at line 326 of file autoreplace_cmd.cpp.
References CMD_START_STOP_VEHICLE, DC_AUTOREPLACE, DC_EXEC, DoCommand(), and Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index.
|
static |
Copy head specific things to the new vehicle chain after it was successfully constructed.
old_head | The old front vehicle (no wagons attached anymore) |
new_head | The new head of the completely replaced vehicle chain |
flags | the command flags to use |
Definition at line 350 of file autoreplace_cmd.cpp.
References CommandCost::AddCost(), ChangeVehicleNews(), ChangeVehicleViewports(), ChangeVehicleViewWindow(), CMD_ADD_VEHICLE_GROUP, CMD_CLONE_ORDER, Vehicle::CopyVehicleConfigAndStatistics(), DC_EXEC, DoCommand(), Vehicle::group_id, Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, CommandCost::Succeeded(), Vehicle::vehstatus, and VS_STOPPED.
Referenced by ReplaceChain().
Figure out if two engines got at least one type of cargo in common (refitting if needed)
engine_a | one of the EngineIDs |
engine_b | the other EngineID |
type | the type of the engines |
Definition at line 38 of file autoreplace_cmd.cpp.
References GetUnionOfArticulatedRefitMasks().
Referenced by CheckAutoreplaceValidity().
|
static |
Function to find what type of cargo to refit to when autoreplacing.
*v | Original vehicle that is being replaced. |
engine_type | The EngineID of the vehicle that is being replaced to |
part_of_chain | The vehicle is part of a train |
Definition at line 202 of file autoreplace_cmd.cpp.
References Engine::CanCarryCargo(), Vehicle::cargo_type, CT_INVALID, CT_NO_REFIT, Vehicle::First(), GetArticulatedRefitMasks(), Vehicle::GetEngine(), HasBit(), IsArticulatedVehicleCarryingDifferentCargoes(), Vehicle::Next(), BaseVehicle::type, VEH_TRAIN, and VerifyAutoreplaceRefitForOrders().
Referenced by BuildReplacementVehicle().
|
static |
Get the EngineID of the replacement for a vehicle.
v | The vehicle to find a replacement for | |
c | The vehicle's owner (it's faster to forward the pointer than refinding it) | |
always_replace | Always replace, even if not old. | |
[out] | e | the EngineID of the replacement. INVALID_ENGINE if no replacement is found |
Definition at line 244 of file autoreplace_cmd.cpp.
References _current_company, Vehicle::engine_type, EngineReplacementForCompany(), SpecializedVehicle< Train, Type >::From(), Vehicle::group_id, INVALID_ENGINE, Vehicle::IsArticulatedPart(), IsEngineBuildable(), GroundVehicle< T, Type >::IsRearDualheaded(), Vehicle::NeedsAutorenewing(), BaseVehicle::type, and VEH_TRAIN.
Referenced by BuildReplacementVehicle(), and CmdAutoreplaceVehicle().
|
static |
Replace a whole vehicle chain.
chain | vehicle chain to let autoreplace/renew operator on |
flags | command flags |
wagon_removal | remove wagons when the resulting chain occupies more tiles than the old did |
nothing_to_do | is set to 'false' when something was done (only valid when not failed) |
< Number of units in the chain
< Will store vehicles of the old chain in their order
< New vehicles corresponding to old_vehs or NULL if no replacement
< Costs for buying and refitting the new vehicles
< Shall store the last engine unit after this step
Definition at line 441 of file autoreplace_cmd.cpp.
References _settings_game, BuildReplacementVehicle(), GroundVehicleCache::cached_total_length, CeilDiv(), CheckCargoCapacity(), CmdMoveVehicle(), CopyHeadSpecificThings(), DC_AUTOREPLACE, DC_EXEC, DoCommand(), Vehicle::engine_type, EXPENSES_NEW_VEHICLES, CommandCost::Failed(), Vehicle::First(), free(), SpecializedVehicle< Train, Type >::From(), GroundVehicle< T, Type >::gcache, CommandCost::GetCost(), CommandCost::GetErrorMessage(), Train::GetNextUnit(), Train::GetPrevUnit(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, Vehicle::IsPrimaryVehicle(), VehicleSettings::max_train_length, RAILVEH_WAGON, CommandCost::Succeeded(), TILE_SIZE, TransferCargo(), BaseVehicle::type, VEH_TRAIN, and GameSettings::vehicle.
Referenced by CmdAutoreplaceVehicle().
|
static |
Replace a single unit in a free wagon chain.
single_unit | vehicle to let autoreplace/renew operator on |
flags | command flags |
nothing_to_do | is set to 'false' when something was done (only valid when not failed) |
Definition at line 391 of file autoreplace_cmd.cpp.
References BuildReplacementVehicle(), CmdMoveVehicle(), DC_EXEC, DoCommand(), EXPENSES_NEW_VEHICLES, SpecializedVehicle< Train, Type >::From(), Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem< Tpool >::index, Vehicle::IsArticulatedPart(), GroundVehicle< T, Type >::IsRearDualheaded(), and TransferCargo().
Referenced by CmdAutoreplaceVehicle().
Transfer cargo from a single (articulated )old vehicle to the new vehicle chain.
old_veh | Old vehicle that will be sold |
new_head | Head of the completely constructed new vehicle chain |
part_of_chain | The vehicle is part of a train |
Definition at line 134 of file autoreplace_cmd.cpp.
References Vehicle::cargo, CCF_LOADUNLOAD, Train::ConsistChanged(), SpecializedVehicle< Train, Type >::From(), Vehicle::IsArticulatedPart(), Vehicle::IsPrimaryVehicle(), min(), CargoList< VehicleCargoList, CargoPacketList >::MTA_KEEP, Vehicle::Next(), NUM_CARGO, VehicleCargoList::TotalCount(), BaseVehicle::type, and VEH_TRAIN.
Referenced by ReplaceChain(), and ReplaceFreeUnit().
Tests whether refit orders that applied to v will also apply to the new vehicle type.
v | The vehicle to be replaced |
engine_type | The type we want to replace with |
Definition at line 174 of file autoreplace_cmd.cpp.
References Vehicle::engine_type, Vehicle::First(), Order::GetRefitCargo(), GetUnionOfArticulatedRefitMasks(), HasBit(), Order::IsAutoRefit(), Order::IsRefit(), BaseVehicle::type, and VEH_TRAIN.
Referenced by GetNewCargoTypeForReplace().