improved extract info function to handle every step needed by ATAK

This commit is contained in:
Valmo Trindade
2024-07-24 05:08:37 -03:00
parent 93e5e8e216
commit 55bf5f44b9
2 changed files with 28 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
params["_unit"];
_side = "friendly";
switch (side _unit) do {
case WEST: {
_side = "friendly";
};
case EAST: {
_side = "hostile";
};
case INDEPENDENT: {
_side = "neutral";
};
case CIVILIAN: {
_side = "unknown";
};
default {
_side = "friendly";
};
};
_side

View File

@@ -3,28 +3,16 @@
// function description: Receives a player's unit as param and return the information array needed to send the HTTP request
params["_unit"];
private _location = [_unit] call armatak_fnc_convert_location;
private _atak_uid = getPlayerUID _unit;
private _atak_latitude = getPos _unit select 0;
private _atak_longitude = getPos _unit select 1;
private _atak_latitude = _location select 0;
private _atak_longitude = _location select 1;
private _atak_side = [_unit] call armatak_fnc_extract_side;
private _atak_bearing = getDir _unit;
private _atak_role = [_unit] call armatak_fnc_extract_role;
private _atak_callsign = [_unit] call armatak_fnc_extract_callsign;
/*
desired object type
{
"longitude": -77.0104,
"latitude": 38.889,
"attitude": "hostile",
"bearing": 132, getDir function
"geoObject": "Gnd Combat Infantry Sniper", extract_role function
"how": "nonCoT", -- default and won't change
"name": "Putin",
"timeout": 600
}
*/
_unit_info = [_atak_uid, _atak_latitude, _atak_longitude, _atak_bearing, _atak_role, _atak_callsign];
_unit_info = [_atak_uid, _atak_latitude, _atak_longitude, _atak_side, _atak_bearing, _atak_role, _atak_callsign];
_unit_info