#include "vehicle_type.h"
#include "engine_type.h"
Go to the source code of this file.
Functions | |
uint | CountArticulatedParts (EngineID engine_type, bool purchase_window) |
uint16 * | GetCapacityOfArticulatedParts (EngineID engine, VehicleType type) |
void | AddArticulatedParts (Vehicle **vl, VehicleType type) |
uint32 | GetUnionOfArticulatedRefitMasks (EngineID engine, VehicleType type, bool include_initial_cargo_type) |
Ors the refit_masks of all articulated parts. | |
uint32 | GetIntersectionOfArticulatedRefitMasks (EngineID engine, VehicleType type, bool include_initial_cargo_type) |
Ands the refit_masks of all articulated parts. | |
bool | IsArticulatedVehicleCarryingDifferentCargos (const Vehicle *v, CargoID *cargo_type) |
Tests if all parts of an articulated vehicle are refitted to the same cargo. | |
bool | IsArticulatedVehicleRefittable (EngineID engine) |
Checks whether any of the articulated parts is refittable. |
Definition in file articulated_vehicles.h.
uint32 GetIntersectionOfArticulatedRefitMasks | ( | EngineID | engine, | |
VehicleType | type, | |||
bool | include_initial_cargo_type | |||
) |
Ands the refit_masks of all articulated parts.
engine | the first part | |
type | the vehicle type | |
include_initial_cargo_type | if true the default cargo type of the vehicle is included; if false only the refit_mask |
Definition at line 178 of file articulated_vehicles.cpp.
References CALLBACK_FAILED, CBID_VEHICLE_ARTIC_ENGINE, CBM_VEHICLE_ARTIC_ENGINE, GB(), GetAvailableVehicleCargoTypes(), GetEngineGRF(), GetVehicleCallback(), and HasBit().
Referenced by GetNewCargoTypeForReplace().
uint32 GetUnionOfArticulatedRefitMasks | ( | EngineID | engine, | |
VehicleType | type, | |||
bool | include_initial_cargo_type | |||
) |
Ors the refit_masks of all articulated parts.
engine | the first part | |
type | the vehicle type | |
include_initial_cargo_type | if true the default cargo type of the vehicle is included; if false only the refit_mask |
Definition at line 152 of file articulated_vehicles.cpp.
References CALLBACK_FAILED, CBID_VEHICLE_ARTIC_ENGINE, CBM_VEHICLE_ARTIC_ENGINE, GB(), GetAvailableVehicleCargoTypes(), GetEngineGRF(), GetVehicleCallback(), and HasBit().
Referenced by EnginesGotCargoInCommon(), GetNewCargoTypeForReplace(), ShowRefitOptionsList(), and VerifyAutoreplaceRefitForOrders().
bool IsArticulatedVehicleCarryingDifferentCargos | ( | const Vehicle * | v, | |
CargoID * | cargo_type | |||
) |
Tests if all parts of an articulated vehicle are refitted to the same cargo.
Note: Vehicles not carrying anything are ignored
v | the first vehicle in the chain | |
cargo_type | returns the common CargoID if needed. (CT_INVALID if no part is carrying something or they are carrying different things) |
Definition at line 209 of file articulated_vehicles.cpp.
References EngineHasArticPart(), and GetNextArticPart().
Referenced by GetNewCargoTypeForReplace().
bool IsArticulatedVehicleRefittable | ( | EngineID | engine | ) |
Checks whether any of the articulated parts is refittable.
engine | the first part |
Definition at line 125 of file articulated_vehicles.cpp.
References CALLBACK_FAILED, CBID_VEHICLE_ARTIC_ENGINE, CBM_VEHICLE_ARTIC_ENGINE, GB(), GetEngineGRF(), GetVehicleCallback(), HasBit(), and IsEngineRefittable().
Referenced by DrawVehiclePurchaseInfo().