2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
9 * @file aircraft_cmd.cpp
10 * This file deals with aircraft and airport movements functionalities
15 #include "landscape.h"
16 #include "news_func.h"
17 #include "newgrf_engine.h"
18 #include "newgrf_sound.h"
19 #include "spritecache.h"
20 #include "error_func.h"
21 #include "strings_func.h"
22 #include "command_func.h"
23 #include "window_func.h"
24 #include "timer/timer_game_calendar.h"
25 #include "timer/timer_game_economy.h"
26 #include "vehicle_func.h"
27 #include "sound_func.h"
28 #include "cheat_type.h"
29 #include "company_base.h"
31 #include "game/game.hpp"
32 #include "company_func.h"
33 #include "effectvehicle_func.h"
34 #include "station_base.h"
35 #include "engine_base.h"
36 #include "core/random_func.hpp"
37 #include "core/backup_type.hpp"
38 #include "zoom_func.h"
39 #include "disaster_vehicle.h"
40 #include "newgrf_airporttiles.h"
41 #include "framerate_type.h"
42 #include "aircraft_cmd.h"
43 #include "vehicle_cmd.h"
45 #include "table/strings.h"
47 #include "safeguards.h"
49 void Aircraft::UpdateDeltaXY()
56 switch (this->subtype
) {
57 default: NOT_REACHED();
61 switch (this->state
) {
86 static bool AirportMove(Aircraft
*v
, const AirportFTAClass
*apc
);
87 static bool AirportSetBlocks(Aircraft
*v
, const AirportFTA
*current_pos
, const AirportFTAClass
*apc
);
88 static bool AirportHasBlock(Aircraft
*v
, const AirportFTA
*current_pos
, const AirportFTAClass
*apc
);
89 static bool AirportFindFreeTerminal(Aircraft
*v
, const AirportFTAClass
*apc
);
90 static bool AirportFindFreeHelipad(Aircraft
*v
, const AirportFTAClass
*apc
);
91 static void CrashAirplane(Aircraft
*v
);
93 static const SpriteID _aircraft_sprite
[] = {
94 0x0EB5, 0x0EBD, 0x0EC5, 0x0ECD,
95 0x0ED5, 0x0EDD, 0x0E9D, 0x0EA5,
96 0x0EAD, 0x0EE5, 0x0F05, 0x0F0D,
97 0x0F15, 0x0F1D, 0x0F25, 0x0F2D,
98 0x0EED, 0x0EF5, 0x0EFD, 0x0F35,
99 0x0E9D, 0x0EA5, 0x0EAD, 0x0EB5,
104 bool IsValidImageIndex
<VEH_AIRCRAFT
>(uint8_t image_index
)
106 return image_index
< lengthof(_aircraft_sprite
);
109 /** Helicopter rotor animation states */
110 enum HelicopterRotorStates
{
118 * Find the nearest hangar to v
119 * INVALID_STATION is returned, if the company does not have any suitable
120 * airports (like helipads only)
121 * @param v vehicle looking for a hangar
122 * @return the StationID if one is found, otherwise, INVALID_STATION
124 static StationID
FindNearestHangar(const Aircraft
*v
)
127 StationID index
= INVALID_STATION
;
128 TileIndex vtile
= TileVirtXY(v
->x_pos
, v
->y_pos
);
129 const AircraftVehicleInfo
*avi
= AircraftVehInfo(v
->engine_type
);
130 uint max_range
= v
->acache
.cached_max_range_sqr
;
132 /* Determine destinations where it's coming from and where it's heading to */
133 const Station
*last_dest
= nullptr;
134 const Station
*next_dest
= nullptr;
135 if (max_range
!= 0) {
136 if (v
->current_order
.IsType(OT_GOTO_STATION
) ||
137 (v
->current_order
.IsType(OT_GOTO_DEPOT
) && (v
->current_order
.GetDepotActionType() & ODATFB_NEAREST_DEPOT
) == 0)) {
138 last_dest
= Station::GetIfValid(v
->last_station_visited
);
139 next_dest
= Station::GetIfValid(v
->current_order
.GetDestination());
141 last_dest
= GetTargetAirportIfValid(v
);
142 next_dest
= Station::GetIfValid(v
->GetNextStoppingStation().value
);
146 for (const Station
*st
: Station::Iterate()) {
147 if (st
->owner
!= v
->owner
|| !(st
->facilities
& FACIL_AIRPORT
) || !st
->airport
.HasHangar()) continue;
149 const AirportFTAClass
*afc
= st
->airport
.GetFTA();
151 /* don't crash the plane if we know it can't land at the airport */
152 if ((afc
->flags
& AirportFTAClass::SHORT_STRIP
) && (avi
->subtype
& AIR_FAST
) && !_cheats
.no_jetcrash
.value
) continue;
154 /* the plane won't land at any helicopter station */
155 if (!(afc
->flags
& AirportFTAClass::AIRPLANES
) && (avi
->subtype
& AIR_CTOL
)) continue;
157 /* Check if our last and next destinations can be reached from the depot airport. */
158 if (max_range
!= 0) {
159 uint last_dist
= (last_dest
!= nullptr && last_dest
->airport
.tile
!= INVALID_TILE
) ? DistanceSquare(st
->airport
.tile
, last_dest
->airport
.tile
) : 0;
160 uint next_dist
= (next_dest
!= nullptr && next_dest
->airport
.tile
!= INVALID_TILE
) ? DistanceSquare(st
->airport
.tile
, next_dest
->airport
.tile
) : 0;
161 if (last_dist
> max_range
|| next_dist
> max_range
) continue;
164 /* v->tile can't be used here, when aircraft is flying v->tile is set to 0 */
165 uint distance
= DistanceSquare(vtile
, st
->airport
.tile
);
166 if (distance
< best
|| index
== INVALID_STATION
) {
174 void Aircraft::GetImage(Direction direction
, EngineImageType image_type
, VehicleSpriteSeq
*result
) const
176 uint8_t spritenum
= this->spritenum
;
178 if (is_custom_sprite(spritenum
)) {
179 GetCustomVehicleSprite(this, direction
, image_type
, result
);
180 if (result
->IsValid()) return;
182 spritenum
= this->GetEngine()->original_image_index
;
185 assert(IsValidImageIndex
<VEH_AIRCRAFT
>(spritenum
));
186 result
->Set(direction
+ _aircraft_sprite
[spritenum
]);
189 void GetRotorImage(const Aircraft
*v
, EngineImageType image_type
, VehicleSpriteSeq
*result
)
191 assert(v
->subtype
== AIR_HELICOPTER
);
193 const Aircraft
*w
= v
->Next()->Next();
194 if (is_custom_sprite(v
->spritenum
)) {
195 GetCustomRotorSprite(v
, image_type
, result
);
196 if (result
->IsValid()) return;
199 /* Return standard rotor sprites if there are no custom sprites for this helicopter */
200 result
->Set(SPR_ROTOR_STOPPED
+ w
->state
);
203 static void GetAircraftIcon(EngineID engine
, EngineImageType image_type
, VehicleSpriteSeq
*result
)
205 const Engine
*e
= Engine::Get(engine
);
206 uint8_t spritenum
= e
->u
.air
.image_index
;
208 if (is_custom_sprite(spritenum
)) {
209 GetCustomVehicleIcon(engine
, DIR_W
, image_type
, result
);
210 if (result
->IsValid()) return;
212 spritenum
= e
->original_image_index
;
215 assert(IsValidImageIndex
<VEH_AIRCRAFT
>(spritenum
));
216 result
->Set(DIR_W
+ _aircraft_sprite
[spritenum
]);
219 void DrawAircraftEngine(int left
, int right
, int preferred_x
, int y
, EngineID engine
, PaletteID pal
, EngineImageType image_type
)
221 VehicleSpriteSeq seq
;
222 GetAircraftIcon(engine
, image_type
, &seq
);
225 seq
.GetBounds(&rect
);
226 preferred_x
= Clamp(preferred_x
,
227 left
- UnScaleGUI(rect
.left
),
228 right
- UnScaleGUI(rect
.right
));
230 seq
.Draw(preferred_x
, y
, pal
, pal
== PALETTE_CRASH
);
232 if (!(AircraftVehInfo(engine
)->subtype
& AIR_CTOL
)) {
233 VehicleSpriteSeq rotor_seq
;
234 GetCustomRotorIcon(engine
, image_type
, &rotor_seq
);
235 if (!rotor_seq
.IsValid()) rotor_seq
.Set(SPR_ROTOR_STOPPED
);
236 rotor_seq
.Draw(preferred_x
, y
- ScaleSpriteTrad(5), PAL_NONE
, false);
241 * Get the size of the sprite of an aircraft sprite heading west (used for lists).
242 * @param engine The engine to get the sprite from.
243 * @param[out] width The width of the sprite.
244 * @param[out] height The height of the sprite.
245 * @param[out] xoffs Number of pixels to shift the sprite to the right.
246 * @param[out] yoffs Number of pixels to shift the sprite downwards.
247 * @param image_type Context the sprite is used in.
249 void GetAircraftSpriteSize(EngineID engine
, uint
&width
, uint
&height
, int &xoffs
, int &yoffs
, EngineImageType image_type
)
251 VehicleSpriteSeq seq
;
252 GetAircraftIcon(engine
, image_type
, &seq
);
255 seq
.GetBounds(&rect
);
257 width
= UnScaleGUI(rect
.Width());
258 height
= UnScaleGUI(rect
.Height());
259 xoffs
= UnScaleGUI(rect
.left
);
260 yoffs
= UnScaleGUI(rect
.top
);
265 * @param flags type of operation.
266 * @param tile tile of the depot where aircraft is built.
267 * @param e the engine to build.
268 * @param[out] ret the vehicle that has been built.
269 * @return the cost of this operation or an error.
271 CommandCost
CmdBuildAircraft(DoCommandFlag flags
, TileIndex tile
, const Engine
*e
, Vehicle
**ret
)
273 const AircraftVehicleInfo
*avi
= &e
->u
.air
;
274 const Station
*st
= Station::GetByTile(tile
);
276 /* Prevent building aircraft types at places which can't handle them */
277 if (!CanVehicleUseStation(e
->index
, st
)) return CMD_ERROR
;
279 /* Make sure all aircraft end up in the first tile of the hangar. */
280 tile
= st
->airport
.GetHangarTile(st
->airport
.GetHangarNum(tile
));
282 if (flags
& DC_EXEC
) {
283 Aircraft
*v
= new Aircraft(); // aircraft
284 Aircraft
*u
= new Aircraft(); // shadow
287 v
->direction
= DIR_SE
;
289 v
->owner
= u
->owner
= _current_company
;
293 uint x
= TileX(tile
) * TILE_SIZE
+ 5;
294 uint y
= TileY(tile
) * TILE_SIZE
+ 3;
296 v
->x_pos
= u
->x_pos
= x
;
297 v
->y_pos
= u
->y_pos
= y
;
299 u
->z_pos
= GetSlopePixelZ(x
, y
);
300 v
->z_pos
= u
->z_pos
+ 1;
302 v
->vehstatus
= VS_HIDDEN
| VS_STOPPED
| VS_DEFPAL
;
303 u
->vehstatus
= VS_HIDDEN
| VS_UNCLICKABLE
| VS_SHADOW
;
305 v
->spritenum
= avi
->image_index
;
307 v
->cargo_cap
= avi
->passenger_capacity
;
311 v
->cargo_type
= e
->GetDefaultCargoType();
312 assert(IsValidCargoID(v
->cargo_type
));
314 CargoID mail
= GetCargoIDByLabel(CT_MAIL
);
315 if (IsValidCargoID(mail
)) {
316 u
->cargo_type
= mail
;
317 u
->cargo_cap
= avi
->mail_capacity
;
321 v
->last_station_visited
= INVALID_STATION
;
322 v
->last_loading_station
= INVALID_STATION
;
324 v
->acceleration
= avi
->acceleration
;
325 v
->engine_type
= e
->index
;
326 u
->engine_type
= e
->index
;
328 v
->subtype
= (avi
->subtype
& AIR_CTOL
? AIR_AIRCRAFT
: AIR_HELICOPTER
);
331 u
->subtype
= AIR_SHADOW
;
334 v
->reliability
= e
->reliability
;
335 v
->reliability_spd_dec
= e
->reliability_spd_dec
;
336 v
->max_age
= e
->GetLifeLengthInDays();
338 v
->pos
= GetVehiclePosOnBuild(tile
);
341 v
->previous_pos
= v
->pos
;
342 v
->targetairport
= GetStationIndex(tile
);
345 v
->SetServiceInterval(Company::Get(_current_company
)->settings
.vehicle
.servint_aircraft
);
347 v
->date_of_last_service
= TimerGameEconomy::date
;
348 v
->date_of_last_service_newgrf
= TimerGameCalendar::date
;
349 v
->build_year
= u
->build_year
= TimerGameCalendar::year
;
351 v
->sprite_cache
.sprite_seq
.Set(SPR_IMG_QUERY
);
352 u
->sprite_cache
.sprite_seq
.Set(SPR_IMG_QUERY
);
354 v
->random_bits
= Random();
355 u
->random_bits
= Random();
357 v
->vehicle_flags
= 0;
358 if (e
->flags
& ENGINE_EXCLUSIVE_PREVIEW
) SetBit(v
->vehicle_flags
, VF_BUILT_AS_PROTOTYPE
);
359 v
->SetServiceIntervalIsPercent(Company::Get(_current_company
)->settings
.vehicle
.servint_ispercent
);
361 v
->InvalidateNewGRFCacheOfChain();
363 v
->cargo_cap
= e
->DetermineCapacity(v
, &u
->cargo_cap
);
365 v
->InvalidateNewGRFCacheOfChain();
367 UpdateAircraftCache(v
, true);
372 /* Aircraft with 3 vehicles (chopper)? */
373 if (v
->subtype
== AIR_HELICOPTER
) {
374 Aircraft
*w
= new Aircraft();
375 w
->engine_type
= e
->index
;
376 w
->direction
= DIR_N
;
377 w
->owner
= _current_company
;
380 w
->z_pos
= v
->z_pos
+ ROTOR_Z_OFFSET
;
381 w
->vehstatus
= VS_HIDDEN
| VS_UNCLICKABLE
;
383 w
->subtype
= AIR_ROTOR
;
384 w
->sprite_cache
.sprite_seq
.Set(SPR_ROTOR_STOPPED
);
385 w
->random_bits
= Random();
386 /* Use rotor's air.state to store the rotor animation frame */
387 w
->state
= HRS_ROTOR_STOPPED
;
395 return CommandCost();
399 ClosestDepot
Aircraft::FindClosestDepot()
401 const Station
*st
= GetTargetAirportIfValid(this);
402 /* If the station is not a valid airport or if it has no hangars */
403 if (st
== nullptr || !CanVehicleUseStation(this, st
) || !st
->airport
.HasHangar()) {
404 /* the aircraft has to search for a hangar on its own */
405 StationID station
= FindNearestHangar(this);
407 if (station
== INVALID_STATION
) return ClosestDepot();
409 st
= Station::Get(station
);
412 return ClosestDepot(st
->xy
, st
->index
);
415 static void CheckIfAircraftNeedsService(Aircraft
*v
)
417 if (Company::Get(v
->owner
)->settings
.vehicle
.servint_aircraft
== 0 || !v
->NeedsAutomaticServicing()) return;
418 if (v
->IsChainInDepot()) {
419 VehicleServiceInDepot(v
);
423 /* When we're parsing conditional orders and the like
424 * we don't want to consider going to a depot too. */
425 if (!v
->current_order
.IsType(OT_GOTO_DEPOT
) && !v
->current_order
.IsType(OT_GOTO_STATION
)) return;
427 const Station
*st
= Station::Get(v
->current_order
.GetDestination());
429 assert(st
!= nullptr);
431 /* only goto depot if the target airport has a depot */
432 if (st
->airport
.HasHangar() && CanVehicleUseStation(v
, st
)) {
433 v
->current_order
.MakeGoToDepot(st
->index
, ODTFB_SERVICE
);
434 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
435 } else if (v
->current_order
.IsType(OT_GOTO_DEPOT
)) {
436 v
->current_order
.MakeDummy();
437 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
441 Money
Aircraft::GetRunningCost() const
443 const Engine
*e
= this->GetEngine();
444 uint cost_factor
= GetVehicleProperty(this, PROP_AIRCRAFT_RUNNING_COST_FACTOR
, e
->u
.air
.running_cost
);
445 return GetPrice(PR_RUNNING_AIRCRAFT
, cost_factor
, e
->GetGRF());
448 /** Calendar day handler */
449 void Aircraft::OnNewCalendarDay()
451 if (!this->IsNormalAircraft()) return;
455 /** Economy day handler */
456 void Aircraft::OnNewEconomyDay()
458 if (!this->IsNormalAircraft()) return;
459 EconomyAgeVehicle(this);
461 if ((++this->day_counter
& 7) == 0) DecreaseVehicleValue(this);
465 CheckVehicleBreakdown(this);
466 CheckIfAircraftNeedsService(this);
468 if (this->running_ticks
== 0) return;
470 CommandCost
cost(EXPENSES_AIRCRAFT_RUN
, this->GetRunningCost() * this->running_ticks
/ (CalendarTime::DAYS_IN_YEAR
* Ticks::DAY_TICKS
));
472 this->profit_this_year
-= cost
.GetCost();
473 this->running_ticks
= 0;
475 SubtractMoneyFromCompanyFract(this->owner
, cost
);
477 SetWindowDirty(WC_VEHICLE_DETAILS
, this->index
);
478 SetWindowClassesDirty(WC_AIRCRAFT_LIST
);
481 static void HelicopterTickHandler(Aircraft
*v
)
483 Aircraft
*u
= v
->Next()->Next();
485 if (u
->vehstatus
& VS_HIDDEN
) return;
487 /* if true, helicopter rotors do not rotate. This should only be the case if a helicopter is
488 * loading/unloading at a terminal or stopped */
489 if (v
->current_order
.IsType(OT_LOADING
) || (v
->vehstatus
& VS_STOPPED
)) {
490 if (u
->cur_speed
!= 0) {
492 if (u
->cur_speed
>= 0x80 && u
->state
== HRS_ROTOR_MOVING_3
) {
497 if (u
->cur_speed
== 0) {
500 if (u
->cur_speed
>= 0x50) {
505 int tick
= ++u
->tick_counter
;
506 int spd
= u
->cur_speed
>> 4;
508 VehicleSpriteSeq seq
;
510 u
->state
= HRS_ROTOR_STOPPED
;
511 GetRotorImage(v
, EIT_ON_MAP
, &seq
);
512 if (u
->sprite_cache
.sprite_seq
== seq
) return;
513 } else if (tick
>= spd
) {
516 if (u
->state
> HRS_ROTOR_MOVING_3
) u
->state
= HRS_ROTOR_MOVING_1
;
517 GetRotorImage(v
, EIT_ON_MAP
, &seq
);
522 u
->sprite_cache
.sprite_seq
= seq
;
524 u
->UpdatePositionAndViewport();
528 * Set aircraft position.
529 * @param v Aircraft to position.
530 * @param x New X position.
531 * @param y New y position.
532 * @param z New z position.
534 void SetAircraftPosition(Aircraft
*v
, int x
, int y
, int z
)
541 v
->UpdateViewport(true, false);
542 if (v
->subtype
== AIR_HELICOPTER
) {
543 GetRotorImage(v
, EIT_ON_MAP
, &v
->Next()->Next()->sprite_cache
.sprite_seq
);
546 Aircraft
*u
= v
->Next();
548 int safe_x
= Clamp(x
, 0, Map::MaxX() * TILE_SIZE
);
549 int safe_y
= Clamp(y
- 1, 0, Map::MaxY() * TILE_SIZE
);
551 u
->y_pos
= y
- ((v
->z_pos
- GetSlopePixelZ(safe_x
, safe_y
)) >> 3);
553 safe_y
= Clamp(u
->y_pos
, 0, Map::MaxY() * TILE_SIZE
);
554 u
->z_pos
= GetSlopePixelZ(safe_x
, safe_y
);
555 u
->sprite_cache
.sprite_seq
.CopyWithoutPalette(v
->sprite_cache
.sprite_seq
); // the shadow is never coloured
557 u
->UpdatePositionAndViewport();
563 u
->z_pos
= z
+ ROTOR_Z_OFFSET
;
565 u
->UpdatePositionAndViewport();
570 * Handle Aircraft specific tasks when an Aircraft enters a hangar
571 * @param *v Vehicle that enters the hangar
573 void HandleAircraftEnterHangar(Aircraft
*v
)
578 Aircraft
*u
= v
->Next();
579 u
->vehstatus
|= VS_HIDDEN
;
582 u
->vehstatus
|= VS_HIDDEN
;
586 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, v
->z_pos
);
589 static void PlayAircraftSound(const Vehicle
*v
)
591 if (!PlayVehicleSound(v
, VSE_START
)) {
592 SndPlayVehicleFx(AircraftVehInfo(v
->engine_type
)->sfx
, v
);
598 * Update cached values of an aircraft.
599 * Currently caches callback 36 max speed.
601 * @param update_range Update the aircraft range.
603 void UpdateAircraftCache(Aircraft
*v
, bool update_range
)
605 uint max_speed
= GetVehicleProperty(v
, PROP_AIRCRAFT_SPEED
, 0);
606 if (max_speed
!= 0) {
607 /* Convert from original units to km-ish/h */
608 max_speed
= (max_speed
* 128) / 10;
610 v
->vcache
.cached_max_speed
= max_speed
;
612 /* Use the default max speed of the vehicle. */
613 v
->vcache
.cached_max_speed
= AircraftVehInfo(v
->engine_type
)->max_speed
;
616 /* Update cargo aging period. */
617 v
->vcache
.cached_cargo_age_period
= GetVehicleProperty(v
, PROP_AIRCRAFT_CARGO_AGE_PERIOD
, EngInfo(v
->engine_type
)->cargo_age_period
);
618 Aircraft
*u
= v
->Next(); // Shadow for mail
619 u
->vcache
.cached_cargo_age_period
= GetVehicleProperty(u
, PROP_AIRCRAFT_CARGO_AGE_PERIOD
, EngInfo(u
->engine_type
)->cargo_age_period
);
621 /* Update aircraft range. */
623 v
->acache
.cached_max_range
= GetVehicleProperty(v
, PROP_AIRCRAFT_RANGE
, AircraftVehInfo(v
->engine_type
)->max_range
);
624 /* Squared it now so we don't have to do it later all the time. */
625 v
->acache
.cached_max_range_sqr
= v
->acache
.cached_max_range
* v
->acache
.cached_max_range
;
631 * Special velocities for aircraft
633 static constexpr uint16_t SPEED_LIMIT_TAXI
= 50; ///< Maximum speed of an aircraft while taxiing
634 static constexpr uint16_t SPEED_LIMIT_APPROACH
= 230; ///< Maximum speed of an aircraft on finals
635 static constexpr uint16_t SPEED_LIMIT_BROKEN
= 320; ///< Maximum speed of an aircraft that is broken
636 static constexpr uint16_t SPEED_LIMIT_HOLD
= 425; ///< Maximum speed of an aircraft that flies the holding pattern
637 static constexpr uint16_t SPEED_LIMIT_NONE
= UINT16_MAX
; ///< No environmental speed limit. Speed limit is type dependent
640 * Sets the new speed for an aircraft
641 * @param v The vehicle for which the speed should be obtained
642 * @param speed_limit The maximum speed the vehicle may have.
643 * @param hard_limit If true, the limit is directly enforced, otherwise the plane is slowed down gradually
644 * @return The number of position updates needed within the tick
646 static int UpdateAircraftSpeed(Aircraft
*v
, uint speed_limit
= SPEED_LIMIT_NONE
, bool hard_limit
= true)
649 * 'acceleration' has the unit 3/8 mph/tick. This function is called twice per tick.
650 * So the speed amount we need to accelerate is:
651 * acceleration * 3 / 16 mph = acceleration * 3 / 16 * 16 / 10 km-ish/h
652 * = acceleration * 3 / 10 * 256 * (km-ish/h / 256)
653 * ~ acceleration * 77 (km-ish/h / 256)
655 uint spd
= v
->acceleration
* 77;
658 /* Adjust speed limits by plane speed factor to prevent taxiing
659 * and take-off speeds being too low. */
660 speed_limit
*= _settings_game
.vehicle
.plane_speed
;
662 /* adjust speed for broken vehicles */
663 if (v
->vehstatus
& VS_AIRCRAFT_BROKEN
) {
664 if (SPEED_LIMIT_BROKEN
< speed_limit
) hard_limit
= false;
665 speed_limit
= std::min
<uint
>(speed_limit
, SPEED_LIMIT_BROKEN
);
668 if (v
->vcache
.cached_max_speed
< speed_limit
) {
669 if (v
->cur_speed
< speed_limit
) hard_limit
= false;
670 speed_limit
= v
->vcache
.cached_max_speed
;
673 v
->subspeed
= (t
= v
->subspeed
) + (uint8_t)spd
;
675 /* Aircraft's current speed is used twice so that very fast planes are
676 * forced to slow down rapidly in the short distance needed. The magic
677 * value 16384 was determined to give similar results to the old speed/48
678 * method at slower speeds. This also results in less reduction at slow
679 * speeds to that aircraft do not get to taxi speed straight after
681 if (!hard_limit
&& v
->cur_speed
> speed_limit
) {
682 speed_limit
= v
->cur_speed
- std::max(1, ((v
->cur_speed
* v
->cur_speed
) / 16384) / _settings_game
.vehicle
.plane_speed
);
685 spd
= std::min(v
->cur_speed
+ (spd
>> 8) + (v
->subspeed
< t
), speed_limit
);
687 /* updates statusbar only if speed have changed to save CPU time */
688 if (spd
!= v
->cur_speed
) {
690 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
693 /* Adjust distance moved by plane speed setting */
694 if (_settings_game
.vehicle
.plane_speed
> 1) spd
/= _settings_game
.vehicle
.plane_speed
;
696 /* Convert direction-independent speed into direction-dependent speed. (old movement method) */
697 spd
= v
->GetOldAdvanceSpeed(spd
);
700 v
->progress
= (uint8_t)spd
;
705 * Get the tile height below the aircraft.
706 * This function is needed because aircraft can leave the mapborders.
708 * @param v The vehicle to get the height for.
709 * @return The height in pixels from 'z_pos' 0.
711 int GetTileHeightBelowAircraft(const Vehicle
*v
)
713 int safe_x
= Clamp(v
->x_pos
, 0, Map::MaxX() * TILE_SIZE
);
714 int safe_y
= Clamp(v
->y_pos
, 0, Map::MaxY() * TILE_SIZE
);
715 return TileHeight(TileVirtXY(safe_x
, safe_y
)) * TILE_HEIGHT
;
719 * Get the 'flight level' bounds, in pixels from 'z_pos' 0 for a particular
720 * vehicle for normal flight situation.
721 * When the maximum is reached the vehicle should consider descending.
722 * When the minimum is reached the vehicle should consider ascending.
724 * @param v The vehicle to get the flight levels for.
725 * @param[out] min_level The minimum bounds for flight level.
726 * @param[out] max_level The maximum bounds for flight level.
728 void GetAircraftFlightLevelBounds(const Vehicle
*v
, int *min_level
, int *max_level
)
730 int base_altitude
= GetTileHeightBelowAircraft(v
);
731 if (v
->type
== VEH_AIRCRAFT
&& Aircraft::From(v
)->subtype
== AIR_HELICOPTER
) {
732 base_altitude
+= HELICOPTER_HOLD_MAX_FLYING_ALTITUDE
- PLANE_HOLD_MAX_FLYING_ALTITUDE
;
735 /* Make sure eastbound and westbound planes do not "crash" into each
736 * other by providing them with vertical separation
738 switch (v
->direction
) {
749 /* Make faster planes fly higher so that they can overtake slower ones */
750 base_altitude
+= std::min(20 * (v
->vcache
.cached_max_speed
/ 200) - 90, 0);
752 if (min_level
!= nullptr) *min_level
= base_altitude
+ AIRCRAFT_MIN_FLYING_ALTITUDE
;
753 if (max_level
!= nullptr) *max_level
= base_altitude
+ AIRCRAFT_MAX_FLYING_ALTITUDE
;
757 * Gets the maximum 'flight level' for the holding pattern of the aircraft,
758 * in pixels 'z_pos' 0, depending on terrain below.
760 * @param v The aircraft that may or may not need to decrease its altitude.
761 * @return Maximal aircraft holding altitude, while in normal flight, in pixels.
763 int GetAircraftHoldMaxAltitude(const Aircraft
*v
)
765 int tile_height
= GetTileHeightBelowAircraft(v
);
767 return tile_height
+ ((v
->subtype
== AIR_HELICOPTER
) ? HELICOPTER_HOLD_MAX_FLYING_ALTITUDE
: PLANE_HOLD_MAX_FLYING_ALTITUDE
);
771 int GetAircraftFlightLevel(T
*v
, bool takeoff
)
773 /* Aircraft is in flight. We want to enforce it being somewhere
774 * between the minimum and the maximum allowed altitude. */
775 int aircraft_min_altitude
;
776 int aircraft_max_altitude
;
777 GetAircraftFlightLevelBounds(v
, &aircraft_min_altitude
, &aircraft_max_altitude
);
778 int aircraft_middle_altitude
= (aircraft_min_altitude
+ aircraft_max_altitude
) / 2;
780 /* If those assumptions would be violated, aircraft would behave fairly strange. */
781 assert(aircraft_min_altitude
< aircraft_middle_altitude
);
782 assert(aircraft_middle_altitude
< aircraft_max_altitude
);
785 if (z
< aircraft_min_altitude
||
786 (HasBit(v
->flags
, VAF_IN_MIN_HEIGHT_CORRECTION
) && z
< aircraft_middle_altitude
)) {
787 /* Ascend. And don't fly into that mountain right ahead.
788 * And avoid our aircraft become a stairclimber, so if we start
789 * correcting altitude, then we stop correction not too early. */
790 SetBit(v
->flags
, VAF_IN_MIN_HEIGHT_CORRECTION
);
791 z
+= takeoff
? 2 : 1;
792 } else if (!takeoff
&& (z
> aircraft_max_altitude
||
793 (HasBit(v
->flags
, VAF_IN_MAX_HEIGHT_CORRECTION
) && z
> aircraft_middle_altitude
))) {
794 /* Descend lower. You are an aircraft, not an space ship.
795 * And again, don't stop correcting altitude too early. */
796 SetBit(v
->flags
, VAF_IN_MAX_HEIGHT_CORRECTION
);
798 } else if (HasBit(v
->flags
, VAF_IN_MIN_HEIGHT_CORRECTION
) && z
>= aircraft_middle_altitude
) {
799 /* Now, we have corrected altitude enough. */
800 ClrBit(v
->flags
, VAF_IN_MIN_HEIGHT_CORRECTION
);
801 } else if (HasBit(v
->flags
, VAF_IN_MAX_HEIGHT_CORRECTION
) && z
<= aircraft_middle_altitude
) {
802 /* Now, we have corrected altitude enough. */
803 ClrBit(v
->flags
, VAF_IN_MAX_HEIGHT_CORRECTION
);
809 template int GetAircraftFlightLevel(DisasterVehicle
*v
, bool takeoff
);
810 template int GetAircraftFlightLevel(Aircraft
*v
, bool takeoff
);
813 * Find the entry point to an airport depending on direction which
814 * the airport is being approached from. Each airport can have up to
815 * four entry points for its approach system so that approaching
816 * aircraft do not fly through each other or are forced to do 180
817 * degree turns during the approach. The arrivals are grouped into
818 * four sectors dependent on the DiagDirection from which the airport
821 * @param v The vehicle that is approaching the airport
822 * @param apc The Airport Class being approached.
823 * @param rotation The rotation of the airport.
824 * @return The index of the entry point
826 static uint8_t AircraftGetEntryPoint(const Aircraft
*v
, const AirportFTAClass
*apc
, Direction rotation
)
828 assert(v
!= nullptr);
829 assert(apc
!= nullptr);
831 /* In the case the station doesn't exit anymore, set target tile 0.
832 * It doesn't hurt much, aircraft will go to next order, nearest hangar
833 * or it will simply crash in next tick */
836 const Station
*st
= Station::GetIfValid(v
->targetairport
);
838 /* Make sure we don't go to INVALID_TILE if the airport has been removed. */
839 tile
= (st
->airport
.tile
!= INVALID_TILE
) ? st
->airport
.tile
: st
->xy
;
842 int delta_x
= v
->x_pos
- TileX(tile
) * TILE_SIZE
;
843 int delta_y
= v
->y_pos
- TileY(tile
) * TILE_SIZE
;
846 if (abs(delta_y
) < abs(delta_x
)) {
847 /* We are northeast or southwest of the airport */
848 dir
= delta_x
< 0 ? DIAGDIR_NE
: DIAGDIR_SW
;
850 /* We are northwest or southeast of the airport */
851 dir
= delta_y
< 0 ? DIAGDIR_NW
: DIAGDIR_SE
;
853 dir
= ChangeDiagDir(dir
, DiagDirDifference(DIAGDIR_NE
, DirToDiagDir(rotation
)));
854 return apc
->entry_points
[dir
];
858 static void MaybeCrashAirplane(Aircraft
*v
);
861 * Controls the movement of an aircraft. This function actually moves the vehicle
862 * on the map and takes care of minor things like sound playback.
863 * @todo De-mystify the cur_speed values for helicopter rotors.
864 * @param v The vehicle that is moved. Must be the first vehicle of the chain
865 * @return Whether the position requested by the State Machine has been reached
867 static bool AircraftController(Aircraft
*v
)
869 /* nullptr if station is invalid */
870 const Station
*st
= Station::GetIfValid(v
->targetairport
);
871 /* INVALID_TILE if there is no station */
872 TileIndex tile
= INVALID_TILE
;
873 Direction rotation
= DIR_N
;
874 uint size_x
= 1, size_y
= 1;
876 if (st
->airport
.tile
!= INVALID_TILE
) {
877 tile
= st
->airport
.tile
;
878 rotation
= st
->airport
.rotation
;
879 size_x
= st
->airport
.w
;
880 size_y
= st
->airport
.h
;
885 /* DUMMY if there is no station or no airport */
886 const AirportFTAClass
*afc
= tile
== INVALID_TILE
? GetAirport(AT_DUMMY
) : st
->airport
.GetFTA();
888 /* prevent going to INVALID_TILE if airport is deleted. */
889 if (st
== nullptr || st
->airport
.tile
== INVALID_TILE
) {
890 /* Jump into our "holding pattern" state machine if possible */
891 if (v
->pos
>= afc
->nofelements
) {
892 v
->pos
= v
->previous_pos
= AircraftGetEntryPoint(v
, afc
, DIR_N
);
893 } else if (v
->targetairport
!= v
->current_order
.GetDestination()) {
894 /* If not possible, just get out of here fast */
896 UpdateAircraftCache(v
);
897 AircraftNextAirportPos_and_Order(v
);
898 /* get aircraft back on running altitude */
899 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, GetAircraftFlightLevel(v
));
904 /* get airport moving data */
905 const AirportMovingData amd
= RotateAirportMovingData(afc
->MovingData(v
->pos
), rotation
, size_x
, size_y
);
907 int x
= TileX(tile
) * TILE_SIZE
;
908 int y
= TileY(tile
) * TILE_SIZE
;
910 /* Helicopter raise */
911 if (amd
.flag
& AMED_HELI_RAISE
) {
912 Aircraft
*u
= v
->Next()->Next();
914 /* Make sure the rotors don't rotate too fast */
915 if (u
->cur_speed
> 32) {
917 if (--u
->cur_speed
== 32) {
918 if (!PlayVehicleSound(v
, VSE_START
)) {
919 SoundID sfx
= AircraftVehInfo(v
->engine_type
)->sfx
;
920 /* For compatibility with old NewGRF we ignore the sfx property, unless a NewGRF-defined sound is used.
921 * The baseset has only one helicopter sound, so this only limits using plane or cow sounds. */
922 if (sfx
< ORIGINAL_SAMPLE_COUNT
) sfx
= SND_18_TAKEOFF_HELICOPTER
;
923 SndPlayVehicleFx(sfx
, v
);
928 int count
= UpdateAircraftSpeed(v
);
933 GetAircraftFlightLevelBounds(v
, &z_dest
, nullptr);
935 /* Reached altitude? */
936 if (v
->z_pos
>= z_dest
) {
940 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, std::min(v
->z_pos
+ count
, z_dest
));
946 /* Helicopter landing. */
947 if (amd
.flag
& AMED_HELI_LOWER
) {
948 SetBit(v
->flags
, VAF_HELI_DIRECT_DESCENT
);
951 /* FIXME - AircraftController -> if station no longer exists, do not land
952 * helicopter will circle until sign disappears, then go to next order
953 * what to do when it is the only order left, right now it just stays in 1 place */
955 UpdateAircraftCache(v
);
956 AircraftNextAirportPos_and_Order(v
);
960 /* Vehicle is now at the airport.
961 * Helicopter has arrived at the target landing pad, so the current position is also where it should land.
962 * Except for Oilrigs which are special due to being a 1x1 station, and helicopters land outside it. */
963 if (st
->airport
.type
!= AT_OILRIG
) {
966 tile
= TileVirtXY(x
, y
);
970 /* Find altitude of landing position. */
971 int z
= GetSlopePixelZ(x
, y
) + 1 + afc
->delta_z
;
974 Vehicle
*u
= v
->Next()->Next();
976 /* Increase speed of rotors. When speed is 80, we've landed. */
977 if (u
->cur_speed
>= 80) {
978 ClrBit(v
->flags
, VAF_HELI_DIRECT_DESCENT
);
983 int count
= UpdateAircraftSpeed(v
);
986 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, std::max(v
->z_pos
- count
, z
));
988 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, std::min(v
->z_pos
+ count
, z
));
995 /* Get distance from destination pos to current pos. */
996 uint dist
= abs(x
+ amd
.x
- v
->x_pos
) + abs(y
+ amd
.y
- v
->y_pos
);
998 /* Need exact position? */
999 if (!(amd
.flag
& AMED_EXACTPOS
) && dist
<= (amd
.flag
& AMED_SLOWTURN
? 8U : 4U)) return true;
1003 /* Change direction smoothly to final direction. */
1004 DirDiff dirdiff
= DirDifference(amd
.direction
, v
->direction
);
1005 /* if distance is 0, and plane points in right direction, no point in calling
1006 * UpdateAircraftSpeed(). So do it only afterwards */
1007 if (dirdiff
== DIRDIFF_SAME
) {
1012 if (!UpdateAircraftSpeed(v
, SPEED_LIMIT_TAXI
)) return false;
1014 v
->direction
= ChangeDir(v
->direction
, dirdiff
> DIRDIFF_REVERSE
? DIRDIFF_45LEFT
: DIRDIFF_45RIGHT
);
1017 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, v
->z_pos
);
1021 if (amd
.flag
& AMED_BRAKE
&& v
->cur_speed
> SPEED_LIMIT_TAXI
* _settings_game
.vehicle
.plane_speed
) {
1022 MaybeCrashAirplane(v
);
1023 if ((v
->vehstatus
& VS_CRASHED
) != 0) return false;
1026 uint speed_limit
= SPEED_LIMIT_TAXI
;
1027 bool hard_limit
= true;
1029 if (amd
.flag
& AMED_NOSPDCLAMP
) speed_limit
= SPEED_LIMIT_NONE
;
1030 if (amd
.flag
& AMED_HOLD
) { speed_limit
= SPEED_LIMIT_HOLD
; hard_limit
= false; }
1031 if (amd
.flag
& AMED_LAND
) { speed_limit
= SPEED_LIMIT_APPROACH
; hard_limit
= false; }
1032 if (amd
.flag
& AMED_BRAKE
) { speed_limit
= SPEED_LIMIT_TAXI
; hard_limit
= false; }
1034 int count
= UpdateAircraftSpeed(v
, speed_limit
, hard_limit
);
1035 if (count
== 0) return false;
1037 /* If the plane will be a few subpixels away from the destination after
1038 * this movement loop, start nudging it towards the exact position for
1039 * the whole loop. Otherwise, heavily depending on the speed of the plane,
1040 * it is possible we totally overshoot the target, causing the plane to
1041 * make a loop, and trying again, and again, and again .. */
1042 bool nudge_towards_target
= static_cast<uint
>(count
) + 3 > dist
;
1044 if (v
->turn_counter
!= 0) v
->turn_counter
--;
1048 GetNewVehiclePosResult gp
;
1050 if (nudge_towards_target
|| (amd
.flag
& AMED_LAND
)) {
1051 /* move vehicle one pixel towards target */
1052 gp
.x
= (v
->x_pos
!= (x
+ amd
.x
)) ?
1053 v
->x_pos
+ ((x
+ amd
.x
> v
->x_pos
) ? 1 : -1) :
1055 gp
.y
= (v
->y_pos
!= (y
+ amd
.y
)) ?
1056 v
->y_pos
+ ((y
+ amd
.y
> v
->y_pos
) ? 1 : -1) :
1059 /* Oilrigs must keep v->tile as st->airport.tile, since the landing pad is in a non-airport tile */
1060 gp
.new_tile
= (st
->airport
.type
== AT_OILRIG
) ? st
->airport
.tile
: TileVirtXY(gp
.x
, gp
.y
);
1064 /* Turn. Do it slowly if in the air. */
1065 Direction newdir
= GetDirectionTowards(v
, x
+ amd
.x
, y
+ amd
.y
);
1066 if (newdir
!= v
->direction
) {
1067 if (amd
.flag
& AMED_SLOWTURN
&& v
->number_consecutive_turns
< 8 && v
->subtype
== AIR_AIRCRAFT
) {
1068 if (v
->turn_counter
== 0 || newdir
== v
->last_direction
) {
1069 if (newdir
== v
->last_direction
) {
1070 v
->number_consecutive_turns
= 0;
1072 v
->number_consecutive_turns
++;
1074 v
->turn_counter
= 2 * _settings_game
.vehicle
.plane_speed
;
1075 v
->last_direction
= v
->direction
;
1076 v
->direction
= newdir
;
1080 gp
= GetNewVehiclePos(v
);
1083 v
->direction
= newdir
;
1085 /* When leaving a terminal an aircraft often goes to a position
1086 * directly in front of it. If it would move while turning it
1087 * would need an two extra turns to end up at the correct position.
1088 * To make it easier just disallow all moving while turning as
1089 * long as an aircraft is on the ground. */
1092 gp
.new_tile
= gp
.old_tile
= v
->tile
;
1095 v
->number_consecutive_turns
= 0;
1097 gp
= GetNewVehiclePos(v
);
1101 v
->tile
= gp
.new_tile
;
1102 /* If vehicle is in the air, use tile coordinate 0. */
1103 if (amd
.flag
& (AMED_TAKEOFF
| AMED_SLOWTURN
| AMED_LAND
)) v
->tile
= 0;
1105 /* Adjust Z for land or takeoff? */
1108 if (amd
.flag
& AMED_TAKEOFF
) {
1109 z
= GetAircraftFlightLevel(v
, true);
1110 } else if (amd
.flag
& AMED_HOLD
) {
1111 /* Let the plane drop from normal flight altitude to holding pattern altitude */
1112 if (z
> GetAircraftHoldMaxAltitude(v
)) z
--;
1113 } else if ((amd
.flag
& AMED_SLOWTURN
) && (amd
.flag
& AMED_NOSPDCLAMP
)) {
1114 z
= GetAircraftFlightLevel(v
);
1117 /* NewGRF airports (like a rotated intercontinental from OpenGFX+Airports) can be non-rectangular
1118 * and their primary (north-most) tile does not have to be part of the airport.
1119 * As such, the height of the primary tile can be different from the rest of the airport.
1120 * Given we are landing/breaking, and as such are not a helicopter, we know that there has to be a hangar.
1121 * We also know that the airport itself has to be completely flat (otherwise it is not a valid airport).
1122 * Therefore, use the height of this hangar to calculate our z-value. */
1123 int airport_z
= v
->z_pos
;
1124 if ((amd
.flag
& (AMED_LAND
| AMED_BRAKE
)) && st
!= nullptr) {
1125 assert(st
->airport
.HasHangar());
1126 TileIndex hangar_tile
= st
->airport
.GetHangarTile(0);
1127 airport_z
= GetTileMaxPixelZ(hangar_tile
) + 1; // To avoid clashing with the shadow
1130 if (amd
.flag
& AMED_LAND
) {
1131 if (st
->airport
.tile
== INVALID_TILE
) {
1132 /* Airport has been removed, abort the landing procedure */
1134 UpdateAircraftCache(v
);
1135 AircraftNextAirportPos_and_Order(v
);
1136 /* get aircraft back on running altitude */
1137 SetAircraftPosition(v
, gp
.x
, gp
.y
, GetAircraftFlightLevel(v
));
1141 /* We're not flying below our destination, right? */
1142 assert(airport_z
<= z
);
1143 int t
= std::max(1U, dist
- 4);
1144 int delta
= z
- airport_z
;
1146 /* Only start lowering when we're sufficiently close for a 1:1 glide */
1148 z
-= CeilDiv(z
- airport_z
, t
);
1150 if (z
< airport_z
) z
= airport_z
;
1153 /* We've landed. Decrease speed when we're reaching end of runway. */
1154 if (amd
.flag
& AMED_BRAKE
) {
1156 if (z
> airport_z
) {
1158 } else if (z
< airport_z
) {
1164 SetAircraftPosition(v
, gp
.x
, gp
.y
, z
);
1165 } while (--count
!= 0);
1170 * Handle crashed aircraft \a v.
1171 * @param v Crashed aircraft.
1173 static bool HandleCrashedAircraft(Aircraft
*v
)
1175 v
->crashed_counter
+= 3;
1177 Station
*st
= GetTargetAirportIfValid(v
);
1179 /* make aircraft crash down to the ground */
1180 if (v
->crashed_counter
< 500 && st
== nullptr && ((v
->crashed_counter
% 3) == 0) ) {
1181 int z
= GetSlopePixelZ(Clamp(v
->x_pos
, 0, Map::MaxX() * TILE_SIZE
), Clamp(v
->y_pos
, 0, Map::MaxY() * TILE_SIZE
));
1183 if (v
->z_pos
<= z
) {
1184 v
->crashed_counter
= 500;
1187 v
->crashed_counter
= 0;
1189 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, v
->z_pos
);
1192 if (v
->crashed_counter
< 650) {
1194 if (Chance16R(1, 32, r
)) {
1195 static const DirDiff delta
[] = {
1196 DIRDIFF_45LEFT
, DIRDIFF_SAME
, DIRDIFF_SAME
, DIRDIFF_45RIGHT
1199 v
->direction
= ChangeDir(v
->direction
, delta
[GB(r
, 16, 2)]);
1200 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, v
->z_pos
);
1202 CreateEffectVehicleRel(v
,
1206 EV_EXPLOSION_SMALL
);
1208 } else if (v
->crashed_counter
>= 10000) {
1209 /* remove rubble of crashed airplane */
1211 /* clear runway-in on all airports, set by crashing plane
1212 * small airports use AIRPORT_BUSY, city airports use RUNWAY_IN_OUT_block, etc.
1213 * but they all share the same number */
1214 if (st
!= nullptr) {
1215 CLRBITS(st
->airport
.flags
, RUNWAY_IN_block
);
1216 CLRBITS(st
->airport
.flags
, RUNWAY_IN_OUT_block
); // commuter airport
1217 CLRBITS(st
->airport
.flags
, RUNWAY_IN2_block
); // intercontinental
1230 * Handle smoke of broken aircraft.
1232 * @param mode Is this the non-first call for this vehicle in this tick?
1234 static void HandleAircraftSmoke(Aircraft
*v
, bool mode
)
1236 static const struct {
1250 if (!(v
->vehstatus
& VS_AIRCRAFT_BROKEN
)) return;
1252 /* Stop smoking when landed */
1253 if (v
->cur_speed
< 10) {
1254 v
->vehstatus
&= ~VS_AIRCRAFT_BROKEN
;
1255 v
->breakdown_ctr
= 0;
1259 /* Spawn effect et most once per Tick, i.e. !mode */
1260 if (!mode
&& (v
->tick_counter
& 0x0F) == 0) {
1261 CreateEffectVehicleRel(v
,
1262 smoke_pos
[v
->direction
].x
,
1263 smoke_pos
[v
->direction
].y
,
1265 EV_BREAKDOWN_SMOKE_AIRCRAFT
1270 void HandleMissingAircraftOrders(Aircraft
*v
)
1273 * We do not have an order. This can be divided into two cases:
1274 * 1) we are heading to an invalid station. In this case we must
1275 * find another airport to go to. If there is nowhere to go,
1276 * we will destroy the aircraft as it otherwise will enter
1277 * the holding pattern for the first airport, which can cause
1278 * the plane to go into an undefined state when building an
1279 * airport with the same StationID.
1280 * 2) we are (still) heading to a (still) valid airport, then we
1281 * can continue going there. This can happen when you are
1282 * changing the aircraft's orders while in-flight or in for
1283 * example a depot. However, when we have a current order to
1284 * go to a depot, we have to keep that order so the aircraft
1287 const Station
*st
= GetTargetAirportIfValid(v
);
1288 if (st
== nullptr) {
1289 Backup
<CompanyID
> cur_company(_current_company
, v
->owner
);
1290 CommandCost ret
= Command
<CMD_SEND_VEHICLE_TO_DEPOT
>::Do(DC_EXEC
, v
->index
, DepotCommand::None
, {});
1291 cur_company
.Restore();
1293 if (ret
.Failed()) CrashAirplane(v
);
1294 } else if (!v
->current_order
.IsType(OT_GOTO_DEPOT
)) {
1295 v
->current_order
.Free();
1300 TileIndex
Aircraft::GetOrderStationLocation(StationID
)
1302 /* Orders are changed in flight, ensure going to the right station. */
1303 if (this->state
== FLYING
) {
1304 AircraftNextAirportPos_and_Order(this);
1307 /* Aircraft do not use dest-tile */
1311 void Aircraft::MarkDirty()
1313 this->colourmap
= PAL_NONE
;
1314 this->UpdateViewport(true, false);
1315 if (this->subtype
== AIR_HELICOPTER
) {
1316 GetRotorImage(this, EIT_ON_MAP
, &this->Next()->Next()->sprite_cache
.sprite_seq
);
1321 uint
Aircraft::Crash(bool flooded
)
1323 uint victims
= Vehicle::Crash(flooded
) + 2; // pilots
1324 this->crashed_counter
= flooded
? 9000 : 0; // max 10000, disappear pretty fast when flooded
1330 * Bring the aircraft in a crashed state, create the explosion animation, and create a news item about the crash.
1331 * @param v Aircraft that crashed.
1333 static void CrashAirplane(Aircraft
*v
)
1335 CreateEffectVehicleRel(v
, 4, 4, 8, EV_EXPLOSION_LARGE
);
1337 uint victims
= v
->Crash();
1338 SetDParam(0, victims
);
1340 v
->cargo
.Truncate();
1341 v
->Next()->cargo
.Truncate();
1342 const Station
*st
= GetTargetAirportIfValid(v
);
1344 TileIndex vt
= TileVirtXY(v
->x_pos
, v
->y_pos
);
1345 if (st
== nullptr) {
1346 newsitem
= STR_NEWS_PLANE_CRASH_OUT_OF_FUEL
;
1348 SetDParam(1, st
->index
);
1349 newsitem
= STR_NEWS_AIRCRAFT_CRASH
;
1352 AI::NewEvent(v
->owner
, new ScriptEventVehicleCrashed(v
->index
, vt
, st
== nullptr ? ScriptEventVehicleCrashed::CRASH_AIRCRAFT_NO_AIRPORT
: ScriptEventVehicleCrashed::CRASH_PLANE_LANDING
, victims
));
1353 Game::NewEvent(new ScriptEventVehicleCrashed(v
->index
, vt
, st
== nullptr ? ScriptEventVehicleCrashed::CRASH_AIRCRAFT_NO_AIRPORT
: ScriptEventVehicleCrashed::CRASH_PLANE_LANDING
, victims
));
1355 NewsType newstype
= NT_ACCIDENT
;
1356 if (v
->owner
!= _local_company
) {
1357 newstype
= NT_ACCIDENT_OTHER
;
1360 AddTileNewsItem(newsitem
, newstype
, vt
, nullptr, st
!= nullptr ? st
->index
: INVALID_STATION
);
1362 ModifyStationRatingAround(vt
, v
->owner
, -160, 30);
1363 if (_settings_client
.sound
.disaster
) SndPlayVehicleFx(SND_12_EXPLOSION
, v
);
1367 * Decide whether aircraft \a v should crash.
1368 * @param v Aircraft to test.
1370 static void MaybeCrashAirplane(Aircraft
*v
)
1373 Station
*st
= Station::Get(v
->targetairport
);
1376 if ((st
->airport
.GetFTA()->flags
& AirportFTAClass::SHORT_STRIP
) &&
1377 (AircraftVehInfo(v
->engine_type
)->subtype
& AIR_FAST
) &&
1378 !_cheats
.no_jetcrash
.value
) {
1381 if (_settings_game
.vehicle
.plane_crashes
== 0) return;
1382 prob
= (0x4000 << _settings_game
.vehicle
.plane_crashes
) / 1500;
1385 if (GB(Random(), 0, 22) > prob
) return;
1387 /* Crash the airplane. Remove all goods stored at the station. */
1388 for (GoodsEntry
&ge
: st
->goods
) {
1390 ge
.cargo
.Truncate();
1397 * Aircraft arrives at a terminal. If it is the first aircraft, throw a party.
1398 * Start loading cargo.
1399 * @param v Aircraft that arrived.
1401 static void AircraftEntersTerminal(Aircraft
*v
)
1403 if (v
->current_order
.IsType(OT_GOTO_DEPOT
)) return;
1405 Station
*st
= Station::Get(v
->targetairport
);
1406 v
->last_station_visited
= v
->targetairport
;
1408 /* Check if station was ever visited before */
1409 if (!(st
->had_vehicle_of_type
& HVOT_AIRCRAFT
)) {
1410 st
->had_vehicle_of_type
|= HVOT_AIRCRAFT
;
1411 SetDParam(0, st
->index
);
1412 /* show newsitem of celebrating citizens */
1414 STR_NEWS_FIRST_AIRCRAFT_ARRIVAL
,
1415 (v
->owner
== _local_company
) ? NT_ARRIVAL_COMPANY
: NT_ARRIVAL_OTHER
,
1419 AI::NewEvent(v
->owner
, new ScriptEventStationFirstVehicle(st
->index
, v
->index
));
1420 Game::NewEvent(new ScriptEventStationFirstVehicle(st
->index
, v
->index
));
1427 * Aircraft touched down at the landing strip.
1428 * @param v Aircraft that landed.
1430 static void AircraftLandAirplane(Aircraft
*v
)
1432 Station
*st
= Station::Get(v
->targetairport
);
1434 TileIndex vt
= TileVirtXY(v
->x_pos
, v
->y_pos
);
1438 AirportTileAnimationTrigger(st
, vt
, AAT_STATION_AIRPLANE_LAND
);
1440 if (!PlayVehicleSound(v
, VSE_TOUCHDOWN
)) {
1441 SndPlayVehicleFx(SND_17_SKID_PLANE
, v
);
1446 /** set the right pos when heading to other airports after takeoff */
1447 void AircraftNextAirportPos_and_Order(Aircraft
*v
)
1449 if (v
->current_order
.IsType(OT_GOTO_STATION
) || v
->current_order
.IsType(OT_GOTO_DEPOT
)) {
1450 v
->targetairport
= v
->current_order
.GetDestination();
1453 const Station
*st
= GetTargetAirportIfValid(v
);
1454 const AirportFTAClass
*apc
= st
== nullptr ? GetAirport(AT_DUMMY
) : st
->airport
.GetFTA();
1455 Direction rotation
= st
== nullptr ? DIR_N
: st
->airport
.rotation
;
1456 v
->pos
= v
->previous_pos
= AircraftGetEntryPoint(v
, apc
, rotation
);
1460 * Aircraft is about to leave the hangar.
1461 * @param v Aircraft leaving.
1462 * @param exit_dir The direction the vehicle leaves the hangar.
1463 * @note This function is called in AfterLoadGame for old savegames, so don't rely
1464 * on any data to be valid, especially don't rely on the fact that the vehicle
1465 * is actually on the ground inside a depot.
1467 void AircraftLeaveHangar(Aircraft
*v
, Direction exit_dir
)
1472 v
->direction
= exit_dir
;
1473 v
->vehstatus
&= ~VS_HIDDEN
;
1475 Vehicle
*u
= v
->Next();
1476 u
->vehstatus
&= ~VS_HIDDEN
;
1481 u
->vehstatus
&= ~VS_HIDDEN
;
1486 VehicleServiceInDepot(v
);
1487 v
->LeaveUnbunchingDepot();
1488 SetAircraftPosition(v
, v
->x_pos
, v
->y_pos
, v
->z_pos
);
1489 InvalidateWindowData(WC_VEHICLE_DEPOT
, v
->tile
);
1490 SetWindowClassesDirty(WC_AIRCRAFT_LIST
);
1493 ////////////////////////////////////////////////////////////////////////////////
1494 /////////////////// AIRCRAFT MOVEMENT SCHEME ////////////////////////////////
1495 ////////////////////////////////////////////////////////////////////////////////
1496 static void AircraftEventHandler_EnterTerminal(Aircraft
*v
, const AirportFTAClass
*apc
)
1498 AircraftEntersTerminal(v
);
1499 v
->state
= apc
->layout
[v
->pos
].heading
;
1503 * Aircraft arrived in an airport hangar.
1504 * @param v Aircraft in the hangar.
1505 * @param apc Airport description containing the hangar.
1507 static void AircraftEventHandler_EnterHangar(Aircraft
*v
, const AirportFTAClass
*apc
)
1509 VehicleEnterDepot(v
);
1510 v
->state
= apc
->layout
[v
->pos
].heading
;
1514 * Handle aircraft movement/decision making in an airport hangar.
1515 * @param v Aircraft in the hangar.
1516 * @param apc Airport description containing the hangar.
1518 static void AircraftEventHandler_InHangar(Aircraft
*v
, const AirportFTAClass
*apc
)
1520 /* if we just arrived, execute EnterHangar first */
1521 if (v
->previous_pos
!= v
->pos
) {
1522 AircraftEventHandler_EnterHangar(v
, apc
);
1526 /* if we were sent to the depot, stay there */
1527 if (v
->current_order
.IsType(OT_GOTO_DEPOT
) && (v
->vehstatus
& VS_STOPPED
)) {
1528 v
->current_order
.Free();
1532 /* Check if we should wait here for unbunching. */
1533 if (v
->IsWaitingForUnbunching()) return;
1535 if (!v
->current_order
.IsType(OT_GOTO_STATION
) &&
1536 !v
->current_order
.IsType(OT_GOTO_DEPOT
))
1539 /* We are leaving a hangar, but have to go to the exact same one; re-enter */
1540 if (v
->current_order
.IsType(OT_GOTO_DEPOT
) && v
->current_order
.GetDestination() == v
->targetairport
) {
1541 VehicleEnterDepot(v
);
1545 /* if the block of the next position is busy, stay put */
1546 if (AirportHasBlock(v
, &apc
->layout
[v
->pos
], apc
)) return;
1548 /* We are already at the target airport, we need to find a terminal */
1549 if (v
->current_order
.GetDestination() == v
->targetairport
) {
1550 /* FindFreeTerminal:
1551 * 1. Find a free terminal, 2. Occupy it, 3. Set the vehicle's state to that terminal */
1552 if (v
->subtype
== AIR_HELICOPTER
) {
1553 if (!AirportFindFreeHelipad(v
, apc
)) return; // helicopter
1555 if (!AirportFindFreeTerminal(v
, apc
)) return; // airplane
1557 } else { // Else prepare for launch.
1558 /* airplane goto state takeoff, helicopter to helitakeoff */
1559 v
->state
= (v
->subtype
== AIR_HELICOPTER
) ? HELITAKEOFF
: TAKEOFF
;
1561 const Station
*st
= Station::GetByTile(v
->tile
);
1562 AircraftLeaveHangar(v
, st
->airport
.GetHangarExitDirection(v
->tile
));
1563 AirportMove(v
, apc
);
1566 /** At one of the Airport's Terminals */
1567 static void AircraftEventHandler_AtTerminal(Aircraft
*v
, const AirportFTAClass
*apc
)
1569 /* if we just arrived, execute EnterTerminal first */
1570 if (v
->previous_pos
!= v
->pos
) {
1571 AircraftEventHandler_EnterTerminal(v
, apc
);
1572 /* on an airport with helipads, a helicopter will always land there
1573 * and get serviced at the same time - setting */
1574 if (_settings_game
.order
.serviceathelipad
) {
1575 if (v
->subtype
== AIR_HELICOPTER
&& apc
->num_helipads
> 0) {
1576 /* an excerpt of ServiceAircraft, without the invisibility stuff */
1577 v
->date_of_last_service
= TimerGameEconomy::date
;
1578 v
->date_of_last_service_newgrf
= TimerGameCalendar::date
;
1579 v
->breakdowns_since_last_service
= 0;
1580 v
->reliability
= v
->GetEngine()->reliability
;
1581 SetWindowDirty(WC_VEHICLE_DETAILS
, v
->index
);
1587 if (v
->current_order
.IsType(OT_NOTHING
)) return;
1589 /* if the block of the next position is busy, stay put */
1590 if (AirportHasBlock(v
, &apc
->layout
[v
->pos
], apc
)) return;
1592 /* airport-road is free. We either have to go to another airport, or to the hangar
1593 * ---> start moving */
1595 bool go_to_hangar
= false;
1596 switch (v
->current_order
.GetType()) {
1597 case OT_GOTO_STATION
: // ready to fly to another airport
1599 case OT_GOTO_DEPOT
: // visit hangar for servicing, sale, etc.
1600 go_to_hangar
= v
->current_order
.GetDestination() == v
->targetairport
;
1602 case OT_CONDITIONAL
:
1603 /* In case of a conditional order we just have to wait a tick
1604 * longer, so the conditional order can actually be processed;
1605 * we should not clear the order as that makes us go nowhere. */
1607 default: // orders have been deleted (no orders), goto depot and don't bother us
1608 v
->current_order
.Free();
1609 go_to_hangar
= true;
1612 if (go_to_hangar
&& Station::Get(v
->targetairport
)->airport
.HasHangar()) {
1615 /* airplane goto state takeoff, helicopter to helitakeoff */
1616 v
->state
= (v
->subtype
== AIR_HELICOPTER
) ? HELITAKEOFF
: TAKEOFF
;
1618 AirportMove(v
, apc
);
1621 static void AircraftEventHandler_General(Aircraft
*, const AirportFTAClass
*)
1623 FatalError("OK, you shouldn't be here, check your Airport Scheme!");
1626 static void AircraftEventHandler_TakeOff(Aircraft
*v
, const AirportFTAClass
*)
1628 PlayAircraftSound(v
); // play takeoffsound for airplanes
1629 v
->state
= STARTTAKEOFF
;
1632 static void AircraftEventHandler_StartTakeOff(Aircraft
*v
, const AirportFTAClass
*)
1634 v
->state
= ENDTAKEOFF
;
1638 static void AircraftEventHandler_EndTakeOff(Aircraft
*v
, const AirportFTAClass
*)
1641 /* get the next position to go to, differs per airport */
1642 AircraftNextAirportPos_and_Order(v
);
1645 static void AircraftEventHandler_HeliTakeOff(Aircraft
*v
, const AirportFTAClass
*)
1650 /* get the next position to go to, differs per airport */
1651 AircraftNextAirportPos_and_Order(v
);
1653 /* Send the helicopter to a hangar if needed for replacement */
1654 if (v
->NeedsAutomaticServicing()) {
1655 Backup
<CompanyID
> cur_company(_current_company
, v
->owner
);
1656 Command
<CMD_SEND_VEHICLE_TO_DEPOT
>::Do(DC_EXEC
, v
->index
, DepotCommand::Service
| DepotCommand::LocateHangar
, {});
1657 cur_company
.Restore();
1661 static void AircraftEventHandler_Flying(Aircraft
*v
, const AirportFTAClass
*apc
)
1663 Station
*st
= Station::Get(v
->targetairport
);
1665 /* Runway busy, not allowed to use this airstation or closed, circle. */
1666 if (CanVehicleUseStation(v
, st
) && (st
->owner
== OWNER_NONE
|| st
->owner
== v
->owner
) && !(st
->airport
.flags
& AIRPORT_CLOSED_block
)) {
1667 /* {32,FLYING,NOTHING_block,37}, {32,LANDING,N,33}, {32,HELILANDING,N,41},
1668 * if it is an airplane, look for LANDING, for helicopter HELILANDING
1669 * it is possible to choose from multiple landing runways, so loop until a free one is found */
1670 uint8_t landingtype
= (v
->subtype
== AIR_HELICOPTER
) ? HELILANDING
: LANDING
;
1671 const AirportFTA
*current
= apc
->layout
[v
->pos
].next
;
1672 while (current
!= nullptr) {
1673 if (current
->heading
== landingtype
) {
1674 /* save speed before, since if AirportHasBlock is false, it resets them to 0
1675 * we don't want that for plane in air
1676 * hack for speed thingie */
1677 uint16_t tcur_speed
= v
->cur_speed
;
1678 uint16_t tsubspeed
= v
->subspeed
;
1679 if (!AirportHasBlock(v
, current
, apc
)) {
1680 v
->state
= landingtype
; // LANDING / HELILANDING
1681 if (v
->state
== HELILANDING
) SetBit(v
->flags
, VAF_HELI_DIRECT_DESCENT
);
1682 /* it's a bit dirty, but I need to set position to next position, otherwise
1683 * if there are multiple runways, plane won't know which one it took (because
1684 * they all have heading LANDING). And also occupy that block! */
1685 v
->pos
= current
->next_position
;
1686 SETBITS(st
->airport
.flags
, apc
->layout
[v
->pos
].block
);
1689 v
->cur_speed
= tcur_speed
;
1690 v
->subspeed
= tsubspeed
;
1692 current
= current
->next
;
1696 v
->pos
= apc
->layout
[v
->pos
].next_position
;
1699 static void AircraftEventHandler_Landing(Aircraft
*v
, const AirportFTAClass
*)
1701 v
->state
= ENDLANDING
;
1702 AircraftLandAirplane(v
); // maybe crash airplane
1704 /* check if the aircraft needs to be replaced or renewed and send it to a hangar if needed */
1705 if (v
->NeedsAutomaticServicing()) {
1706 Backup
<CompanyID
> cur_company(_current_company
, v
->owner
);
1707 Command
<CMD_SEND_VEHICLE_TO_DEPOT
>::Do(DC_EXEC
, v
->index
, DepotCommand::Service
, {});
1708 cur_company
.Restore();
1712 static void AircraftEventHandler_HeliLanding(Aircraft
*v
, const AirportFTAClass
*)
1714 v
->state
= HELIENDLANDING
;
1718 static void AircraftEventHandler_EndLanding(Aircraft
*v
, const AirportFTAClass
*apc
)
1720 /* next block busy, don't do a thing, just wait */
1721 if (AirportHasBlock(v
, &apc
->layout
[v
->pos
], apc
)) return;
1723 /* if going to terminal (OT_GOTO_STATION) choose one
1724 * 1. in case all terminals are busy AirportFindFreeTerminal() returns false or
1725 * 2. not going for terminal (but depot, no order),
1726 * --> get out of the way to the hangar. */
1727 if (v
->current_order
.IsType(OT_GOTO_STATION
)) {
1728 if (AirportFindFreeTerminal(v
, apc
)) return;
1734 static void AircraftEventHandler_HeliEndLanding(Aircraft
*v
, const AirportFTAClass
*apc
)
1736 /* next block busy, don't do a thing, just wait */
1737 if (AirportHasBlock(v
, &apc
->layout
[v
->pos
], apc
)) return;
1739 /* if going to helipad (OT_GOTO_STATION) choose one. If airport doesn't have helipads, choose terminal
1740 * 1. in case all terminals/helipads are busy (AirportFindFreeHelipad() returns false) or
1741 * 2. not going for terminal (but depot, no order),
1742 * --> get out of the way to the hangar IF there are terminals on the airport.
1744 * the reason behind this is that if an airport has a terminal, it also has a hangar. Airplanes
1745 * must go to a hangar. */
1746 if (v
->current_order
.IsType(OT_GOTO_STATION
)) {
1747 if (AirportFindFreeHelipad(v
, apc
)) return;
1749 v
->state
= Station::Get(v
->targetairport
)->airport
.HasHangar() ? HANGAR
: HELITAKEOFF
;
1753 * Signature of the aircraft handler function.
1754 * @param v Aircraft to handle.
1755 * @param apc Airport state machine.
1757 typedef void AircraftStateHandler(Aircraft
*v
, const AirportFTAClass
*apc
);
1758 /** Array of handler functions for each target of the aircraft. */
1759 static AircraftStateHandler
* const _aircraft_state_handlers
[] = {
1760 AircraftEventHandler_General
, // TO_ALL = 0
1761 AircraftEventHandler_InHangar
, // HANGAR = 1
1762 AircraftEventHandler_AtTerminal
, // TERM1 = 2
1763 AircraftEventHandler_AtTerminal
, // TERM2 = 3
1764 AircraftEventHandler_AtTerminal
, // TERM3 = 4
1765 AircraftEventHandler_AtTerminal
, // TERM4 = 5
1766 AircraftEventHandler_AtTerminal
, // TERM5 = 6
1767 AircraftEventHandler_AtTerminal
, // TERM6 = 7
1768 AircraftEventHandler_AtTerminal
, // HELIPAD1 = 8
1769 AircraftEventHandler_AtTerminal
, // HELIPAD2 = 9
1770 AircraftEventHandler_TakeOff
, // TAKEOFF = 10
1771 AircraftEventHandler_StartTakeOff
, // STARTTAKEOFF = 11
1772 AircraftEventHandler_EndTakeOff
, // ENDTAKEOFF = 12
1773 AircraftEventHandler_HeliTakeOff
, // HELITAKEOFF = 13
1774 AircraftEventHandler_Flying
, // FLYING = 14
1775 AircraftEventHandler_Landing
, // LANDING = 15
1776 AircraftEventHandler_EndLanding
, // ENDLANDING = 16
1777 AircraftEventHandler_HeliLanding
, // HELILANDING = 17
1778 AircraftEventHandler_HeliEndLanding
, // HELIENDLANDING = 18
1779 AircraftEventHandler_AtTerminal
, // TERM7 = 19
1780 AircraftEventHandler_AtTerminal
, // TERM8 = 20
1781 AircraftEventHandler_AtTerminal
, // HELIPAD3 = 21
1784 static void AirportClearBlock(const Aircraft
*v
, const AirportFTAClass
*apc
)
1786 /* we have left the previous block, and entered the new one. Free the previous block */
1787 if (apc
->layout
[v
->previous_pos
].block
!= apc
->layout
[v
->pos
].block
) {
1788 Station
*st
= Station::Get(v
->targetairport
);
1790 CLRBITS(st
->airport
.flags
, apc
->layout
[v
->previous_pos
].block
);
1794 static void AirportGoToNextPosition(Aircraft
*v
)
1796 /* if aircraft is not in position, wait until it is */
1797 if (!AircraftController(v
)) return;
1799 const AirportFTAClass
*apc
= Station::Get(v
->targetairport
)->airport
.GetFTA();
1801 AirportClearBlock(v
, apc
);
1802 AirportMove(v
, apc
); // move aircraft to next position
1805 /* gets pos from vehicle and next orders */
1806 static bool AirportMove(Aircraft
*v
, const AirportFTAClass
*apc
)
1808 /* error handling */
1809 if (v
->pos
>= apc
->nofelements
) {
1810 Debug(misc
, 0, "[Ap] position {} is not valid for current airport. Max position is {}", v
->pos
, apc
->nofelements
-1);
1811 assert(v
->pos
< apc
->nofelements
);
1814 const AirportFTA
*current
= &apc
->layout
[v
->pos
];
1815 /* we have arrived in an important state (eg terminal, hangar, etc.) */
1816 if (current
->heading
== v
->state
) {
1817 uint8_t prev_pos
= v
->pos
; // location could be changed in state, so save it before-hand
1818 uint8_t prev_state
= v
->state
;
1819 _aircraft_state_handlers
[v
->state
](v
, apc
);
1820 if (v
->state
!= FLYING
) v
->previous_pos
= prev_pos
;
1821 if (v
->state
!= prev_state
|| v
->pos
!= prev_pos
) UpdateAircraftCache(v
);
1825 v
->previous_pos
= v
->pos
; // save previous location
1827 /* there is only one choice to move to */
1828 if (current
->next
== nullptr) {
1829 if (AirportSetBlocks(v
, current
, apc
)) {
1830 v
->pos
= current
->next_position
;
1831 UpdateAircraftCache(v
);
1832 } // move to next position
1836 /* there are more choices to choose from, choose the one that
1837 * matches our heading */
1839 if (v
->state
== current
->heading
|| current
->heading
== TO_ALL
) {
1840 if (AirportSetBlocks(v
, current
, apc
)) {
1841 v
->pos
= current
->next_position
;
1842 UpdateAircraftCache(v
);
1843 } // move to next position
1846 current
= current
->next
;
1847 } while (current
!= nullptr);
1849 Debug(misc
, 0, "[Ap] cannot move further on Airport! (pos {} state {}) for vehicle {}", v
->pos
, v
->state
, v
->index
);
1853 /** returns true if the road ahead is busy, eg. you must wait before proceeding. */
1854 static bool AirportHasBlock(Aircraft
*v
, const AirportFTA
*current_pos
, const AirportFTAClass
*apc
)
1856 const AirportFTA
*reference
= &apc
->layout
[v
->pos
];
1857 const AirportFTA
*next
= &apc
->layout
[current_pos
->next_position
];
1859 /* same block, then of course we can move */
1860 if (apc
->layout
[current_pos
->position
].block
!= next
->block
) {
1861 const Station
*st
= Station::Get(v
->targetairport
);
1862 uint64_t airport_flags
= next
->block
;
1864 /* check additional possible extra blocks */
1865 if (current_pos
!= reference
&& current_pos
->block
!= NOTHING_block
) {
1866 airport_flags
|= current_pos
->block
;
1869 if (st
->airport
.flags
& airport_flags
) {
1879 * "reserve" a block for the plane
1880 * @param v airplane that requires the operation
1881 * @param current_pos of the vehicle in the list of blocks
1882 * @param apc airport on which block is requested to be set
1883 * @returns true on success. Eg, next block was free and we have occupied it
1885 static bool AirportSetBlocks(Aircraft
*v
, const AirportFTA
*current_pos
, const AirportFTAClass
*apc
)
1887 const AirportFTA
*next
= &apc
->layout
[current_pos
->next_position
];
1888 const AirportFTA
*reference
= &apc
->layout
[v
->pos
];
1890 /* if the next position is in another block, check it and wait until it is free */
1891 if ((apc
->layout
[current_pos
->position
].block
& next
->block
) != next
->block
) {
1892 uint64_t airport_flags
= next
->block
;
1893 /* search for all all elements in the list with the same state, and blocks != N
1894 * this means more blocks should be checked/set */
1895 const AirportFTA
*current
= current_pos
;
1896 if (current
== reference
) current
= current
->next
;
1897 while (current
!= nullptr) {
1898 if (current
->heading
== current_pos
->heading
&& current
->block
!= 0) {
1899 airport_flags
|= current
->block
;
1902 current
= current
->next
;
1905 /* if the block to be checked is in the next position, then exclude that from
1906 * checking, because it has been set by the airplane before */
1907 if (current_pos
->block
== next
->block
) airport_flags
^= next
->block
;
1909 Station
*st
= Station::Get(v
->targetairport
);
1910 if (st
->airport
.flags
& airport_flags
) {
1916 if (next
->block
!= NOTHING_block
) {
1917 SETBITS(st
->airport
.flags
, airport_flags
); // occupy next block
1924 * Combination of aircraft state for going to a certain terminal and the
1925 * airport flag for that terminal block.
1927 struct MovementTerminalMapping
{
1928 AirportMovementStates state
; ///< Aircraft movement state when going to this terminal.
1929 uint64_t airport_flag
; ///< Bitmask in the airport flags that need to be free for this terminal.
1932 /** A list of all valid terminals and their associated blocks. */
1933 static const MovementTerminalMapping _airport_terminal_mapping
[] = {
1934 {TERM1
, TERM1_block
},
1935 {TERM2
, TERM2_block
},
1936 {TERM3
, TERM3_block
},
1937 {TERM4
, TERM4_block
},
1938 {TERM5
, TERM5_block
},
1939 {TERM6
, TERM6_block
},
1940 {TERM7
, TERM7_block
},
1941 {TERM8
, TERM8_block
},
1942 {HELIPAD1
, HELIPAD1_block
},
1943 {HELIPAD2
, HELIPAD2_block
},
1944 {HELIPAD3
, HELIPAD3_block
},
1948 * Find a free terminal or helipad, and if available, assign it.
1949 * @param v Aircraft looking for a free terminal or helipad.
1950 * @param i First terminal to examine.
1951 * @param last_terminal Terminal number to stop examining.
1952 * @return A terminal or helipad has been found, and has been assigned to the aircraft.
1954 static bool FreeTerminal(Aircraft
*v
, uint8_t i
, uint8_t last_terminal
)
1956 assert(last_terminal
<= lengthof(_airport_terminal_mapping
));
1957 Station
*st
= Station::Get(v
->targetairport
);
1958 for (; i
< last_terminal
; i
++) {
1959 if ((st
->airport
.flags
& _airport_terminal_mapping
[i
].airport_flag
) == 0) {
1960 /* TERMINAL# HELIPAD# */
1961 v
->state
= _airport_terminal_mapping
[i
].state
; // start moving to that terminal/helipad
1962 SETBITS(st
->airport
.flags
, _airport_terminal_mapping
[i
].airport_flag
); // occupy terminal/helipad
1970 * Get the number of terminals at the airport.
1971 * @param apc Airport description.
1972 * @return Number of terminals.
1974 static uint
GetNumTerminals(const AirportFTAClass
*apc
)
1978 for (uint i
= apc
->terminals
[0]; i
> 0; i
--) num
+= apc
->terminals
[i
];
1984 * Find a free terminal, and assign it if available.
1985 * @param v Aircraft to handle.
1986 * @param apc Airport state machine.
1987 * @return Found a free terminal and assigned it.
1989 static bool AirportFindFreeTerminal(Aircraft
*v
, const AirportFTAClass
*apc
)
1991 /* example of more terminalgroups
1992 * {0,HANGAR,NOTHING_block,1}, {0,TERMGROUP,TERM_GROUP1_block,0}, {0,TERMGROUP,TERM_GROUP2_ENTER_block,1}, {0,0,N,1},
1993 * Heading TERMGROUP denotes a group. We see 2 groups here:
1994 * 1. group 0 -- TERM_GROUP1_block (check block)
1995 * 2. group 1 -- TERM_GROUP2_ENTER_block (check block)
1996 * First in line is checked first, group 0. If the block (TERM_GROUP1_block) is free, it
1997 * looks at the corresponding terminals of that group. If no free ones are found, other
1998 * possible groups are checked (in this case group 1, since that is after group 0). If that
1999 * fails, then attempt fails and plane waits
2001 if (apc
->terminals
[0] > 1) {
2002 const Station
*st
= Station::Get(v
->targetairport
);
2003 const AirportFTA
*temp
= apc
->layout
[v
->pos
].next
;
2005 while (temp
!= nullptr) {
2006 if (temp
->heading
== TERMGROUP
) {
2007 if (!(st
->airport
.flags
& temp
->block
)) {
2008 /* read which group do we want to go to?
2009 * (the first free group) */
2010 uint target_group
= temp
->next_position
+ 1;
2012 /* at what terminal does the group start?
2013 * that means, sum up all terminals of
2014 * groups with lower number */
2015 uint group_start
= 0;
2016 for (uint i
= 1; i
< target_group
; i
++) {
2017 group_start
+= apc
->terminals
[i
];
2020 uint group_end
= group_start
+ apc
->terminals
[target_group
];
2021 if (FreeTerminal(v
, group_start
, group_end
)) return true;
2024 /* once the heading isn't 255, we've exhausted the possible blocks.
2025 * So we cannot move */
2032 /* if there is only 1 terminalgroup, all terminals are checked (starting from 0 to max) */
2033 return FreeTerminal(v
, 0, GetNumTerminals(apc
));
2037 * Find a free helipad, and assign it if available.
2038 * @param v Aircraft to handle.
2039 * @param apc Airport state machine.
2040 * @return Found a free helipad and assigned it.
2042 static bool AirportFindFreeHelipad(Aircraft
*v
, const AirportFTAClass
*apc
)
2044 /* if an airport doesn't have helipads, use terminals */
2045 if (apc
->num_helipads
== 0) return AirportFindFreeTerminal(v
, apc
);
2047 /* only 1 helicoptergroup, check all helipads
2048 * The blocks for helipads start after the last terminal (MAX_TERMINALS) */
2049 return FreeTerminal(v
, MAX_TERMINALS
, apc
->num_helipads
+ MAX_TERMINALS
);
2053 * Handle the 'dest too far' flag and the corresponding news message for aircraft.
2054 * @param v The aircraft.
2055 * @param too_far True if the current destination is too far away.
2057 static void AircraftHandleDestTooFar(Aircraft
*v
, bool too_far
)
2060 if (!HasBit(v
->flags
, VAF_DEST_TOO_FAR
)) {
2061 SetBit(v
->flags
, VAF_DEST_TOO_FAR
);
2062 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
2063 AI::NewEvent(v
->owner
, new ScriptEventAircraftDestTooFar(v
->index
));
2064 if (v
->owner
== _local_company
) {
2065 /* Post a news message. */
2066 SetDParam(0, v
->index
);
2067 AddVehicleAdviceNewsItem(STR_NEWS_AIRCRAFT_DEST_TOO_FAR
, v
->index
);
2073 if (HasBit(v
->flags
, VAF_DEST_TOO_FAR
)) {
2074 /* Not too far anymore, clear flag and message. */
2075 ClrBit(v
->flags
, VAF_DEST_TOO_FAR
);
2076 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
2077 DeleteVehicleNews(v
->index
, STR_NEWS_AIRCRAFT_DEST_TOO_FAR
);
2081 static bool AircraftEventHandler(Aircraft
*v
, int loop
)
2083 if (v
->vehstatus
& VS_CRASHED
) {
2084 return HandleCrashedAircraft(v
);
2087 if (v
->vehstatus
& VS_STOPPED
) return true;
2089 v
->HandleBreakdown();
2091 HandleAircraftSmoke(v
, loop
!= 0);
2093 v
->HandleLoading(loop
!= 0);
2095 if (v
->current_order
.IsType(OT_LOADING
) || v
->current_order
.IsType(OT_LEAVESTATION
)) return true;
2097 if (v
->state
>= ENDTAKEOFF
&& v
->state
<= HELIENDLANDING
) {
2098 /* If we are flying, unconditionally clear the 'dest too far' state. */
2099 AircraftHandleDestTooFar(v
, false);
2100 } else if (v
->acache
.cached_max_range_sqr
!= 0) {
2101 /* Check the distance to the next destination. This code works because the target
2102 * airport is only updated after take off and not on the ground. */
2103 Station
*cur_st
= Station::GetIfValid(v
->targetairport
);
2104 Station
*next_st
= v
->current_order
.IsType(OT_GOTO_STATION
) || v
->current_order
.IsType(OT_GOTO_DEPOT
) ? Station::GetIfValid(v
->current_order
.GetDestination()) : nullptr;
2106 if (cur_st
!= nullptr && cur_st
->airport
.tile
!= INVALID_TILE
&& next_st
!= nullptr && next_st
->airport
.tile
!= INVALID_TILE
) {
2107 uint dist
= DistanceSquare(cur_st
->airport
.tile
, next_st
->airport
.tile
);
2108 AircraftHandleDestTooFar(v
, dist
> v
->acache
.cached_max_range_sqr
);
2112 if (!HasBit(v
->flags
, VAF_DEST_TOO_FAR
)) AirportGoToNextPosition(v
);
2117 bool Aircraft::Tick()
2119 if (!this->IsNormalAircraft()) return true;
2121 PerformanceAccumulator
framerate(PFE_GL_AIRCRAFT
);
2123 this->tick_counter
++;
2125 if (!(this->vehstatus
& VS_STOPPED
)) this->running_ticks
++;
2127 if (this->subtype
== AIR_HELICOPTER
) HelicopterTickHandler(this);
2129 this->current_order_time
++;
2131 for (uint i
= 0; i
!= 2; i
++) {
2132 /* stop if the aircraft was deleted */
2133 if (!AircraftEventHandler(this, i
)) return false;
2141 * Returns aircraft's target station if v->target_airport
2142 * is a valid station with airport.
2143 * @param v vehicle to get target airport for
2144 * @return pointer to target station, nullptr if invalid
2146 Station
*GetTargetAirportIfValid(const Aircraft
*v
)
2148 assert(v
->type
== VEH_AIRCRAFT
);
2150 Station
*st
= Station::GetIfValid(v
->targetairport
);
2151 if (st
== nullptr) return nullptr;
2153 return st
->airport
.tile
== INVALID_TILE
? nullptr : st
;
2157 * Updates the status of the Aircraft heading or in the station
2158 * @param st Station been updated
2160 void UpdateAirplanesOnNewStation(const Station
*st
)
2162 /* only 1 station is updated per function call, so it is enough to get entry_point once */
2163 const AirportFTAClass
*ap
= st
->airport
.GetFTA();
2164 Direction rotation
= st
->airport
.tile
== INVALID_TILE
? DIR_N
: st
->airport
.rotation
;
2166 for (Aircraft
*v
: Aircraft::Iterate()) {
2167 if (!v
->IsNormalAircraft() || v
->targetairport
!= st
->index
) continue;
2168 assert(v
->state
== FLYING
);
2170 Order
*o
= &v
->current_order
;
2171 /* The aircraft is heading to a hangar, but the new station doesn't have one,
2172 * or the aircraft can't land on the new station. Cancel current order. */
2173 if (o
->IsType(OT_GOTO_DEPOT
) && !(o
->GetDepotOrderType() & ODTFB_PART_OF_ORDERS
) && o
->GetDestination() == st
->index
&&
2174 (!st
->airport
.HasHangar() || !CanVehicleUseStation(v
, st
))) {
2176 SetWindowWidgetDirty(WC_VEHICLE_VIEW
, v
->index
, WID_VV_START_STOP
);
2178 v
->pos
= v
->previous_pos
= AircraftGetEntryPoint(v
, ap
, rotation
);
2179 UpdateAircraftCache(v
);
2182 /* Heliports don't have a hangar. Invalidate all go to hangar orders from all aircraft. */
2183 if (!st
->airport
.HasHangar()) RemoveOrderFromAllVehicles(OT_GOTO_DEPOT
, st
->index
, true);