mirror of https://github.com/OpenTTD/OpenTTD
(svn r5187) - NewGRF: temporarily change a vehicle's cargo subtype when calling the refit capacity callback.
parent
a7fbd158a0
commit
d6ebfb8338
|
@ -564,12 +564,15 @@ int32 CmdRefitAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
||||||
if (HASBIT(EngInfo(v->engine_type)->callbackmask, CBM_REFIT_CAPACITY)) {
|
if (HASBIT(EngInfo(v->engine_type)->callbackmask, CBM_REFIT_CAPACITY)) {
|
||||||
/* Back up the existing cargo type */
|
/* Back up the existing cargo type */
|
||||||
CargoID temp_cid = v->cargo_type;
|
CargoID temp_cid = v->cargo_type;
|
||||||
|
byte temp_subtype = v->cargo_subtype;
|
||||||
v->cargo_type = new_cid;
|
v->cargo_type = new_cid;
|
||||||
|
v->cargo_subtype = new_subtype;
|
||||||
|
|
||||||
callback = GetVehicleCallback(CBID_VEHICLE_REFIT_CAPACITY, 0, 0, v->engine_type, v);
|
callback = GetVehicleCallback(CBID_VEHICLE_REFIT_CAPACITY, 0, 0, v->engine_type, v);
|
||||||
|
|
||||||
/* Restore the cargo type */
|
/* Restore the cargo type */
|
||||||
v->cargo_type = temp_cid;
|
v->cargo_type = temp_cid;
|
||||||
|
v->cargo_subtype = temp_subtype;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (callback == CALLBACK_FAILED) {
|
if (callback == CALLBACK_FAILED) {
|
||||||
|
|
|
@ -1760,11 +1760,16 @@ int32 CmdRefitRailVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
||||||
uint16 amount = CALLBACK_FAILED;
|
uint16 amount = CALLBACK_FAILED;
|
||||||
|
|
||||||
if (HASBIT(EngInfo(v->engine_type)->callbackmask, CBM_REFIT_CAPACITY)) {
|
if (HASBIT(EngInfo(v->engine_type)->callbackmask, CBM_REFIT_CAPACITY)) {
|
||||||
/* Check the 'refit capacity' callback */
|
/* Back up the vehicle's cargo type */
|
||||||
CargoID temp_cid = v->cargo_type;
|
CargoID temp_cid = v->cargo_type;
|
||||||
|
byte temp_subtype = v->cargo_subtype;
|
||||||
v->cargo_type = new_cid;
|
v->cargo_type = new_cid;
|
||||||
|
v->cargo_subtype = new_subtype;
|
||||||
|
/* Check the refit capacity callback */
|
||||||
amount = GetVehicleCallback(CBID_VEHICLE_REFIT_CAPACITY, 0, 0, v->engine_type, v);
|
amount = GetVehicleCallback(CBID_VEHICLE_REFIT_CAPACITY, 0, 0, v->engine_type, v);
|
||||||
|
/* Restore the original cargo type */
|
||||||
v->cargo_type = temp_cid;
|
v->cargo_type = temp_cid;
|
||||||
|
v->cargo_subtype = temp_subtype;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (amount == CALLBACK_FAILED) { // callback failed or not used, use default
|
if (amount == CALLBACK_FAILED) { // callback failed or not used, use default
|
||||||
|
|
Loading…
Reference in New Issue