2015-01-18 07:20:55 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-29 07:38:46 +00:00
|
|
|
ADDON = false;
|
|
|
|
|
2015-01-18 07:20:55 +00:00
|
|
|
PREP(initInsertMarker);
|
2015-03-28 03:55:19 +00:00
|
|
|
PREP(mapDrawEH);
|
2015-01-18 07:20:55 +00:00
|
|
|
PREP(onLBSelChangedColor);
|
|
|
|
PREP(onLBSelChangedShape);
|
|
|
|
PREP(onSliderPosChangedAngle);
|
|
|
|
PREP(placeMarker);
|
|
|
|
PREP(sendMarkersJIP);
|
|
|
|
PREP(setMarkerJIP);
|
|
|
|
PREP(setMarkerNetwork);
|
2015-01-18 16:17:06 +00:00
|
|
|
|
2015-04-17 20:45:00 +00:00
|
|
|
private ["_config", "_marker", "_a", "_scope", "_icon", "_rgba", "_name"];
|
|
|
|
|
2015-01-18 16:17:06 +00:00
|
|
|
// init marker types
|
|
|
|
if (isNil QGVAR(MarkersCache)) then {
|
|
|
|
_config = configfile >> "CfgMarkers";
|
|
|
|
GVAR(MarkersCache) = [];
|
|
|
|
|
|
|
|
for "_a" from 0 to (count _config - 1) do {
|
|
|
|
_marker = _config select _a;
|
|
|
|
_scope = getNumber (_marker >> "scope");
|
|
|
|
if (_scope == 2) then {
|
2015-03-28 00:22:49 +00:00
|
|
|
_name = getText (_marker >> "name");
|
|
|
|
_icon = getText (_marker >> "icon");
|
2015-01-18 16:17:06 +00:00
|
|
|
GVAR(MarkersCache) pushBack [_name, _a, _icon];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// init marker colors
|
|
|
|
if (isNil QGVAR(MarkerColorsCache)) then {
|
|
|
|
_config = configfile >> "CfgMarkerColors";
|
|
|
|
GVAR(MarkerColorsCache) = [];
|
|
|
|
|
|
|
|
for "_a" from 0 to (count _config - 1) do {
|
|
|
|
_marker = _config select _a;
|
|
|
|
_scope = getNumber (_marker >> "scope");
|
|
|
|
if (_scope == 2) then {
|
2015-03-28 00:22:49 +00:00
|
|
|
_name = getText (_marker >> "name");
|
2015-01-18 16:17:06 +00:00
|
|
|
_rgba = getArray (_marker >> "color");
|
|
|
|
{
|
|
|
|
if (typeName _x != "SCALAR") then {
|
|
|
|
_rgba set [_forEachIndex, call compile _x];
|
|
|
|
};
|
|
|
|
} forEach _rgba;
|
|
|
|
_icon = format ["#(argb,8,8,3)color(%1,%2,%3,%4)", _rgba select 0, _rgba select 1, _rgba select 2, _rgba select 3];
|
|
|
|
|
|
|
|
GVAR(MarkerColorsCache) pushBack [_name, _a, _icon];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-28 00:22:49 +00:00
|
|
|
//Server Sync JIP markers:
|
2015-01-18 16:17:06 +00:00
|
|
|
[QGVAR(sendMarkersJIP), FUNC(sendMarkersJIP)] call EFUNC(common,addEventHandler);
|
2015-01-29 07:38:46 +00:00
|
|
|
|
|
|
|
ADDON = true;
|