mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 14:43:29 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 37aa51f8c2 | |||
| ad03444ff5 | |||
| 167d47e488 | |||
| 3a82dba854 | |||
| 1fff02cdd2 | |||
| 1ab318c279 | |||
| 7a1a4b7372 | |||
| 2802f9cdc8 | |||
| ed039035df | |||
| 7fa4a7c411 | |||
| d4dfd80cdf | |||
| 720f9da2df | |||
| 5015f09d1d | |||
| 882a35c2cd | |||
| 6b3ce96c18 | |||
| 760027b925 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -89,3 +89,6 @@ target/
|
||||
local.properties
|
||||
|
||||
*.apk
|
||||
|
||||
|
||||
.hemtt/missions
|
||||
@@ -39,30 +39,6 @@ preset = "Hemtt"
|
||||
workshop = [
|
||||
"450814997", # CBA_A3
|
||||
"463939057", # ace
|
||||
"751965892", # ACRE2
|
||||
"2522638637", # ACE3 Arsenal Extended - Core
|
||||
"333310405", # Enhanced Movement
|
||||
"2034363662", # Enhanced Movement Rework
|
||||
"843577117", # RHSUSAF
|
||||
"3147473073", # TOTT Core
|
||||
"623475643", # 3den Enhanced
|
||||
"520618345", # Jbad
|
||||
"1779063631", # Zeus Enhanced
|
||||
"2397360831", # USAF Mod - Main
|
||||
"2397376046", # USAF Mod - Utility
|
||||
"3147476552", # TOTT Optics
|
||||
"583496184", # CUP Terrains - Core
|
||||
"2560276469", # Restrict Markers
|
||||
"1858075458", # LAMBS_Danger.fsm
|
||||
"3407948300", # JSRS SOUNDMOD 2025
|
||||
"2834576684", # ITN - Illuminate The Night
|
||||
"3375788189", # Immersion Cigs - Rewrite
|
||||
"2095827925", # Brighter Flares
|
||||
"2257686620", # Blastcore Murr Edition
|
||||
"2260572637", # BettIR NVG
|
||||
"3493557838", # Broad Spectrum Warfare
|
||||
"1291778160", # Hellanmaa
|
||||
"3533734689", # FPV
|
||||
]
|
||||
|
||||
parameters = [
|
||||
|
||||
@@ -4,10 +4,6 @@
|
||||
|
||||
ARMATAK is a server side Arma 3 addons for streaming unit positions to TAK Clients in sessions on real locations maps. It can be runned both as a clientside mod or a serverside mod, when runned serverside, it will create a TCP Socket connection between Arma 3 and the TAK Server, sending the game session information into it. When used clientside, Arma 3 will host a websocket server that you can connect to your phone and mock the phone's location to the player's in game location.
|
||||
|
||||
The server-side CoT router supports two transports:
|
||||
- Plain TCP, for legacy TAK ingress.
|
||||
- Mutual TLS, using the TAK Server authentication API, so the Arma session can publish as an authenticated TAK device on port `8089`.
|
||||
|
||||
## Get in Touch
|
||||
|
||||
[Join the Discord Server for ARMATAK!](https://discord.gg/svK64PCycU)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
PREP(convertClientLocation);
|
||||
PREP(extractClientPosition);
|
||||
PREP(sendLaserRangeFinder);
|
||||
PREP(startUDPSocket);
|
||||
|
||||
@@ -6,3 +6,4 @@ _local_address = "armatak" callExtension ["local_ip", []] select 0;
|
||||
|
||||
SETVAR(player,GVAR(localAddress),_local_address);
|
||||
SETVAR(player,GVAR(eudConnected),false);
|
||||
SETVAR(player,GVAR(lrfEnabled),false);
|
||||
|
||||
@@ -12,7 +12,7 @@ class armatak_udp_socket_start_dialog {
|
||||
x = "0.386562 * safezoneW + safezoneX";
|
||||
y = "0.357 * safezoneH + safezoneY";
|
||||
w = "0.216563 * safezoneW";
|
||||
h = "0.418 * safezoneH";
|
||||
h = "0.495 * safezoneH";
|
||||
colorBackground[]={0,0,0,0.45};
|
||||
};
|
||||
};
|
||||
@@ -48,12 +48,22 @@ class armatak_udp_socket_start_dialog {
|
||||
idc = 16969;
|
||||
text = "";
|
||||
x = "0.391719 * safezoneW + safezoneX";
|
||||
y = "0.632 * safezoneH + safezoneY";
|
||||
y = "0.709 * safezoneH + safezoneY";
|
||||
w = "0.20625 * safezoneW";
|
||||
h = "0.044 * safezoneH";
|
||||
colorBackground[]={0,0,0,0.5};
|
||||
tooltip = "Optional shared feed URL. If empty, the UAV 3DEN URL is used first, then a local RTP fallback.";
|
||||
};
|
||||
class armatak_gui_module_udp_socket_dialog_lrf_port_edit: RscEdit {
|
||||
idc = 16971;
|
||||
text = "17211";
|
||||
x = "0.391719 * safezoneW + safezoneX";
|
||||
y = "0.632 * safezoneH + safezoneY";
|
||||
w = "0.20625 * safezoneW";
|
||||
h = "0.044 * safezoneH";
|
||||
colorBackground[]={0,0,0,0.5};
|
||||
tooltip = "ATAK local Laser Range Finder UDP input. Leave empty to disable.";
|
||||
};
|
||||
class armatak_gui_module_udp_socket_dialog_address_text: RscText {
|
||||
idc = 16963;
|
||||
text = "EUD's Address";
|
||||
@@ -82,6 +92,14 @@ class armatak_udp_socket_start_dialog {
|
||||
idc = 16970;
|
||||
text = "Video Feed URL (Optional)";
|
||||
x = "0.391719 * safezoneW + safezoneX";
|
||||
y = "0.676 * safezoneH + safezoneY";
|
||||
w = "0.20625 * safezoneW";
|
||||
h = "0.033 * safezoneH";
|
||||
};
|
||||
class armatak_gui_module_udp_socket_dialog_lrf_port_text: RscText {
|
||||
idc = 16972;
|
||||
text = "Laser Range Finder Port";
|
||||
x = "0.391719 * safezoneW + safezoneX";
|
||||
y = "0.599 * safezoneH + safezoneY";
|
||||
w = "0.20625 * safezoneW";
|
||||
h = "0.033 * safezoneH";
|
||||
@@ -91,7 +109,7 @@ class armatak_udp_socket_start_dialog {
|
||||
text = "Cancel";
|
||||
action = "closeDialog 2;";
|
||||
x = "0.551563 * safezoneW + safezoneX";
|
||||
y = "0.709 * safezoneH + safezoneY";
|
||||
y = "0.786 * safezoneH + safezoneY";
|
||||
w = "0.0464063 * safezoneW";
|
||||
h = "0.055 * safezoneH";
|
||||
};
|
||||
@@ -100,7 +118,7 @@ class armatak_udp_socket_start_dialog {
|
||||
text = "Ok";
|
||||
action = QUOTE(call FUNC(startUDPSocket));
|
||||
x = "0.5 * safezoneW + safezoneX";
|
||||
y = "0.709 * safezoneH + safezoneY";
|
||||
y = "0.786 * safezoneH + safezoneY";
|
||||
w = "0.0464063 * safezoneW";
|
||||
h = "0.055 * safezoneH";
|
||||
};
|
||||
|
||||
@@ -19,11 +19,15 @@
|
||||
* Public: Yes
|
||||
*/
|
||||
|
||||
params["_latitude", "_longitude", "_altitude"];
|
||||
params [
|
||||
["_latitude", 0, [0]],
|
||||
["_longitude", 0, [0]],
|
||||
["_altitude", 0, [0]]
|
||||
];
|
||||
|
||||
_position = [_latitude, _longitude, _altitude];
|
||||
private _position = [_latitude, _longitude, _altitude];
|
||||
|
||||
_realLocation = null;
|
||||
private _realLocation = [0, 0, _altitude];
|
||||
|
||||
switch (toLower worldName) do {
|
||||
case "altis": {
|
||||
|
||||
52
addons/client/functions/fnc_sendLaserRangeFinder.sqf
Normal file
52
addons/client/functions/fnc_sendLaserRangeFinder.sqf
Normal file
@@ -0,0 +1,52 @@
|
||||
#include "..\script_component.hpp"
|
||||
|
||||
params ["_unit"];
|
||||
|
||||
private _lrfEnabled = player getVariable [QGVAR(lrfEnabled), false];
|
||||
|
||||
private _uid = format ["%1.LRF", _unit call armatak_fnc_extract_uuid];
|
||||
private _laserTarget = laserTarget _unit;
|
||||
|
||||
if (!isNull _laserTarget) exitWith {
|
||||
private _originASL = getPosASL _unit;
|
||||
private _targetASL = getPosASL _laserTarget;
|
||||
private _delta = _targetASL vectorDiff _originASL;
|
||||
|
||||
private _dx = _delta select 0;
|
||||
private _dy = _delta select 1;
|
||||
private _dz = _delta select 2;
|
||||
private _horizontalDistance = sqrt ((_dx * _dx) + (_dy * _dy));
|
||||
private _slantDistance = (_originASL vectorDistance _targetASL) max 1;
|
||||
private _azimuth = (((_dx atan2 _dy) + 360) mod 360);
|
||||
private _elevation = _dz atan2 (_horizontalDistance max 0.001);
|
||||
private _lastTargetASL = player getVariable [QGVAR(lrfLastTargetASL), []];
|
||||
private _lastSentAt = player getVariable [QGVAR(lrfLastSentAt), -1000];
|
||||
private _targetMoved = _lastTargetASL isEqualTo [] || {(_lastTargetASL vectorDistance _targetASL) > 5};
|
||||
private _sendCooldownElapsed = (time - _lastSentAt) >= 2.5;
|
||||
|
||||
player setVariable [QGVAR(lrfWasActive), true];
|
||||
player setVariable [QGVAR(lrfLostAt), -1];
|
||||
player setVariable [QGVAR(lrfClearSent), false];
|
||||
|
||||
if (_lrfEnabled && {_targetMoved} && {_sendCooldownElapsed}) then {
|
||||
"armatak" callExtension ["udp_socket:send_lrf", [[_uid, _slantDistance, _azimuth, _elevation]]];
|
||||
player setVariable [QGVAR(lrfLastTargetASL), _targetASL];
|
||||
player setVariable [QGVAR(lrfLastSentAt), time];
|
||||
};
|
||||
};
|
||||
|
||||
if !(player getVariable [QGVAR(lrfWasActive), false]) exitWith {};
|
||||
|
||||
private _lostAt = player getVariable [QGVAR(lrfLostAt), -1];
|
||||
if (_lostAt < 0) then {
|
||||
player setVariable [QGVAR(lrfLostAt), time];
|
||||
};
|
||||
|
||||
private _clearSent = player getVariable [QGVAR(lrfClearSent), false];
|
||||
if (_lrfEnabled && {!_clearSent} && {(time - (player getVariable [QGVAR(lrfLostAt), time])) >= 6}) then {
|
||||
"armatak" callExtension ["udp_socket:clear_lrf", [_uid]];
|
||||
player setVariable [QGVAR(lrfWasActive), false];
|
||||
player setVariable [QGVAR(lrfClearSent), true];
|
||||
player setVariable [QGVAR(lrfLastTargetASL), []];
|
||||
player setVariable [QGVAR(lrfLastSentAt), -1000];
|
||||
};
|
||||
@@ -14,24 +14,38 @@ disableSerialization;
|
||||
private _eud_address = ctrlText 16961;
|
||||
private _gnss_port = ctrlText 16962;
|
||||
private _mavlink_port = ctrlText 16967;
|
||||
private _lrf_port = ctrlText 16971;
|
||||
private _video_feed_url = ctrlText 16969;
|
||||
|
||||
private _udp_socket_fulladdress = _eud_address + ":" + _gnss_port;
|
||||
private _mavlink_address = _eud_address + ":" + _mavlink_port;
|
||||
private _lrf_port_trimmed = trim _lrf_port;
|
||||
private _lrf_enabled = _lrf_port_trimmed isNotEqualTo "";
|
||||
private _lrf_address = _eud_address + ":" + _lrf_port_trimmed;
|
||||
|
||||
player setVariable [QGVAR(udp_socket_address), _udp_socket_fulladdress];
|
||||
player setVariable [QGVAR(mavlink_address), _mavlink_address];
|
||||
player setVariable [QGVAR(lrf_address), _lrf_address];
|
||||
player setVariable [QGVAR(lrfEnabled), _lrf_enabled];
|
||||
player setVariable [QGVAR(lrfWasActive), false];
|
||||
player setVariable [QGVAR(lrfLostAt), -1];
|
||||
player setVariable [QGVAR(lrfClearSent), false];
|
||||
player setVariable [QGVAR(lrfLastTargetASL), []];
|
||||
player setVariable [QGVAR(lrfLastSentAt), -1000];
|
||||
player setVariable [QGVAR(video_feed_url), trim _video_feed_url];
|
||||
player setVariable [QGVAR(eudConnected), true];
|
||||
player setVariable [QGVAR(eudConnected), true, true];
|
||||
|
||||
private _advertised_video_uri = [objNull] call EFUNC(uav,resolveVideoUri);
|
||||
|
||||
"armatak" callExtension ["udp_socket:start", [_udp_socket_fulladdress]];
|
||||
"armatak" callExtension ["uas:start_endpoint", [parseNumber _mavlink_port]];
|
||||
if (_lrf_enabled) then {
|
||||
"armatak" callExtension ["udp_socket:start_lrf", [_lrf_address]];
|
||||
};
|
||||
|
||||
private _mdnsInstanceName = format ["ArmaTAK-%1", name player];
|
||||
"armatak" callExtension ["mdns:start_uas_advertisement", [_mdnsInstanceName, parseNumber _mavlink_port, _advertised_video_uri]];
|
||||
"armatak" callExtension ["log", [["info", format ["Client UDP socket started for %1, MAVLink target set to %2 and advertised video URI set to %3", _udp_socket_fulladdress, _mavlink_address, _advertised_video_uri]]]];
|
||||
"armatak" callExtension ["log", [["info", format ["Client UDP socket started for %1, MAVLink target set to %2, LRF target set to %3 and advertised video URI set to %4. Digital pointer uses ATAK LRF when enabled.", _udp_socket_fulladdress, _mavlink_address, _lrf_address, _advertised_video_uri]]]];
|
||||
|
||||
call EFUNC(uav,startMavlinkBroadcast);
|
||||
|
||||
@@ -41,5 +55,11 @@ call EFUNC(uav,startMavlinkBroadcast);
|
||||
"armatak" callExtension ["udp_socket:send_gps_cot", [player call FUNC(extractClientPosition)]];
|
||||
}, 0.5, []] call CBA_fnc_addPerFrameHandler;
|
||||
|
||||
[{
|
||||
if !(player getVariable [QGVAR(eudConnected), false]) exitWith {};
|
||||
|
||||
[player] call FUNC(sendLaserRangeFinder);
|
||||
}, 0.25, []] call CBA_fnc_addPerFrameHandler;
|
||||
|
||||
deleteVehicle _logic;
|
||||
closeDialog 1;
|
||||
|
||||
@@ -19,6 +19,33 @@ class CfgFunctions {
|
||||
class send_marker_cot {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_send_marker_cot.sqf";
|
||||
};
|
||||
class report_marker {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_report_marker.sqf";
|
||||
};
|
||||
class register_cot {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_register_cot.sqf";
|
||||
};
|
||||
class delete_registered_cots {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_delete_registered_cots.sqf";
|
||||
};
|
||||
class draw_circle {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_circle.sqf";
|
||||
};
|
||||
class draw_ellipse {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_ellipse.sqf";
|
||||
};
|
||||
class draw_rectangle {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_rectangle.sqf";
|
||||
};
|
||||
class draw_polyline {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_polyline.sqf";
|
||||
};
|
||||
class draw_route {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_route.sqf";
|
||||
};
|
||||
class draw_tactical_graphic {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_draw_tactical_graphic.sqf";
|
||||
};
|
||||
class send_uas_platform_cot {
|
||||
file = "\armatak\armatak\addons\main\functions\api\fn_send_uas_platform_cot.sqf";
|
||||
};
|
||||
@@ -146,4 +173,3 @@ class CfgFunctions {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -9,10 +9,11 @@ addMissionEventHandler ["ExtensionCallback", {
|
||||
|
||||
switch (_function) do {
|
||||
case "EUD Connected": {
|
||||
SETVAR(player,EGVAR(client,eudConnected),true);
|
||||
player setVariable [QEGVAR(client,eudConnected), true, true];
|
||||
};
|
||||
case "EUD Disconnected": {
|
||||
SETVAR(player,EGVAR(client,eudConnected),false);
|
||||
player setVariable [QEGVAR(client,eudConnected), false, true];
|
||||
SETVAR(player,EGVAR(client,lrfEnabled),false);
|
||||
call EFUNC(uav,stopMavlinkBroadcast);
|
||||
"armatak" callExtension ["uas:stop_endpoint", []];
|
||||
"armatak" callExtension ["mdns:stop", []];
|
||||
@@ -27,14 +28,16 @@ addMissionEventHandler ["ExtensionCallback", {
|
||||
[_function, "error", _name] call FUNC(notify);
|
||||
|
||||
if (_function == "UDP Socket is not running") then {
|
||||
SETVAR(player,EGVAR(client,eudConnected),false);
|
||||
player setVariable [QEGVAR(client,eudConnected), false, true];
|
||||
SETVAR(player,EGVAR(client,lrfEnabled),false);
|
||||
call EFUNC(uav,stopMavlinkBroadcast);
|
||||
"armatak" callExtension ["uas:stop_endpoint", []];
|
||||
"armatak" callExtension ["mdns:stop", []];
|
||||
};
|
||||
|
||||
if (_function == "failed to bind UDP socket") then {
|
||||
SETVAR(player,EGVAR(client,eudConnected),false);
|
||||
player setVariable [QEGVAR(client,eudConnected), false, true];
|
||||
SETVAR(player,EGVAR(client,lrfEnabled),false);
|
||||
call EFUNC(uav,stopMavlinkBroadcast);
|
||||
"armatak" callExtension ["uas:stop_endpoint", []];
|
||||
"armatak" callExtension ["mdns:stop", []];
|
||||
|
||||
36
addons/main/functions/api/fn_delete_registered_cots.sqf
Normal file
36
addons/main/functions/api/fn_delete_registered_cots.sqf
Normal file
@@ -0,0 +1,36 @@
|
||||
// function name: armatak_fnc_delete_registered_cots
|
||||
// function author: Valmo, Codex
|
||||
// function description: Sends forced delete CoTs for all registered CoTs in a scope.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Scope/key used to group CoTs <STRING>
|
||||
//
|
||||
// Return Value:
|
||||
// Number of delete CoTs sent <NUMBER>
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
if (_scope isEqualTo "") exitWith {0};
|
||||
|
||||
private _registry = missionNamespace getVariable ["armatak_registered_cots", []];
|
||||
private _remaining = [];
|
||||
private _deleted = 0;
|
||||
|
||||
{
|
||||
_x params ["_registeredScope", "_uid", "_type", "_lat", "_lon", "_hae"];
|
||||
|
||||
if (_registeredScope isEqualTo _scope) then {
|
||||
"armatak" callExtension ["tcp_socket:cot:delete", [[_uid, _type, _lat, _lon, _hae]]];
|
||||
_deleted = _deleted + 1;
|
||||
} else {
|
||||
_remaining pushBack _x;
|
||||
};
|
||||
} forEach _registry;
|
||||
|
||||
missionNamespace setVariable ["armatak_registered_cots", _remaining];
|
||||
|
||||
_deleted
|
||||
44
addons/main/functions/api/fn_draw_circle.sqf
Normal file
44
addons/main/functions/api/fn_draw_circle.sqf
Normal file
@@ -0,0 +1,44 @@
|
||||
// function name: armatak_fnc_draw_circle
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK Drawing Tools circle CoT.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Center position or object <ARRAY|OBJECT>
|
||||
// 1: Radius in meters <NUMBER>
|
||||
// 2: Callsign/title <STRING> (default: "ArmaTAK Circle")
|
||||
// 3: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 4: Stroke color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 5: Fill color as signed ARGB int <NUMBER> (default: -1761607681)
|
||||
// 6: Stroke weight <NUMBER> (default: 3)
|
||||
// 7: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [player, 300, "Mortar Risk Area"] call armatak_fnc_draw_circle;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_center", objNull, [objNull, []]],
|
||||
["_radius", 100, [0]],
|
||||
["_callsign", "ArmaTAK Circle", [""]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_strokeColor", -1, [0]],
|
||||
["_fillColor", -1761607681, [0]],
|
||||
["_strokeWeight", 3, [0]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
[
|
||||
_center,
|
||||
_radius,
|
||||
_radius,
|
||||
360,
|
||||
_callsign,
|
||||
_staleSeconds,
|
||||
_strokeColor,
|
||||
_fillColor,
|
||||
_strokeWeight,
|
||||
"",
|
||||
"u-d-c-c",
|
||||
_scope
|
||||
] call armatak_fnc_draw_ellipse;
|
||||
70
addons/main/functions/api/fn_draw_ellipse.sqf
Normal file
70
addons/main/functions/api/fn_draw_ellipse.sqf
Normal file
@@ -0,0 +1,70 @@
|
||||
// function name: armatak_fnc_draw_ellipse
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK Drawing Tools ellipse or circle CoT.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Center position or object <ARRAY|OBJECT>
|
||||
// 1: Major radius in meters <NUMBER>
|
||||
// 2: Minor radius in meters <NUMBER>
|
||||
// 3: Rotation angle in degrees <NUMBER> (default: 0)
|
||||
// 4: Callsign/title <STRING> (default: "ArmaTAK Ellipse")
|
||||
// 5: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 6: Stroke color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 7: Fill color as signed ARGB int <NUMBER> (default: -1761607681)
|
||||
// 8: Stroke weight <NUMBER> (default: 3)
|
||||
// 9: MilSym SIDC for tactical overlay <STRING> (default: "")
|
||||
// 10: CoT type <STRING> (default: "u-d-c-e")
|
||||
// 11: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [screenToWorld [0.5, 0.5], 250, 100, 45, "Support by Fire"] call armatak_fnc_draw_ellipse;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_center", objNull, [objNull, []]],
|
||||
["_major", 100, [0]],
|
||||
["_minor", 50, [0]],
|
||||
["_angle", 0, [0]],
|
||||
["_callsign", "ArmaTAK Ellipse", [""]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_strokeColor", -1, [0]],
|
||||
["_fillColor", -1761607681, [0]],
|
||||
["_strokeWeight", 3, [0]],
|
||||
["_milsym", "", [""]],
|
||||
["_cotType", "u-d-c-e", [""]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
private _position = if (_center isEqualType objNull) then {
|
||||
getPos _center
|
||||
} else {
|
||||
_center
|
||||
};
|
||||
|
||||
if ((count _position) < 2) exitWith {""};
|
||||
|
||||
private _altitude = _position param [2, 0, [0]];
|
||||
private _realLocation = [_position select 0, _position select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _payload = [
|
||||
_uuid,
|
||||
_cotType,
|
||||
_realLocation select 0,
|
||||
_realLocation select 1,
|
||||
_realLocation select 2,
|
||||
_major max 1,
|
||||
_minor max 1,
|
||||
_angle,
|
||||
_callsign,
|
||||
_staleSeconds max 1,
|
||||
_strokeColor,
|
||||
_fillColor,
|
||||
_strokeWeight max 1,
|
||||
_milsym
|
||||
];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:draw:ellipse", [_payload]];
|
||||
[_scope, _uuid, _cotType, _realLocation select 0, _realLocation select 1, _realLocation select 2] call armatak_fnc_register_cot;
|
||||
|
||||
_uuid
|
||||
83
addons/main/functions/api/fn_draw_polyline.sqf
Normal file
83
addons/main/functions/api/fn_draw_polyline.sqf
Normal file
@@ -0,0 +1,83 @@
|
||||
// function name: armatak_fnc_draw_polyline
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK Drawing Tools freeform line or polygon CoT.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Positions or objects <ARRAY>
|
||||
// 1: Callsign/title <STRING> (default: "ArmaTAK Line")
|
||||
// 2: Closed polygon <BOOL> (default: false)
|
||||
// 3: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 4: Stroke color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 5: Fill color as signed ARGB int <NUMBER> (default: -1761607681)
|
||||
// 6: Stroke weight <NUMBER> (default: 3)
|
||||
// 7: Stroke style <STRING> (default: "solid")
|
||||
// 8: MilSym SIDC for tactical overlay <STRING> (default: "")
|
||||
// 9: CoT type <STRING> (default: "u-d-f")
|
||||
// 10: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [[pos player, screenToWorld [0.5, 0.5]], "Phase Line Blue"] call armatak_fnc_draw_polyline;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_points", [], [[]]],
|
||||
["_callsign", "ArmaTAK Line", [""]],
|
||||
["_closed", false, [true]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_strokeColor", -1, [0]],
|
||||
["_fillColor", -1761607681, [0]],
|
||||
["_strokeWeight", 3, [0]],
|
||||
["_strokeStyle", "solid", [""]],
|
||||
["_milsym", "", [""]],
|
||||
["_cotType", "u-d-f", [""]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
if ((count _points) < 2) exitWith {""};
|
||||
|
||||
private _pointStrings = [];
|
||||
private _center = [];
|
||||
|
||||
{
|
||||
private _position = if (_x isEqualType objNull) then {
|
||||
getPos _x
|
||||
} else {
|
||||
_x
|
||||
};
|
||||
|
||||
if ((count _position) >= 2) then {
|
||||
private _altitude = _position param [2, 0, [0]];
|
||||
private _realLocation = [_position select 0, _position select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
_pointStrings pushBack format ["%1,%2,%3", _realLocation select 0, _realLocation select 1, _realLocation select 2];
|
||||
|
||||
if (_center isEqualTo []) then {
|
||||
_center = _realLocation;
|
||||
};
|
||||
};
|
||||
} forEach _points;
|
||||
|
||||
if ((count _pointStrings) < 2) exitWith {""};
|
||||
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _payload = [
|
||||
_uuid,
|
||||
_cotType,
|
||||
_center select 0,
|
||||
_center select 1,
|
||||
_center select 2,
|
||||
_pointStrings joinString ";",
|
||||
_callsign,
|
||||
_staleSeconds max 1,
|
||||
_strokeColor,
|
||||
_fillColor,
|
||||
_strokeWeight max 1,
|
||||
_strokeStyle,
|
||||
_closed,
|
||||
_milsym
|
||||
];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:draw:free", [_payload]];
|
||||
[_scope, _uuid, _cotType, _center select 0, _center select 1, _center select 2] call armatak_fnc_register_cot;
|
||||
|
||||
_uuid
|
||||
94
addons/main/functions/api/fn_draw_rectangle.sqf
Normal file
94
addons/main/functions/api/fn_draw_rectangle.sqf
Normal file
@@ -0,0 +1,94 @@
|
||||
// function name: armatak_fnc_draw_rectangle
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK Drawing Tools rectangle CoT from an Arma center, width, length, and bearing.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Center position or object <ARRAY|OBJECT>
|
||||
// 1: Width in meters <NUMBER>
|
||||
// 2: Length in meters <NUMBER>
|
||||
// 3: Bearing in degrees <NUMBER> (default: 0)
|
||||
// 4: Callsign/title <STRING> (default: "ArmaTAK Rectangle")
|
||||
// 5: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 6: Stroke color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 7: Fill color as signed ARGB int <NUMBER> (default: -1761607681)
|
||||
// 8: Stroke weight <NUMBER> (default: 3)
|
||||
// 9: MilSym SIDC for tactical overlay <STRING> (default: "")
|
||||
// 10: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [screenToWorld [0.5, 0.5], 200, 500, 30, "Engagement Area"] call armatak_fnc_draw_rectangle;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_center", objNull, [objNull, []]],
|
||||
["_width", 100, [0]],
|
||||
["_length", 100, [0]],
|
||||
["_bearing", 0, [0]],
|
||||
["_callsign", "ArmaTAK Rectangle", [""]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_strokeColor", -1, [0]],
|
||||
["_fillColor", -1761607681, [0]],
|
||||
["_strokeWeight", 3, [0]],
|
||||
["_milsym", "", [""]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
private _centerPos = if (_center isEqualType objNull) then {
|
||||
getPos _center
|
||||
} else {
|
||||
_center
|
||||
};
|
||||
|
||||
if ((count _centerPos) < 2) exitWith {""};
|
||||
|
||||
private _altitude = _centerPos param [2, 0, [0]];
|
||||
private _halfWidth = (_width max 1) / 2;
|
||||
private _halfLength = (_length max 1) / 2;
|
||||
private _sin = sin _bearing;
|
||||
private _cos = cos _bearing;
|
||||
private _forward = [_sin, _cos, 0];
|
||||
private _right = [_cos, -_sin, 0];
|
||||
private _offsets = [
|
||||
[(_right vectorMultiply -_halfWidth), (_forward vectorMultiply _halfLength)],
|
||||
[(_right vectorMultiply _halfWidth), (_forward vectorMultiply _halfLength)],
|
||||
[(_right vectorMultiply _halfWidth), (_forward vectorMultiply -_halfLength)],
|
||||
[(_right vectorMultiply -_halfWidth), (_forward vectorMultiply -_halfLength)]
|
||||
];
|
||||
private _points = [];
|
||||
|
||||
{
|
||||
private _offset = (_x select 0) vectorAdd (_x select 1);
|
||||
_points pushBack ([_centerPos select 0, _centerPos select 1, _altitude] vectorAdd _offset);
|
||||
} forEach _offsets;
|
||||
|
||||
private _centerReal = [_centerPos select 0, _centerPos select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
private _pointStrings = [];
|
||||
|
||||
{
|
||||
private _realLocation = [_x select 0, _x select 1, _x select 2] call armatak_client_fnc_convertClientLocation;
|
||||
_pointStrings pushBack format ["%1,%2,%3", _realLocation select 0, _realLocation select 1, _realLocation select 2];
|
||||
} forEach _points;
|
||||
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _payload = [
|
||||
_uuid,
|
||||
"u-d-r",
|
||||
_centerReal select 0,
|
||||
_centerReal select 1,
|
||||
_centerReal select 2,
|
||||
_pointStrings joinString ";",
|
||||
_callsign,
|
||||
_staleSeconds max 1,
|
||||
_strokeColor,
|
||||
_fillColor,
|
||||
_strokeWeight max 1,
|
||||
"solid",
|
||||
false,
|
||||
_milsym
|
||||
];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:draw:rectangle", [_payload]];
|
||||
[_scope, _uuid, "u-d-r", _centerReal select 0, _centerReal select 1, _centerReal select 2] call armatak_fnc_register_cot;
|
||||
|
||||
_uuid
|
||||
200
addons/main/functions/api/fn_draw_route.sqf
Normal file
200
addons/main/functions/api/fn_draw_route.sqf
Normal file
@@ -0,0 +1,200 @@
|
||||
// function name: armatak_fnc_draw_route
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK navigable route CoT.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Positions or objects <ARRAY>
|
||||
// 1: Callsign/title <STRING> (default: "ArmaTAK Route")
|
||||
// 2: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 3: Color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 4: Stroke weight <NUMBER> (default: 3)
|
||||
// 5: Navigation method <STRING> (default: "Driving")
|
||||
// 6: Route type <STRING> (default: "Primary")
|
||||
// 7: Direction/planning method <STRING> (default: "Infil")
|
||||
// 8: Checkpoint interval among route points <NUMBER> (default: 5)
|
||||
// 9: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [[pos player, screenToWorld [0.5, 0.5]], "Patrol Route"] call armatak_fnc_draw_route;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_points", [], [[]]],
|
||||
["_callsign", "ArmaTAK Route", [""]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_color", -1, [0]],
|
||||
["_strokeWeight", 3, [0]],
|
||||
["_method", "Driving", [""]],
|
||||
["_routeType", "Primary", [""]],
|
||||
["_direction", "Infil", [""]],
|
||||
["_checkpointInterval", 5, [0]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
if ((count _points) < 2) exitWith {""};
|
||||
|
||||
private _pointStrings = [];
|
||||
|
||||
{
|
||||
private _position = if (_x isEqualType objNull) then {
|
||||
getPos _x
|
||||
} else {
|
||||
_x
|
||||
};
|
||||
|
||||
if ((count _position) >= 2) then {
|
||||
private _altitude = _position param [2, 0, [0]];
|
||||
private _realLocation = [_position select 0, _position select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
_pointStrings pushBack format ["%1,%2,%3", _realLocation select 0, _realLocation select 1, _realLocation select 2];
|
||||
};
|
||||
} forEach _points;
|
||||
|
||||
if ((count _pointStrings) < 2) exitWith {""};
|
||||
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _pad = {
|
||||
params ["_value", "_digits"];
|
||||
|
||||
private _text = str (floor _value);
|
||||
while {(count _text) < _digits} do {
|
||||
_text = "0" + _text;
|
||||
};
|
||||
|
||||
_text
|
||||
};
|
||||
|
||||
private _formatCotTime = {
|
||||
params ["_dateParts"];
|
||||
|
||||
format [
|
||||
"%1-%2-%3T%4:%5:%6.%7Z",
|
||||
_dateParts param [0, 1970, [0]],
|
||||
[_dateParts param [1, 1, [0]], 2] call _pad,
|
||||
[_dateParts param [2, 1, [0]], 2] call _pad,
|
||||
[_dateParts param [3, 0, [0]], 2] call _pad,
|
||||
[_dateParts param [4, 0, [0]], 2] call _pad,
|
||||
[_dateParts param [5, 0, [0]], 2] call _pad,
|
||||
[_dateParts param [6, 0, [0]], 3] call _pad
|
||||
]
|
||||
};
|
||||
|
||||
private _addSecondsUtc = {
|
||||
params ["_dateParts", "_secondsToAdd"];
|
||||
|
||||
private _year = _dateParts param [0, 1970, [0]];
|
||||
private _month = _dateParts param [1, 1, [0]];
|
||||
private _day = _dateParts param [2, 1, [0]];
|
||||
private _hour = _dateParts param [3, 0, [0]];
|
||||
private _minute = _dateParts param [4, 0, [0]];
|
||||
private _second = (_dateParts param [5, 0, [0]]) + (floor _secondsToAdd);
|
||||
private _millisecond = _dateParts param [6, 0, [0]];
|
||||
|
||||
while {_second >= 60} do {
|
||||
_second = _second - 60;
|
||||
_minute = _minute + 1;
|
||||
};
|
||||
while {_minute >= 60} do {
|
||||
_minute = _minute - 60;
|
||||
_hour = _hour + 1;
|
||||
};
|
||||
while {_hour >= 24} do {
|
||||
_hour = _hour - 24;
|
||||
_day = _day + 1;
|
||||
|
||||
private _daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
||||
private _isLeapYear = ((_year mod 4) isEqualTo 0) && {((_year mod 100) isNotEqualTo 0) || {(_year mod 400) isEqualTo 0}};
|
||||
if (_isLeapYear) then {_daysInMonth set [1, 29];};
|
||||
|
||||
if (_day > (_daysInMonth select (_month - 1))) then {
|
||||
_day = 1;
|
||||
_month = _month + 1;
|
||||
if (_month > 12) then {
|
||||
_month = 1;
|
||||
_year = _year + 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
[_year, _month, _day, _hour, _minute, _second, _millisecond]
|
||||
};
|
||||
|
||||
private _nowDate = systemTimeUTC;
|
||||
private _now = [_nowDate] call _formatCotTime;
|
||||
private _stale = [[_nowDate, _staleSeconds max 60] call _addSecondsUtc] call _formatCotTime;
|
||||
|
||||
private _links = "";
|
||||
private _routeWaypoints = [];
|
||||
private _lastIndex = (count _pointStrings) - 1;
|
||||
private _checkpointNumber = 1;
|
||||
private _checkpointIntervalSafe = _checkpointInterval max 1;
|
||||
|
||||
{
|
||||
private _linkUuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _pointCallsign = "";
|
||||
if (_forEachIndex isEqualTo 0) then {
|
||||
_pointCallsign = format ["%1 SP", _callsign];
|
||||
} else {
|
||||
if (_forEachIndex isEqualTo _lastIndex) then {
|
||||
_pointCallsign = "VDO";
|
||||
} else {
|
||||
if ((_forEachIndex mod _checkpointIntervalSafe) isEqualTo 0) then {
|
||||
_pointCallsign = format ["CP%1", _checkpointNumber];
|
||||
_checkpointNumber = _checkpointNumber + 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
private _linkType = ["b-m-p-w", "b-m-p-c"] select (_pointCallsign isEqualTo "");
|
||||
_links = _links + format [
|
||||
"<link uid=""%1"" callsign=""%2"" type=""%3"" point=""%4"" remarks="""" relation=""c""/>",
|
||||
_linkUuid,
|
||||
_pointCallsign,
|
||||
_linkType,
|
||||
_x
|
||||
];
|
||||
|
||||
if (_pointCallsign isNotEqualTo "") then {
|
||||
_routeWaypoints pushBack [_linkUuid, _pointCallsign, _x];
|
||||
};
|
||||
} forEach _pointStrings;
|
||||
|
||||
private _xml = format [
|
||||
"<?xml version=""1.0"" encoding=""UTF-8"" ?><event version=""2.0"" uid=""%1"" type=""b-m-r"" time=""%2"" start=""%2"" stale=""%3"" how=""h-e"" access=""Undefined""><point lat=""0.0"" lon=""0.0"" hae=""9999999.0"" ce=""9999999.0"" le=""9999999.0""/><detail>%4<link_attr planningmethod=""%5"" color=""%6"" method=""%7"" prefix=""CP"" style=""0"" type=""Vehicle"" stroke=""%8"" direction=""%5"" routetype=""%9"" order=""Ascending Check Points""/><creator uid=""ARMATAK"" callsign=""ArmaTAK"" time=""%2"" type=""a-f-G-U-C""/><strokeColor value=""%6""/><strokeWeight value=""%8""/><strokeStyle value=""solid""/><labels_on value=""false""/><__routeinfo><__navcues/></__routeinfo><color value=""%6""/><remarks/><contact callsign=""%10""/><archive/><height_unit>1</height_unit></detail></event>",
|
||||
_uuid,
|
||||
_now,
|
||||
_stale,
|
||||
_links,
|
||||
_direction,
|
||||
_color,
|
||||
_method,
|
||||
_strokeWeight max 1,
|
||||
_routeType,
|
||||
_callsign
|
||||
];
|
||||
|
||||
"armatak" callExtension ["log", [["info", format ["Sending ATAK route '%1' with %2 points (%3 bytes)", _callsign, count _pointStrings, count _xml]]]];
|
||||
"armatak" callExtension ["tcp_socket:send_payload", [_xml]];
|
||||
[_scope, _uuid, "b-m-r", 0, 0, 9999999] call armatak_fnc_register_cot;
|
||||
|
||||
{
|
||||
_x params ["_waypointUid", "_waypointCallsign", "_pointString"];
|
||||
private _pointParts = _pointString splitString ",";
|
||||
if ((count _pointParts) >= 3) then {
|
||||
private _waypointXml = format [
|
||||
"<?xml version=""1.0"" encoding=""UTF-8"" ?><event version=""2.0"" uid=""%1"" type=""b-m-p-w"" time=""%2"" start=""%2"" stale=""%3"" how=""h-e""><point lat=""%4"" lon=""%5"" hae=""%6"" ce=""9999999.0"" le=""9999999.0""/><detail><contact callsign=""%7""/><remarks/><archive/><link relation=""p-p"" type=""b-m-r"" uid=""%8""/></detail></event>",
|
||||
_waypointUid,
|
||||
_now,
|
||||
_stale,
|
||||
_pointParts select 0,
|
||||
_pointParts select 1,
|
||||
_pointParts select 2,
|
||||
_waypointCallsign,
|
||||
_uuid
|
||||
];
|
||||
"armatak" callExtension ["tcp_socket:send_payload", [_waypointXml]];
|
||||
[_scope, _waypointUid, "b-m-p-w", parseNumber (_pointParts select 0), parseNumber (_pointParts select 1), parseNumber (_pointParts select 2)] call armatak_fnc_register_cot;
|
||||
};
|
||||
} forEach _routeWaypoints;
|
||||
|
||||
_uuid
|
||||
75
addons/main/functions/api/fn_draw_tactical_graphic.sqf
Normal file
75
addons/main/functions/api/fn_draw_tactical_graphic.sqf
Normal file
@@ -0,0 +1,75 @@
|
||||
// function name: armatak_fnc_draw_tactical_graphic
|
||||
// function author: Valmo
|
||||
// function description: Sends an ATAK Drawing Tools shape with a MilSym tactical graphic overlay.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Positions or objects <ARRAY>
|
||||
// 1: MilSym SIDC <STRING>
|
||||
// 2: Callsign/title <STRING> (default: "ArmaTAK Tactical Graphic")
|
||||
// 3: Closed polygon <BOOL> (default: false)
|
||||
// 4: Stale time in seconds <NUMBER> (default: 86400)
|
||||
// 5: Stroke color as signed ARGB int <NUMBER> (default: -1)
|
||||
// 6: Fill color as signed ARGB int <NUMBER> (default: -1761607681)
|
||||
// 7: Stroke weight <NUMBER> (default: 3)
|
||||
//
|
||||
// Example:
|
||||
// [[pos player, screenToWorld [0.5, 0.5]], "GFGPOLAGM-----X", "Axis of Advance"] call armatak_fnc_draw_tactical_graphic;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_points", [], [[]]],
|
||||
["_milsym", "", [""]],
|
||||
["_callsign", "ArmaTAK Tactical Graphic", [""]],
|
||||
["_closed", false, [true]],
|
||||
["_staleSeconds", 86400, [0]],
|
||||
["_strokeColor", -1, [0]],
|
||||
["_fillColor", -1761607681, [0]],
|
||||
["_strokeWeight", 3, [0]]
|
||||
];
|
||||
|
||||
if (_milsym isEqualTo "") exitWith {""};
|
||||
if ((count _points) < 2) exitWith {""};
|
||||
|
||||
private _pointStrings = [];
|
||||
private _center = [];
|
||||
|
||||
{
|
||||
private _position = if (_x isEqualType objNull) then {
|
||||
getPos _x
|
||||
} else {
|
||||
_x
|
||||
};
|
||||
|
||||
if ((count _position) >= 2) then {
|
||||
private _altitude = _position param [2, 0, [0]];
|
||||
private _realLocation = [_position select 0, _position select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
_pointStrings pushBack format ["%1,%2,%3", _realLocation select 0, _realLocation select 1, _realLocation select 2];
|
||||
|
||||
if (_center isEqualTo []) then {
|
||||
_center = _realLocation;
|
||||
};
|
||||
};
|
||||
} forEach _points;
|
||||
|
||||
if ((count _pointStrings) < 2) exitWith {""};
|
||||
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _payload = [
|
||||
_uuid,
|
||||
"u-d-f",
|
||||
_center select 0,
|
||||
_center select 1,
|
||||
_center select 2,
|
||||
_pointStrings joinString ";",
|
||||
_callsign,
|
||||
_staleSeconds max 1,
|
||||
_strokeColor,
|
||||
_fillColor,
|
||||
_strokeWeight max 1,
|
||||
"solid",
|
||||
_closed,
|
||||
_milsym
|
||||
];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:draw:vector", [_payload]];
|
||||
30
addons/main/functions/api/fn_register_cot.sqf
Normal file
30
addons/main/functions/api/fn_register_cot.sqf
Normal file
@@ -0,0 +1,30 @@
|
||||
// function name: armatak_fnc_register_cot
|
||||
// function author: Valmo, Codex
|
||||
// function description: Registers a CoT object under a scope so it can be deleted later.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Scope/key used to group CoTs <STRING>
|
||||
// 1: CoT UID <STRING>
|
||||
// 2: CoT type <STRING>
|
||||
// 3: Latitude <NUMBER>
|
||||
// 4: Longitude <NUMBER>
|
||||
// 5: HAE altitude <NUMBER>
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_scope", "", [""]],
|
||||
["_uid", "", [""]],
|
||||
["_type", "", [""]],
|
||||
["_lat", 0, [0]],
|
||||
["_lon", 0, [0]],
|
||||
["_hae", 0, [0]]
|
||||
];
|
||||
|
||||
if (_scope isEqualTo "" || {_uid isEqualTo ""} || {_type isEqualTo ""}) exitWith {false};
|
||||
|
||||
private _registry = missionNamespace getVariable ["armatak_registered_cots", []];
|
||||
_registry pushBack [_scope, _uid, _type, _lat, _lon, _hae];
|
||||
missionNamespace setVariable ["armatak_registered_cots", _registry];
|
||||
|
||||
true
|
||||
105
addons/main/functions/api/fn_report_marker.sqf
Normal file
105
addons/main/functions/api/fn_report_marker.sqf
Normal file
@@ -0,0 +1,105 @@
|
||||
// function name: armatak_fnc_report_marker
|
||||
// function author: Valmo
|
||||
// function description: Sends a one-shot TAK report marker with an independent stale time.
|
||||
//
|
||||
// Arguments:
|
||||
// 0: Source position or object <ARRAY|OBJECT>
|
||||
// 1: Affiliation or raw CoT type <STRING> (default: "unknown")
|
||||
// Supported affiliations: "friendly", "enemy", "hostile", "neutral", "unknown"
|
||||
// 2: Marker kind <STRING> (default: "infantry")
|
||||
// Supported kinds: "infantry", "tank", "car", "apc", "helicopter", "plane", "ship", "static"
|
||||
// 3: Callsign <STRING> (default: "Report")
|
||||
// 4: Remarks <STRING> (default: "")
|
||||
// 5: Stale time in seconds <NUMBER> (default: 3600)
|
||||
// 6: Optional registration scope <STRING> (default: "")
|
||||
//
|
||||
// Example:
|
||||
// [cursorObject, "enemy", "tank", "Enemy Tank", "Reported enemy tank"] call armatak_fnc_report_marker;
|
||||
// [screenToWorld [0.5, 0.5], "unknown", "infantry", "Unknown Contact", "Unknown contact reported", 7200] call armatak_fnc_report_marker;
|
||||
// [cursorObject, "a-h-G-U-C-A-T", "Enemy Tank", "Reported enemy tank", 7200] call armatak_fnc_report_marker;
|
||||
//
|
||||
// Public: Yes
|
||||
|
||||
params [
|
||||
["_source", objNull, [objNull, []]],
|
||||
["_affiliationOrType", "unknown", [""]],
|
||||
["_kindOrCallsign", "infantry", [""]],
|
||||
["_callsignOrRemarks", "Report", [""]],
|
||||
["_remarksOrStaleSeconds", "", ["", 0]],
|
||||
["_staleSeconds", 3600, [0, ""]],
|
||||
["_scope", "", [""]]
|
||||
];
|
||||
|
||||
private _type = "";
|
||||
private _callsign = _callsignOrRemarks;
|
||||
private _remarks = _remarksOrStaleSeconds;
|
||||
|
||||
if (_staleSeconds isEqualType "") then {
|
||||
_scope = _staleSeconds;
|
||||
_staleSeconds = 3600;
|
||||
};
|
||||
|
||||
if ((_affiliationOrType select [0, 2]) isEqualTo "a-") then {
|
||||
_type = _affiliationOrType;
|
||||
_callsign = _kindOrCallsign;
|
||||
_remarks = _callsignOrRemarks;
|
||||
|
||||
if (_remarksOrStaleSeconds isEqualType 0) then {
|
||||
_staleSeconds = _remarksOrStaleSeconds;
|
||||
};
|
||||
} else {
|
||||
private _affiliation = switch (toLower _affiliationOrType) do {
|
||||
case "friendly": {"f"};
|
||||
case "enemy": {"h"};
|
||||
case "hostile": {"h"};
|
||||
case "neutral": {"n"};
|
||||
default {"u"};
|
||||
};
|
||||
|
||||
private _kind = switch (toLower _kindOrCallsign) do {
|
||||
case "tank": {"G-U-C-A-T"};
|
||||
case "car": {"G-U-C-I-M"};
|
||||
case "apc": {"G-U-C-I-I"};
|
||||
case "helicopter": {"A-M-H"};
|
||||
case "plane": {"A-M-F"};
|
||||
case "ship": {"S"};
|
||||
case "static": {"G-U-C-F-M"};
|
||||
default {"G-U-C-I"};
|
||||
};
|
||||
|
||||
_type = "a-" + _affiliation + "-" + _kind;
|
||||
|
||||
if (_remarksOrStaleSeconds isEqualType 0) then {
|
||||
_staleSeconds = _remarksOrStaleSeconds;
|
||||
_remarks = "";
|
||||
};
|
||||
};
|
||||
|
||||
private _position = if (_source isEqualType objNull) then {
|
||||
getPos _source
|
||||
} else {
|
||||
_source
|
||||
};
|
||||
|
||||
if ((count _position) < 2) exitWith {
|
||||
""
|
||||
};
|
||||
|
||||
private _altitude = _position param [2, 0, [0]];
|
||||
private _realLocation = [_position select 0, _position select 1, _altitude] call armatak_client_fnc_convertClientLocation;
|
||||
private _uuid = "armatak" callExtension ["uuid", []] select 0;
|
||||
private _payload = [
|
||||
_uuid,
|
||||
_type,
|
||||
_realLocation select 0,
|
||||
_realLocation select 1,
|
||||
_realLocation select 2,
|
||||
_callsign,
|
||||
_staleSeconds max 1,
|
||||
_remarks
|
||||
];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:cot:report_marker", [_payload]];
|
||||
[_scope, _uuid, _type, _realLocation select 0, _realLocation select 1, _realLocation select 2] call armatak_fnc_register_cot;
|
||||
|
||||
_uuid
|
||||
@@ -6,7 +6,13 @@ if (!isNull _digitalPointer) then {
|
||||
_digitalPointerPosition = _digitalPointer call armatak_client_fnc_extractClientPosition;
|
||||
|
||||
_link_uid = [_unit] call armatak_fnc_extract_uuid;
|
||||
_contact_callsign = ([player] call armatak_fnc_extract_unit_callsign) + ".DP1";
|
||||
_objectType = [_unit] call BIS_fnc_objectType;
|
||||
_ownerCallsign = if ((_objectType select 0) == "Soldier") then {
|
||||
[_unit] call armatak_fnc_extract_unit_callsign
|
||||
} else {
|
||||
[_unit] call armatak_fnc_extract_marker_callsign
|
||||
};
|
||||
_contact_callsign = _ownerCallsign + ".DP1";
|
||||
|
||||
_dpCot = [_link_uid, _contact_callsign, _digitalPointerPosition select 1, _digitalPointerPosition select 2, _digitalPointerPosition select 3];
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ switch (str _side) do {
|
||||
};
|
||||
};
|
||||
|
||||
_unit_type = _unit call BIS_fnc_objectType;
|
||||
private _unit_type = _unit call BIS_fnc_objectType;
|
||||
|
||||
if ((_unit_type select 0) == "Soldier") then {
|
||||
switch (_unit_type select 1) do {
|
||||
@@ -71,7 +71,7 @@ if ((_unit_type select 0) == "Soldier") then {
|
||||
};
|
||||
|
||||
if ((typeOf (vehicle _unit) != typeOf _unit) or ((_unit_type select 0) == "Vehicle")) then {
|
||||
_vehicle_type = (vehicle _unit) call BIS_fnc_objectType select 1;
|
||||
private _vehicle_type = (vehicle _unit) call BIS_fnc_objectType select 1;
|
||||
switch (_vehicle_type) do {
|
||||
case "Car": {
|
||||
_type = "G-U-C-I-M";
|
||||
@@ -111,10 +111,10 @@ if ((typeOf (vehicle _unit) != typeOf _unit) or ((_unit_type select 0) == "Vehic
|
||||
|
||||
_role = "a-" + _affiliation + "-" + _type;
|
||||
|
||||
armatak_attribute_marker_type = _unit getVariable "armatak_attribute_marker_type";
|
||||
private _markerTypeOverride = _unit getVariable ["armatak_attribute_marker_type", ""];
|
||||
|
||||
if (!isNil "armatak_attribute_marker_type" or armatak_attribute_marker_type != '') then {
|
||||
_role = armatak_attribute_marker_type;
|
||||
if (_markerTypeOverride isNotEqualTo "") then {
|
||||
_role = _markerTypeOverride;
|
||||
};
|
||||
|
||||
_role
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
params["_unit"];
|
||||
|
||||
if (_unit getVariable ["armatak_disable_sensor_data", false]) exitWith {};
|
||||
|
||||
_target = getSensorTargets (_unit);
|
||||
|
||||
{
|
||||
|
||||
@@ -9,15 +9,33 @@ if (isNil { missionNamespace getVariable "armatak_server_syncedUnits" }) then {
|
||||
missionNamespace setVariable ["armatak_server_syncedUnits", []];
|
||||
};
|
||||
|
||||
if (isNil { missionNamespace getVariable "armatak_server_clientClaimedEuds" }) then {
|
||||
missionNamespace setVariable ["armatak_server_clientClaimedEuds", []];
|
||||
};
|
||||
|
||||
GVAR(syncedUnits) = missionNamespace getVariable "armatak_server_syncedUnits";
|
||||
|
||||
[{
|
||||
GVAR(syncedUnits) = missionNamespace getVariable "armatak_server_syncedUnits";
|
||||
private _clientClaimedEuds = missionNamespace getVariable ["armatak_server_clientClaimedEuds", []];
|
||||
|
||||
{
|
||||
_objectType = _x call BIS_fnc_objectType;
|
||||
switch (true) do {
|
||||
case ((_objectType select 0) == "Soldier"): {
|
||||
private _uuid = _x call armatak_fnc_extract_uuid;
|
||||
private _isClientEud = _x getVariable [QEGVAR(client,eudConnected), false];
|
||||
if (_isClientEud) exitWith {
|
||||
if !(_uuid in _clientClaimedEuds) then {
|
||||
private _position = _x call armatak_client_fnc_extractClientPosition;
|
||||
private _deleteCot = [_uuid, "a-f-G-U-C-I", _position select 1, _position select 2, _position select 3];
|
||||
"armatak" callExtension ["tcp_socket:cot:delete", [_deleteCot]];
|
||||
_clientClaimedEuds pushBack _uuid;
|
||||
};
|
||||
};
|
||||
|
||||
_clientClaimedEuds = _clientClaimedEuds - [_uuid];
|
||||
|
||||
_callsign = [_x] call armatak_fnc_extract_unit_callsign;
|
||||
_group_name = [group _x] call armatak_fnc_extract_group_color;
|
||||
_group_role = [_x] call armatak_fnc_extract_group_role;
|
||||
@@ -31,8 +49,8 @@ GVAR(syncedUnits) = missionNamespace getVariable "armatak_server_syncedUnits";
|
||||
_callsign = [_x] call armatak_fnc_extract_marker_callsign;
|
||||
|
||||
[_x, _atak_type, _callsign] call armatak_fnc_send_drone_cot;
|
||||
[_x] call armatak_fnc_send_digital_pointer_cot;
|
||||
_x call armatak_fnc_extract_sensor_data;
|
||||
[_x] call armatak_fnc_send_digital_pointer_cot;
|
||||
};
|
||||
};
|
||||
case ((_objectType select 0) == "Vehicle"): {
|
||||
@@ -41,6 +59,7 @@ GVAR(syncedUnits) = missionNamespace getVariable "armatak_server_syncedUnits";
|
||||
|
||||
[_x, _atak_type, _callsign] call armatak_fnc_send_marker_cot;
|
||||
_x call armatak_fnc_extract_sensor_data;
|
||||
[_x] call armatak_fnc_send_digital_pointer_cot;
|
||||
};
|
||||
case ((_objectType select 0) == "VehicleAutonomous"): {
|
||||
if !(_x getVariable ["armatak_uav_mavlink_broadcasting", false]) then {
|
||||
@@ -48,12 +67,14 @@ GVAR(syncedUnits) = missionNamespace getVariable "armatak_server_syncedUnits";
|
||||
_callsign = [_x] call armatak_fnc_extract_marker_callsign;
|
||||
|
||||
[_x, _atak_type, _callsign] call armatak_fnc_send_drone_cot;
|
||||
[_x] call armatak_fnc_send_digital_pointer_cot;
|
||||
_x call armatak_fnc_extract_sensor_data;
|
||||
[_x] call armatak_fnc_send_digital_pointer_cot;
|
||||
};
|
||||
};
|
||||
};
|
||||
} forEach GVAR(syncedUnits);
|
||||
|
||||
missionNamespace setVariable ["armatak_server_clientClaimedEuds", _clientClaimedEuds];
|
||||
}, 1, []] call CBA_fnc_addPerFrameHandler;
|
||||
|
||||
true
|
||||
|
||||
@@ -18,6 +18,7 @@ pub struct CursorOverTime {
|
||||
pub link_uid: Option<String>,
|
||||
pub remarker: Option<String>,
|
||||
pub video_url: Option<String>,
|
||||
pub stale_seconds: Option<i64>,
|
||||
}
|
||||
|
||||
impl CursorOverTime {
|
||||
@@ -34,8 +35,9 @@ impl CursorOverTime {
|
||||
|
||||
let created_time = Utc::now().to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
|
||||
let stale_time =
|
||||
(Utc::now() + Duration::seconds(360)).to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
let stale_seconds = self.stale_seconds.unwrap_or(360).max(1);
|
||||
let stale_time = (Utc::now() + Duration::seconds(stale_seconds))
|
||||
.to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
|
||||
let mut xml = String::new();
|
||||
|
||||
|
||||
45
src/cot/delete.rs
Normal file
45
src/cot/delete.rs
Normal file
@@ -0,0 +1,45 @@
|
||||
use arma_rs::{FromArma, FromArmaError};
|
||||
use chrono::{Duration, SecondsFormat, Utc};
|
||||
|
||||
pub struct DeleteCoTPayload {
|
||||
pub target_uid: String,
|
||||
pub target_type: String,
|
||||
pub point_lat: f64,
|
||||
pub point_lon: f64,
|
||||
pub point_hae: f32,
|
||||
}
|
||||
|
||||
impl FromArma for DeleteCoTPayload {
|
||||
fn from_arma(data: String) -> Result<DeleteCoTPayload, FromArmaError> {
|
||||
let (target_uid, target_type, point_lat, point_lon, point_hae) =
|
||||
<(String, String, f64, f64, f32)>::from_arma(data)?;
|
||||
Ok(Self {
|
||||
target_uid,
|
||||
target_type,
|
||||
point_lat,
|
||||
point_lon,
|
||||
point_hae,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl DeleteCoTPayload {
|
||||
pub fn to_xml(&self) -> String {
|
||||
let created_time = Utc::now().to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
let stale_time =
|
||||
(Utc::now() + Duration::seconds(60)).to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
|
||||
format!(
|
||||
"<?xml version=\"1.0\" encoding=\"UTF-8\" ?><event type=\"t-x-d-d\" version=\"2.0\" how=\"m-g\" uid=\"{}.delete\" time=\"{}\" start=\"{}\" stale=\"{}\"><point ce=\"9999999\" le=\"9999999\" hae=\"{}\" lat=\"{}\" lon=\"{}\" /><detail><link uid=\"{}\" type=\"{}\" relation=\"none\" /><__forcedelete /></detail></event>",
|
||||
self.target_uid,
|
||||
created_time,
|
||||
created_time,
|
||||
stale_time,
|
||||
self.point_hae,
|
||||
self.point_lat,
|
||||
self.point_lon,
|
||||
self.target_uid,
|
||||
self.target_type
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -41,7 +41,7 @@ impl DigitalPointerPayload {
|
||||
link_uid: Some(self.link_uid.clone()),
|
||||
remarker: None,
|
||||
video_url: None,
|
||||
stale_seconds: Some(7),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
pub mod circle;
|
||||
pub mod route;
|
||||
pub mod shape;
|
||||
|
||||
149
src/cot/draws/route.rs
Normal file
149
src/cot/draws/route.rs
Normal file
@@ -0,0 +1,149 @@
|
||||
use arma_rs::{FromArma, FromArmaError};
|
||||
use uuid::Uuid;
|
||||
|
||||
#[derive(Clone)]
|
||||
struct RoutePoint {
|
||||
lat: f64,
|
||||
lon: f64,
|
||||
hae: f32,
|
||||
}
|
||||
|
||||
pub struct RoutePayload {
|
||||
pub uuid: String,
|
||||
pub points: String,
|
||||
pub callsign: String,
|
||||
pub stale_seconds: i64,
|
||||
pub color: i32,
|
||||
pub stroke_weight: f64,
|
||||
pub method: String,
|
||||
pub route_type: String,
|
||||
pub direction: String,
|
||||
pub checkpoint_interval: usize,
|
||||
}
|
||||
|
||||
impl FromArma for RoutePayload {
|
||||
fn from_arma(data: String) -> Result<Self, FromArmaError> {
|
||||
let (
|
||||
uuid,
|
||||
points,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
color,
|
||||
stroke_weight,
|
||||
method,
|
||||
route_type,
|
||||
direction,
|
||||
checkpoint_interval,
|
||||
) = <(
|
||||
String,
|
||||
String,
|
||||
String,
|
||||
i64,
|
||||
i32,
|
||||
f64,
|
||||
String,
|
||||
String,
|
||||
String,
|
||||
i32,
|
||||
)>::from_arma(data)?;
|
||||
|
||||
Ok(Self {
|
||||
uuid,
|
||||
points,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
color,
|
||||
stroke_weight,
|
||||
method,
|
||||
route_type,
|
||||
direction,
|
||||
checkpoint_interval: checkpoint_interval.max(1) as usize,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl RoutePayload {
|
||||
pub fn to_xml(&self, now: &str, stale: &str) -> String {
|
||||
let points = parse_points(&self.points);
|
||||
let links = route_links(&self.callsign, &points, self.checkpoint_interval);
|
||||
|
||||
format!(
|
||||
r#"<?xml version="1.0" encoding="UTF-8" ?><event version="2.0" uid="{uid}" type="b-m-r" time="{now}" start="{now}" stale="{stale}" how="h-e" access="Undefined"><point lat="0.0" lon="0.0" hae="9999999.0" ce="9999999.0" le="9999999.0"/><detail>{links}<link_attr planningmethod="{direction}" color="{color}" method="{method}" prefix="CP" style="0" type="Vehicle" stroke="{stroke_weight}" direction="{direction}" routetype="{route_type}" order="Ascending Check Points"/><creator uid="ARMATAK" callsign="ArmaTAK" time="{now}" type="a-f-G-U-C"/><strokeColor value="{color}"/><strokeWeight value="{stroke_weight}"/><strokeStyle value="solid"/><labels_on value="false"/><__routeinfo><__navcues/></__routeinfo><color value="{color}"/><remarks/><contact callsign="{callsign}"/><archive/><height_unit>1</height_unit></detail></event>"#,
|
||||
uid = escape_attr(&self.uuid),
|
||||
now = now,
|
||||
stale = stale,
|
||||
links = links,
|
||||
direction = escape_attr(&self.direction),
|
||||
color = self.color,
|
||||
method = escape_attr(&self.method),
|
||||
stroke_weight = self.stroke_weight.max(1.0),
|
||||
route_type = escape_attr(&self.route_type),
|
||||
callsign = escape_attr(&self.callsign)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fn route_links(callsign: &str, points: &[RoutePoint], checkpoint_interval: usize) -> String {
|
||||
let mut xml = String::new();
|
||||
let last_index = points.len().saturating_sub(1);
|
||||
let mut checkpoint_number = 1;
|
||||
|
||||
for (index, point) in points.iter().enumerate() {
|
||||
let is_start = index == 0;
|
||||
let is_end = index == last_index;
|
||||
let is_checkpoint = !is_start && !is_end && index % checkpoint_interval == 0;
|
||||
let point_callsign = if is_start {
|
||||
format!("{} SP", callsign)
|
||||
} else if is_end {
|
||||
"VDO".to_string()
|
||||
} else if is_checkpoint {
|
||||
let name = format!("CP{}", checkpoint_number);
|
||||
checkpoint_number += 1;
|
||||
name
|
||||
} else {
|
||||
String::new()
|
||||
};
|
||||
let link_type = if point_callsign.is_empty() {
|
||||
"b-m-p-c"
|
||||
} else {
|
||||
"b-m-p-w"
|
||||
};
|
||||
|
||||
xml.push_str(&format!(
|
||||
r#"<link uid="{link_uid}" callsign="{callsign}" type="{link_type}" point="{lat},{lon},{hae}" remarks="" relation="c"/>"#,
|
||||
link_uid = escape_attr(&Uuid::new_v4().to_string()),
|
||||
callsign = escape_attr(&point_callsign),
|
||||
link_type = link_type,
|
||||
lat = point.lat,
|
||||
lon = point.lon,
|
||||
hae = point.hae
|
||||
));
|
||||
}
|
||||
|
||||
xml
|
||||
}
|
||||
|
||||
fn parse_points(raw: &str) -> Vec<RoutePoint> {
|
||||
raw.split(';')
|
||||
.filter_map(|entry| {
|
||||
let parts: Vec<_> = entry.split(',').collect();
|
||||
if parts.len() != 3 {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(RoutePoint {
|
||||
lat: parts[0].parse().ok()?,
|
||||
lon: parts[1].parse().ok()?,
|
||||
hae: parts[2].parse().ok()?,
|
||||
})
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
|
||||
fn escape_attr(value: &str) -> String {
|
||||
value
|
||||
.replace('&', "&")
|
||||
.replace('"', """)
|
||||
.replace('<', "<")
|
||||
.replace('>', ">")
|
||||
}
|
||||
317
src/cot/draws/shape.rs
Normal file
317
src/cot/draws/shape.rs
Normal file
@@ -0,0 +1,317 @@
|
||||
use arma_rs::{FromArma, FromArmaError};
|
||||
|
||||
#[derive(Clone)]
|
||||
struct DrawPoint {
|
||||
lat: f64,
|
||||
lon: f64,
|
||||
hae: f32,
|
||||
}
|
||||
|
||||
pub struct DrawEllipsePayload {
|
||||
pub uuid: String,
|
||||
pub cot_type: String,
|
||||
pub center_lat: f64,
|
||||
pub center_lon: f64,
|
||||
pub center_hae: f32,
|
||||
pub major: f64,
|
||||
pub minor: f64,
|
||||
pub angle: f32,
|
||||
pub callsign: String,
|
||||
pub stale_seconds: i64,
|
||||
pub stroke_color: i32,
|
||||
pub fill_color: i32,
|
||||
pub stroke_weight: f64,
|
||||
pub milsym: String,
|
||||
}
|
||||
|
||||
pub struct DrawLinksPayload {
|
||||
pub uuid: String,
|
||||
pub cot_type: String,
|
||||
pub center_lat: f64,
|
||||
pub center_lon: f64,
|
||||
pub center_hae: f32,
|
||||
pub points: String,
|
||||
pub callsign: String,
|
||||
pub stale_seconds: i64,
|
||||
pub stroke_color: i32,
|
||||
pub fill_color: i32,
|
||||
pub stroke_weight: f64,
|
||||
pub stroke_style: String,
|
||||
pub closed: bool,
|
||||
pub milsym: String,
|
||||
}
|
||||
|
||||
impl FromArma for DrawEllipsePayload {
|
||||
fn from_arma(data: String) -> Result<Self, FromArmaError> {
|
||||
let (
|
||||
uuid,
|
||||
cot_type,
|
||||
center_lat,
|
||||
center_lon,
|
||||
center_hae,
|
||||
major,
|
||||
minor,
|
||||
angle,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
stroke_color,
|
||||
fill_color,
|
||||
stroke_weight,
|
||||
milsym,
|
||||
) = <(
|
||||
String,
|
||||
String,
|
||||
f64,
|
||||
f64,
|
||||
f32,
|
||||
f64,
|
||||
f64,
|
||||
f32,
|
||||
String,
|
||||
i64,
|
||||
i32,
|
||||
i32,
|
||||
f64,
|
||||
String,
|
||||
)>::from_arma(data)?;
|
||||
|
||||
Ok(Self {
|
||||
uuid,
|
||||
cot_type,
|
||||
center_lat,
|
||||
center_lon,
|
||||
center_hae,
|
||||
major,
|
||||
minor,
|
||||
angle,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
stroke_color,
|
||||
fill_color,
|
||||
stroke_weight,
|
||||
milsym,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl FromArma for DrawLinksPayload {
|
||||
fn from_arma(data: String) -> Result<Self, FromArmaError> {
|
||||
let (
|
||||
uuid,
|
||||
cot_type,
|
||||
center_lat,
|
||||
center_lon,
|
||||
center_hae,
|
||||
points,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
stroke_color,
|
||||
fill_color,
|
||||
stroke_weight,
|
||||
stroke_style,
|
||||
closed,
|
||||
milsym,
|
||||
) = <(
|
||||
String,
|
||||
String,
|
||||
f64,
|
||||
f64,
|
||||
f32,
|
||||
String,
|
||||
String,
|
||||
i64,
|
||||
i32,
|
||||
i32,
|
||||
f64,
|
||||
String,
|
||||
bool,
|
||||
String,
|
||||
)>::from_arma(data)?;
|
||||
|
||||
Ok(Self {
|
||||
uuid,
|
||||
cot_type,
|
||||
center_lat,
|
||||
center_lon,
|
||||
center_hae,
|
||||
points,
|
||||
callsign,
|
||||
stale_seconds,
|
||||
stroke_color,
|
||||
fill_color,
|
||||
stroke_weight,
|
||||
stroke_style,
|
||||
closed,
|
||||
milsym,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl DrawEllipsePayload {
|
||||
pub fn to_xml(&self, now: &str, stale: &str) -> String {
|
||||
shape_event(
|
||||
&self.uuid,
|
||||
&self.cot_type,
|
||||
self.center_lat,
|
||||
self.center_lon,
|
||||
self.center_hae,
|
||||
now,
|
||||
stale,
|
||||
&self.callsign,
|
||||
&ellipse_shape_detail(
|
||||
&self.uuid,
|
||||
self.major,
|
||||
self.minor,
|
||||
self.angle,
|
||||
self.stroke_color,
|
||||
self.fill_color,
|
||||
self.stroke_weight,
|
||||
),
|
||||
self.stroke_color,
|
||||
self.fill_color,
|
||||
self.stroke_weight,
|
||||
"solid",
|
||||
&self.milsym,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
impl DrawLinksPayload {
|
||||
pub fn to_xml(&self, now: &str, stale: &str) -> String {
|
||||
let points = parse_points(&self.points);
|
||||
let shape_detail = links_detail(&points, self.closed);
|
||||
|
||||
shape_event(
|
||||
&self.uuid,
|
||||
&self.cot_type,
|
||||
self.center_lat,
|
||||
self.center_lon,
|
||||
self.center_hae,
|
||||
now,
|
||||
stale,
|
||||
&self.callsign,
|
||||
&shape_detail,
|
||||
self.stroke_color,
|
||||
self.fill_color,
|
||||
self.stroke_weight,
|
||||
&self.stroke_style,
|
||||
&self.milsym,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fn shape_event(
|
||||
uid: &str,
|
||||
cot_type: &str,
|
||||
lat: f64,
|
||||
lon: f64,
|
||||
hae: f32,
|
||||
now: &str,
|
||||
stale: &str,
|
||||
callsign: &str,
|
||||
shape_detail: &str,
|
||||
stroke_color: i32,
|
||||
fill_color: i32,
|
||||
stroke_weight: f64,
|
||||
stroke_style: &str,
|
||||
milsym: &str,
|
||||
) -> String {
|
||||
let milsym_detail = if milsym.trim().is_empty() {
|
||||
String::new()
|
||||
} else {
|
||||
format!(r#"<__milsym id="{}" />"#, escape_attr(milsym))
|
||||
};
|
||||
|
||||
format!(
|
||||
r#"<?xml version="1.0" encoding="UTF-8" ?><event version="2.0" uid="{uid}" type="{cot_type}" time="{now}" start="{now}" stale="{stale}" how="h-e" access="Undefined"><point lat="{lat}" lon="{lon}" hae="{hae}" ce="10.9" le="9999999.0" /><detail>{shape_detail}<__shapeExtras cpvis="true" editable="true" /><contact callsign="{callsign}" /><remarks /><archive /><labels_on value="true" /><strokeColor value="{stroke_color}" /><strokeWeight value="{stroke_weight}" /><strokeStyle value="{stroke_style}" /><fillColor value="{fill_color}" /><precisionlocation altsrc="GPS" geopointsrc="GPS" />{milsym_detail}</detail></event>"#,
|
||||
uid = escape_attr(uid),
|
||||
cot_type = escape_attr(cot_type),
|
||||
now = now,
|
||||
stale = stale,
|
||||
lat = lat,
|
||||
lon = lon,
|
||||
hae = hae,
|
||||
shape_detail = shape_detail,
|
||||
callsign = escape_attr(callsign),
|
||||
stroke_color = stroke_color,
|
||||
stroke_weight = stroke_weight,
|
||||
stroke_style = escape_attr(stroke_style),
|
||||
fill_color = fill_color,
|
||||
milsym_detail = milsym_detail
|
||||
)
|
||||
}
|
||||
|
||||
fn ellipse_shape_detail(
|
||||
uid: &str,
|
||||
major: f64,
|
||||
minor: f64,
|
||||
angle: f32,
|
||||
stroke_color: i32,
|
||||
fill_color: i32,
|
||||
stroke_weight: f64,
|
||||
) -> String {
|
||||
format!(
|
||||
r#"<shape><ellipse major="{major}" minor="{minor}" angle="{angle}" /><link uid="{style_uid}" type="b-x-KmlStyle" relation="p-c"><Style><LineStyle><color>{stroke_hex}</color><width>{stroke_weight}</width></LineStyle><PolyStyle><color>{fill_hex}</color></PolyStyle></Style></link></shape>"#,
|
||||
major = major,
|
||||
minor = minor,
|
||||
angle = angle,
|
||||
style_uid = escape_attr(&format!("{}.Style", uid)),
|
||||
stroke_hex = argb_hex(stroke_color),
|
||||
stroke_weight = stroke_weight,
|
||||
fill_hex = argb_hex(fill_color)
|
||||
)
|
||||
}
|
||||
|
||||
fn links_detail(points: &[DrawPoint], closed: bool) -> String {
|
||||
let mut detail = String::new();
|
||||
|
||||
for point in points {
|
||||
detail.push_str(&link_detail(point));
|
||||
}
|
||||
|
||||
if closed {
|
||||
if let Some(first) = points.first() {
|
||||
detail.push_str(&link_detail(first));
|
||||
}
|
||||
}
|
||||
|
||||
detail
|
||||
}
|
||||
|
||||
fn link_detail(point: &DrawPoint) -> String {
|
||||
format!(
|
||||
r#"<link point="{lat},{lon},{hae}" />"#,
|
||||
lat = point.lat,
|
||||
lon = point.lon,
|
||||
hae = point.hae
|
||||
)
|
||||
}
|
||||
|
||||
fn parse_points(raw: &str) -> Vec<DrawPoint> {
|
||||
raw.split(';')
|
||||
.filter_map(|entry| {
|
||||
let parts: Vec<_> = entry.split(',').collect();
|
||||
if parts.len() != 3 {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(DrawPoint {
|
||||
lat: parts[0].parse().ok()?,
|
||||
lon: parts[1].parse().ok()?,
|
||||
hae: parts[2].parse().ok()?,
|
||||
})
|
||||
})
|
||||
.collect()
|
||||
}
|
||||
|
||||
fn argb_hex(color: i32) -> String {
|
||||
format!("{:08x}", color as u32)
|
||||
}
|
||||
|
||||
fn escape_attr(value: &str) -> String {
|
||||
value
|
||||
.replace('&', "&")
|
||||
.replace('"', """)
|
||||
.replace('<', "<")
|
||||
.replace('>', ">")
|
||||
}
|
||||
@@ -58,7 +58,7 @@ impl EudCoTPayload {
|
||||
link_uid: None,
|
||||
remarker: None,
|
||||
video_url: None,
|
||||
stale_seconds: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ impl ExternalPositionPayload {
|
||||
link_uid: None,
|
||||
remarker: Some(self.remarker.clone()),
|
||||
video_url: None,
|
||||
stale_seconds: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
59
src/cot/lrf.rs
Normal file
59
src/cot/lrf.rs
Normal file
@@ -0,0 +1,59 @@
|
||||
use arma_rs::{FromArma, FromArmaError};
|
||||
use chrono::{SecondsFormat, Utc};
|
||||
|
||||
pub struct LaserRangeFinderPayload {
|
||||
pub uid: String,
|
||||
pub distance_meters: f64,
|
||||
pub azimuth_degrees: f64,
|
||||
pub elevation_degrees: f64,
|
||||
}
|
||||
|
||||
impl FromArma for LaserRangeFinderPayload {
|
||||
fn from_arma(data: String) -> Result<LaserRangeFinderPayload, FromArmaError> {
|
||||
let (uid, distance_meters, azimuth_degrees, elevation_degrees) =
|
||||
<(String, f64, f64, f64)>::from_arma(data)?;
|
||||
Ok(Self {
|
||||
uid,
|
||||
distance_meters,
|
||||
azimuth_degrees,
|
||||
elevation_degrees,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl LaserRangeFinderPayload {
|
||||
pub fn to_lrf_message(&self) -> String {
|
||||
let timestamp = Utc::now().to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
|
||||
format!(
|
||||
"1,{},{},{:.2},{:.2},{:.2}",
|
||||
self.uid,
|
||||
timestamp,
|
||||
self.distance_meters.max(0.0),
|
||||
normalize_degrees(self.azimuth_degrees),
|
||||
self.elevation_degrees
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub struct LaserRangeFinderClearPayload {
|
||||
pub uid: String,
|
||||
}
|
||||
|
||||
impl FromArma for LaserRangeFinderClearPayload {
|
||||
fn from_arma(data: String) -> Result<LaserRangeFinderClearPayload, FromArmaError> {
|
||||
let uid = String::from_arma(data)?;
|
||||
Ok(Self { uid })
|
||||
}
|
||||
}
|
||||
|
||||
impl LaserRangeFinderClearPayload {
|
||||
pub fn to_lrf_message(&self) -> String {
|
||||
let timestamp = Utc::now().to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
format!("1,{},{},RANGE_ERROR", self.uid, timestamp)
|
||||
}
|
||||
}
|
||||
|
||||
fn normalize_degrees(degrees: f64) -> f64 {
|
||||
degrees.rem_euclid(360.0)
|
||||
}
|
||||
@@ -1,9 +1,12 @@
|
||||
pub mod cot;
|
||||
pub mod delete;
|
||||
pub mod digital_pointer;
|
||||
pub mod draws;
|
||||
pub mod eud;
|
||||
pub mod gps;
|
||||
pub mod lrf;
|
||||
pub mod message;
|
||||
pub mod nato;
|
||||
pub mod report_marker;
|
||||
pub mod uas;
|
||||
pub mod video;
|
||||
|
||||
@@ -87,6 +87,7 @@ impl MarkerCoTPayload {
|
||||
link_uid: None,
|
||||
remarker: None,
|
||||
video_url: self.video_url.clone(),
|
||||
stale_seconds: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
63
src/cot/report_marker.rs
Normal file
63
src/cot/report_marker.rs
Normal file
@@ -0,0 +1,63 @@
|
||||
use arma_rs::{FromArma, FromArmaError};
|
||||
|
||||
use super::cot::CursorOverTime;
|
||||
|
||||
pub struct ReportMarkerCoTPayload {
|
||||
pub uuid: String,
|
||||
pub r#type: String,
|
||||
pub point_lat: f64,
|
||||
pub point_lon: f64,
|
||||
pub point_hae: f32,
|
||||
pub contact_callsign: String,
|
||||
pub stale_seconds: i64,
|
||||
pub remarks: String,
|
||||
}
|
||||
|
||||
impl FromArma for ReportMarkerCoTPayload {
|
||||
fn from_arma(data: String) -> Result<ReportMarkerCoTPayload, FromArmaError> {
|
||||
let (
|
||||
uuid,
|
||||
r#type,
|
||||
point_lat,
|
||||
point_lon,
|
||||
point_hae,
|
||||
contact_callsign,
|
||||
stale_seconds,
|
||||
remarks,
|
||||
) = <(String, String, f64, f64, f32, String, i64, String)>::from_arma(data)?;
|
||||
|
||||
Ok(Self {
|
||||
uuid,
|
||||
r#type,
|
||||
point_lat,
|
||||
point_lon,
|
||||
point_hae,
|
||||
contact_callsign,
|
||||
stale_seconds,
|
||||
remarks,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl ReportMarkerCoTPayload {
|
||||
pub fn to_cot(&self) -> CursorOverTime {
|
||||
CursorOverTime {
|
||||
uuid: Some(self.uuid.clone()),
|
||||
r#type: Some(self.r#type.clone()),
|
||||
point_lat: self.point_lat,
|
||||
point_lon: self.point_lon,
|
||||
point_hae: self.point_hae,
|
||||
point_ce: None,
|
||||
point_le: None,
|
||||
contact_callsign: self.contact_callsign.clone(),
|
||||
group_name: None,
|
||||
group_role: None,
|
||||
track_course: None,
|
||||
track_speed: None,
|
||||
link_uid: None,
|
||||
remarker: Some(self.remarks.clone()),
|
||||
video_url: None,
|
||||
stale_seconds: Some(self.stale_seconds),
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -131,8 +131,8 @@ impl UasPlatformCoTPayload {
|
||||
None => (escape_xml(&self.vehicle_type_tag), None),
|
||||
};
|
||||
let now = Utc::now().to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
let stale =
|
||||
(Utc::now() + Duration::milliseconds(3500)).to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
let stale = (Utc::now() + Duration::milliseconds(3500))
|
||||
.to_rfc3339_opts(SecondsFormat::Millis, true);
|
||||
|
||||
let mut xml = String::new();
|
||||
xml.push_str("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>");
|
||||
@@ -153,8 +153,7 @@ impl UasPlatformCoTPayload {
|
||||
xml.push_str("<_uastool extendedCot=\"true\" activeRoute=\"false\"/>");
|
||||
xml.push_str(&format!(
|
||||
"<track course=\"{}\" slope=\"0.0\" speed=\"{}\"/>",
|
||||
self.track_course,
|
||||
self.track_speed,
|
||||
self.track_course, self.track_speed,
|
||||
));
|
||||
xml.push_str(&format!(
|
||||
"<sensor elevation=\"{}\" vfov=\"{}\" north=\"0.0\" roll=\"0.0\" range=\"{}\" azimuth=\"{}\" fov=\"{}\" type=\"r-e\" version=\"0.6\"/>",
|
||||
@@ -186,7 +185,10 @@ impl UasPlatformCoTPayload {
|
||||
} else {
|
||||
xml.push_str("<__video></__video>");
|
||||
}
|
||||
xml.push_str(&format!("<link uid=\"{}\" type=\"a-f-G-U-C\" relation=\"p-p\" />", link_uid));
|
||||
xml.push_str(&format!(
|
||||
"<link uid=\"{}\" type=\"a-f-G-U-C\" relation=\"p-p\" />",
|
||||
link_uid
|
||||
));
|
||||
xml.push_str("</detail></event>");
|
||||
xml
|
||||
}
|
||||
@@ -326,5 +328,3 @@ impl UasSensorCoTPayload {
|
||||
xml
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -13,7 +13,9 @@ fn parse_video_url(url: &str) -> Option<(String, String, String, String)> {
|
||||
Some((authority, path)) => (authority, format!("/{}", path)),
|
||||
None => (rest, String::new()),
|
||||
};
|
||||
let host_port = authority.rsplit_once('@').map_or(authority, |(_, host_port)| host_port);
|
||||
let host_port = authority
|
||||
.rsplit_once('@')
|
||||
.map_or(authority, |(_, host_port)| host_port);
|
||||
let (address, port) = host_port.rsplit_once(':')?;
|
||||
|
||||
if protocol.is_empty() || address.is_empty() || port.is_empty() {
|
||||
@@ -35,10 +37,7 @@ pub fn video_detail_xml(video_url: &str, uid: &str, callsign: &str) -> String {
|
||||
}
|
||||
|
||||
let Some((protocol, address, port, path)) = parse_video_url(trimmed_url) else {
|
||||
return format!(
|
||||
"<__video url=\"{}\"/>",
|
||||
escape_xml_attribute(trimmed_url)
|
||||
);
|
||||
return format!("<__video url=\"{}\"/>", escape_xml_attribute(trimmed_url));
|
||||
};
|
||||
|
||||
format!(
|
||||
|
||||
16
src/lib.rs
16
src/lib.rs
@@ -1,10 +1,10 @@
|
||||
use arma_rs::{arma, Extension, Group};
|
||||
use rustls::crypto::aws_lc_rs;
|
||||
mod uas;
|
||||
mod mdns;
|
||||
mod structs;
|
||||
mod tcp;
|
||||
mod tests;
|
||||
mod uas;
|
||||
mod udp_socket;
|
||||
mod video_stream;
|
||||
|
||||
@@ -59,8 +59,17 @@ pub fn init() -> Extension {
|
||||
"udp_socket",
|
||||
Group::new()
|
||||
.command("start", udp_socket::start)
|
||||
.command("start_lrf", udp_socket::start_lrf)
|
||||
.command("start_cot", udp_socket::start_cot)
|
||||
.command("send_payload", udp_socket::send_payload)
|
||||
.command("send_gps_cot", udp_socket::send_gps_cot)
|
||||
.command("send_eud_cot", udp_socket::send_eud_cot)
|
||||
.command("send_lrf", udp_socket::send_lrf)
|
||||
.command("clear_lrf", udp_socket::clear_lrf)
|
||||
.command(
|
||||
"send_digital_pointer_cot",
|
||||
udp_socket::send_digital_pointer_cot,
|
||||
)
|
||||
.command("stop", udp_socket::stop),
|
||||
)
|
||||
.group(
|
||||
@@ -76,7 +85,9 @@ pub fn init() -> Extension {
|
||||
Group::new()
|
||||
.command("eud", tcp::cot::send_eud_cot)
|
||||
.command("marker", tcp::cot::send_marker_cot)
|
||||
.command("report_marker", tcp::cot::send_report_marker_cot)
|
||||
.command("digital_pointer", tcp::cot::send_digital_pointer_cot)
|
||||
.command("delete", tcp::cot::send_delete_cot)
|
||||
.command("chat", tcp::cot::send_message_cot)
|
||||
.command("uas_platform", tcp::cot::send_uas_platform_cot)
|
||||
.command("uas_video", tcp::cot::send_uas_video_cot)
|
||||
@@ -89,7 +100,8 @@ pub fn init() -> Extension {
|
||||
.command("ellipse", tcp::draw::send_ellipse_cot)
|
||||
.command("rectangle", tcp::draw::send_rectangle_cot)
|
||||
.command("free", tcp::draw::send_freedraw_cot)
|
||||
.command("vector", tcp::draw::send_vectordraw_cot),
|
||||
.command("vector", tcp::draw::send_vectordraw_cot)
|
||||
.command("route", tcp::draw::send_route_cot),
|
||||
),
|
||||
)
|
||||
.group(
|
||||
|
||||
32
src/mdns.rs
32
src/mdns.rs
@@ -23,7 +23,13 @@ fn detect_local_ipv4() -> Result<Ipv4Addr, String> {
|
||||
fn sanitize_label(value: &str, fallback: &str) -> String {
|
||||
let mut sanitized = value
|
||||
.chars()
|
||||
.map(|c| if c.is_ascii_alphanumeric() || c == '-' { c } else { '-' })
|
||||
.map(|c| {
|
||||
if c.is_ascii_alphanumeric() || c == '-' {
|
||||
c
|
||||
} else {
|
||||
'-'
|
||||
}
|
||||
})
|
||||
.collect::<String>()
|
||||
.trim_matches('-')
|
||||
.to_string();
|
||||
@@ -67,7 +73,13 @@ fn push_record(buf: &mut Vec<u8>, name: &str, rr_type: u16, rr_class: u16, ttl:
|
||||
buf.extend_from_slice(rdata);
|
||||
}
|
||||
|
||||
fn build_mdns_packet(instance_name: &str, host_name: &str, ip: Ipv4Addr, port: u16, video_uri: &str) -> Vec<u8> {
|
||||
fn build_mdns_packet(
|
||||
instance_name: &str,
|
||||
host_name: &str,
|
||||
ip: Ipv4Addr,
|
||||
port: u16,
|
||||
video_uri: &str,
|
||||
) -> Vec<u8> {
|
||||
let service_type = "_mavlink._udp.local";
|
||||
let instance_fqdn = format!("{}.{}", instance_name, service_type);
|
||||
let host_fqdn = format!("{}.local", host_name);
|
||||
@@ -122,7 +134,11 @@ pub fn start_uas_advertisement(
|
||||
let local_ip = match detect_local_ipv4() {
|
||||
Ok(ip) => ip,
|
||||
Err(error) => {
|
||||
let _ = ctx.callback_data("MDNS ERROR", "Failed to determine local IPv4", error.clone());
|
||||
let _ = ctx.callback_data(
|
||||
"MDNS ERROR",
|
||||
"Failed to determine local IPv4",
|
||||
error.clone(),
|
||||
);
|
||||
return "mdns local IPv4 error";
|
||||
}
|
||||
};
|
||||
@@ -161,7 +177,10 @@ pub fn start_uas_advertisement(
|
||||
|
||||
loop {
|
||||
match socket.send_to(&packet, multicast_addr) {
|
||||
Ok(size) => info!("Sent mDNS UAS advertisement ({} bytes) to {}", size, multicast_addr),
|
||||
Ok(size) => info!(
|
||||
"Sent mDNS UAS advertisement ({} bytes) to {}",
|
||||
size, multicast_addr
|
||||
),
|
||||
Err(error) => info!("Failed sending mDNS UAS advertisement: {}", error),
|
||||
}
|
||||
|
||||
@@ -172,7 +191,10 @@ pub fn start_uas_advertisement(
|
||||
}
|
||||
}
|
||||
|
||||
info!("Stopped mDNS UAS advertisement for instance={}", safe_instance);
|
||||
info!(
|
||||
"Stopped mDNS UAS advertisement for instance={}",
|
||||
safe_instance
|
||||
);
|
||||
});
|
||||
|
||||
let _ = ctx.callback_data(
|
||||
|
||||
@@ -54,9 +54,7 @@ fn send_over_stream(
|
||||
) -> Result<(), String> {
|
||||
let message_len = message.len();
|
||||
info!("Sending TCP payload ({} bytes)", message_len);
|
||||
stream
|
||||
.write_message(message.as_bytes())
|
||||
.map_err(|e| {
|
||||
stream.write_message(message.as_bytes()).map_err(|e| {
|
||||
let message = e.to_string();
|
||||
let _ = context.callback_data(
|
||||
"TCP SOCKET ERROR",
|
||||
@@ -145,10 +143,14 @@ impl TcpClient {
|
||||
let mut pending_messages: VecDeque<(String, Context)> = VecDeque::new();
|
||||
let (connect_tx, connect_rx) = mpsc::channel();
|
||||
|
||||
info!("TCP worker thread started with config: {}", config_description);
|
||||
info!(
|
||||
"TCP worker thread started with config: {}",
|
||||
config_description
|
||||
);
|
||||
|
||||
let tcp_thread = thread::spawn(move || {
|
||||
let connect_result = panic::catch_unwind(AssertUnwindSafe(|| connect_stream(&config)));
|
||||
let connect_result =
|
||||
panic::catch_unwind(AssertUnwindSafe(|| connect_stream(&config)));
|
||||
|
||||
match connect_result {
|
||||
Ok(Ok(stream)) => {
|
||||
@@ -184,7 +186,8 @@ impl TcpClient {
|
||||
match &mut state {
|
||||
ConnectionState::Connected => {
|
||||
if let Some(stream) = connection.as_mut() {
|
||||
if let Err(error) = send_over_stream(stream, &context, message) {
|
||||
if let Err(error) = send_over_stream(stream, &context, message)
|
||||
{
|
||||
info!("Failed to send message: {}", error);
|
||||
state = ConnectionState::Failed(error);
|
||||
connection = None;
|
||||
|
||||
@@ -19,6 +19,16 @@ pub fn send_marker_cot(
|
||||
"Sending Marker Cursor Over Time to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_report_marker_cot(
|
||||
ctx: Context,
|
||||
cursor_over_time: cot::report_marker::ReportMarkerCoTPayload,
|
||||
) -> &'static str {
|
||||
let payload = cursor_over_time.to_cot().convert_to_xml();
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Report Marker Cursor Over Time to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_digital_pointer_cot(
|
||||
ctx: Context,
|
||||
cursor_over_time: cot::digital_pointer::DigitalPointerPayload,
|
||||
@@ -29,6 +39,12 @@ pub fn send_digital_pointer_cot(
|
||||
"Sending Digital Pointer Cursor Over Time to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_delete_cot(ctx: Context, payload: cot::delete::DeleteCoTPayload) -> &'static str {
|
||||
send_payload(ctx, payload.to_xml());
|
||||
|
||||
"Sending Delete Cursor Over Time to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_message_cot(
|
||||
ctx: Context,
|
||||
message_payload: cot::message::MessagePayload,
|
||||
@@ -50,10 +66,7 @@ pub fn send_uas_platform_cot(
|
||||
"Sending UAS Platform main CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_uas_video_cot(
|
||||
ctx: Context,
|
||||
payload: cot::uas::UasVideoCoTPayload,
|
||||
) -> &'static str {
|
||||
pub fn send_uas_video_cot(ctx: Context, payload: cot::uas::UasVideoCoTPayload) -> &'static str {
|
||||
let xml = payload.to_xml();
|
||||
if !xml.is_empty() {
|
||||
send_payload(ctx, xml);
|
||||
@@ -62,10 +75,7 @@ pub fn send_uas_video_cot(
|
||||
"Sending UAS Video (b-i-v) CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_uas_sensor_cot(
|
||||
ctx: Context,
|
||||
payload: cot::uas::UasSensorCoTPayload,
|
||||
) -> &'static str {
|
||||
pub fn send_uas_sensor_cot(ctx: Context, payload: cot::uas::UasSensorCoTPayload) -> &'static str {
|
||||
let xml = payload.to_xml();
|
||||
send_payload(ctx, xml);
|
||||
|
||||
|
||||
@@ -1,37 +1,90 @@
|
||||
use arma_rs::Context;
|
||||
use log::info;
|
||||
|
||||
use crate::{cot, tcp::send_payload};
|
||||
|
||||
fn day_stale() -> (String, String) {
|
||||
let now = chrono::Utc::now().to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
let stale = (chrono::Utc::now() + chrono::Duration::days(1))
|
||||
.to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
(now, stale)
|
||||
}
|
||||
|
||||
fn payload_stale(stale_seconds: i64) -> (String, String) {
|
||||
let now = chrono::Utc::now().to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
let stale = (chrono::Utc::now() + chrono::Duration::seconds(stale_seconds.max(1)))
|
||||
.to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
(now, stale)
|
||||
}
|
||||
|
||||
pub fn send_circle_cot(
|
||||
ctx: Context,
|
||||
circle_payload: cot::draws::circle::CircleCoTPayload,
|
||||
) -> &'static str {
|
||||
let shape_circle_cot = circle_payload.to_cot();
|
||||
let now = chrono::Utc::now().to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
let stale = (chrono::Utc::now() + chrono::Duration::days(1))
|
||||
.to_rfc3339_opts(chrono::SecondsFormat::Millis, true);
|
||||
let (now, stale) = day_stale();
|
||||
let payload = shape_circle_cot.to_xml(&now, &stale);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Circle CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_ellipse_cot(ctx: Context) -> &'static str {
|
||||
let _ = ctx;
|
||||
"Not implemented: send_ellipse_cot"
|
||||
pub fn send_ellipse_cot(
|
||||
ctx: Context,
|
||||
ellipse_payload: cot::draws::shape::DrawEllipsePayload,
|
||||
) -> &'static str {
|
||||
let (now, stale) = payload_stale(ellipse_payload.stale_seconds);
|
||||
let payload = ellipse_payload.to_xml(&now, &stale);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Ellipse CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_rectangle_cot(ctx: Context) -> &'static str {
|
||||
let _ = ctx;
|
||||
"Not implemented: send_ellipse_cot"
|
||||
pub fn send_rectangle_cot(
|
||||
ctx: Context,
|
||||
rectangle_payload: cot::draws::shape::DrawLinksPayload,
|
||||
) -> &'static str {
|
||||
let (now, stale) = payload_stale(rectangle_payload.stale_seconds);
|
||||
let payload = rectangle_payload.to_xml(&now, &stale);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Rectangle CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_freedraw_cot(ctx: Context) -> &'static str {
|
||||
let _ = ctx;
|
||||
"Not implemented: send_ellipse_cot"
|
||||
pub fn send_freedraw_cot(
|
||||
ctx: Context,
|
||||
freedraw_payload: cot::draws::shape::DrawLinksPayload,
|
||||
) -> &'static str {
|
||||
let (now, stale) = payload_stale(freedraw_payload.stale_seconds);
|
||||
let payload = freedraw_payload.to_xml(&now, &stale);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Free Draw CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_vectordraw_cot(ctx: Context) -> &'static str {
|
||||
let _ = ctx;
|
||||
"Not implemented: send_ellipse_cot"
|
||||
pub fn send_vectordraw_cot(
|
||||
ctx: Context,
|
||||
vector_payload: cot::draws::shape::DrawLinksPayload,
|
||||
) -> &'static str {
|
||||
let (now, stale) = payload_stale(vector_payload.stale_seconds);
|
||||
let payload = vector_payload.to_xml(&now, &stale);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Tactical Graphic CoT to TCP server"
|
||||
}
|
||||
|
||||
pub fn send_route_cot(
|
||||
ctx: Context,
|
||||
route_payload: cot::draws::route::RoutePayload,
|
||||
) -> &'static str {
|
||||
let (now, stale) = payload_stale(route_payload.stale_seconds);
|
||||
let payload = route_payload.to_xml(&now, &stale);
|
||||
info!(
|
||||
"Sending ATAK route '{}' ({} bytes)",
|
||||
route_payload.callsign,
|
||||
payload.len()
|
||||
);
|
||||
send_payload(ctx, payload);
|
||||
|
||||
"Sending Route CoT to TCP server"
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ use std::fs::File;
|
||||
use std::io::BufReader;
|
||||
use std::io::Cursor;
|
||||
use std::net::{SocketAddr, TcpStream, ToSocketAddrs};
|
||||
use std::time::Duration;
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
|
||||
use crate::tcp::transport::TransportStream;
|
||||
|
||||
@@ -65,7 +65,12 @@ fn resolve_address(address: &str) -> Result<SocketAddr, String> {
|
||||
.to_socket_addrs()
|
||||
.map_err(|e| format!("failed to resolve {}: {}", address, e))?
|
||||
.next()
|
||||
.ok_or_else(|| format!("failed to resolve {}: no socket addresses returned", address))
|
||||
.ok_or_else(|| {
|
||||
format!(
|
||||
"failed to resolve {}: no socket addresses returned",
|
||||
address
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
fn connect_tcp(address: &str) -> Result<TcpStream, String> {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use rcgen::{CertificateParams, DistinguishedName, DnType, KeyPair, PKCS_RSA_SHA256};
|
||||
use log::info;
|
||||
use rcgen::{CertificateParams, DistinguishedName, DnType, KeyPair, PKCS_RSA_SHA256};
|
||||
use reqwest::blocking::Client;
|
||||
use serde::Deserialize;
|
||||
use uuid::Uuid;
|
||||
@@ -7,6 +7,9 @@ use uuid::Uuid;
|
||||
use super::connector::connect_mtls_from_pem;
|
||||
use crate::tcp::transport::TransportStream;
|
||||
|
||||
const DEFAULT_MTLS_SERVER_PORT: &str = "8089";
|
||||
const DEFAULT_ENROLL_PATH: &str = "/Marti/api/tls/signClient/v2";
|
||||
|
||||
#[derive(Deserialize)]
|
||||
struct EnrollmentResponse {
|
||||
#[serde(rename = "signedCert")]
|
||||
@@ -27,6 +30,23 @@ fn extract_tag_value(xml: &str, tag_name: &str) -> Option<String> {
|
||||
Some(xml[start..end].trim().to_string())
|
||||
}
|
||||
|
||||
fn normalize_certificate_pem(certificate: &str) -> String {
|
||||
let trimmed = certificate.trim();
|
||||
if trimmed.contains("-----BEGIN CERTIFICATE-----") {
|
||||
if trimmed.ends_with('\n') {
|
||||
trimmed.to_string()
|
||||
} else {
|
||||
format!("{}\n", trimmed)
|
||||
}
|
||||
} else {
|
||||
wrap_pem_body(
|
||||
trimmed,
|
||||
"-----BEGIN CERTIFICATE-----",
|
||||
"-----END CERTIFICATE-----",
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fn wrap_pem_body(base64_body: &str, begin: &str, end: &str) -> String {
|
||||
let mut wrapped = String::new();
|
||||
let normalized = base64_body.trim().replace(['\r', '\n'], "");
|
||||
@@ -89,10 +109,20 @@ fn fetch_enrollment_config(host: &str, enroll_port: &str) -> Result<EnrollmentCo
|
||||
.text()
|
||||
.map_err(|e| format!("failed to read config response from {}: {}", url, e))?;
|
||||
|
||||
let server_port = extract_tag_value(&response_text, "serverPort")
|
||||
.ok_or_else(|| "missing serverPort in /Marti/api/tls/config response".to_string())?;
|
||||
let enroll_path = extract_tag_value(&response_text, "enrollPath")
|
||||
.ok_or_else(|| "missing enrollPath in /Marti/api/tls/config response".to_string())?;
|
||||
let server_port = extract_tag_value(&response_text, "serverPort").unwrap_or_else(|| {
|
||||
info!(
|
||||
"Enrollment config did not include serverPort; using default TAK mTLS port {}",
|
||||
DEFAULT_MTLS_SERVER_PORT
|
||||
);
|
||||
DEFAULT_MTLS_SERVER_PORT.to_string()
|
||||
});
|
||||
let enroll_path = extract_tag_value(&response_text, "enrollPath").unwrap_or_else(|| {
|
||||
info!(
|
||||
"Enrollment config did not include enrollPath; using default TAK enrollment path {}",
|
||||
DEFAULT_ENROLL_PATH
|
||||
);
|
||||
DEFAULT_ENROLL_PATH.to_string()
|
||||
});
|
||||
|
||||
info!(
|
||||
"Enrollment config received: server_port={} enroll_path={}",
|
||||
@@ -173,14 +203,11 @@ fn enroll_client_certificate(
|
||||
enrollment.ca0.len()
|
||||
);
|
||||
|
||||
let cert_pem = wrap_pem_body(
|
||||
&enrollment.signed_cert,
|
||||
"-----BEGIN CERTIFICATE-----",
|
||||
"-----END CERTIFICATE-----",
|
||||
);
|
||||
let ca_cert_pem = normalize_certificate_pem(&enrollment.ca0);
|
||||
let cert_pem = normalize_certificate_pem(&enrollment.signed_cert);
|
||||
let key_pem = key_pair.serialize_pem();
|
||||
|
||||
Ok((enrollment.ca0, cert_pem, key_pem))
|
||||
Ok((ca_cert_pem, cert_pem, key_pem))
|
||||
}
|
||||
|
||||
pub fn enroll_and_connect(
|
||||
@@ -198,10 +225,7 @@ pub fn enroll_and_connect(
|
||||
};
|
||||
info!(
|
||||
"Starting enroll_and_connect for host={} enroll_port={} server_name={} client_uid={}",
|
||||
host,
|
||||
enroll_port,
|
||||
server_name,
|
||||
normalized_client_uid
|
||||
host, enroll_port, server_name, normalized_client_uid
|
||||
);
|
||||
|
||||
let enrollment_config = fetch_enrollment_config(host, enroll_port)?;
|
||||
@@ -226,3 +250,52 @@ pub fn enroll_and_connect(
|
||||
&client_key_pem,
|
||||
)
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::{extract_tag_value, normalize_certificate_pem, wrap_pem_body};
|
||||
|
||||
#[test]
|
||||
fn extracts_tak_enrollment_config_tag_values() {
|
||||
let xml = "<tlsConfig><serverPort>8089</serverPort><enrollPath>/Marti/api/tls/signClient/v2</enrollPath></tlsConfig>";
|
||||
|
||||
assert_eq!(
|
||||
extract_tag_value(xml, "serverPort").as_deref(),
|
||||
Some("8089")
|
||||
);
|
||||
assert_eq!(
|
||||
extract_tag_value(xml, "enrollPath").as_deref(),
|
||||
Some("/Marti/api/tls/signClient/v2")
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn missing_config_tag_values_are_none_for_opentakserver_config() {
|
||||
let xml =
|
||||
"<tlsConfig><nameEntries><nameEntry name=\"OpenTAKServer\"/></nameEntries></tlsConfig>";
|
||||
|
||||
assert!(extract_tag_value(xml, "serverPort").is_none());
|
||||
assert!(extract_tag_value(xml, "enrollPath").is_none());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn normalizes_base64_certificate_body_to_pem() {
|
||||
let pem = normalize_certificate_pem("QUJDREVGRw==");
|
||||
|
||||
assert_eq!(
|
||||
pem,
|
||||
wrap_pem_body(
|
||||
"QUJDREVGRw==",
|
||||
"-----BEGIN CERTIFICATE-----",
|
||||
"-----END CERTIFICATE-----"
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn preserves_existing_certificate_pem() {
|
||||
let pem = "-----BEGIN CERTIFICATE-----\nQUJDREVGRw==\n-----END CERTIFICATE-----\n";
|
||||
|
||||
assert_eq!(normalize_certificate_pem(pem), pem);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,12 @@ fn connect_plain(address: &str) -> Result<TransportStream, String> {
|
||||
.to_socket_addrs()
|
||||
.map_err(|e| format!("failed to resolve {}: {}", address, e))?
|
||||
.next()
|
||||
.ok_or_else(|| format!("failed to resolve {}: no socket addresses returned", address))?;
|
||||
.ok_or_else(|| {
|
||||
format!(
|
||||
"failed to resolve {}: no socket addresses returned",
|
||||
address
|
||||
)
|
||||
})?;
|
||||
|
||||
info!(
|
||||
"Opening plain TCP connection to {} (resolved={}) with timeout {:?}",
|
||||
|
||||
@@ -93,6 +93,8 @@ impl UdpClient {
|
||||
|
||||
lazy_static! {
|
||||
static ref UDP_CLIENT: Arc<Mutex<Option<UdpClient>>> = Arc::new(Mutex::new(None));
|
||||
static ref LRF_CLIENT: Arc<Mutex<Option<UdpClient>>> = Arc::new(Mutex::new(None));
|
||||
static ref COT_CLIENT: Arc<Mutex<Option<UdpClient>>> = Arc::new(Mutex::new(None));
|
||||
}
|
||||
|
||||
pub fn start(ctx: Context, address: String) -> &'static str {
|
||||
@@ -125,13 +127,22 @@ pub fn start(ctx: Context, address: String) -> &'static str {
|
||||
"Starting UDP Client"
|
||||
}
|
||||
|
||||
pub fn send_payload(ctx: Context, payload: String) -> &'static str {
|
||||
if let Some(ref client) = *UDP_CLIENT.lock().unwrap() {
|
||||
fn send_with_client(
|
||||
client_slot: &Arc<Mutex<Option<UdpClient>>>,
|
||||
ctx: Context,
|
||||
payload: String,
|
||||
missing_message: &'static str,
|
||||
) {
|
||||
if let Some(ref client) = *client_slot.lock().unwrap() {
|
||||
client.send_payload(ctx, payload);
|
||||
} else {
|
||||
let _ = ctx.callback_null("UDP SOCKET ERROR", "UDP Socket is not running");
|
||||
info!("UDP send requested while socket was not running");
|
||||
let _ = ctx.callback_null("UDP SOCKET ERROR", missing_message);
|
||||
info!("UDP send requested while target socket was not running");
|
||||
}
|
||||
}
|
||||
|
||||
pub fn send_payload(ctx: Context, payload: String) -> &'static str {
|
||||
send_with_client(&UDP_CLIENT, ctx, payload, "UDP Socket is not running");
|
||||
|
||||
"Sending payload to UDP server"
|
||||
}
|
||||
@@ -146,6 +157,116 @@ pub fn send_gps_cot(
|
||||
"Sending GPS Cursor Over Time to UDP server"
|
||||
}
|
||||
|
||||
pub fn send_eud_cot(
|
||||
ctx: Context,
|
||||
cursor_over_time: cot::gps::ExternalPositionPayload,
|
||||
) -> &'static str {
|
||||
send_with_client(
|
||||
&COT_CLIENT,
|
||||
ctx,
|
||||
cursor_over_time.to_cot().convert_to_xml(),
|
||||
"CoT UDP Socket is not running",
|
||||
);
|
||||
|
||||
"Sending EUD Cursor Over Time to CoT UDP server"
|
||||
}
|
||||
|
||||
pub fn start_lrf(ctx: Context, address: String) -> &'static str {
|
||||
info!("LRF UDP socket start requested for {}", address);
|
||||
|
||||
let (tx, rx): (Sender<UdpCommand>, Receiver<UdpCommand>) = mpsc::channel();
|
||||
|
||||
let client = UdpClient {
|
||||
tx,
|
||||
address: address.clone(),
|
||||
};
|
||||
|
||||
{
|
||||
let mut client_guard = LRF_CLIENT.lock().unwrap();
|
||||
if let Some(ref existing_client) = *client_guard {
|
||||
info!(
|
||||
"Stopping previous LRF UDP client {} before starting {}",
|
||||
existing_client.address, address
|
||||
);
|
||||
existing_client.stop();
|
||||
}
|
||||
*client_guard = Some(UdpClient {
|
||||
tx: client.tx.clone(),
|
||||
address: client.address.clone(),
|
||||
});
|
||||
}
|
||||
|
||||
client.start(address, rx, ctx);
|
||||
|
||||
"Starting LRF UDP Client"
|
||||
}
|
||||
|
||||
pub fn start_cot(ctx: Context, address: String) -> &'static str {
|
||||
info!("CoT UDP socket start requested for {}", address);
|
||||
|
||||
let (tx, rx): (Sender<UdpCommand>, Receiver<UdpCommand>) = mpsc::channel();
|
||||
|
||||
let client = UdpClient {
|
||||
tx,
|
||||
address: address.clone(),
|
||||
};
|
||||
|
||||
{
|
||||
let mut client_guard = COT_CLIENT.lock().unwrap();
|
||||
if let Some(ref existing_client) = *client_guard {
|
||||
info!(
|
||||
"Stopping previous CoT UDP client {} before starting {}",
|
||||
existing_client.address, address
|
||||
);
|
||||
existing_client.stop();
|
||||
}
|
||||
*client_guard = Some(UdpClient {
|
||||
tx: client.tx.clone(),
|
||||
address: client.address.clone(),
|
||||
});
|
||||
}
|
||||
|
||||
client.start(address, rx, ctx);
|
||||
|
||||
"Starting CoT UDP Client"
|
||||
}
|
||||
|
||||
pub fn send_lrf(ctx: Context, payload: cot::lrf::LaserRangeFinderPayload) -> &'static str {
|
||||
send_with_client(
|
||||
&LRF_CLIENT,
|
||||
ctx,
|
||||
payload.to_lrf_message(),
|
||||
"LRF UDP Socket is not running",
|
||||
);
|
||||
|
||||
"Sending Laser Range Finder payload to UDP server"
|
||||
}
|
||||
|
||||
pub fn clear_lrf(ctx: Context, payload: cot::lrf::LaserRangeFinderClearPayload) -> &'static str {
|
||||
send_with_client(
|
||||
&LRF_CLIENT,
|
||||
ctx,
|
||||
payload.to_lrf_message(),
|
||||
"LRF UDP Socket is not running",
|
||||
);
|
||||
|
||||
"Clearing Laser Range Finder payload on UDP server"
|
||||
}
|
||||
|
||||
pub fn send_digital_pointer_cot(
|
||||
ctx: Context,
|
||||
payload: cot::digital_pointer::DigitalPointerPayload,
|
||||
) -> &'static str {
|
||||
send_with_client(
|
||||
&COT_CLIENT,
|
||||
ctx,
|
||||
payload.to_cot().convert_to_xml(),
|
||||
"CoT UDP Socket is not running",
|
||||
);
|
||||
|
||||
"Sending Digital Pointer CoT to UDP server"
|
||||
}
|
||||
|
||||
pub fn stop(ctx: Context) -> &'static str {
|
||||
if let Some(ref client) = *UDP_CLIENT.lock().unwrap() {
|
||||
info!("UDP socket stop requested for {}", client.address);
|
||||
@@ -156,5 +277,15 @@ pub fn stop(ctx: Context) -> &'static str {
|
||||
info!("UDP stop requested while socket was not running");
|
||||
}
|
||||
|
||||
if let Some(ref client) = *LRF_CLIENT.lock().unwrap() {
|
||||
info!("LRF UDP socket stop requested for {}", client.address);
|
||||
client.stop();
|
||||
}
|
||||
|
||||
if let Some(ref client) = *COT_CLIENT.lock().unwrap() {
|
||||
info!("CoT UDP socket stop requested for {}", client.address);
|
||||
client.stop();
|
||||
}
|
||||
|
||||
"Stopping UDP Client"
|
||||
}
|
||||
|
||||
@@ -70,7 +70,10 @@ pub fn start_stream(
|
||||
let rtsp_url = if username.is_empty() || password.is_empty() {
|
||||
format!("rtsp://{}:{}/{}", address, port, stream_path)
|
||||
} else {
|
||||
format!("rtsp://{}:{}@{}:{}/{}", username, password, address, port, stream_path)
|
||||
format!(
|
||||
"rtsp://{}:{}@{}:{}/{}",
|
||||
username, password, address, port, stream_path
|
||||
)
|
||||
};
|
||||
|
||||
let mut cmd = Command::new("ffmpeg");
|
||||
|
||||
Reference in New Issue
Block a user