ACE3/addons/sandbag/functions/fnc_deploy.sqf

62 lines
1.8 KiB
Plaintext
Raw Normal View History

2015-06-02 17:30:50 +00:00
/*
* Author: Garth 'L-H' de Wet, Ruthberg, edited by commy2 for better MP and eventual AI support
2015-06-02 17:30:50 +00:00
* Starts the deploy process for sandbags.
*
* Arguments:
* 0: unit <OBJECT>
2015-06-02 17:30:50 +00:00
*
* Return Value:
* None
*
* Example:
* [ACE_player] call ace_sandbag_fnc_deploy
2015-06-02 17:30:50 +00:00
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
// prevent the placing unit from running
[_unit, "ACE_Sandbag", true] call EFUNC(common,setForceWalkStatus);
2015-06-02 17:30:50 +00:00
// create the sandbag
private "_sandBag";
_sandBag = createVehicle ["ACE_SandbagObject_NoGeo", [0, 0, 0], [], 0, "NONE"];
2015-06-02 17:30:50 +00:00
GVAR(sandBag) = _sandBag;
2015-06-02 17:30:50 +00:00
// prevent collisions with sandbag
["enableSimulationGlobal", [_sandBag, false]] call EFUNC(common,serverEvent);
2015-06-02 17:30:50 +00:00
GVAR(deployDirection) = 0;
// pfh that runs while the deployment is in progress
2015-06-02 17:30:50 +00:00
GVAR(deployPFH) = [{
(_this select 0) params ["_unit", "_sandBag"];
if (isNull _sandBag) exitWith {
[_unit] call FUNC(deployCancel);
2015-06-02 17:30:50 +00:00
};
_sandBag setPosASL (eyePos _unit vectorAdd (positionCameraToWorld [0, 0, 1] vectorDiff positionCameraToWorld [0, 0, 0]));
_sandBag setDir (GVAR(deployDirection) + getDir _unit);
}, 0, [_unit, _sandBag]] call CBA_fnc_addPerFrameHandler;
// add mouse button action and hint
2015-06-06 02:02:24 +00:00
[localize LSTRING(ConfirmDeployment), localize LSTRING(CancelDeployment), localize LSTRING(ScrollAction)] call EFUNC(interaction,showMouseHint);
2015-06-02 17:30:50 +00:00
_unit setVariable [QGVAR(Deploy), [
_unit, "DefaultAction",
{GVAR(deployPFH) != -1},
{[_this select 0] call FUNC(deployConfirm)}
] call EFUNC(common,addActionEventHandler)];
_unit setVariable [QGVAR(Cancel), [
_unit, "zoomtemp",
{GVAR(deployPFH) != -1},
{[_this select 0] call FUNC(deployCancel)}
] call EFUNC(common,addActionEventHandler)];
_unit setVariable [QGVAR(isDeploying), true, true];