ACE3/addons/markers/functions/fnc_setMarkerJIP.sqf

58 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-03-28 01:51:30 +00:00
/*
* Author: commy2
* Client: Recives a marker data from server.
*
* Arguments:
* 0: Array of map marker names <ARRAY>
* 1: Array of map marker data <ARRAY>
* 2: Logic <OBJECT>
*
* Return Value:
2015-08-22 12:08:35 +00:00
* None
2015-03-28 01:51:30 +00:00
*
* Example:
* [[],[],dummyLogic] call ace_markers_fnc_setMarkerJIP;
*
* Public: No
*/
2015-01-18 16:17:06 +00:00
#include "script_component.hpp"
2016-02-23 22:32:39 +00:00
params ["_allMapMarkers", "_allMapMarkersProperties"];
TRACE_3("params",_allMapMarkers,_allMapMarkersProperties);
2015-01-18 16:17:06 +00:00
{
2015-12-10 14:32:31 +00:00
private _index = _allMapMarkers find _x;
2015-03-28 01:51:30 +00:00
if (_index != -1) then {
2015-12-10 14:32:31 +00:00
private _data = _allMapMarkersProperties select _index;
_data params ["_markerClassname", "_colorClassname", "_pos", "_dir"];
private _config = (configfile >> "CfgMarkers") >> _markerClassname;
2015-03-28 01:51:30 +00:00
if (!isClass _config) then {
WARNING("CfgMarker not found, changed to milDot");
2015-12-10 14:32:31 +00:00
_config = configFile >> "CfgMarkers" >> "MilDot";
2015-03-28 01:51:30 +00:00
};
2015-12-10 14:32:31 +00:00
_x setMarkerTypeLocal configName _config;
_config = configfile >> "CfgMarkerColors" >> _colorClassname;
2015-03-28 01:51:30 +00:00
if (!isClass _config) then {
WARNING("CfgMarkerColors not found, changed to Default");
2015-12-10 14:32:31 +00:00
_config = configFile >> "CfgMarkerColors" >> "Default";
2015-03-28 01:51:30 +00:00
};
2015-12-10 14:32:31 +00:00
_x setMarkerColorLocal configName _config;
2015-03-28 01:51:30 +00:00
2015-08-22 12:08:35 +00:00
_x setMarkerPosLocal _pos;
_x setMarkerDirLocal _dir;
};
2015-12-10 14:32:31 +00:00
false
} count allMapMarkers;
2015-01-18 16:17:06 +00:00
2016-02-27 12:06:19 +00:00
private _group = group GVAR(localLogic);
2016-02-23 22:32:39 +00:00
deleteVehicle GVAR(localLogic);
GVAR(localLogic) = nil;
2016-02-27 12:06:19 +00:00
deleteGroup _group;