mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
859 B
Plaintext
30 lines
859 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: tcvm
|
|
* Handles MCLOS guidance via keyboard keys
|
|
*
|
|
* Arguments:
|
|
* Acceleration vector
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [0, 0, 1] call ace_missileguidance_fnc_mclosButtonPressed
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_accelerationDirection", "_player"];
|
|
private _projectiles = _player getVariable [QGVAR(MCLOS_Projectiles), []];
|
|
_projectiles = _projectiles select { _x isNotEqualTo objNull };
|
|
_player setVariable [QGVAR(MCLOS_Projectiles), _projectiles];
|
|
|
|
private _vehicleHasMCLOS = 1 == getNumber ((configOf vehicle _player) >> QGVAR(hasMCLOSControl));
|
|
if (_vehicleHasMCLOS) then {
|
|
playSound "ACE_Sound_Click";
|
|
};
|
|
|
|
private _currentDirection = _player getVariable [QGVAR(MCLOS_direction), [0, 0, 0]];
|
|
_player setVariable [QGVAR(MCLOS_direction), _currentDirection vectorAdd _accelerationDirection];
|
|
|