2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2017-10-10 16:06:37 +00:00
|
|
|
/*
|
2018-09-13 13:40:55 +00:00
|
|
|
* Author: alganthe, mharis001
|
|
|
|
* Initializes the "Garrison" Zeus module display.
|
2017-10-10 16:06:37 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Garrison controls group <CONTROL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2018-09-13 13:40:55 +00:00
|
|
|
* [CONTROL] call ace_zeus_fnc_ui_garrison
|
2017-10-10 16:06:37 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_control"];
|
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
// Generic init
|
|
|
|
private _display = ctrlParent _control;
|
|
|
|
private _ctrlButtonOK = _display displayCtrl 1; // IDC_OK
|
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
|
|
|
TRACE_1("Logic Object",_logic);
|
2017-10-10 16:06:37 +00:00
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
_control ctrlRemoveAllEventHandlers "SetFocus";
|
2017-10-10 16:06:37 +00:00
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
// Validate module target
|
|
|
|
private _unit = effectiveCommander attachedTo _logic;
|
2017-10-10 16:06:37 +00:00
|
|
|
|
|
|
|
scopeName "Main";
|
|
|
|
private _fnc_errorAndClose = {
|
|
|
|
params ["_msg"];
|
|
|
|
_display closeDisplay 0;
|
|
|
|
deleteVehicle _logic;
|
|
|
|
[_msg] call FUNC(showMessage);
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
case !(isPlayer _unit): {
|
2017-10-18 04:26:08 +00:00
|
|
|
["str_a3_cfgvehicles_moduleremotecontrol_f_errorPlayer"] call _fnc_errorAndClose;
|
2017-10-10 16:06:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
// Specific onLoad stuff
|
2017-10-10 16:06:37 +00:00
|
|
|
private _fnc_onUnload = {
|
2018-09-13 13:40:55 +00:00
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
2017-10-10 16:06:37 +00:00
|
|
|
if (isNull _logic) exitWith {};
|
|
|
|
|
|
|
|
deleteVehicle _logic;
|
|
|
|
};
|
|
|
|
|
|
|
|
private _fnc_onConfirm = {
|
|
|
|
params [["_ctrlButtonOK", controlNull, [controlNull]]];
|
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
private _display = ctrlParent _ctrlButtonOK;
|
2017-10-10 16:06:37 +00:00
|
|
|
if (isNull _display) exitWith {};
|
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
|
2017-10-10 16:06:37 +00:00
|
|
|
if (isNull _logic) exitWith {};
|
|
|
|
|
|
|
|
private _radius = GETVAR(_display,GVAR(radius),50);
|
2018-09-13 13:40:55 +00:00
|
|
|
private _teleport = lbCurSel (_display displayCtrl 73061) > 0;
|
|
|
|
private _topDown = lbCurSel (_display displayCtrl 73062) > 0;
|
|
|
|
private _fillingMode = lbCurSel (_display displayCtrl 73063);
|
2017-10-10 16:06:37 +00:00
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
[_logic, getPos _logic, _radius, _fillingMode, _topDown, _teleport] call FUNC(moduleGarrison);
|
2017-10-10 16:06:37 +00:00
|
|
|
};
|
|
|
|
|
2018-09-13 13:40:55 +00:00
|
|
|
_display displayAddEventHandler ["Unload", _fnc_onUnload];
|
|
|
|
_ctrlButtonOK ctrlAddEventHandler ["ButtonClick", _fnc_onConfirm];
|