mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 19:03:30 +00:00
updated data extract functions for mavlink integration
This commit is contained in:
@@ -5,5 +5,3 @@
|
||||
params["_drone"];
|
||||
|
||||
[_drone] call armatak_fnc_send_uas_platform_cot;
|
||||
[_drone] call armatak_fnc_send_uas_video_cot;
|
||||
[_drone] call armatak_fnc_send_uas_sensor_cot;
|
||||
|
||||
@@ -5,6 +5,7 @@ private _uavControl = UAVControl _drone;
|
||||
private _controller = _uavControl param [0, objNull];
|
||||
private _controller_uid = if (!isNull _controller) then { [_controller] call armatak_fnc_extract_uuid } else { _drone getVariable ["armatak_uas_controller_uid", _uuid] };
|
||||
private _callsign = [_drone] call armatak_fnc_extract_marker_callsign;
|
||||
private _video_url = [_drone] call armatak_fnc_extract_marker_video_url;
|
||||
|
||||
private _atak_role = "a-f-A-M-H-Q";
|
||||
switch (side _drone) do {
|
||||
@@ -44,7 +45,11 @@ private _pitch = (vectorDir _drone) select 2;
|
||||
private _roll = (vectorUp _drone) select 0;
|
||||
private _isFlying = parseNumber (isEngineOn _drone);
|
||||
private _hal = ((getPosATL _drone) select 2) max 0;
|
||||
private _vehicleType = typeOf _drone;
|
||||
private _vehicleType = if (_video_url == "") then {
|
||||
typeOf _drone
|
||||
} else {
|
||||
format ["%1|armatak_video_url=%2", typeOf _drone, _video_url]
|
||||
};
|
||||
|
||||
private _payload = [
|
||||
_uuid,
|
||||
|
||||
@@ -3,25 +3,28 @@ params["_unit"];
|
||||
_target = getSensorTargets (_unit);
|
||||
|
||||
{
|
||||
_unit = _x select 0;
|
||||
private _targetUnit = _x select 0;
|
||||
_position = _x select 1;
|
||||
_status = _x select 2;
|
||||
private _targetType = toLower (typeOf _targetUnit);
|
||||
|
||||
if (isNil {
|
||||
_unit getVariable "armatak_current_side"
|
||||
}) then {
|
||||
_unit setVariable ["armatak_current_side", side _unit];
|
||||
};
|
||||
if ((_targetType find "lasertarget") < 0) then {
|
||||
if (isNil {
|
||||
_targetUnit getVariable "armatak_current_side"
|
||||
}) then {
|
||||
_targetUnit setVariable ["armatak_current_side", side _targetUnit];
|
||||
};
|
||||
|
||||
if (_status != "destroyed" && !(_unit in armatak_server_syncedUnits)) then {
|
||||
_unit_position = _unit call armatak_client_fnc_extractClientPosition;
|
||||
if (_status != "destroyed" && !(_targetUnit in armatak_server_syncedUnits)) then {
|
||||
_unit_position = _targetUnit call armatak_client_fnc_extractClientPosition;
|
||||
|
||||
_uuid = _unit call armatak_fnc_extract_uuid;
|
||||
_type = _unit call armatak_fnc_extract_role;
|
||||
_callsign = getText (configOf _unit >> "displayName");
|
||||
_uuid = _targetUnit call armatak_fnc_extract_uuid;
|
||||
_type = _targetUnit call armatak_fnc_extract_role;
|
||||
_callsign = getText (configOf _targetUnit >> "displayName");
|
||||
|
||||
_marker_cot = [_uuid, _type, _unit_position select 1, _unit_position select 2, _unit_position select 3, _callsign, _unit_position select 5, _unit_position select 6];
|
||||
_marker_cot = [_uuid, _type, _unit_position select 1, _unit_position select 2, _unit_position select 3, _callsign, _unit_position select 5, _unit_position select 6];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:cot:marker", [_marker_cot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:marker", [_marker_cot]];
|
||||
};
|
||||
};
|
||||
} forEach _target;
|
||||
|
||||
Reference in New Issue
Block a user