2015-08-08 06:26:15 +00:00
|
|
|
/*
|
2015-08-10 06:45:43 +00:00
|
|
|
* Author: Dslyecxi, MikeMatrix
|
2015-08-08 06:26:15 +00:00
|
|
|
* Transmit PFH
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Arguments <ARRAY>
|
|
|
|
* 1: PFH ID <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Return description <TYPE>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [[], 2] call ace_map_gestures_fnc_transmit
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-24 21:26:03 +00:00
|
|
|
private ["_ownerID", "_unitUID", "_drawPosVariableName", "_playerOwnerID"];
|
2015-08-08 06:26:15 +00:00
|
|
|
|
|
|
|
params ["", "_pfhId"];
|
|
|
|
|
2015-08-24 15:03:47 +00:00
|
|
|
if (!visibleMap) then {
|
2015-08-08 06:26:15 +00:00
|
|
|
call FUNC(endTransmit);
|
2015-08-24 15:28:08 +00:00
|
|
|
};
|
2015-08-24 15:03:47 +00:00
|
|
|
|
|
|
|
if (!GVAR(EnableTransmit) || !visibleMap) exitWith {
|
2015-08-08 06:26:15 +00:00
|
|
|
[_pfhId] call CBA_fnc_removePerFrameHandler;
|
|
|
|
};
|
|
|
|
|
|
|
|
{
|
|
|
|
_ownerID = _x getVariable QGVAR(owner_id);
|
2015-08-10 15:07:01 +00:00
|
|
|
if (isNil "_ownerID") then {
|
2015-08-24 20:03:47 +00:00
|
|
|
[EVENT_PLAYER_HAS_NO_OWNER_ID, [name _x]] call EFUNC(common,serverEvent);
|
2015-08-10 15:07:01 +00:00
|
|
|
} else {
|
2015-08-24 15:03:47 +00:00
|
|
|
_playerOwnerID = ACE_player getVariable QGVAR(owner_id);
|
|
|
|
if (!isNil "_playerOwnerID" && _ownerID != _playerOwnerID) then {
|
|
|
|
_unitUID = getPlayerUID ACE_Player;
|
|
|
|
_drawPosVariableName = if (!isNil "_unitUID" && _unitUID != "") then {format [QGVAR(%1_DrawPos), _unitUID]} else {nil};
|
|
|
|
if (!isNil "_drawPosVariableName") then {
|
|
|
|
_ownerID publicVariableClient _drawPosVariableName;
|
|
|
|
};
|
2015-08-10 15:07:01 +00:00
|
|
|
};
|
2015-08-08 06:26:15 +00:00
|
|
|
};
|
2015-08-24 15:03:47 +00:00
|
|
|
} count ([ACE_player, GVAR(maxRange)] call FUNC(getProximityPlayers));
|