BIS fnc destroyer01OperateHangarDoors: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Function|= Comments | arma3 |Game name= |1.84|Game version= <!---|arg= local |Multiplayer Arguments=---> <!---|eff= local |Multiplayer Effects=---> | <pre>/* Author: B...")
 
(Page filling)
(32 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Function|= Comments
{{RV|type=function


| arma3 |Game name=
|game1= arma3
|version1= 1.84


|1.84|Game version=
|gr1= Destroyer


<!---|arg= local |Multiplayer Arguments=--->
|descr= This function is designed to handle animations of ship hangar doors from vehicle user action (see {{Link|#Examples}}).
It calls [[BIS_fnc_destroyer01AnimateHangarDoors]].


<!---|eff= local |Multiplayer Effects=--->
{{Feature|important|Object (ship) must have all animations correctly defined and user actions configured.}}


| <pre>/*
|s1= [shipPart, mode] call [[BIS_fnc_destroyer01OperateHangarDoors]]
Author: Bravo Zero One development
- John_Spartan


Description:
|p1= shipPart: [[Object]]
- This is a sub function designed to handle animations of ship hangar doors.


Execution:
|r1= mode: [[Number]] - doors' animation state; 1 to open, 0 to close
- Call from vehicle user actions.


Example:
|x1= <sqf>
class OpenHangarDoor_1
[this, 1] call BIS_fnc_destroyer01OperateHangarDoors; // to open doors
{
[this, 0] call BIS_fnc_destroyer01OperateHangarDoors; // to close doors
displayNameDefault ="<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
</sqf>
displayName = $STR_DN_OUT_O_DOOR;
<syntaxhighlight lang="cpp">
position = "pos_Door_Hangar_1_Trigger";
class OpenHangarDoor_1
priority = 0.4;
{
radius = 1.5;
displayNameDefault ="<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
onlyForPlayer = 0;
displayName = "$STR_DN_OUT_O_DOOR";
condition = "(((nearestObjects [this,[""Land_Destroyer_01_hull_04_F""],50, false]) select 0) animationPhase ""Door_Hangar_1_1_open"") < 0.1;";
position = "pos_Door_Hangar_1_Trigger";
statement = "[this,1] call bis_fnc_destroyer01OperateHangarDoors;";
priority = 0.4;
};
radius = 1.5;
class CloseHangarDoor_1: OpenHangarDoor_1
onlyForPlayer = 0;
{
condition = "(((nearestObjects [this, ['Land_Destroyer_01_hull_04_F'], 50, false]) select 0) animationPhase 'Door_Hangar_1_1_open') < 0.1;";
displayName = $STR_DN_OUT_C_DOOR;
statement = "[this, 1] call BIS_fnc_destroyer01OperateHangarDoors;";
position = "pos_Door_Hangar_1_Trigger";
};
condition = "(((nearestObjects [this,[""Land_Destroyer_01_hull_04_F""],50, false]) select 0) animationPhase ""Door_Hangar_1_1_open"") >= 0.1;";
class CloseHangarDoor_1: OpenHangarDoor_1
statement = "[this,0] call bis_fnc_destroyer01OperateHangarDoors;";
{
};
displayName = "$STR_DN_OUT_C_DOOR";
position = "pos_Door_Hangar_1_Trigger";
condition = "(((nearestObjects [this, ['Land_Destroyer_01_hull_04_F'], 50, false]) select 0) animationPhase 'Door_Hangar_1_1_open') >= 0.1;";
statement = "[this, 0] call BIS_fnc_destroyer01OperateHangarDoors;";
};
</syntaxhighlight>


Required:
|seealso= [[BIS_fnc_destroyer01AnimateHangarDoors]]
Object (ship) must have all animations correctly defined and user actions configured.
 
Parameter(s):
_this select 0: mode (Scalar)
0: ship-part object
and
1: animation state of doors
 
Returns: nothing
Result: Ship's hangar door animation is played with sounds added.
Calls bis_fnc_destroyer01AnimateHangarDoors to execute action.
 
*/</pre>{{Informative|Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]]}} |Description=
 
|[] call [[BIS_fnc_Destroyer01OperateHangarDoors]]|Syntax=
 
|p1= parameter: Datatype - (Optional, default defValue) description |Parameter 1=
 
|Datatype - description|Return value=
 
|x1= <code></code>|Example 1=
 
|exec= call |Execution=
 
| |See also=
}}
}}
[[Category:Function Group: Destroyer|{{uc:Destroyer01OperateHangarDoors}}]]
[[Category:Functions|{{uc:Destroyer01OperateHangarDoors}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:Destroyer01OperateHangarDoors}}]]

Revision as of 22:31, 13 March 2023

Hover & click on the images for description

Description

Description:
This function is designed to handle animations of ship hangar doors from vehicle user action (see Examples). It calls BIS_fnc_destroyer01AnimateHangarDoors.
Object (ship) must have all animations correctly defined and user actions configured.
Execution:
call
Groups:
Destroyer

Syntax

Syntax:
[shipPart, mode] call BIS_fnc_destroyer01OperateHangarDoors
Parameters:
shipPart: Object
Return Value:
mode: Number - doors' animation state; 1 to open, 0 to close

Examples

Example 1:
[this, 1] call BIS_fnc_destroyer01OperateHangarDoors; // to open doors [this, 0] call BIS_fnc_destroyer01OperateHangarDoors; // to close doors
class OpenHangarDoor_1
{
	displayNameDefault		="<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
	displayName 			= "$STR_DN_OUT_O_DOOR";
	position 				= "pos_Door_Hangar_1_Trigger";
	priority 				= 0.4;
	radius 					= 1.5;
	onlyForPlayer 			= 0;
	condition 				= "(((nearestObjects [this, ['Land_Destroyer_01_hull_04_F'], 50, false]) select 0) animationPhase 'Door_Hangar_1_1_open') < 0.1;";
	statement 				= "[this, 1] call BIS_fnc_destroyer01OperateHangarDoors;";
};
class CloseHangarDoor_1: OpenHangarDoor_1
{
	displayName 			= "$STR_DN_OUT_C_DOOR";
	position 				= "pos_Door_Hangar_1_Trigger";
	condition 				= "(((nearestObjects [this, ['Land_Destroyer_01_hull_04_F'], 50, false]) select 0) animationPhase 'Door_Hangar_1_1_open') >= 0.1;";
	statement 				= "[this, 0] call BIS_fnc_destroyer01OperateHangarDoors;";
};

Additional Information

See also:
BIS_fnc_destroyer01AnimateHangarDoors

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