2015-05-09 02:47:15 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2015-09-28 15:11:53 +00:00
|
|
|
* Open door.
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: House <OBJECT>
|
|
|
|
* 1: Door <STRING>
|
|
|
|
*
|
2015-09-28 16:06:25 +00:00
|
|
|
* Return Value:
|
2015-05-09 02:47:15 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [house, "door"] call ace_interaction_fnc_openDoor
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-11 23:13:47 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
private "_info";
|
2015-08-30 09:13:26 +00:00
|
|
|
_info = [MACRO_DOOR_REACH_DISTANCE] call FUNC(getDoor);
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
_info params ["_house", "_door"];
|
2015-01-11 19:32:51 +00:00
|
|
|
|
|
|
|
if (isNull _house) exitWith {};
|
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
private "_getDoorAnimations";
|
2015-05-16 03:52:54 +00:00
|
|
|
_getDoorAnimations = [_house, _door] call FUNC(getDoorAnimations);
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
_getDoorAnimations params ["_animations", "_lockedVariable"];
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
if (_animations isEqualTo []) exitWith {};
|
2015-01-11 19:32:51 +00:00
|
|
|
|
|
|
|
if (_house animationPhase (_animations select 0) <= 0 && {_house getVariable [_lockedVariable select 0, 0] == 1}) exitWith {
|
2015-04-06 16:22:43 +00:00
|
|
|
_lockedVariable set [0, _house];
|
2015-09-28 17:03:37 +00:00
|
|
|
_lockedVariable call BIS_fnc_LockedDoorOpen;
|
2015-01-11 19:32:51 +00:00
|
|
|
};
|
|
|
|
|
2015-09-28 15:11:53 +00:00
|
|
|
playSound "ACE_Sound_Click"; // @todo replace with smth. more fitting
|
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
GVAR(doorTargetPhase) = _house animationPhase (_animations select 0);
|
|
|
|
GVAR(isOpeningDoor) = true;
|
|
|
|
GVAR(usedScrollWheel) = false;
|
2015-09-28 15:11:53 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
[{
|
|
|
|
(_this select 0) params ["_house", "_animations", "_position", "_time", "_frame"];
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
if !(GVAR(isOpeningDoor)) exitWith {
|
|
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
// didn't use incremental opening. Just do animation normally.
|
|
|
|
if !(GVAR(usedScrollWheel)) then {
|
|
|
|
private "_phase";
|
|
|
|
_phase = [0, 1] select (_house animationPhase (_animations select 0) < 0.5);
|
2015-09-28 15:11:53 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
{_house animate [_x, _phase]; false} count _animations;
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
// check if player moved too far away
|
|
|
|
if (getPosASL ACE_player distance _position > 1) exitWith {
|
|
|
|
GVAR(isOpeningDoor) = false;
|
|
|
|
};
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
// this allows for holding the door in it's current state.
|
2016-03-02 10:01:39 +00:00
|
|
|
if (CBA_missionTime > _time && {diag_frameno > _frame}) then {
|
2015-09-28 18:07:01 +00:00
|
|
|
GVAR(usedScrollWheel) = true;
|
2015-04-06 16:22:43 +00:00
|
|
|
};
|
2015-01-11 19:32:51 +00:00
|
|
|
|
2015-09-28 18:07:01 +00:00
|
|
|
// do incremental door opening
|
|
|
|
{_house animate [_x, GVAR(doorTargetPhase)]; false} count _animations;
|
2016-03-02 10:01:39 +00:00
|
|
|
}, 0.1, [_house, _animations, getPosASL ACE_player, CBA_missionTime + 0.2, diag_frameno + 2]] call CBA_fnc_addPerFrameHandler;
|