2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-05-18 23:16:50 +00:00
|
|
|
/*
|
2023-08-17 10:02:17 +00:00
|
|
|
* Author: kymckay
|
2018-04-24 17:46:59 +00:00
|
|
|
* Initializes the "Search Area" Zeus module display.
|
2016-05-18 23:16:50 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: dummy controls group <CONTROL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2016-11-15 12:07:48 +00:00
|
|
|
* None
|
2016-05-18 23:16:50 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [CONTROL] call ace_zeus_fnc_ui_searchArea
|
|
|
|
*
|
2016-05-18 23:16:50 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
// Generic init
|
2016-05-18 23:16:50 +00:00
|
|
|
params ["_control"];
|
|
|
|
private _display = ctrlParent _control;
|
2016-11-15 12:07:48 +00:00
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
2016-05-18 23:16:50 +00:00
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
_control ctrlRemoveAllEventHandlers "SetFocus";
|
2016-05-18 23:16:50 +00:00
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
// Validate module target
|
2016-05-18 23:16:50 +00:00
|
|
|
private _unit = effectiveCommander (attachedTo _logic);
|
|
|
|
|
|
|
|
scopeName "Main";
|
|
|
|
private _fnc_errorAndClose = {
|
|
|
|
params ["_msg"];
|
|
|
|
_display closeDisplay 0;
|
|
|
|
deleteVehicle _logic;
|
2017-03-02 23:47:49 +00:00
|
|
|
[_msg] call FUNC(showMessage);
|
2016-05-18 23:16:50 +00:00
|
|
|
breakOut "Main";
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (false) do {
|
|
|
|
case !(isNull _unit): {
|
|
|
|
[LSTRING(NothingSelected)] call _fnc_errorAndClose;
|
|
|
|
};
|
|
|
|
case (_unit isKindOf "CAManBase"): {
|
|
|
|
[LSTRING(OnlyInfantry)] call _fnc_errorAndClose;
|
|
|
|
};
|
|
|
|
case (alive _unit): {
|
|
|
|
[LSTRING(OnlyAlive)] call _fnc_errorAndClose;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
private _fnc_onUnload = {
|
2018-04-24 17:46:59 +00:00
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
2016-05-18 23:16:50 +00:00
|
|
|
if (isNull _logic) exitWith {};
|
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
deleteVehicle _logic;
|
2016-05-18 23:16:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private _fnc_onConfirm = {
|
|
|
|
params [["_ctrlButtonOK", controlNull, [controlNull]]];
|
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
private _display = ctrlParent _ctrlButtonOK;
|
2016-05-18 23:16:50 +00:00
|
|
|
if (isNull _display) exitWith {};
|
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
2016-05-18 23:16:50 +00:00
|
|
|
if (isNull _logic) exitWith {};
|
|
|
|
|
|
|
|
private _unit = effectiveCommander (attachedTo _logic);
|
2018-04-24 17:46:59 +00:00
|
|
|
private _radius = GETVAR(_display,GVAR(radius),100);
|
|
|
|
private _position = getPos _logic;
|
|
|
|
private _marker = QGVAR(ModuleSearchArea) + str _unit;
|
2016-05-18 23:16:50 +00:00
|
|
|
|
2016-05-21 16:29:53 +00:00
|
|
|
createMarker [_marker, _position];
|
2016-05-18 23:16:50 +00:00
|
|
|
_marker setMarkerAlpha 0;
|
|
|
|
_marker setMarkerShape "ELLIPSE";
|
2018-04-24 17:46:59 +00:00
|
|
|
_marker setMarkerSize [_radius, _radius];
|
2016-05-18 23:16:50 +00:00
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
[QGVAR(moduleSearchArea), [_unit, _marker], _unit] call CBA_fnc_targetEvent;
|
2016-05-18 23:16:50 +00:00
|
|
|
deleteVehicle _logic;
|
|
|
|
};
|
|
|
|
|
2018-04-24 17:46:59 +00:00
|
|
|
_display displayAddEventHandler ["Unload", _fnc_onUnload];
|
|
|
|
_control ctrlAddEventHandler ["ButtonClick", _fnc_onConfirm];
|