2015-08-06 12:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: Head, SilentSpike
|
|
|
|
* Handles rendering the spectator map icons
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Parameters <ANY>
|
|
|
|
* 1: PFH handle <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None <NIL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [ace_spectator_fnc_handleIcons, 0] call CBA_fnc_addPerFrameHandler;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_map"];
|
2015-08-07 11:07:22 +00:00
|
|
|
private ["_cachedVehicles","_unit","_color","_icon","_txt"];
|
2015-08-06 12:42:31 +00:00
|
|
|
|
|
|
|
if (GVAR(camMode) == 0) then {
|
2015-09-09 22:21:49 +00:00
|
|
|
_map drawIcon ["\A3\UI_F\Data\GUI\Rsc\RscDisplayMissionEditor\iconcamera_ca.paa",[0,0,0,1],GVAR(freeCamera),20,20,GVAR(camPan)];
|
2015-08-06 12:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_cachedVehicles = [];
|
|
|
|
{
|
|
|
|
_unit = vehicle _x;
|
|
|
|
|
|
|
|
if !(_unit in _cachedVehicles) then {
|
|
|
|
_cachedVehicles pushBack _unit;
|
|
|
|
|
|
|
|
// Use previously cached info where possible
|
|
|
|
if (GETVAR(_unit,GVAR(uIcon),"") == "") then {
|
|
|
|
[_unit] call FUNC(cacheUnitInfo);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Function has caching built in
|
|
|
|
_color = [side effectiveCommander _unit] call BIS_fnc_sideColor;
|
|
|
|
_icon = GETVAR(_unit,GVAR(uIcon),"");
|
2015-08-07 11:07:22 +00:00
|
|
|
_txt = ["", GETVAR(_x,GVAR(uName),"")] select (isPlayer _x);
|
2015-08-06 12:42:31 +00:00
|
|
|
|
2015-08-07 11:07:22 +00:00
|
|
|
_map drawIcon [_icon, _color, _unit, 19, 19, getDir _unit, _txt, 1, 0.03];
|
2015-08-06 12:42:31 +00:00
|
|
|
};
|
|
|
|
false
|
|
|
|
} count GVAR(unitList);
|