BIS fnc aircraftTailhook: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " {{Function|Comments=" to "{{Function|Comments=")
m (formatting)
(26 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function
____________________________________________________________________________________________


| arma3 |Game name=
|game1= arma3
|version1= 1.68


|1.00|Game version=
|arg= local
____________________________________________________________________________________________


| <pre>/*
|gr1= Aircraft Carrier
Author: Bravo Zero One development
- John_Spartan


Description:
|descr= Aircraft carrier arrest/recovery function for USS Freedom aircraft carrier. If the aircraft exceeds the speed defined in config a wire snap will be simulated.
Aircrfat carrier arrest/recovery function for USS Freedom aircraft carrier


Exucution:
|s1= [aircraft] call [[BIS_fnc_aircraftTailhook]]
Call the function via user-action or script for any compatible fixed wing aircrfat
[this] spawn bis_fnc_aircraftTailhook;


Requirments:
|p1= aircraft: [[Object]] - the aircraft to arrest/recover
- Compatible aircrfat must have an animation for arrest/tail hook selection defined in CfgCehicles and modeled in 3D model (model.cfg)
- Compatible aircrfat must have a memory point for cable attach position


example of cfgVehicles subclass definitions;
|r1= [[Nothing]]


tailHook = true; Allow to land on carrier
|x1= [_aircraft] [[call]] [[BIS_fnc_aircraftTailhook]];
class CarrierOpsCompatability
{
ArrestHookAnimationList[] = {"tailhook", "tailhook_door_l", "tailhook_door_r"}; List of animation played to animate tailhook. Defined in model.cfg (type user)
ArrestHookAnimationStates[] = {0,0.53,1}; Tailhook animation states when down, hooked, up.
ArrestHookMemoryPoint = "pos_tailhook"; TailHook memory point in plane model.p3d
ArrestMaxAllowedSpeed = 275; Max speed km/h allowed for successful landing
ArrestSlowDownStep = 0.8; Simulation step for calcualting how smooth plane will be slowed down.
ArrestVelocityReduction = -12; Speed reduced per simulation step
 
};
 
Parameter(s):
_this select 0: mode (Scalar)
0: plane/object
 
 
Returns: nothing
Result: Aircrfat after touch down on carrier deck will be dynamicly slowed down. If speed willbe above 275 km/h (suggested and configured on vanilla assets) wire snap will be simulated.
Aircrfat will come to full stop in 155-175 m
 
*/
 
#define EXIT_CODE {_plane animate [_x,_planeHookUpAnimState];} forEach _planeHookAnimList;_plane SetUserMFDvalue [0,0];
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |DESCRIPTION=
____________________________________________________________________________________________
 
| <!-- [] call [[BIS_fnc_AircraftTailhook]]; --> |SYNTAX=
|p1= |PARAMETER1=
 
| |RETURNVALUE=
____________________________________________________________________________________________
 
|x1= <code></code> |EXAMPLE1=
____________________________________________________________________________________________
 
| |SEEALSO=


|seealso= [[BIS_fnc_aircraftCatapultLaunch]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:AircraftTailhook}}]]
[[Category:Function Group: AircraftCarrier|{{uc:AircraftTailhook}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:AircraftTailhook}}]]

Revision as of 11:06, 13 August 2021

Hover & click on the images for description

Description

Description:
Aircraft carrier arrest/recovery function for USS Freedom aircraft carrier. If the aircraft exceeds the speed defined in config a wire snap will be simulated.
Execution:
call
Groups:
Aircraft Carrier

Syntax

Syntax:
[aircraft] call BIS_fnc_aircraftTailhook
Parameters:
aircraft: Object - the aircraft to arrest/recover
Return Value:
Nothing

Examples

Example 1:
[_aircraft] call BIS_fnc_aircraftTailhook;

Additional Information

See also:
BIS_fnc_aircraftCatapultLaunch

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note