2015-06-07 20:00:43 +00:00
|
|
|
/*
|
|
|
|
* Author: Jonpas
|
|
|
|
* Sits down the player.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Seat <OBJECT>
|
|
|
|
* 1: Player <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [seat, player] call ace_sitting_fnc_sit;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-06-11 17:46:16 +00:00
|
|
|
private ["_configFile", "_sitDirection", "_sitPosition", "_seatRotation", "_sitDirectionVisual"];
|
|
|
|
|
2015-06-07 20:00:43 +00:00
|
|
|
PARAMS_2(_seat,_player);
|
|
|
|
|
|
|
|
// Set global variable for standing up
|
|
|
|
GVAR(seat) = _seat;
|
|
|
|
|
|
|
|
// Overwrite weird position, because Arma decides to set it differently based on current animation/stance...
|
|
|
|
_player switchMove "amovpknlmstpsraswrfldnon";
|
|
|
|
|
|
|
|
// Read config
|
2015-06-11 17:46:16 +00:00
|
|
|
_configFile = configFile >> "CfgVehicles" >> typeOf _seat;
|
|
|
|
_sitDirection = (getDir _seat) + getNumber (_configFile >> QGVAR(sitDirection));
|
|
|
|
_sitPosition = getArray (_configFile >> QGVAR(sitPosition));
|
|
|
|
_sitRotation = if (isNumber (_configFile >> QGVAR(sitRotation))) then {getNumber (_configFile >> QGVAR(sitRotation))} else {45}; // Apply default if config entry not present
|
2015-06-07 20:00:43 +00:00
|
|
|
|
2015-06-09 14:48:58 +00:00
|
|
|
// Get random animation and perform it (before moving player to ensure correct placement)
|
|
|
|
[_player, call FUNC(getRandomAnimation), 2] call EFUNC(common,doAnimation);
|
|
|
|
|
2015-06-07 20:00:43 +00:00
|
|
|
// Set direction and position
|
2015-06-11 17:46:16 +00:00
|
|
|
_player setDir _sitDirection;
|
2015-06-09 16:33:07 +00:00
|
|
|
_player setPosASL (_seat modelToWorld _sitPosition) call EFUNC(common,positionToASL);
|
2015-06-07 20:00:43 +00:00
|
|
|
|
|
|
|
// Set variables
|
2015-06-08 21:39:14 +00:00
|
|
|
_player setVariable [QGVAR(isSitting), true];
|
2015-06-07 20:00:43 +00:00
|
|
|
_seat setVariable [QGVAR(seatOccupied), true, true]; // To prevent multiple people sitting on one seat
|
2015-06-11 17:46:16 +00:00
|
|
|
|
|
|
|
// Add rotation control PFH
|
|
|
|
_sitDirectionVisual = getDirVisual _player; // Needed for precision and issues with using above directly
|
|
|
|
[{
|
|
|
|
private ["_args", "_player", "_sitDirectionVisual", "_sitRotation", "_currentDirection"];
|
|
|
|
_args = _this select 0;
|
|
|
|
_player = _args select 0;
|
|
|
|
_sitDirectionVisual = _args select 1;
|
|
|
|
_sitRotation = _args select 2;
|
|
|
|
|
|
|
|
// Remove PFH if not sitting anymore
|
|
|
|
if !(_player getVariable [QGVAR(isSitting), false]) exitWith {
|
|
|
|
[_this select 1] call cba_fnc_removePerFrameHandler;
|
|
|
|
};
|
|
|
|
|
2015-06-11 19:51:41 +00:00
|
|
|
// Set direction to boundary when passing it
|
2015-06-11 17:46:16 +00:00
|
|
|
_currentDirection = getDir _player;
|
|
|
|
if (_currentDirection > _sitDirectionVisual + _sitRotation) exitWith {
|
|
|
|
_player setDir (_sitDirectionVisual + _sitRotation);
|
|
|
|
};
|
|
|
|
if (_currentDirection < _sitDirectionVisual - _sitRotation) exitWith {
|
|
|
|
_player setDir (_sitDirectionVisual - _sitRotation);
|
|
|
|
};
|
2015-06-11 19:51:41 +00:00
|
|
|
}, 0, [_player, _sitDirectionVisual, _sitRotation]] call cba_fnc_addPerFrameHandler;
|