From 7fc1c87bc427b02ce4dfd30765edb986b6a818c3 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Fri, 26 Feb 2016 00:57:18 -0600 Subject: [PATCH 01/15] Global Ai Set Skill Example --- addons/zeus/ACE_Settings.hpp | 43 +++++++ addons/zeus/CfgEventHandlers.hpp | 6 + addons/zeus/CfgVehicles.hpp | 15 +++ addons/zeus/UI_RscAttributes.hpp | 110 ++++++++++++++++++ addons/zeus/XEH_PREP.hpp | 4 + addons/zeus/XEH_postInit.sqf | 10 ++ addons/zeus/config.cpp | 3 +- addons/zeus/functions/fnc_setSkillsLocal.sqf | 29 +++++ addons/zeus/functions/fnc_zeusAttributes.sqf | 5 + .../fnc_zeusAttributes_globalSetSkill.sqf | 85 ++++++++++++++ .../functions/fnc_zeus_globalSetSkill.sqf | 43 +++++++ 11 files changed, 352 insertions(+), 1 deletion(-) create mode 100644 addons/zeus/UI_RscAttributes.hpp create mode 100644 addons/zeus/XEH_postInit.sqf create mode 100644 addons/zeus/functions/fnc_setSkillsLocal.sqf create mode 100644 addons/zeus/functions/fnc_zeusAttributes.sqf create mode 100644 addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf create mode 100644 addons/zeus/functions/fnc_zeus_globalSetSkill.sqf diff --git a/addons/zeus/ACE_Settings.hpp b/addons/zeus/ACE_Settings.hpp index 6488a23e4e..6fb1570c5a 100644 --- a/addons/zeus/ACE_Settings.hpp +++ b/addons/zeus/ACE_Settings.hpp @@ -26,4 +26,47 @@ class ACE_Settings { value = 0; typeName = "BOOL"; }; + + class GVAR(aiSkill_set) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: Master Enable"; + typeName = "BOOL"; + value = 0; + }; + class GVAR(aiSkill_general) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: general,commanding,courage"; + typeName = "SCALAR"; + value = 0.5; + }; + class GVAR(aiSkill_aimingAccuracy) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: aimingAccuracy"; + typeName = "SCALAR"; + value = 0.5; + }; + class GVAR(aiSkill_weaponHandling) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; + typeName = "SCALAR"; + value = 0.5; + }; + class GVAR(aiSkill_spotting) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: spotDistance,spotTime"; + typeName = "SCALAR"; + value = 0.5; + }; + class GVAR(aiSkill_COVER) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: AI Seek Cover"; + typeName = "BOOL"; + value = 1; + }; + class GVAR(aiSkill_AUTOCOMBAT) { + category = QUOTE(PREFIX); + displayName = "Global AI Set Skill: Ai Switch To Combat Mode"; + typeName = "BOOL"; + value = 1; + }; }; diff --git a/addons/zeus/CfgEventHandlers.hpp b/addons/zeus/CfgEventHandlers.hpp index 89ab0bc900..7df1664c23 100644 --- a/addons/zeus/CfgEventHandlers.hpp +++ b/addons/zeus/CfgEventHandlers.hpp @@ -11,6 +11,12 @@ class Extended_PreInit_EventHandlers { }; }; +class Extended_PostInit_EventHandlers { + class ADDON { + init = QUOTE( call COMPILE_FILE(XEH_postInit) ); + }; +}; + class Extended_InitPost_EventHandlers { class AllVehicles { class ADDON { diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 0013355370..aeeb4da457 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -186,4 +186,19 @@ class CfgVehicles { // sync[] = {}; // }; // }; + class GVAR(zeus_globalSetSkill): GVAR(moduleBase) { + author = ECSTRING(common,ACETeam); + category = "ACE"; + scope = 1; + scopeCurator = 2; + isTriggerActivated = 0; + displayName = "Global Set AI Skill"; + // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; + // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; + function = QFUNC(zeus_globalSetSkill); + curatorInfoType = QGVAR(RscDisplayAttributes_globalSetSkill); + curatorCost = 0; + class Arguments {}; + class Attributes {};//todo, make it a threden as well + }; }; diff --git a/addons/zeus/UI_RscAttributes.hpp b/addons/zeus/UI_RscAttributes.hpp new file mode 100644 index 0000000000..83f07aa67c --- /dev/null +++ b/addons/zeus/UI_RscAttributes.hpp @@ -0,0 +1,110 @@ +class RscControlsGroupNoScrollbars; +class RscText; +class RscListbox; +class RscEdit; +class RscXSliderH; +class RscCheckBox; + +class RscDisplayAttributes { + class Controls { + class Background; + class Title; + class Content; + class ButtonOK; + class ButtonCancel; + }; +}; +class GVAR(RscDisplayAttributes_globalSetSkill): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscDisplayAttributes_globalSetSkill)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscDisplayAttributes_globalSetSkill)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class globalSetSkill: RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(zeusAttributes_globalSetSkill)); + idc = 26422; + x = "0"; + y = "0"; + w = "26 * (((safezoneW / safezoneH) min 1.2) / 40)"; + h = "6.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + class controls { + class Title1: RscText { + idc = -1; + text = "Skill: General"; + toolTip = "Global AI Set Skill: general,commanding,courage"; + x = "0 * (((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "10 * (((safezoneW / safezoneH) min 1.2) / 40)"; + h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + colorBackground[] = {0,0,0,0.5}; + }; + class Value1: RscXSliderH { + idc = 16184; + x = "10.1 * (((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "15.9 * (((safezoneW / safezoneH) min 1.2) / 40)"; + h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Title2: Title1 { + idc = -1; + text = "Skill: aimingAccuracy"; + toolTip = "Global AI Set Skill: aimingAccuracy"; + y = "1.1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Value2: Value1 { + idc = 16185; + y = "1.1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Title3: Title1 { + idc = -1; + text = "Skill: weaponHandling"; + toolTip = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; + y = "2.2 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Value3: Value1 { + idc = 16186; + y = "2.2 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Title4: Title1 { + idc = -1; + text = "Skill: spotting"; + toolTip = "Global AI Set Skill: spotDistance,spotTime"; + y = "3.3 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Value4: Value1 { + idc = 16187; + y = "3.3 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Title5: Title1 { + idc = -1; + text = "Seek Cover"; + toolTip = "Global AI Set Skill: AI Seek Cover"; + y = "4.4 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Value5: RscCheckBox { + idc = 16188; + x = "10.1 * (((safezoneW / safezoneH) min 1.2) / 40)"; + y = "4.4 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "1 * (((safezoneW / safezoneH) min 1.2) / 40)"; + h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Title6: Title5 { + idc = -1; + text = "AUTOCOMBAT"; + toolTip = "Global AI Set Skill: Ai Switch To Combat Mode"; + y = "5.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + class Value6: Value5 { + idc = 16189; + y = "5.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + }; + }; + }; + }; + class ButtonOK: ButtonOK {}; + class ButtonCancel: ButtonCancel {}; + }; +}; diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 423b7f2f27..241cd385a2 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -14,3 +14,7 @@ PREP(moduleSetMedicalFacility); PREP(moduleSurrender); PREP(moduleUnconscious); PREP(moduleZeusSettings); +PREP(setSkillsLocal); +PREP(zeus_globalSetSkill); +PREP(zeusAttributes); +PREP(zeusAttributes_globalSetSkill); diff --git a/addons/zeus/XEH_postInit.sqf b/addons/zeus/XEH_postInit.sqf new file mode 100644 index 0000000000..187b46c669 --- /dev/null +++ b/addons/zeus/XEH_postInit.sqf @@ -0,0 +1,10 @@ +#include "script_component.hpp" + +["UpdateAISettings", { + TRACE_1("UpdateAISettings EH",_this); + { + if (local _x) then { + [_x] call FUNC(setSkillsLocal); + }; + } forEach allUnits; +}] call EFUNC(common,addEventHandler); diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index 853edaf2e9..71e6c2b8fe 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -2,7 +2,7 @@ class CfgPatches { class ADDON { - units[] = {}; + units[] = {QGVAR(zeus_globalSetSkill)}; weapons[] = {}; requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_common"}; @@ -42,3 +42,4 @@ class ACE_Curator { #include "CfgEventHandlers.hpp" #include "CfgVehicles.hpp" #include "ACE_Settings.hpp" +#include "UI_RscAttributes.hpp" diff --git a/addons/zeus/functions/fnc_setSkillsLocal.sqf b/addons/zeus/functions/fnc_setSkillsLocal.sqf new file mode 100644 index 0000000000..fc99fb2f33 --- /dev/null +++ b/addons/zeus/functions/fnc_setSkillsLocal.sqf @@ -0,0 +1,29 @@ +#include "script_component.hpp" + +params ["_unit"]; +TRACE_1("params",_unit); + +{ + _unit setSkill [_x, GVAR(aiSkill_general)]; +} forEach ["general", "commanding", "courage"]; +{ + _unit setSkill [_x, GVAR(aiSkill_aimingAccuracy)]; +} forEach ["aimingAccuracy"]; +{ + _unit setSkill [_x, GVAR(aiSkill_weaponHandling)]; +} forEach ["aimingShake", "aimingSpeed", "reloadSpeed"]; +{ + _unit setSkill [_x, GVAR(aiSkill_spotting)]; +} forEach ["spotDistance", "spotTime"]; +if (GVAR(aiSkill_COVER)) then { + _unit enableAI "COVER"; +} else { + _unit disableAI "COVER"; +}; +if (GVAR(aiSkill_AUTOCOMBAT)) then { + _unit enableAI "AUTOCOMBAT"; +} else { + _unit disableAI "AUTOCOMBAT"; +}; + +TRACE_1("ai sills set",_unit); diff --git a/addons/zeus/functions/fnc_zeusAttributes.sqf b/addons/zeus/functions/fnc_zeusAttributes.sqf new file mode 100644 index 0000000000..b032ca2093 --- /dev/null +++ b/addons/zeus/functions/fnc_zeusAttributes.sqf @@ -0,0 +1,5 @@ +#include "script_component.hpp" + +TRACE_1("params",_this); + +#include "\a3\ui_f_curator\UI\Displays\RscDisplayAttributes.sqf" diff --git a/addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf b/addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf new file mode 100644 index 0000000000..329102d599 --- /dev/null +++ b/addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf @@ -0,0 +1,85 @@ +#include "script_component.hpp" + +disableSerialization; + +params ["_control"]; +TRACE_1("params",_control); + +//Generic Init: +private _display = ctrlparent _control; +private _ctrlButtonOK = _display displayctrl 1; //IDC_OK +private _logic = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; +TRACE_1("logicObject",_logic); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +_fnc_sliderMove = { + params ["_slider"]; + private _idc = ctrlIDC _slider; + private _curVal = switch (_idc) do { + case (16184): {GVAR(aiSkill_general)}; + case (16185): {GVAR(aiSkill_aimingAccuracy)}; + case (16186): {GVAR(aiSkill_weaponHandling)}; + case (16187): {GVAR(aiSkill_spotting)}; + }; + _slider ctrlSetTooltip format ["%1 (was %2)", sliderPosition _slider, _curVal]; +}; + +//Specific on-load stuff: +(_display displayCtrl 16184) sliderSetRange [0, 1]; +(_display displayCtrl 16184) sliderSetPosition (GVAR(aiSkill_general) max 0); +(_display displayCtrl 16184) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; +(_display displayCtrl 16184) call _fnc_sliderMove; + +(_display displayCtrl 16185) sliderSetRange [0, 1]; +(_display displayCtrl 16185) sliderSetPosition (GVAR(aiSkill_aimingAccuracy) max 0); +(_display displayCtrl 16185) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; +(_display displayCtrl 16185) call _fnc_sliderMove; + +(_display displayCtrl 16186) sliderSetRange [0, 1]; +(_display displayCtrl 16186) sliderSetPosition (GVAR(aiSkill_weaponHandling) max 0); +(_display displayCtrl 16186) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; +(_display displayCtrl 16186) call _fnc_sliderMove; + +(_display displayCtrl 16187) sliderSetRange [0, 1]; +(_display displayCtrl 16187) sliderSetPosition (GVAR(aiSkill_spotting) max 0); +(_display displayCtrl 16187) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; +(_display displayCtrl 16187) call _fnc_sliderMove; + +(_display displayCtrl 16188) cbSetChecked GVAR(aiSkill_COVER); + +(_display displayCtrl 16189) cbSetChecked GVAR(aiSkill_AUTOCOMBAT); + + + +private _fnc_onUnload = { + params [["_display", displayNull, [displayNull]]]; + TRACE_1("_fnc_onUnload params",_display); + + private _logic = missionnamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; + if (isNull _logic) exitWith {}; + + _logic setVariable ["closed", true]; +}; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + TRACE_1("_fnc_onConfirm params",_this); + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = missionnamespace getvariable ["BIS_fnc_initCuratorAttributes_target", objnull]; + if (isNull _logic) exitWith {diag_log text format ["[POTATO] - ERROR Logic [%1] is null on confirm", _logic];}; + + TRACE_2("set",_logic, sliderPosition (_display displayCtrl 16184)); + _logic setVariable ["aiSkill_general", sliderPosition (_display displayCtrl 16184), true]; + _logic setVariable ["aiSkill_aimingAccuracy", sliderPosition (_display displayCtrl 16185), true]; + _logic setVariable ["aiSkill_weaponHandling", sliderPosition (_display displayCtrl 16186), true]; + _logic setVariable ["aiSkill_spotting", sliderPosition (_display displayCtrl 16187), true]; + _logic setVariable ["aiSkill_COVER", cbChecked (_display displayCtrl 16188), true]; + _logic setVariable ["aiSkill_AUTOCOMBAT", cbChecked (_display displayCtrl 16189), true]; + _logic setVariable ["set", true, true]; +}; + +_display displayaddeventhandler ["unload", _fnc_onUnload]; +_ctrlButtonOK ctrladdeventhandler ["buttonclick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf b/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf new file mode 100644 index 0000000000..763947292f --- /dev/null +++ b/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf @@ -0,0 +1,43 @@ +#include "script_component.hpp" + +params ["_logic"]; +TRACE_1("params",_logic); + +if (!isServer) exitWith {}; + +[{ + params ["_logic"]; + (isNull _logic) || {_logic getVariable ["closed", false]} +}, { + params ["_logic"]; + if (isNull _logic) exitWith {TRACE_1("null",_logic);}; + + if (_logic getVariable ["set", false]) then { + + [QGVAR(aiSkill_set), true, false, true] call ace_common_fnc_setSetting; + if (!GVAR(aiSkill_set)) exitWith { + TRACE_1("Setting must be forced off", GVAR(aiSkill_set)); + }; + + private _val = _logic getVariable ["aiSkill_general", -1]; + if (_val != -1) then { [QGVAR(aiSkill_general), _val, false, true] call ace_common_fnc_setSetting; }; + _val = _logic getVariable ["aiSkill_aimingAccuracy", -1]; + if (_val != -1) then { [QGVAR(aiSkill_aimingAccuracy), _val, false, true] call ace_common_fnc_setSetting; }; + _val = _logic getVariable ["aiSkill_weaponHandling", -1]; + if (_val != -1) then { [QGVAR(aiSkill_weaponHandling), _val, false, true] call ace_common_fnc_setSetting; }; + _val = _logic getVariable ["aiSkill_spotting", -1]; + if (_val != -1) then { [QGVAR(aiSkill_spotting), _val, false, true] call ace_common_fnc_setSetting; }; + _val = _logic getVariable ["aiSkill_COVER", -1]; + if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_COVER), _val, false, true] call ace_common_fnc_setSetting; }; + _val = _logic getVariable ["aiSkill_AUTOCOMBAT", -1]; + if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_AUTOCOMBAT), _val, false, true] call ace_common_fnc_setSetting; }; + + ["UpdateAISettings", []] call ace_common_fnc_globalEvent; + + TRACE_6("ai settings updated",GVAR(aiSkill_general),GVAR(aiSkill_aimingAccuracy),GVAR(aiSkill_weaponHandling),GVAR(aiSkill_spotting),GVAR(aiSkill_COVER),GVAR(aiSkill_AUTOCOMBAT)); + } else { + TRACE_1("closed but not set",_logic); + }; + + deleteVehicle _logic; +}, [_logic]] call ace_common_fnc_waitUntilAndExecute; From 424c6fe878c1d13a872a0e7d12704e888a2ba9e7 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Fri, 26 Feb 2016 01:37:00 -0600 Subject: [PATCH 02/15] Show Cargo Example --- addons/zeus/UI_RscAttributes.hpp | 51 ++++++++++++++++++- addons/zeus/XEH_PREP.hpp | 1 + .../functions/fnc_zeusAttributes_vehCargo.sqf | 14 +++++ 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf diff --git a/addons/zeus/UI_RscAttributes.hpp b/addons/zeus/UI_RscAttributes.hpp index 83f07aa67c..24007c9f5d 100644 --- a/addons/zeus/UI_RscAttributes.hpp +++ b/addons/zeus/UI_RscAttributes.hpp @@ -1,3 +1,4 @@ +class RscControlsGroup; class RscControlsGroupNoScrollbars; class RscText; class RscListbox; @@ -9,7 +10,9 @@ class RscDisplayAttributes { class Controls { class Background; class Title; - class Content; + class Content: RscControlsGroup { + class controls; + }; class ButtonOK; class ButtonCancel; }; @@ -108,3 +111,49 @@ class GVAR(RscDisplayAttributes_globalSetSkill): RscDisplayAttributes { class ButtonCancel: ButtonCancel {}; }; }; + +class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(zeusAttributes_vehCargo)); + idc = 80085; + x = "7 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; + y = "10 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - ( ((safezoneW / safezoneH) min 1.2) / 1.2))/2)"; + w = "26 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + class controls { + class Title: RscText { + idc = -1; + text = "Cargo:"; + x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + colorBackground[] = {0,0,0,0.5}; + }; + class Background: RscText { + idc = -1; + x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "2.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + colorBackground[] = {1,1,1,0.1}; + }; + class Cargo: RscListBox { + idc = 80086; + x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + + }; +}; + +class RscDisplayAttributesVehicle: RscDisplayAttributes { + class Controls: Controls { + class Content: Content { + class Controls: controls { + class Cargo: GVAR(cargoAttribute) { }; + }; + }; + }; +}; \ No newline at end of file diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 241cd385a2..96fc87be01 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -18,3 +18,4 @@ PREP(setSkillsLocal); PREP(zeus_globalSetSkill); PREP(zeusAttributes); PREP(zeusAttributes_globalSetSkill); +PREP(zeusAttributes_vehCargo); diff --git a/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf b/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf new file mode 100644 index 0000000000..8c9087e31c --- /dev/null +++ b/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf @@ -0,0 +1,14 @@ +#include "script_component.hpp" + +params ["_control"]; +TRACE_1("params",_control); + +private _veh = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; +TRACE_1("",_veh); + +private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []]; +TRACE_1("",_loaded); + +{ + ((ctrlParent _control) displayCtrl 80086) lbAdd (str _x); +} forEach _loaded; From 77de1ec6eb820080dec3f98c92aa48fc2cae4194 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sun, 15 May 2016 12:48:32 +0100 Subject: [PATCH 03/15] Update vanilla zeus functions Merges the changes introduced by arma updates to vanilla functions with our overwrites. I also reverted some of the command capitalization since it makes the process of going through differences quicker in future. --- addons/zeus/CfgVehicles.hpp | 6 +- .../zeus/functions/fnc_bi_moduleCurator.sqf | 138 +++++++++--------- .../functions/fnc_bi_moduleProjectile.sqf | 3 +- .../functions/fnc_bi_moduleRemoteControl.sqf | 79 +++++----- 4 files changed, 120 insertions(+), 106 deletions(-) diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index aeeb4da457..8e7e131391 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -25,7 +25,7 @@ class CfgVehicles { isGlobal = 1; isSingular = 1; isTriggerActivated = 0; - author = "SilentSpike"; + author = ECSTRING(common,ACETeam); class Arguments { class zeusAscension { displayName = CSTRING(ascension_DisplayName); @@ -78,7 +78,7 @@ class CfgVehicles { }; }; class GVAR(moduleBase): Module_F { - author = "SilentSpike"; + author = ECSTRING(common,ACETeam); category = "ACE"; functionPriority = 1; isGlobal = 1; @@ -167,7 +167,7 @@ class CfgVehicles { sync[] = {}; }; }; - + // class GVAR(moduleSetSuppression): GVAR(moduleBase) { // curatorCanAttach = 1; // displayName = CSTRING(ModuleSetSupp_DisplayName); diff --git a/addons/zeus/functions/fnc_bi_moduleCurator.sqf b/addons/zeus/functions/fnc_bi_moduleCurator.sqf index d10d36b839..6a8f7bd42f 100644 --- a/addons/zeus/functions/fnc_bi_moduleCurator.sqf +++ b/addons/zeus/functions/fnc_bi_moduleCurator.sqf @@ -24,13 +24,13 @@ _activated = _this select 2; if (_activated) then { //--- Terminate when not created on the server - if (!isserver && local _logic && isnull (getassignedcuratorunit _logic)) exitWith { + if (!isserver && local _logic && isnull (getassignedcuratorunit _logic)) exitwith { [format ["%1 is trying to create curator logic ModuleCurator_F",profilename],"bis_fnc_error",false] call bis_fnc_mp; deletevehicle _logic; }; //--- Get curator owner - _ownerVar = _logic getVariable ["owner",""]; + _ownerVar = _logic getvariable ["owner",""]; _ownerUID = parsenumber _ownerVar; if (cheatsenabled) then { _ownerVarArray = toarray _ownerVar; @@ -47,7 +47,7 @@ if (_activated) then { _isAdmin = _ownerVar == "#adminLogged" || _ownerVar == "#adminVoted"; //--- Wipe out the variable so clients can't access it - _logic setVariable ["owner",nil]; + _logic setvariable ["owner",nil]; //--- Server if (isserver) then { @@ -62,13 +62,13 @@ if (_activated) then { }; //--- Get allowed addons - _addonsType = _logic getVariable ["Addons",0]; + _addonsType = _logic getvariable ["Addons",2]; _addons = []; switch _addonsType do { //--- All (including unofficial ones) case 3: { - _cfgPatches = configFile >> "Cfgpatches"; + _cfgPatches = configfile >> "cfgpatches"; for "_i" from 0 to (count _cfgPatches - 1) do { _class = _cfgPatches select _i; if (isclass _class) then {_addons set [count _addons,configname _class];}; @@ -85,8 +85,8 @@ if (_activated) then { case 1: { _addonsList = []; { - _addonsList = _addonsList + (unitaddons typeOf _x); - } forEach (entities "all"); + _addonsList = _addonsList + (unitaddons typeof _x); + } foreach (entities "all"); removeallcuratoraddons _logic; _logic addcuratoraddons _addonsList; }; @@ -108,8 +108,8 @@ if (_activated) then { if (_adminVar != "") then {_ownerVar = _adminVar;}; - _forced = _logic getVariable ["forced",0] > 0; - _name = _logic getVariable ["name",""]; + _forced = _logic getvariable ["forced",0] > 0; + _name = _logic getvariable ["name",""]; if (_name == "") then {_name = localize "STR_A3_curator";}; //--- Wait until mission starts @@ -124,43 +124,42 @@ if (_activated) then { //--- Wait for player to become Zeus switch true do { case (_ownerUID > 0): { - waitUntil { + waituntil { sleep 0.01; {getplayeruid _x == _ownerVar} count playableunits > 0 || isnull _logic }; }; default { - waitUntil {isplayer (missionnamespace getVariable [_ownerVar,objnull]) || isnull _logic}; + waituntil {isplayer (missionnamespace getvariable [_ownerVar,objnull]) || isnull _logic}; }; }; - if (isnull _logic) exitWith {}; + if (isnull _logic) exitwith {}; //--- Assign _player = objnull; switch true do { case (_ownerUID > 0): { { - if (getplayeruid _x == _ownerVar) exitWith {_player = _x;}; - } forEach playableunits; + if (getplayeruid _x == _ownerVar) exitwith {_player = _x;}; + } foreach playableunits; }; default { - _player = missionnamespace getVariable [_ownerVar,objnull]; + _player = missionnamespace getvariable [_ownerVar,objnull]; }; }; - waitUntil {unassigncurator _logic; isnull (getassignedcuratorunit _logic) || isnull _logic}; - waitUntil {_player assignCurator _logic; getassignedcuratorunit _logic == _player || isnull _logic}; - if (isnull _logic) exitWith {}; + waituntil {unassigncurator _logic; isnull (getassignedcuratorunit _logic) || isnull _logic}; + waituntil {_player assignCurator _logic; getassignedcuratorunit _logic == _player || isnull _logic}; + if (isnull _logic) exitwith {}; //--- Add radio channels { _x radiochanneladd [_player]; - } forEach (_logic getVariable ["channels",[]]); + } foreach (_logic getvariable ["channels",[]]); - // Added by ace_zeus to delay ascension message at mission start - [{ - _logic = _this select 0; - _player = _this select 1; + // Added by ace_zeus to delay ascension message code + private _msgCode = { + params ["_logic","_player"]; //--- Sent notification to all assigned players if ((_logic getVariable ["showNotification",true]) && GVAR(zeusAscension)) then { @@ -170,61 +169,48 @@ if (_activated) then { }; } forEach (curatoreditableobjects _logic); }; - },[_logic,_player]] call EFUNC(common,execNextFrame); + }; + + // Added by ace_zeus to hide ascension messages + if !(EGVAR(common,settingsInitFinished)) then { + EGVAR(common,runAtSettingsInitialized) pushBack [_msgCode, [_logic,_player]]; + } else { + [_logic,_player] call _msgCode; + }; [_logic,"curatorUnitAssigned",[_logic,_player]] call bis_fnc_callscriptedeventhandler; // Added by ace_zeus ["zeusUnitAssigned", [_logic,_player]] call EFUNC(common,globalEvent); - //--- Forced interface - //if (_forced) then { - // [[true,true],"bis_fnc_forceCuratorInterface",_player] call bis_fnc_mp; - //}; - //--- Wait for player to stop being Zeus switch true do { case (_ownerUID > 0): { - waitUntil { + waituntil { sleep 0.01; {getplayeruid _x == _ownerVar} count playableunits == 0 || isnull _logic }; }; default { - waitUntil {_player != missionnamespace getVariable [_ownerVar,objnull] || isnull _logic}; + waituntil {_player != missionnamespace getvariable [_ownerVar,objnull] || isnull _logic}; }; }; - if (isnull _logic) exitWith {}; + if (isnull _logic) exitwith {}; //--- Add radio channels { _x radiochannelremove [_player]; - } forEach (_logic getVariable ["channels",[]]); + } foreach (_logic getvariable ["channels",[]]); //--- Unassign - waitUntil {unassigncurator _logic; isnull (getassignedcuratorunit _logic) || isnull _logic}; - if (isnull _logic) exitWith {}; + waituntil {unassigncurator _logic; isnull (getassignedcuratorunit _logic) || isnull _logic}; + if (isnull _logic) exitwith {}; }; }; - //--- Activated all future addons - _addons = []; - { - if (typeOf _x == "ModuleCuratorAddAddons_F") then { - _paramAddons = call compile ("[" + (_x getVariable ["addons",""]) + "]"); - { - if !(_x in _addons) then {_addons set [count _addons,_x];}; - { - if !(_x in _addons) then {_addons set [count _addons,_x];}; - } forEach (unitaddons _x); - } forEach _paramAddons; - }; - } forEach (synchronizedobjects _logic); - _addons call bis_fnc_activateaddons; - // Added by ace_zeus to delay bird code - [{ - _logic = _this select 0; + private _birdCode = { + params ["_logic"]; if (GVAR(zeusBird)) then { //--- Create bird @@ -244,16 +230,38 @@ if (_activated) then { } ]; }; - },[_logic]] call EFUNC(common,execNextFrame); + }; + + // Added by ace_zeus to hide camera bird + if !(EGVAR(common,settingsInitFinished)) then { + EGVAR(common,runAtSettingsInitialized) pushBack [_birdCode, [_logic]]; + } else { + [_logic] call _birdCode; + }; + + //--- Activated all future addons + _addons = []; + { + if (typeof _x == "ModuleCuratorAddAddons_F") then { + _paramAddons = call compile ("[" + (_x getvariable ["addons",""]) + "]"); + { + if !(_x in _addons) then {_addons set [count _addons,_x];}; + { + if !(_x in _addons) then {_addons set [count _addons,_x];}; + } foreach (unitaddons _x); + } foreach _paramAddons; + }; + } foreach (synchronizedobjects _logic); + _addons call bis_fnc_activateaddons; }; //--- Player if (hasinterface) then { - waitUntil {local player}; + waituntil {local player}; _serverCommand = if (_ownerVar == "#adminLogged") then {"#shutdown"} else {"#kick"}; //--- Black effect until the interface is open - _forced = _logic getVariable ["forced",0] > 0; + _forced = _logic getvariable ["forced",0] > 0; if (_forced) then { _isCurator = switch true do { case (_ownerUID > 0): { @@ -263,7 +271,7 @@ if (_activated) then { isserver || servercommandavailable _serverCommand }; default { - player == missionnamespace getVariable [_ownerVar,objnull] + player == missionnamespace getvariable [_ownerVar,objnull] }; }; if (_isCurator) then { @@ -274,11 +282,11 @@ if (_activated) then { //--- Check if player is server admin if (_isAdmin) then { - _adminVar = _logic getVariable ["adminVar",""]; - _logic setVariable ["adminVar",nil]; + _adminVar = _logic getvariable ["adminVar",""]; + _logic setvariable ["adminVar",nil]; if (isserver) then { //--- Host - missionnamespace setVariable [_adminVar,player]; + missionnamespace setvariable [_adminVar,player]; } else { //--- Client [_logic,_adminVar,_serverCommand] spawn { @@ -288,13 +296,13 @@ if (_activated) then { _adminVar = _this select 1; _serverCommand = _this select 2; while {true} do { - waitUntil {sleep 0.1; servercommandavailable _serverCommand}; - missionnamespace setVariable [_adminVar,player]; + waituntil {sleep 0.1; servercommandavailable _serverCommand}; + missionnamespace setvariable [_adminVar,player]; publicvariable _adminVar; _respawn = player addeventhandler ["respawn",format ["%1 = _this select 0; publicvariable '%1';",_adminVar]]; - waitUntil {sleep 0.1; !servercommandavailable _serverCommand}; - missionnamespace setVariable [_adminVar,objnull]; + waituntil {sleep 0.1; !servercommandavailable _serverCommand}; + missionnamespace setvariable [_adminVar,objnull]; publicvariable _adminVar; player removeeventhandler ["respawn",_respawn]; }; @@ -305,7 +313,7 @@ if (_activated) then { [_logic] spawn { _logic = _this select 0; sleep 1; - waitUntil {alive player}; + waituntil {alive player}; //--- Show warning when Zeus key is not assigned if (count (actionkeys "curatorInterface") == 0) then { @@ -319,7 +327,7 @@ if (_activated) then { //--- Show hint about pinging for players if ( - isNil {profilenamespace getVariable "bis_fnc_curatorPinged_done"} + isnil {profilenamespace getvariable "bis_fnc_curatorPinged_done"} && {isTutHintsEnabled} && diff --git a/addons/zeus/functions/fnc_bi_moduleProjectile.sqf b/addons/zeus/functions/fnc_bi_moduleProjectile.sqf index 1143c30443..25e39f7422 100644 --- a/addons/zeus/functions/fnc_bi_moduleProjectile.sqf +++ b/addons/zeus/functions/fnc_bi_moduleProjectile.sqf @@ -42,7 +42,6 @@ if (_activated) then { _ammo = _logic getVariable ["type",gettext (configFile >> "CfgVehicles" >> typeOf _logic >> "ammo")]; if (_ammo != "") then { _CfgAmmo = configFile >> "CfgAmmo" >> _ammo; - //if !(isclass _CfgAmmo) exitWith {["CfgAmmo class '%1' not found.",_ammo] call bis_fnc_error;}; _dirVar = _fnc_scriptname + typeOf _logic; _logic setdir (missionnamespace getVariable [_dirVar,direction _logic]); //--- Restore custom direction _pos = getposatl _logic; @@ -113,7 +112,7 @@ if (_activated) then { } forEach _entities; }; }; - if (count _hint > 0) then { + if (count _hint > 0 && {count objectCurators _logic > 0}) then { [[_hint,nil,nil,nil,nil,nil,nil,true],"bis_fnc_advHint",objectcurators _logic] call bis_fnc_mp; }; if (count _velocity == 3) then { diff --git a/addons/zeus/functions/fnc_bi_moduleRemoteControl.sqf b/addons/zeus/functions/fnc_bi_moduleRemoteControl.sqf index 7eec86bb7d..f32afef130 100644 --- a/addons/zeus/functions/fnc_bi_moduleRemoteControl.sqf +++ b/addons/zeus/functions/fnc_bi_moduleRemoteControl.sqf @@ -23,11 +23,11 @@ _activated = _this select 2; if (_activated && local _logic && !isnull curatorcamera) then { //--- Terminate when remote control is already in progress - if !(isnull (missionnamespace getVariable ["bis_fnc_moduleRemoteControl_unit",objnull])) exitWith {}; + if !(isnull (missionnamespace getvariable ["bis_fnc_moduleRemoteControl_unit",objnull])) exitwith {}; //--- Get unit under cursor _unit = objnull; - _mouseOver = missionnamespace getVariable ["bis_fnc_curatorObjectPlaced_mouseOver",[""]]; + _mouseOver = missionnamespace getvariable ["bis_fnc_curatorObjectPlaced_mouseOver",[""]]; if ((_mouseOver select 0) == typename objnull) then {_unit = _mouseOver select 1;}; _unit = effectivecommander _unit; @@ -37,7 +37,8 @@ if (_activated && local _logic && !isnull curatorcamera) then { if (isplayer _unit) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorPlayer";}; if !(alive _unit) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorDestroyed";}; if (isnull _unit) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorNull";}; - if !(isnull (_unit getVariable ["bis_fnc_moduleRemoteControl_owner",objnull])) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorControl";}; + if !(isnull (_unit getvariable ["bis_fnc_moduleRemoteControl_owner",objnull])) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorControl";}; + if (isuavconnected vehicle _unit) then {_error = localize "str_a3_cfgvehicles_moduleremotecontrol_f_errorControl";}; if (_error == "") then { _unit spawn { @@ -47,7 +48,7 @@ if (_activated && local _logic && !isnull curatorcamera) then { _vehicleRole = str assignedvehiclerole _unit; bis_fnc_moduleRemoteControl_unit = _unit; - _unit setVariable ["bis_fnc_moduleRemoteControl_owner",player,true]; + _unit setvariable ["bis_fnc_moduleRemoteControl_owner",player,true]; // Added by ace_zeus to toggle remote control wind sound if (GVAR(remoteWind)) then { @@ -76,7 +77,7 @@ if (_activated && local _logic && !isnull curatorcamera) then { //--- Wait for interface to close (finddisplay 312) closedisplay 2; - waitUntil {isnull curatorcamera}; + waituntil {isnull curatorcamera}; //--- Switch player remotecontrol _unit; @@ -106,7 +107,7 @@ if (_activated && local _logic && !isnull curatorcamera) then { _vehicle = vehicle _unit; _vehicleRole = str assignedvehiclerole _unit; _rating = rating player; - waitUntil { + waituntil { //--- Refresh when vehicle or vehicle role changes if ((vehicle _unit != _vehicle || str assignedvehiclerole _unit != _vehicleRole) && {alive _unit}) then { player remotecontrol _unit; @@ -123,43 +124,49 @@ if (_activated && local _logic && !isnull curatorcamera) then { || {!alive _unit} //--- Also isnull check, objNull is not alive || + {!alive player} + || {isnull getassignedcuratorlogic player} - //|| - //{_unit getVariable ["bis_fnc_moduleRemoteControl_owner",objnull] != player} //--- Another curator stole the unit }; player addrating (-rating player + _rating); objnull remotecontrol _unit; - _unit setVariable ["bis_fnc_moduleRemoteControl_owner",nil,true]; + _unit setvariable ["bis_fnc_moduleRemoteControl_owner",nil,true]; - //--- Death screen - if ( - isnull curatorcamera - && - {cameraon != vehicle player} - && - {!isnull _unit} - && - {!isnull getassignedcuratorlogic player} - //&& - //{(_unit getVariable ["bis_fnc_moduleRemoteControl_owner",objnull] == player)} - ) then { - sleep 2; - ("bis_fnc_moduleRemoteCurator" call bis_fnc_rscLayer) cuttext ["","black out",1]; - sleep 1; + if (alive player) then { + //--- Death screen + if ( + isnull curatorcamera + && + {cameraon != vehicle player} + && + {!isnull _unit} + && + {!isnull getassignedcuratorlogic player} + //&& + //{(_unit getvariable ["bis_fnc_moduleRemoteControl_owner",objnull] == player)} + ) then { + sleep 2; + ("bis_fnc_moduleRemoteCurator" call bis_fnc_rscLayer) cuttext ["","black out",1]; + sleep 1; + }; + if !(isnull _unit) then { + _unitPos = getposatl _unit; + _camPos = [_unitPos,10,direction _unit + 180] call bis_fnc_relpos; + _camPos set [2,(_unitPos select 2) + (getterrainheightasl _unitPos) - (getterrainheightasl _camPos) + 10]; + //[_camPos,_unit] call bis_fnc_setcuratorcamera; + (getassignedcuratorlogic player) setvariable ["bis_fnc_modulecuratorsetcamera_params",[_camPos,_unit]]; + }; + + sleep 0.1; //--- Engine needs a delay in case controlled unit was deleted + ("bis_fnc_moduleRemoteCurator" call bis_fnc_rscLayer) cuttext ["","black in",1e10]; + opencuratorinterface; + ppeffectdestroy _color; + + waituntil {!isnull curatorcamera}; + } else { + ppeffectdestroy _color; }; - _unitPos = getposatl _unit; - _camPos = [_unitPos,10,direction _unit + 180] call bis_fnc_relpos; - _camPos set [2,(_unitPos select 2) + (getterrainheightasl _unitPos) - (getterrainheightasl _camPos) + 10]; - //[_camPos,_unit] call bis_fnc_setcuratorcamera; - (getassignedcuratorlogic player) setVariable ["bis_fnc_modulecuratorsetcamera_params",[_camPos,_unit]]; - - sleep 0.1; //--- Engine needs a delay in case controlled unit was deleted - ("bis_fnc_moduleRemoteCurator" call bis_fnc_rscLayer) cuttext ["","black in",1e10]; - opencuratorinterface; - ppeffectdestroy _color; - - waitUntil {!isnull curatorcamera}; player switchcamera cameraview; bis_fnc_moduleRemoteControl_unit = nil; ("bis_fnc_moduleRemoteCurator" call bis_fnc_rscLayer) cuttext ["","black in",1]; From 4d028be8769450b68a27f6be5536722a4eae4040 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sun, 15 May 2016 18:08:54 +0100 Subject: [PATCH 04/15] Cleanup zeus display modules Replaces display size and position defines with macros for readability and compactness. Changes naming convention of functions and displays to distinguish categories and make more readable. Converts the global set skill module to use display events rather than waiting in a loop for the module to be set and confirmed. --- addons/zeus/CfgEventHandlers.hpp | 2 +- addons/zeus/CfgVehicles.hpp | 143 +++++++--------- addons/zeus/UI_RscAttributes.hpp | 159 ----------------- addons/zeus/XEH_PREP.hpp | 6 +- addons/zeus/XEH_postInit.sqf | 4 + addons/zeus/config.cpp | 4 +- .../functions/fnc_moduleGlobalSetSkill.sqf | 27 +++ ...SetSkill.sqf => fnc_ui_globalSetSkill.sqf} | 20 +-- ...butes_vehCargo.sqf => fnc_ui_vehCargo.sqf} | 0 .../functions/fnc_zeus_globalSetSkill.sqf | 43 ----- addons/zeus/script_component.hpp | 8 + addons/zeus/ui/RscAttributes.hpp | 160 ++++++++++++++++++ 12 files changed, 267 insertions(+), 309 deletions(-) delete mode 100644 addons/zeus/UI_RscAttributes.hpp create mode 100644 addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf rename addons/zeus/functions/{fnc_zeusAttributes_globalSetSkill.sqf => fnc_ui_globalSetSkill.sqf} (83%) rename addons/zeus/functions/{fnc_zeusAttributes_vehCargo.sqf => fnc_ui_vehCargo.sqf} (100%) delete mode 100644 addons/zeus/functions/fnc_zeus_globalSetSkill.sqf create mode 100644 addons/zeus/ui/RscAttributes.hpp diff --git a/addons/zeus/CfgEventHandlers.hpp b/addons/zeus/CfgEventHandlers.hpp index 7df1664c23..6af3e0ef56 100644 --- a/addons/zeus/CfgEventHandlers.hpp +++ b/addons/zeus/CfgEventHandlers.hpp @@ -13,7 +13,7 @@ class Extended_PreInit_EventHandlers { class Extended_PostInit_EventHandlers { class ADDON { - init = QUOTE( call COMPILE_FILE(XEH_postInit) ); + init = QUOTE(call COMPILE_FILE(XEH_postInit)); }; }; diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 8e7e131391..c658e43278 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -86,6 +86,26 @@ class CfgVehicles { scope = 1; scopeCurator = 2; }; + class GVAR(moduleAddSpareTrack): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleAddSpareTrack_DisplayName); + function = QFUNC(moduleAddSpareTrack); + icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo + class ModuleDescription { + description = CSTRING(ModuleAddSpareTrack_Description); + sync[] = {}; + }; + }; + class GVAR(moduleAddSpareWheel): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleAddSpareWheel_DisplayName); + function = QFUNC(moduleAddSpareWheel); + icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo + class ModuleDescription { + description = CSTRING(ModuleAddSpareWheel_Description); + sync[] = {}; + }; + }; class GVAR(moduleCaptive): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleCaptive_DisplayName); @@ -96,6 +116,44 @@ class CfgVehicles { sync[] = {}; }; }; + class GVAR(moduleSetMedic): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleSetMedic_DisplayName); + function = QFUNC(moduleSetMedic); + icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); + class ModuleDescription { + description = ""; + sync[] = {}; + }; + }; + class GVAR(moduleSetMedicalFacility): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleSetMedicalFacility_DisplayName); + function = QFUNC(moduleSetMedicalFacility); + icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); + class ModuleDescription { + description = ""; + sync[] = {}; + }; + }; + class GVAR(moduleSetMedicalVehicle): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleSetMedicalVehicle_DisplayName); + function = QFUNC(moduleSetMedicalVehicle); + icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); + class ModuleDescription { + description = ""; + sync[] = {}; + }; + }; + class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { + displayName = "Global Set AI Skill"; + // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; + // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; + curatorInfoType = QGVAR(RscGlobalSetSkill); + class Arguments {}; + class Attributes {};//todo, make it a threden as well + }; class GVAR(moduleSurrender): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSurrender_DisplayName); @@ -116,89 +174,4 @@ class CfgVehicles { sync[] = {}; }; }; - class GVAR(moduleSetMedic): GVAR(moduleBase) { - curatorCanAttach = 1; - displayName = CSTRING(ModuleSetMedic_DisplayName); - function = QFUNC(moduleSetMedic); - icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; - }; - class GVAR(moduleSetMedicalVehicle): GVAR(moduleBase) { - curatorCanAttach = 1; - displayName = CSTRING(ModuleSetMedicalVehicle_DisplayName); - function = QFUNC(moduleSetMedicalVehicle); - icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; - }; - class GVAR(moduleSetMedicalFacility): GVAR(moduleBase) { - curatorCanAttach = 1; - displayName = CSTRING(ModuleSetMedicalFacility_DisplayName); - function = QFUNC(moduleSetMedicalFacility); - icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; - }; - - class GVAR(moduleAddSpareTrack): GVAR(moduleBase) { - curatorCanAttach = 1; - displayName = CSTRING(ModuleAddSpareTrack_DisplayName); - function = QFUNC(moduleAddSpareTrack); - icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo - class ModuleDescription { - description = CSTRING(ModuleAddSpareTrack_Description); - sync[] = {}; - }; - }; - class GVAR(moduleAddSpareWheel): GVAR(moduleBase) { - curatorCanAttach = 1; - displayName = CSTRING(ModuleAddSpareWheel_DisplayName); - function = QFUNC(moduleAddSpareWheel); - icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo - class ModuleDescription { - description = CSTRING(ModuleAddSpareWheel_Description); - sync[] = {}; - }; - }; - - // class GVAR(moduleSetSuppression): GVAR(moduleBase) { - // curatorCanAttach = 1; - // displayName = CSTRING(ModuleSetSupp_DisplayName); - // function = QFUNC(moduleSetSuppression); - // class ModuleDescription { - // description = "Set group of units to supressed."; - // sync[] = {}; - // }; - // }; - // class GVAR(moduleDisableSuppression): GVAR(moduleBase) { - // curatorCanAttach = 1; - // displayName = CSTRING(ModuleDisableSupp_DisplayName); - // function = QFUNC(moduleDisableSuppression); - // class ModuleDescription { - // description = "Remove suppression for units in group"; - // sync[] = {}; - // }; - // }; - class GVAR(zeus_globalSetSkill): GVAR(moduleBase) { - author = ECSTRING(common,ACETeam); - category = "ACE"; - scope = 1; - scopeCurator = 2; - isTriggerActivated = 0; - displayName = "Global Set AI Skill"; - // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; - // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; - function = QFUNC(zeus_globalSetSkill); - curatorInfoType = QGVAR(RscDisplayAttributes_globalSetSkill); - curatorCost = 0; - class Arguments {}; - class Attributes {};//todo, make it a threden as well - }; }; diff --git a/addons/zeus/UI_RscAttributes.hpp b/addons/zeus/UI_RscAttributes.hpp deleted file mode 100644 index 24007c9f5d..0000000000 --- a/addons/zeus/UI_RscAttributes.hpp +++ /dev/null @@ -1,159 +0,0 @@ -class RscControlsGroup; -class RscControlsGroupNoScrollbars; -class RscText; -class RscListbox; -class RscEdit; -class RscXSliderH; -class RscCheckBox; - -class RscDisplayAttributes { - class Controls { - class Background; - class Title; - class Content: RscControlsGroup { - class controls; - }; - class ButtonOK; - class ButtonCancel; - }; -}; -class GVAR(RscDisplayAttributes_globalSetSkill): RscDisplayAttributes { - onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscDisplayAttributes_globalSetSkill)))] call FUNC(zeusAttributes)); - onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscDisplayAttributes_globalSetSkill)))] call FUNC(zeusAttributes)); - class Controls: Controls { - class Background: Background {}; - class Title: Title {}; - class Content: Content { - class Controls { - class globalSetSkill: RscControlsGroupNoScrollbars { - onSetFocus = QUOTE(_this call FUNC(zeusAttributes_globalSetSkill)); - idc = 26422; - x = "0"; - y = "0"; - w = "26 * (((safezoneW / safezoneH) min 1.2) / 40)"; - h = "6.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - class controls { - class Title1: RscText { - idc = -1; - text = "Skill: General"; - toolTip = "Global AI Set Skill: general,commanding,courage"; - x = "0 * (((safezoneW / safezoneH) min 1.2) / 40)"; - y = "0 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "10 * (((safezoneW / safezoneH) min 1.2) / 40)"; - h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - colorBackground[] = {0,0,0,0.5}; - }; - class Value1: RscXSliderH { - idc = 16184; - x = "10.1 * (((safezoneW / safezoneH) min 1.2) / 40)"; - y = "0 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "15.9 * (((safezoneW / safezoneH) min 1.2) / 40)"; - h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Title2: Title1 { - idc = -1; - text = "Skill: aimingAccuracy"; - toolTip = "Global AI Set Skill: aimingAccuracy"; - y = "1.1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Value2: Value1 { - idc = 16185; - y = "1.1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Title3: Title1 { - idc = -1; - text = "Skill: weaponHandling"; - toolTip = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; - y = "2.2 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Value3: Value1 { - idc = 16186; - y = "2.2 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Title4: Title1 { - idc = -1; - text = "Skill: spotting"; - toolTip = "Global AI Set Skill: spotDistance,spotTime"; - y = "3.3 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Value4: Value1 { - idc = 16187; - y = "3.3 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Title5: Title1 { - idc = -1; - text = "Seek Cover"; - toolTip = "Global AI Set Skill: AI Seek Cover"; - y = "4.4 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Value5: RscCheckBox { - idc = 16188; - x = "10.1 * (((safezoneW / safezoneH) min 1.2) / 40)"; - y = "4.4 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "1 * (((safezoneW / safezoneH) min 1.2) / 40)"; - h = "1 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Title6: Title5 { - idc = -1; - text = "AUTOCOMBAT"; - toolTip = "Global AI Set Skill: Ai Switch To Combat Mode"; - y = "5.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - class Value6: Value5 { - idc = 16189; - y = "5.5 * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - }; - }; - }; - }; - class ButtonOK: ButtonOK {}; - class ButtonCancel: ButtonCancel {}; - }; -}; - -class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { - onSetFocus = QUOTE(_this call FUNC(zeusAttributes_vehCargo)); - idc = 80085; - x = "7 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; - y = "10 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - ( ((safezoneW / safezoneH) min 1.2) / 1.2))/2)"; - w = "26 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - class controls { - class Title: RscText { - idc = -1; - text = "Cargo:"; - x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - colorBackground[] = {0,0,0,0.5}; - }; - class Background: RscText { - idc = -1; - x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - h = "2.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - colorBackground[] = {1,1,1,0.1}; - }; - class Cargo: RscListBox { - idc = 80086; - x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; - h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; - }; - - }; -}; - -class RscDisplayAttributesVehicle: RscDisplayAttributes { - class Controls: Controls { - class Content: Content { - class Controls: controls { - class Cargo: GVAR(cargoAttribute) { }; - }; - }; - }; -}; \ No newline at end of file diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 96fc87be01..dc937c2608 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -8,6 +8,7 @@ PREP(handleZeusUnitAssigned); PREP(moduleAddSpareTrack); PREP(moduleAddSpareWheel); PREP(moduleCaptive); +PREP(moduleGlobalSetSkill); PREP(moduleSetMedic); PREP(moduleSetMedicalVehicle); PREP(moduleSetMedicalFacility); @@ -15,7 +16,6 @@ PREP(moduleSurrender); PREP(moduleUnconscious); PREP(moduleZeusSettings); PREP(setSkillsLocal); -PREP(zeus_globalSetSkill); +PREP(ui_globalSetSkill); +PREP(ui_vehCargo); PREP(zeusAttributes); -PREP(zeusAttributes_globalSetSkill); -PREP(zeusAttributes_vehCargo); diff --git a/addons/zeus/XEH_postInit.sqf b/addons/zeus/XEH_postInit.sqf index 187b46c669..c05983b00f 100644 --- a/addons/zeus/XEH_postInit.sqf +++ b/addons/zeus/XEH_postInit.sqf @@ -1,5 +1,9 @@ #include "script_component.hpp" +if (isServer) then { + ["ServerUpdateAISettings",FUNC(moduleGlobalSetSkill)] call EFUNC(common,addEventHandler); +}; + ["UpdateAISettings", { TRACE_1("UpdateAISettings EH",_this); { diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index 71e6c2b8fe..b069ff8e90 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -2,7 +2,7 @@ class CfgPatches { class ADDON { - units[] = {QGVAR(zeus_globalSetSkill)}; + units[] = {QGVAR(moduleGlobalSetSkill)}; weapons[] = {}; requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_common"}; @@ -42,4 +42,4 @@ class ACE_Curator { #include "CfgEventHandlers.hpp" #include "CfgVehicles.hpp" #include "ACE_Settings.hpp" -#include "UI_RscAttributes.hpp" +#include "ui\RscAttributes.hpp" diff --git a/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf new file mode 100644 index 0000000000..d654801894 --- /dev/null +++ b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf @@ -0,0 +1,27 @@ +#include "script_component.hpp" + +params ["_logic"]; +TRACE_1("params",_logic); + +[QGVAR(aiSkill_set), true, false, true] call ace_common_fnc_setSetting; +if (!GVAR(aiSkill_set)) exitWith { + TRACE_1("Setting must be forced off", GVAR(aiSkill_set)); +}; + +private _val = _logic getVariable ["aiSkill_general", -1]; +if (_val != -1) then { [QGVAR(aiSkill_general), _val, false, true] call ace_common_fnc_setSetting; }; +_val = _logic getVariable ["aiSkill_aimingAccuracy", -1]; +if (_val != -1) then { [QGVAR(aiSkill_aimingAccuracy), _val, false, true] call ace_common_fnc_setSetting; }; +_val = _logic getVariable ["aiSkill_weaponHandling", -1]; +if (_val != -1) then { [QGVAR(aiSkill_weaponHandling), _val, false, true] call ace_common_fnc_setSetting; }; +_val = _logic getVariable ["aiSkill_spotting", -1]; +if (_val != -1) then { [QGVAR(aiSkill_spotting), _val, false, true] call ace_common_fnc_setSetting; }; +_val = _logic getVariable ["aiSkill_COVER", -1]; +if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_COVER), _val, false, true] call ace_common_fnc_setSetting; }; +_val = _logic getVariable ["aiSkill_AUTOCOMBAT", -1]; +if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_AUTOCOMBAT), _val, false, true] call ace_common_fnc_setSetting; }; + +["UpdateAISettings", []] call ace_common_fnc_globalEvent; +deleteVehicle _logic; + +TRACE_6("ai settings updated",GVAR(aiSkill_general),GVAR(aiSkill_aimingAccuracy),GVAR(aiSkill_weaponHandling),GVAR(aiSkill_spotting),GVAR(aiSkill_COVER),GVAR(aiSkill_AUTOCOMBAT)); diff --git a/addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf similarity index 83% rename from addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf rename to addons/zeus/functions/fnc_ui_globalSetSkill.sqf index 329102d599..3b7c0b3e5f 100644 --- a/addons/zeus/functions/fnc_zeusAttributes_globalSetSkill.sqf +++ b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf @@ -8,7 +8,7 @@ TRACE_1("params",_control); //Generic Init: private _display = ctrlparent _control; private _ctrlButtonOK = _display displayctrl 1; //IDC_OK -private _logic = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); TRACE_1("logicObject",_logic); _control ctrlRemoveAllEventHandlers "setFocus"; @@ -22,7 +22,7 @@ _fnc_sliderMove = { case (16186): {GVAR(aiSkill_weaponHandling)}; case (16187): {GVAR(aiSkill_spotting)}; }; - _slider ctrlSetTooltip format ["%1 (was %2)", sliderPosition _slider, _curVal]; + _slider ctrlSetTooltip format ["%1%3 (was %2%3)", round(sliderPosition _slider * 100), round(_curVal * 100), "%"]; }; //Specific on-load stuff: @@ -50,18 +50,6 @@ _fnc_sliderMove = { (_display displayCtrl 16189) cbSetChecked GVAR(aiSkill_AUTOCOMBAT); - - -private _fnc_onUnload = { - params [["_display", displayNull, [displayNull]]]; - TRACE_1("_fnc_onUnload params",_display); - - private _logic = missionnamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; - if (isNull _logic) exitWith {}; - - _logic setVariable ["closed", true]; -}; - private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; TRACE_1("_fnc_onConfirm params",_this); @@ -78,8 +66,8 @@ private _fnc_onConfirm = { _logic setVariable ["aiSkill_spotting", sliderPosition (_display displayCtrl 16187), true]; _logic setVariable ["aiSkill_COVER", cbChecked (_display displayCtrl 16188), true]; _logic setVariable ["aiSkill_AUTOCOMBAT", cbChecked (_display displayCtrl 16189), true]; - _logic setVariable ["set", true, true]; + + ["ServerUpdateAISettings", [_logic]] call EFUNC(common,serverEvent); }; -_display displayaddeventhandler ["unload", _fnc_onUnload]; _ctrlButtonOK ctrladdeventhandler ["buttonclick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf b/addons/zeus/functions/fnc_ui_vehCargo.sqf similarity index 100% rename from addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf rename to addons/zeus/functions/fnc_ui_vehCargo.sqf diff --git a/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf b/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf deleted file mode 100644 index 763947292f..0000000000 --- a/addons/zeus/functions/fnc_zeus_globalSetSkill.sqf +++ /dev/null @@ -1,43 +0,0 @@ -#include "script_component.hpp" - -params ["_logic"]; -TRACE_1("params",_logic); - -if (!isServer) exitWith {}; - -[{ - params ["_logic"]; - (isNull _logic) || {_logic getVariable ["closed", false]} -}, { - params ["_logic"]; - if (isNull _logic) exitWith {TRACE_1("null",_logic);}; - - if (_logic getVariable ["set", false]) then { - - [QGVAR(aiSkill_set), true, false, true] call ace_common_fnc_setSetting; - if (!GVAR(aiSkill_set)) exitWith { - TRACE_1("Setting must be forced off", GVAR(aiSkill_set)); - }; - - private _val = _logic getVariable ["aiSkill_general", -1]; - if (_val != -1) then { [QGVAR(aiSkill_general), _val, false, true] call ace_common_fnc_setSetting; }; - _val = _logic getVariable ["aiSkill_aimingAccuracy", -1]; - if (_val != -1) then { [QGVAR(aiSkill_aimingAccuracy), _val, false, true] call ace_common_fnc_setSetting; }; - _val = _logic getVariable ["aiSkill_weaponHandling", -1]; - if (_val != -1) then { [QGVAR(aiSkill_weaponHandling), _val, false, true] call ace_common_fnc_setSetting; }; - _val = _logic getVariable ["aiSkill_spotting", -1]; - if (_val != -1) then { [QGVAR(aiSkill_spotting), _val, false, true] call ace_common_fnc_setSetting; }; - _val = _logic getVariable ["aiSkill_COVER", -1]; - if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_COVER), _val, false, true] call ace_common_fnc_setSetting; }; - _val = _logic getVariable ["aiSkill_AUTOCOMBAT", -1]; - if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_AUTOCOMBAT), _val, false, true] call ace_common_fnc_setSetting; }; - - ["UpdateAISettings", []] call ace_common_fnc_globalEvent; - - TRACE_6("ai settings updated",GVAR(aiSkill_general),GVAR(aiSkill_aimingAccuracy),GVAR(aiSkill_weaponHandling),GVAR(aiSkill_spotting),GVAR(aiSkill_COVER),GVAR(aiSkill_AUTOCOMBAT)); - } else { - TRACE_1("closed but not set",_logic); - }; - - deleteVehicle _logic; -}, [_logic]] call ace_common_fnc_waitUntilAndExecute; diff --git a/addons/zeus/script_component.hpp b/addons/zeus/script_component.hpp index cb0fa29be3..953418761f 100644 --- a/addons/zeus/script_component.hpp +++ b/addons/zeus/script_component.hpp @@ -15,3 +15,11 @@ #endif #include "\z\ace\addons\main\script_macros.hpp" + +// UI grid +#define SIZEX ((safezoneW / safezoneH) min 1.2) +#define SIZEY (SIZEX / 1.2) +#define W_PART(num) (num * (SIZEX / 40)) +#define H_PART(num) (num * (SIZEY / 25)) +#define X_PART(num) (W_PART(num) + (safezoneX + (safezoneW - SIZEX)/2)) +#define Y_PART(num) (H_PART(num) + (safezoneY + (safezoneH - SIZEY)/2)) diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp new file mode 100644 index 0000000000..ad0a09246c --- /dev/null +++ b/addons/zeus/ui/RscAttributes.hpp @@ -0,0 +1,160 @@ +class RscControlsGroup; +class RscControlsGroupNoScrollbars; +class RscText; +class RscListbox; +class RscEdit; +class RscXSliderH; +class RscCheckBox; + +class RscDisplayAttributes { + class Controls { + class Background; + class Title; + class Content: RscControlsGroup { + class controls; + }; + class ButtonOK; + class ButtonCancel; + }; +}; + +class GVAR(RscGlobalSetSkill): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscGlobalSetSkill)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscGlobalSetSkill)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class globalSetSkill: RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_globalSetSkill)); + idc = 26422; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(6.5); + class controls { + class Title1: RscText { + idc = -1; + text = "Skill: General"; + toolTip = "Global AI Set Skill: general,commanding,courage"; + x = 0; + y = 0; + w = W_PART(10); + h = H_PART(1); + colorBackground[] = {0,0,0,0.5}; + }; + class Value1: RscXSliderH { + idc = 16184; + x = W_PART(10.1); + y = 0; + w = W_PART(15.9); + h = H_PART(1); + }; + class Title2: Title1 { + idc = -1; + text = "Skill: aimingAccuracy"; + toolTip = "Global AI Set Skill: aimingAccuracy"; + y = H_PART(1.1); + }; + class Value2: Value1 { + idc = 16185; + y = H_PART(1.1); + }; + class Title3: Title1 { + idc = -1; + text = "Skill: weaponHandling"; + toolTip = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; + y = H_PART(2.2); + }; + class Value3: Value1 { + idc = 16186; + y = H_PART(2.2); + }; + class Title4: Title1 { + idc = -1; + text = "Skill: spotting"; + toolTip = "Global AI Set Skill: spotDistance,spotTime"; + y = H_PART(3.3); + }; + class Value4: Value1 { + idc = 16187; + y = H_PART(3.3); + }; + class Title5: Title1 { + idc = -1; + text = "Seek Cover"; + toolTip = "Global AI Set Skill: AI Seek Cover"; + y = H_PART(4.4); + }; + class Value5: RscCheckBox { + idc = 16188; + x = W_PART(10.1); + y = H_PART(4.4); + w = W_PART(1); + h = H_PART(1); + }; + class Title6: Title5 { + idc = -1; + text = "AUTOCOMBAT"; + toolTip = "Global AI Set Skill: Ai Switch To Combat Mode"; + y = H_PART(5.5); + }; + class Value6: Value5 { + idc = 16189; + y = H_PART(5.5); + }; + }; + }; + }; + }; + class ButtonOK: ButtonOK {}; + class ButtonCancel: ButtonCancel {}; + }; +}; + +class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_vehCargo)); + idc = 80085; + x = X_PART(7); + y = Y_PART(10); + w = W_PART(26); + h = H_PART(3); + class controls { + class Title: RscText { + idc = -1; + text = "Cargo:"; + x = 0; + y = 0; + w = W_PART(10); + h = H_PART(3); + colorBackground[] = {0,0,0,0.5}; + }; + class Background: RscText { + idc = -1; + x = W_PART(10); + y = 0; + w = W_PART(16); + h = H_PART(2.5); + colorBackground[] = {1,1,1,0.1}; + }; + class Cargo: RscListBox { + idc = 80086; + x = W_PART(10); + y = 0; + w = W_PART(16); + h = H_PART(3); + }; + + }; +}; + +class RscDisplayAttributesVehicle: RscDisplayAttributes { + class Controls: Controls { + class Content: Content { + class Controls: controls { + class Cargo: GVAR(cargoAttribute) { }; + }; + }; + }; +}; From 5b460205a96174d044f136d74ac571d3acd1aaa3 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sun, 15 May 2016 21:02:40 +0100 Subject: [PATCH 05/15] Add teleport player zeus module --- addons/zeus/CfgVehicles.hpp | 21 ++++--- addons/zeus/XEH_PREP.hpp | 2 + addons/zeus/config.cpp | 5 +- .../functions/fnc_moduleTeleportPlayers.sqf | 27 +++++++++ .../zeus/functions/fnc_ui_teleportPlayers.sqf | 53 +++++++++++++++++ addons/zeus/ui/RscAttributes.hpp | 58 +++++++++++++++++++ 6 files changed, 157 insertions(+), 9 deletions(-) create mode 100644 addons/zeus/functions/fnc_moduleTeleportPlayers.sqf create mode 100644 addons/zeus/functions/fnc_ui_teleportPlayers.sqf diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index c658e43278..4a143ad380 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -116,6 +116,14 @@ class CfgVehicles { sync[] = {}; }; }; + class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { + displayName = "Global Set AI Skill"; + // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; + // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; + curatorInfoType = QGVAR(RscGlobalSetSkill); + class Arguments {}; + class Attributes {};//todo, make it a threden as well + }; class GVAR(moduleSetMedic): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSetMedic_DisplayName); @@ -146,14 +154,6 @@ class CfgVehicles { sync[] = {}; }; }; - class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { - displayName = "Global Set AI Skill"; - // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; - // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; - curatorInfoType = QGVAR(RscGlobalSetSkill); - class Arguments {}; - class Attributes {};//todo, make it a threden as well - }; class GVAR(moduleSurrender): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSurrender_DisplayName); @@ -164,6 +164,11 @@ class CfgVehicles { sync[] = {}; }; }; + class GVAR(moduleTeleportPlayers): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = "Teleport Players"; + curatorInfoType = QGVAR(RscTeleportPlayers); + }; class GVAR(moduleUnconscious): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleUnconscious_DisplayName); diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index dc937c2608..5d24c0177c 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -13,9 +13,11 @@ PREP(moduleSetMedic); PREP(moduleSetMedicalVehicle); PREP(moduleSetMedicalFacility); PREP(moduleSurrender); +PREP(moduleTeleportPlayers); PREP(moduleUnconscious); PREP(moduleZeusSettings); PREP(setSkillsLocal); PREP(ui_globalSetSkill); +PREP(ui_teleportPlayers); PREP(ui_vehCargo); PREP(zeusAttributes); diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index b069ff8e90..560a6f8073 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -2,7 +2,10 @@ class CfgPatches { class ADDON { - units[] = {QGVAR(moduleGlobalSetSkill)}; + units[] = { + QGVAR(moduleGlobalSetSkill), + QGVAR(moduleTeleportPlayers) + }; weapons[] = {}; requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_common"}; diff --git a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf new file mode 100644 index 0000000000..4166b0adb2 --- /dev/null +++ b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf @@ -0,0 +1,27 @@ +#include "script_component.hpp" + +params ["_logic","_uid","_group"]; + +// Get the chosen unit +private _player = [_uid] call BIS_fnc_getUnitByUID; + +// Handle if group mode was selected +if (_group) then { + _player = units _player; +} else { + _player = [_player]; +}; + +// Handle teleportation +{ + moveOut _x; + + private _attached = attachedTo _logic; + if (isNull _attached) then { + [_x, _logic] call BIS_fnc_moveToRespawnPosition; + } else { + [_x, _attached] call BIS_fnc_moveToRespawnPosition; + }; +} forEach _player; + +deleteVehicle _logic; diff --git a/addons/zeus/functions/fnc_ui_teleportPlayers.sqf b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf new file mode 100644 index 0000000000..d9a496b17f --- /dev/null +++ b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf @@ -0,0 +1,53 @@ +#include "script_component.hpp" + +disableSerialization; + +params ["_control"]; + +//Generic Init: +private _display = ctrlparent _control; +private _ctrlButtonOK = _display displayctrl 1; //IDC_OK +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); +TRACE_1("logicObject",_logic); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Specific on-load stuff: +private _listbox = _display displayCtrl 16189; +{ + if (alive _x) then { + _listbox lbSetData [_listbox lbAdd (name _x), getPlayerUID _x]; + }; +} forEach allPlayers; + +_listbox lbSetCurSel 0; +(_display displayCtrl 16188) cbSetChecked (_logic setVariable ["tpGroup",false]); + +private _fnc_onUnload = { + params ["_display"]; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + // Store checkbox value for reopening + _logic setVariable ["tpGroup", cbChecked (_display displayCtrl 16188)]; +}; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {diag_log text format ["[POTATO] - ERROR Logic [%1] is null on confirm", _logic];}; + + private _lb = _display displayCtrl 16189; + + private _uid = _lb lbData (lbCurSel _lb); + private _group = cbChecked (_display displayCtrl 16188); + + [_logic, _uid, _group] call FUNC(moduleTeleportPlayers); +}; + +_display displayAddEventHandler ["unload", _fnc_onUnload]; +_ctrlButtonOK ctrlAddEventHandler ["buttonclick", _fnc_onConfirm]; diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index ad0a09246c..641daa7af0 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -113,6 +113,64 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; }; + +class GVAR(RscTeleportPlayers): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscTeleportPlayers)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscTeleportPlayers)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class teleportPlayers: RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_teleportPlayers)); + idc = 26422; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(8.5); + class controls { + class Title1: RscText { + idc = -1; + text = "Teleport Player"; + toolTip = "Teleport selected player to module position"; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(1); + colorBackground[] = {0,0,0,0.5}; + }; + class Value1: RscListbox { + idc = 16189; + x = 0; + y = H_PART(1.1); + w = W_PART(26); + h = H_PART(5.9); + }; + class Title2: Title1 { + idc = -1; + text = "Teleport Group"; + toolTip = "Teleports all units in group"; + y = H_PART(7.1); + w = W_PART(10); + }; + class Value2: RscCheckBox { + idc = 16188; + x = W_PART(10.1); + y = H_PART(7.1); + w = W_PART(1); + h = H_PART(1); + }; + }; + }; + }; + }; + class ButtonOK: ButtonOK {}; + class ButtonCancel: ButtonCancel {}; + }; +}; + + class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { onSetFocus = QUOTE(_this call FUNC(ui_vehCargo)); idc = 80085; From d90d5a7ac1bfa0b8f109e17b4c867581ccbbff35 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Mon, 16 May 2016 14:55:19 +0100 Subject: [PATCH 06/15] Rewrite global AI skill zeus module Remove the use of ace settings and makes the module more zeus specific. It might be worth adding a similar module or mission settings to ace_ai for mission editing. --- addons/zeus/ACE_Settings.hpp | 43 ------------ addons/zeus/CfgVehicles.hpp | 2 +- addons/zeus/XEH_PREP.hpp | 1 - addons/zeus/XEH_postInit.sqf | 14 +--- addons/zeus/XEH_preInit.sqf | 2 + .../functions/fnc_moduleGlobalSetSkill.sqf | 49 +++++++------ addons/zeus/functions/fnc_setSkillsLocal.sqf | 29 -------- .../zeus/functions/fnc_ui_globalSetSkill.sqf | 70 ++++++++----------- .../zeus/functions/fnc_ui_teleportPlayers.sqf | 3 +- addons/zeus/ui/RscAttributes.hpp | 20 +++--- 10 files changed, 73 insertions(+), 160 deletions(-) delete mode 100644 addons/zeus/functions/fnc_setSkillsLocal.sqf diff --git a/addons/zeus/ACE_Settings.hpp b/addons/zeus/ACE_Settings.hpp index 6fb1570c5a..6488a23e4e 100644 --- a/addons/zeus/ACE_Settings.hpp +++ b/addons/zeus/ACE_Settings.hpp @@ -26,47 +26,4 @@ class ACE_Settings { value = 0; typeName = "BOOL"; }; - - class GVAR(aiSkill_set) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: Master Enable"; - typeName = "BOOL"; - value = 0; - }; - class GVAR(aiSkill_general) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: general,commanding,courage"; - typeName = "SCALAR"; - value = 0.5; - }; - class GVAR(aiSkill_aimingAccuracy) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: aimingAccuracy"; - typeName = "SCALAR"; - value = 0.5; - }; - class GVAR(aiSkill_weaponHandling) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; - typeName = "SCALAR"; - value = 0.5; - }; - class GVAR(aiSkill_spotting) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: spotDistance,spotTime"; - typeName = "SCALAR"; - value = 0.5; - }; - class GVAR(aiSkill_COVER) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: AI Seek Cover"; - typeName = "BOOL"; - value = 1; - }; - class GVAR(aiSkill_AUTOCOMBAT) { - category = QUOTE(PREFIX); - displayName = "Global AI Set Skill: Ai Switch To Combat Mode"; - typeName = "BOOL"; - value = 1; - }; }; diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 4a143ad380..2f169801c0 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -117,7 +117,7 @@ class CfgVehicles { }; }; class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { - displayName = "Global Set AI Skill"; + displayName = "Global AI Skill"; // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; curatorInfoType = QGVAR(RscGlobalSetSkill); diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 5d24c0177c..a72f220d31 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -16,7 +16,6 @@ PREP(moduleSurrender); PREP(moduleTeleportPlayers); PREP(moduleUnconscious); PREP(moduleZeusSettings); -PREP(setSkillsLocal); PREP(ui_globalSetSkill); PREP(ui_teleportPlayers); PREP(ui_vehCargo); diff --git a/addons/zeus/XEH_postInit.sqf b/addons/zeus/XEH_postInit.sqf index c05983b00f..c2c7c192eb 100644 --- a/addons/zeus/XEH_postInit.sqf +++ b/addons/zeus/XEH_postInit.sqf @@ -1,14 +1,4 @@ #include "script_component.hpp" -if (isServer) then { - ["ServerUpdateAISettings",FUNC(moduleGlobalSetSkill)] call EFUNC(common,addEventHandler); -}; - -["UpdateAISettings", { - TRACE_1("UpdateAISettings EH",_this); - { - if (local _x) then { - [_x] call FUNC(setSkillsLocal); - }; - } forEach allUnits; -}] call EFUNC(common,addEventHandler); +// Global skill module PVs values for persistence, just listen for the PV +QGVAR(GlobalSkillAI) addPublicVariableEventHandler FUNC(moduleGlobalSetSkill); diff --git a/addons/zeus/XEH_preInit.sqf b/addons/zeus/XEH_preInit.sqf index 0d03673e46..9616a9a861 100644 --- a/addons/zeus/XEH_preInit.sqf +++ b/addons/zeus/XEH_preInit.sqf @@ -8,4 +8,6 @@ if (isServer) then { ["zeusUnitAssigned", FUNC(handleZeusUnitAssigned)] call EFUNC(common,addEventHandler); }; +GVAR(GlobalSkillAI) = [0.5,0.5,0.5,0.5,true,true]; + ADDON = true; diff --git a/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf index d654801894..b25bc5e5f3 100644 --- a/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf +++ b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf @@ -1,27 +1,32 @@ #include "script_component.hpp" -params ["_logic"]; -TRACE_1("params",_logic); +_this params ["_varName","_varValue"]; +_varValue params ["_general","_accuracy","_handling","_spotting","_cover","_combat"]; +TRACE_1("Params",_this); -[QGVAR(aiSkill_set), true, false, true] call ace_common_fnc_setSetting; -if (!GVAR(aiSkill_set)) exitWith { - TRACE_1("Setting must be forced off", GVAR(aiSkill_set)); -}; +TRACE_6("AI settings updated",GVAR(GlobalSkillAI)); +{ + if (local _x) then { + _unit setSkill ["general", _general]; + _unit setSkill ["commanding", _general]; + _unit setSkill ["courage", _general]; + _unit setSkill ["aimingAccuracy", _accuracy]; + _unit setSkill ["aimingShake", _handling]; + _unit setSkill ["aimingSpeed", _handling]; + _unit setSkill ["reloadSpeed", _handling]; + _unit setSkill ["spotDistance", _spotting]; + _unit setSkill ["spotTime", _spotting]; -private _val = _logic getVariable ["aiSkill_general", -1]; -if (_val != -1) then { [QGVAR(aiSkill_general), _val, false, true] call ace_common_fnc_setSetting; }; -_val = _logic getVariable ["aiSkill_aimingAccuracy", -1]; -if (_val != -1) then { [QGVAR(aiSkill_aimingAccuracy), _val, false, true] call ace_common_fnc_setSetting; }; -_val = _logic getVariable ["aiSkill_weaponHandling", -1]; -if (_val != -1) then { [QGVAR(aiSkill_weaponHandling), _val, false, true] call ace_common_fnc_setSetting; }; -_val = _logic getVariable ["aiSkill_spotting", -1]; -if (_val != -1) then { [QGVAR(aiSkill_spotting), _val, false, true] call ace_common_fnc_setSetting; }; -_val = _logic getVariable ["aiSkill_COVER", -1]; -if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_COVER), _val, false, true] call ace_common_fnc_setSetting; }; -_val = _logic getVariable ["aiSkill_AUTOCOMBAT", -1]; -if (!(_val isEqualTo -1)) then { [QGVAR(aiSkill_AUTOCOMBAT), _val, false, true] call ace_common_fnc_setSetting; }; + if (_cover) then { + _unit enableAI "COVER"; + } else { + _unit disableAI "COVER"; + }; -["UpdateAISettings", []] call ace_common_fnc_globalEvent; -deleteVehicle _logic; - -TRACE_6("ai settings updated",GVAR(aiSkill_general),GVAR(aiSkill_aimingAccuracy),GVAR(aiSkill_weaponHandling),GVAR(aiSkill_spotting),GVAR(aiSkill_COVER),GVAR(aiSkill_AUTOCOMBAT)); + if (_combat) then { + _unit enableAI "AUTOCOMBAT"; + } else { + _unit disableAI "AUTOCOMBAT"; + }; + }; +} forEach allUnits; diff --git a/addons/zeus/functions/fnc_setSkillsLocal.sqf b/addons/zeus/functions/fnc_setSkillsLocal.sqf deleted file mode 100644 index fc99fb2f33..0000000000 --- a/addons/zeus/functions/fnc_setSkillsLocal.sqf +++ /dev/null @@ -1,29 +0,0 @@ -#include "script_component.hpp" - -params ["_unit"]; -TRACE_1("params",_unit); - -{ - _unit setSkill [_x, GVAR(aiSkill_general)]; -} forEach ["general", "commanding", "courage"]; -{ - _unit setSkill [_x, GVAR(aiSkill_aimingAccuracy)]; -} forEach ["aimingAccuracy"]; -{ - _unit setSkill [_x, GVAR(aiSkill_weaponHandling)]; -} forEach ["aimingShake", "aimingSpeed", "reloadSpeed"]; -{ - _unit setSkill [_x, GVAR(aiSkill_spotting)]; -} forEach ["spotDistance", "spotTime"]; -if (GVAR(aiSkill_COVER)) then { - _unit enableAI "COVER"; -} else { - _unit disableAI "COVER"; -}; -if (GVAR(aiSkill_AUTOCOMBAT)) then { - _unit enableAI "AUTOCOMBAT"; -} else { - _unit disableAI "AUTOCOMBAT"; -}; - -TRACE_1("ai sills set",_unit); diff --git a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf index 3b7c0b3e5f..32a2b8ccb7 100644 --- a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf +++ b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf @@ -13,61 +13,49 @@ TRACE_1("logicObject",_logic); _control ctrlRemoveAllEventHandlers "setFocus"; -_fnc_sliderMove = { +//Specific on-load stuff: +private _fnc_sliderMove = { params ["_slider"]; - private _idc = ctrlIDC _slider; - private _curVal = switch (_idc) do { - case (16184): {GVAR(aiSkill_general)}; - case (16185): {GVAR(aiSkill_aimingAccuracy)}; - case (16186): {GVAR(aiSkill_weaponHandling)}; - case (16187): {GVAR(aiSkill_spotting)}; - }; + private _idc = ctrlIDC _slider; // IDCs ∈ [16184,16187] + private _curVal = GVAR(GlobalSkillAI) select (_idc - 16184); // [0,3] _slider ctrlSetTooltip format ["%1%3 (was %2%3)", round(sliderPosition _slider * 100), round(_curVal * 100), "%"]; }; -//Specific on-load stuff: -(_display displayCtrl 16184) sliderSetRange [0, 1]; -(_display displayCtrl 16184) sliderSetPosition (GVAR(aiSkill_general) max 0); -(_display displayCtrl 16184) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; -(_display displayCtrl 16184) call _fnc_sliderMove; +{ + private _slider = _display displayCtrl _x; + _slider sliderSetRange [0, 1]; + _slider sliderSetSpeed [0.01,0.1]; + _slider sliderSetPosition (GVAR(GlobalSkillAI) select _forEachIndex); + _slider ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; + _slider call _fnc_sliderMove; +} forEach [16184,16185,16186,16187]; -(_display displayCtrl 16185) sliderSetRange [0, 1]; -(_display displayCtrl 16185) sliderSetPosition (GVAR(aiSkill_aimingAccuracy) max 0); -(_display displayCtrl 16185) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; -(_display displayCtrl 16185) call _fnc_sliderMove; - -(_display displayCtrl 16186) sliderSetRange [0, 1]; -(_display displayCtrl 16186) sliderSetPosition (GVAR(aiSkill_weaponHandling) max 0); -(_display displayCtrl 16186) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; -(_display displayCtrl 16186) call _fnc_sliderMove; - -(_display displayCtrl 16187) sliderSetRange [0, 1]; -(_display displayCtrl 16187) sliderSetPosition (GVAR(aiSkill_spotting) max 0); -(_display displayCtrl 16187) ctrlAddEventHandler ["SliderPosChanged", _fnc_sliderMove]; -(_display displayCtrl 16187) call _fnc_sliderMove; - -(_display displayCtrl 16188) cbSetChecked GVAR(aiSkill_COVER); - -(_display displayCtrl 16189) cbSetChecked GVAR(aiSkill_AUTOCOMBAT); +(_display displayCtrl 16188) cbSetChecked (GVAR(GlobalSkillAI) select 4); +(_display displayCtrl 16189) cbSetChecked (GVAR(GlobalSkillAI) select 5); private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; TRACE_1("_fnc_onConfirm params",_this); + private _display = ctrlparent _ctrlButtonOK; if (isNull _display) exitWith {}; - private _logic = missionnamespace getvariable ["BIS_fnc_initCuratorAttributes_target", objnull]; - if (isNull _logic) exitWith {diag_log text format ["[POTATO] - ERROR Logic [%1] is null on confirm", _logic];}; + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; - TRACE_2("set",_logic, sliderPosition (_display displayCtrl 16184)); - _logic setVariable ["aiSkill_general", sliderPosition (_display displayCtrl 16184), true]; - _logic setVariable ["aiSkill_aimingAccuracy", sliderPosition (_display displayCtrl 16185), true]; - _logic setVariable ["aiSkill_weaponHandling", sliderPosition (_display displayCtrl 16186), true]; - _logic setVariable ["aiSkill_spotting", sliderPosition (_display displayCtrl 16187), true]; - _logic setVariable ["aiSkill_COVER", cbChecked (_display displayCtrl 16188), true]; - _logic setVariable ["aiSkill_AUTOCOMBAT", cbChecked (_display displayCtrl 16189), true]; + GVAR(GlobalSkillAI) = [ + sliderPosition (_display displayCtrl 16184), // General + sliderPosition (_display displayCtrl 16185), // Accuracy + sliderPosition (_display displayCtrl 16186), // Handling + sliderPosition (_display displayCtrl 16187), // Spotting + cbChecked (_display displayCtrl 16188), // Seek cover + cbChecked (_display displayCtrl 16189) // Autocombat + ]; + publicVariable QGVAR(GlobalSkillAI); // Values should persist for future use - ["ServerUpdateAISettings", [_logic]] call EFUNC(common,serverEvent); + // PV EH won't run on local machine + [QGVAR(GlobalSkillAI),GVAR(GlobalSkillAI)] call FUNC(moduleGlobalSetSkill); + deleteVehicle _logic; }; _ctrlButtonOK ctrladdeventhandler ["buttonclick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_ui_teleportPlayers.sqf b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf index d9a496b17f..9990d6c683 100644 --- a/addons/zeus/functions/fnc_ui_teleportPlayers.sqf +++ b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf @@ -35,11 +35,12 @@ private _fnc_onUnload = { private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; + private _display = ctrlparent _ctrlButtonOK; if (isNull _display) exitWith {}; private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); - if (isNull _logic) exitWith {diag_log text format ["[POTATO] - ERROR Logic [%1] is null on confirm", _logic];}; + if (isNull _logic) exitWith {}; private _lb = _display displayCtrl 16189; diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index 641daa7af0..62de9bc20d 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -36,8 +36,8 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { class controls { class Title1: RscText { idc = -1; - text = "Skill: General"; - toolTip = "Global AI Set Skill: general,commanding,courage"; + text = "General Skill"; + toolTip = "Changes: general, commanding, courage"; x = 0; y = 0; w = W_PART(10); @@ -53,8 +53,8 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; class Title2: Title1 { idc = -1; - text = "Skill: aimingAccuracy"; - toolTip = "Global AI Set Skill: aimingAccuracy"; + text = "Accuracy"; + toolTip = "Changes: aimingAccuracy"; y = H_PART(1.1); }; class Value2: Value1 { @@ -63,8 +63,8 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; class Title3: Title1 { idc = -1; - text = "Skill: weaponHandling"; - toolTip = "Global AI Set Skill: aimingShake,aimingSpeed,reloadSpeed"; + text = "Weapon Handling"; + toolTip = "Changes: aimingShake, aimingSpeed, reloadSpeed"; y = H_PART(2.2); }; class Value3: Value1 { @@ -73,8 +73,8 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; class Title4: Title1 { idc = -1; - text = "Skill: spotting"; - toolTip = "Global AI Set Skill: spotDistance,spotTime"; + text = "Spotting"; + toolTip = "Changes: spotDistance, spotTime"; y = H_PART(3.3); }; class Value4: Value1 { @@ -84,7 +84,7 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { class Title5: Title1 { idc = -1; text = "Seek Cover"; - toolTip = "Global AI Set Skill: AI Seek Cover"; + toolTip = "Will AI seek cover"; y = H_PART(4.4); }; class Value5: RscCheckBox { @@ -97,7 +97,7 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { class Title6: Title5 { idc = -1; text = "AUTOCOMBAT"; - toolTip = "Global AI Set Skill: Ai Switch To Combat Mode"; + toolTip = "Will AI automatically switch to combat mode"; y = H_PART(5.5); }; class Value6: Value5 { From 4cbded1811dd4a003a1627fae5fa55b29f521eb7 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Tue, 17 May 2016 12:10:52 +0100 Subject: [PATCH 07/15] Fix zeus cargo display for empty vehicles The cargo wasn't displaying for empty vehicles because they use a different display. --- addons/zeus/CfgVehicles.hpp | 4 ---- addons/zeus/functions/fnc_ui_vehCargo.sqf | 4 +++- addons/zeus/ui/RscAttributes.hpp | 14 ++++++++++++-- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 2f169801c0..3a9b7b8670 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -118,11 +118,7 @@ class CfgVehicles { }; class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { displayName = "Global AI Skill"; - // icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa"; - // portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa"; curatorInfoType = QGVAR(RscGlobalSetSkill); - class Arguments {}; - class Attributes {};//todo, make it a threden as well }; class GVAR(moduleSetMedic): GVAR(moduleBase) { curatorCanAttach = 1; diff --git a/addons/zeus/functions/fnc_ui_vehCargo.sqf b/addons/zeus/functions/fnc_ui_vehCargo.sqf index 8c9087e31c..be7dc1a36a 100644 --- a/addons/zeus/functions/fnc_ui_vehCargo.sqf +++ b/addons/zeus/functions/fnc_ui_vehCargo.sqf @@ -3,12 +3,14 @@ params ["_control"]; TRACE_1("params",_control); -private _veh = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; +private _veh = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); TRACE_1("",_veh); private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []]; TRACE_1("",_loaded); +lbClear ((ctrlParent _control) displayCtrl 80086); + { ((ctrlParent _control) displayCtrl 80086) lbAdd (str _x); } forEach _loaded; diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index 62de9bc20d..f5e4b88ad3 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -193,7 +193,7 @@ class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { x = W_PART(10); y = 0; w = W_PART(16); - h = H_PART(2.5); + h = H_PART(3); colorBackground[] = {1,1,1,0.1}; }; class Cargo: RscListBox { @@ -211,7 +211,17 @@ class RscDisplayAttributesVehicle: RscDisplayAttributes { class Controls: Controls { class Content: Content { class Controls: controls { - class Cargo: GVAR(cargoAttribute) { }; + class ace_cargo: GVAR(cargoAttribute) { }; + }; + }; + }; +}; + +class RscDisplayAttributesVehicleEmpty: RscDisplayAttributes { + class Controls: Controls { + class Content: Content { + class Controls: controls { + class ace_cargo: GVAR(cargoAttribute) { }; }; }; }; From 81d854c56a4887449a4e2b5c91d0acf3fe0b5b80 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Tue, 17 May 2016 23:31:10 +0100 Subject: [PATCH 08/15] Add group side zeus module The module is placed on a unit in order to switch the side of that unit's group. A "simple" dialog is used to select the new side. The dialog code is a little ugly to say the least. --- addons/zeus/CfgVehicles.hpp | 5 + addons/zeus/XEH_PREP.hpp | 2 + addons/zeus/config.cpp | 1 + addons/zeus/functions/fnc_moduleGroupSide.sqf | 45 ++++++++ addons/zeus/functions/fnc_ui_groupSide.sqf | 107 ++++++++++++++++++ addons/zeus/ui/RscAttributes.hpp | 87 +++++++++++++- 6 files changed, 243 insertions(+), 4 deletions(-) create mode 100644 addons/zeus/functions/fnc_moduleGroupSide.sqf create mode 100644 addons/zeus/functions/fnc_ui_groupSide.sqf diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 3a9b7b8670..5e88023dde 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -120,6 +120,11 @@ class CfgVehicles { displayName = "Global AI Skill"; curatorInfoType = QGVAR(RscGlobalSetSkill); }; + class GVAR(moduleGroupSide): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = "Group Side"; + curatorInfoType = QGVAR(RscGroupSide); + }; class GVAR(moduleSetMedic): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSetMedic_DisplayName); diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index a72f220d31..d171b3679c 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -9,6 +9,7 @@ PREP(moduleAddSpareTrack); PREP(moduleAddSpareWheel); PREP(moduleCaptive); PREP(moduleGlobalSetSkill); +PREP(moduleGroupSide); PREP(moduleSetMedic); PREP(moduleSetMedicalVehicle); PREP(moduleSetMedicalFacility); @@ -17,6 +18,7 @@ PREP(moduleTeleportPlayers); PREP(moduleUnconscious); PREP(moduleZeusSettings); PREP(ui_globalSetSkill); +PREP(ui_groupSide); PREP(ui_teleportPlayers); PREP(ui_vehCargo); PREP(zeusAttributes); diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index 560a6f8073..1b47046fd9 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -4,6 +4,7 @@ class CfgPatches { class ADDON { units[] = { QGVAR(moduleGlobalSetSkill), + QGVAR(moduleGroupSide), QGVAR(moduleTeleportPlayers) }; weapons[] = {}; diff --git a/addons/zeus/functions/fnc_moduleGroupSide.sqf b/addons/zeus/functions/fnc_moduleGroupSide.sqf new file mode 100644 index 0000000000..fa37ca3463 --- /dev/null +++ b/addons/zeus/functions/fnc_moduleGroupSide.sqf @@ -0,0 +1,45 @@ +/* + * Author: SilentSpike + * Zeus module function to change side of a group on dialog confirmation + * + * Arguments: + * 0: Unit to target + * 1: Chosen side + * + * Return Value: + * None + * + * Example: + * [this, west] call ace_zeus_fnc_moduleGroupSide + * + * Public: No + */ + +#include "script_component.hpp" + +params ["_unit","_newSide"]; +private _side = side _unit; + +// Nothing to do here +if (_side == _newSide) exitWith {}; + +private _oldGroup = group _unit; +private _newGroup = createGroup _newSide; + +// Pretty hacky, will replace units return group with this new group if unconcious +if (GETVAR(_unit,ACE_isUnconscious,false) && {GETMVAR(EGVAR(medical,moveUnitsFromGroupOnUnconscious),false)}) then { + private _previousGroupsList = _unit getVariable [QEGVAR(common,previousGroupSwitchTo), []]; + + { + if ("ACE_isUnconscious" == (_x select 2)) exitWith { + _x set [0,_newGroup]; + _x set [1,_newSide]; + _previousGroupsList set [_forEachIndex, _x]; + }; + } forEach _previousGroupsList; + + _unit setVariable [QEGVAR(common,previousGroupSwitchTo), _previousGroupsList, true]; +} else { + (units _unit) joinSilent _newGroup; + deleteGroup _oldGroup; +}; diff --git a/addons/zeus/functions/fnc_ui_groupSide.sqf b/addons/zeus/functions/fnc_ui_groupSide.sqf new file mode 100644 index 0000000000..d7ad41e6c4 --- /dev/null +++ b/addons/zeus/functions/fnc_ui_groupSide.sqf @@ -0,0 +1,107 @@ +#include "script_component.hpp" +#define IDCs [31201,31200,31202,31203] + +disableSerialization; + +params ["_control"]; + +//Generic Init: +private _display = ctrlparent _control; +private _ctrlButtonOK = _display displayctrl 1; //IDC_OK +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); +TRACE_1("logicObject",_logic); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Validate the module target: +private _unit = effectiveCommander (attachedTo _logic); +private _side = side _unit; + +scopeName "Main"; +private _fnc_errorAndClose = { + params ["_msg"]; + _display closeDisplay 0; + deleteVehicle _logic; + [_msg] call EFUNC(common,displayTextStructured); + breakOut "Main"; +}; + +switch (false) do { + case (_unit isKindOf "CAManBase"): { + [LSTRING(OnlyInfantry)] call _fnc_errorAndClose; + }; + case (alive _unit): { + [LSTRING(OnlyAlive)] call _fnc_errorAndClose; + }; + case (_side in [west,east,independent,civilian]): { + ["Unit must belong to an appropriate side"] call _fnc_errorAndClose; + }; +}; + +//Specific on-load stuff: +private _idcActive = 31200 + ([west,east,independent,civilian] find _side); +SETVAR(_display,oldSide,_idcActive - 31200); +SETVAR(_display,newSide,_idcActive - 31200); + +private _fnc_onSelection = { + params [["_activeCtrl", controlNull, [controlNull]]]; + + private _display = ctrlParent _activeCtrl; + if (isNull _display) exitWith {}; + + // Update the button scales and colours on selection + { + private _ctrl = _display displayCtrl _x; + private _color = _ctrl getVariable "color"; + private _scale = 1; + + if (ctrlIDC _activeCtrl == _x) then { + _color set [3,1]; + _scale = 1.2 + } else { + _color set [3,0.5]; + }; + + _ctrl ctrlSetTextColor _color; + [_ctrl,_scale,0.1] call BIS_fnc_ctrlSetScale; + } forEach IDCs; + + // Store selected button index for confirmation + SETVAR(_display,newSide,(ctrlIDC _activeCtrl) - 31200); +}; + +// Initalize buttons with colour and scale +{ + private _ctrl = _display displayCtrl _x; + private _color = [_forEachIndex] call BIS_fnc_sideColor; + _ctrl setVariable ["color", _color]; + _ctrl ctrlSetActiveColor _color; + _color set [3,0.5]; + + if (ctrlIDC _ctrl == _idcActive) then { + [_ctrl,1.2,0] call BIS_fnc_ctrlSetScale; + _color set [3,1]; + }; + + _ctrl ctrlSetTextColor _color; + + _ctrl ctrlAddEventHandler ["buttonclick", _fnc_onSelection]; +} forEach IDCs; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + private _unit = effectiveCommander (attachedTo _logic); + private _side = [west,east,independent,civilian] select (GETVAR(_display,newSide,GETVAR(_display,oldSide,0))); + + [_unit, _side] call FUNC(moduleGroupSide); + deleteVehicle _logic; +}; + +_ctrlButtonOK ctrlAddEventHandler ["buttonClick", _fnc_onConfirm]; diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index f5e4b88ad3..c2b19a22f2 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -2,9 +2,11 @@ class RscControlsGroup; class RscControlsGroupNoScrollbars; class RscText; class RscListbox; +class RscCombo; class RscEdit; class RscXSliderH; class RscCheckBox; +class RscActivePicture; class RscDisplayAttributes { class Controls { @@ -113,6 +115,83 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; }; +class GVAR(RscGroupSide): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscGroupSide)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscGroupSide)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class GroupSide: RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_groupSide)); + idc = 26422; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(2.5); + class controls { + class Title: RscText { + idc = 31002; + text = "$STR_disp_arcunit_side"; + x = 0; + y = 0; + w = W_PART(10); + h = H_PART(2.5); + colorBackground[] = {0,0,0,0.5}; + }; + class Background: RscText { + idc = 31000; + x = W_PART(10); + y = 0; + w = W_PART(16); + h = H_PART(2.5); + colorBackground[] = {1,1,1,0.1}; + }; + class BLUFOR: RscActivePicture { + idc = 31200; + text = "\a3\Ui_f\data\Map\Markers\NATO\b_unknown.paa"; + x = W_PART(12.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_WEST"; + }; + class OPFOR: BLUFOR { + idc = 31201; + text = "\a3\Ui_f\data\Map\Markers\NATO\o_unknown.paa"; + x = W_PART(15.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_EAST"; + }; + class Independent: BLUFOR { + idc = 31202; + text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; + x = W_PART(18.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_guerrila"; + }; + class Civilian: BLUFOR { + idc = 31203; + text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; + x = W_PART(21.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_Civilian"; + }; + }; + }; + }; + }; + class ButtonOK: ButtonOK {}; + class ButtonCancel: ButtonCancel {}; + }; +}; class GVAR(RscTeleportPlayers): RscDisplayAttributes { onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscTeleportPlayers)))] call FUNC(zeusAttributes)); @@ -130,7 +209,7 @@ class GVAR(RscTeleportPlayers): RscDisplayAttributes { w = W_PART(26); h = H_PART(8.5); class controls { - class Title1: RscText { + class Title: RscText { idc = -1; text = "Teleport Player"; toolTip = "Teleport selected player to module position"; @@ -140,21 +219,21 @@ class GVAR(RscTeleportPlayers): RscDisplayAttributes { h = H_PART(1); colorBackground[] = {0,0,0,0.5}; }; - class Value1: RscListbox { + class Unit: RscListbox { idc = 16189; x = 0; y = H_PART(1.1); w = W_PART(26); h = H_PART(5.9); }; - class Title2: Title1 { + class Label: Title { idc = -1; text = "Teleport Group"; toolTip = "Teleports all units in group"; y = H_PART(7.1); w = W_PART(10); }; - class Value2: RscCheckBox { + class UseGroup: RscCheckBox { idc = 16188; x = W_PART(10.1); y = H_PART(7.1); From 8a70cfbcd861e96dfef3d4d1f17db410b16443f5 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Wed, 18 May 2016 16:16:35 +0100 Subject: [PATCH 09/15] Clean new zeus module config and functions Adds function headers, stringtables and renames some display control classes. --- addons/zeus/CfgVehicles.hpp | 38 +-------- .../functions/fnc_moduleGlobalSetSkill.sqf | 17 ++++ .../functions/fnc_moduleTeleportPlayers.sqf | 18 +++++ .../zeus/functions/fnc_ui_globalSetSkill.sqf | 16 ++++ addons/zeus/functions/fnc_ui_groupSide.sqf | 21 ++++- .../zeus/functions/fnc_ui_teleportPlayers.sqf | 20 ++++- addons/zeus/functions/fnc_ui_vehCargo.sqf | 19 ++++- addons/zeus/functions/fnc_zeusAttributes.sqf | 19 +++++ addons/zeus/stringtable.xml | 80 ++++++++++++++----- addons/zeus/ui/RscAttributes.hpp | 46 +++++------ 10 files changed, 213 insertions(+), 81 deletions(-) diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index 5e88023dde..ba1f8bfe46 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -91,38 +91,26 @@ class CfgVehicles { displayName = CSTRING(ModuleAddSpareTrack_DisplayName); function = QFUNC(moduleAddSpareTrack); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo - class ModuleDescription { - description = CSTRING(ModuleAddSpareTrack_Description); - sync[] = {}; - }; }; class GVAR(moduleAddSpareWheel): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleAddSpareWheel_DisplayName); function = QFUNC(moduleAddSpareWheel); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa));//@todo - class ModuleDescription { - description = CSTRING(ModuleAddSpareWheel_Description); - sync[] = {}; - }; }; class GVAR(moduleCaptive): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleCaptive_DisplayName); function = QFUNC(moduleCaptive); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Captive_ca.paa)); - class ModuleDescription { - description = "Flips the capture state of the specified unit."; - sync[] = {}; - }; }; class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { - displayName = "Global AI Skill"; + displayName = CSTRING(ModuleGlobalSetSkill_DisplayName); curatorInfoType = QGVAR(RscGlobalSetSkill); }; class GVAR(moduleGroupSide): GVAR(moduleBase) { curatorCanAttach = 1; - displayName = "Group Side"; + displayName = CSTRING(ModuleGroupSide_DisplayName); curatorInfoType = QGVAR(RscGroupSide); }; class GVAR(moduleSetMedic): GVAR(moduleBase) { @@ -130,44 +118,28 @@ class CfgVehicles { displayName = CSTRING(ModuleSetMedic_DisplayName); function = QFUNC(moduleSetMedic); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; }; class GVAR(moduleSetMedicalFacility): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSetMedicalFacility_DisplayName); function = QFUNC(moduleSetMedicalFacility); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; }; class GVAR(moduleSetMedicalVehicle): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSetMedicalVehicle_DisplayName); function = QFUNC(moduleSetMedicalVehicle); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Medic_ca.paa)); - class ModuleDescription { - description = ""; - sync[] = {}; - }; }; class GVAR(moduleSurrender): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSurrender_DisplayName); function = QFUNC(moduleSurrender); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Surrender_ca.paa)); - class ModuleDescription { - description = "Flips the surrender state of the specified unit."; - sync[] = {}; - }; }; class GVAR(moduleTeleportPlayers): GVAR(moduleBase) { curatorCanAttach = 1; - displayName = "Teleport Players"; + displayName = CSTRING(ModuleTeleportPlayers_DisplayName); curatorInfoType = QGVAR(RscTeleportPlayers); }; class GVAR(moduleUnconscious): GVAR(moduleBase) { @@ -175,9 +147,5 @@ class CfgVehicles { displayName = CSTRING(ModuleUnconscious_DisplayName); function = QFUNC(moduleUnconscious); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Unconscious_ca.paa)); - class ModuleDescription { - description = "Flips the unconscious state of the specified unit."; - sync[] = {}; - }; }; }; diff --git a/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf index b25bc5e5f3..290f2d5e5f 100644 --- a/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf +++ b/addons/zeus/functions/fnc_moduleGlobalSetSkill.sqf @@ -1,3 +1,20 @@ +/* + * Author: SilentSpike + * PV event handler to update the AI skill on all machines when set by zeus module + * + * Arguments: + * 0: Variable name + * 1: Variable new value + * + * Return Value: + * None + * + * Example: + * "ace_zeus_GlobalSkillAI" addPublicVariableEventHandler ace_zeus_fnc_moduleGlobalSetSkill + * + * Public: No + */ + #include "script_component.hpp" _this params ["_varName","_varValue"]; diff --git a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf index 4166b0adb2..e947a45ffd 100644 --- a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf +++ b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf @@ -1,3 +1,21 @@ +/* + * Author: SilentSpike + * Zeus module function to teleport players on dialog confirmation + * + * Arguments: + * 0: Teleport to + * 1: Player UID + * 2: Teleport group + * + * Return Value: + * None + * + * Example: + * [player, "5854854754", false] call ace_zeus_fnc_moduleTeleportPlayers + * + * Public: No + */ + #include "script_component.hpp" params ["_logic","_uid","_group"]; diff --git a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf index 32a2b8ccb7..96514931c1 100644 --- a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf +++ b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf @@ -1,3 +1,19 @@ +/* + * Author: PabstMirror + * Initalises the `global skill` zeus module display + * + * Arguments: + * 0: globalSetSkill controls group + * + * Return Value: + * None + * + * Example: + * onSetFocus = "_this call ace_zeus_fnc_ui_globalSetSkill" + * + * Public: No + */ + #include "script_component.hpp" disableSerialization; diff --git a/addons/zeus/functions/fnc_ui_groupSide.sqf b/addons/zeus/functions/fnc_ui_groupSide.sqf index d7ad41e6c4..09499cdb67 100644 --- a/addons/zeus/functions/fnc_ui_groupSide.sqf +++ b/addons/zeus/functions/fnc_ui_groupSide.sqf @@ -1,3 +1,19 @@ +/* + * Author: SilentSpike + * Initalises the `group side` zeus module display + * + * Arguments: + * 0: groupSide controls group + * + * Return Value: + * NONE + * + * Example: + * onSetFocus = "_this call ace_zeus_fnc_ui_groupSide" + * + * Public: No + */ + #include "script_component.hpp" #define IDCs [31201,31200,31202,31203] @@ -27,6 +43,9 @@ private _fnc_errorAndClose = { }; switch (false) do { + case !(isNull _unit): { + [LSTRING(NothingSelected)] call _fnc_errorAndClose; + }; case (_unit isKindOf "CAManBase"): { [LSTRING(OnlyInfantry)] call _fnc_errorAndClose; }; @@ -34,7 +53,7 @@ switch (false) do { [LSTRING(OnlyAlive)] call _fnc_errorAndClose; }; case (_side in [west,east,independent,civilian]): { - ["Unit must belong to an appropriate side"] call _fnc_errorAndClose; + [LSTRING(OnlySpecificSide)] call _fnc_errorAndClose; }; }; diff --git a/addons/zeus/functions/fnc_ui_teleportPlayers.sqf b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf index 9990d6c683..bdcd8ae93f 100644 --- a/addons/zeus/functions/fnc_ui_teleportPlayers.sqf +++ b/addons/zeus/functions/fnc_ui_teleportPlayers.sqf @@ -1,3 +1,19 @@ +/* + * Author: SilentSpike + * Initalises the `teleport players` zeus module display + * + * Arguments: + * 0: teleportPlayers controls group + * + * Return Value: + * NONE + * + * Example: + * onSetFocus = "_this call ace_zeus_fnc_ui_teleportPlayers" + * + * Public: No + */ + #include "script_component.hpp" disableSerialization; @@ -21,7 +37,7 @@ private _listbox = _display displayCtrl 16189; } forEach allPlayers; _listbox lbSetCurSel 0; -(_display displayCtrl 16188) cbSetChecked (_logic setVariable ["tpGroup",false]); +(_display displayCtrl 16188) cbSetChecked (_logic getVariable ["tpGroup",false]); private _fnc_onUnload = { params ["_display"]; @@ -35,7 +51,7 @@ private _fnc_onUnload = { private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; - + private _display = ctrlparent _ctrlButtonOK; if (isNull _display) exitWith {}; diff --git a/addons/zeus/functions/fnc_ui_vehCargo.sqf b/addons/zeus/functions/fnc_ui_vehCargo.sqf index be7dc1a36a..2a743c8259 100644 --- a/addons/zeus/functions/fnc_ui_vehCargo.sqf +++ b/addons/zeus/functions/fnc_ui_vehCargo.sqf @@ -1,3 +1,20 @@ +/* + * Author: PabstMirror + * Initalises the ace_cargo attribute of the zeus vehicle attributes display + * (the display shown on double click) + * + * Arguments: + * 0: ace_cargo controls group + * + * Return Value: + * None + * + * Example: + * onSetFocus = "_this call ace_zeus_fnc_ui_vehCargo" + * + * Public: No + */ + #include "script_component.hpp" params ["_control"]; @@ -9,7 +26,7 @@ TRACE_1("",_veh); private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []]; TRACE_1("",_loaded); -lbClear ((ctrlParent _control) displayCtrl 80086); +_control ctrlRemoveAllEventHandlers "setFocus"; { ((ctrlParent _control) displayCtrl 80086) lbAdd (str _x); diff --git a/addons/zeus/functions/fnc_zeusAttributes.sqf b/addons/zeus/functions/fnc_zeusAttributes.sqf index b032ca2093..dcbef69510 100644 --- a/addons/zeus/functions/fnc_zeusAttributes.sqf +++ b/addons/zeus/functions/fnc_zeusAttributes.sqf @@ -1,3 +1,22 @@ +/* + * Author: PabstMirror + * Dummy function to include BIS script file. + * Used in initalisation of zeus attribute displays. + * + * Arguments: + * 0: UI event string + * 1: UI event parameters + * 2: Display class name + * + * Return Value: + * None + * + * Example: + * onLoad = "['onLoad',_this,'RscDisplayExample'] call ace_zeus_fnc_zeusAttributes" + * + * Public: No + */ + #include "script_component.hpp" TRACE_1("params",_this); diff --git a/addons/zeus/stringtable.xml b/addons/zeus/stringtable.xml index c9c0161265..df209f4426 100644 --- a/addons/zeus/stringtable.xml +++ b/addons/zeus/stringtable.xml @@ -181,6 +181,48 @@ Пленный (вкл./выкл.) Apri Catturato + + Global AI Skill + + + General Skill + + + Changes: general, commanding, courage + + + Accuracy + + + Changes: aimingAccuracy + + + Weapon Handling + + + Changes: aimingShake, aimingSpeed, reloadSpeed + + + Spotting + + + Changes: spotDistance, spotTime + + + Seek Cover + + + Should AI seek cover + + + Auto Combat + + + Should AI automatically switch to combat mode + + + Group Side + Toggle Surrender Przełącz kapitulację @@ -193,6 +235,21 @@ Сдавшийся (вкл./выкл.) Apri Resa + + Teleport Players + + + Player + + + Teleport selected player to module position + + + Teleport Group + + + Teleports all units in group + Toggle Unconscious Przełącz nieprzytomność @@ -244,15 +301,6 @@ Aggiungi Ruota di Scorta Agregar rueda de auxilio - - Adds a Spare Wheel to the vehicle - Adiciona uma roda sobressalente ao veículo - Dodaje koło zapasowe do pojazdu - Добавляет запасное колесо в транспорт - Přidá rezervní kolo do vozidla - Aggiungi una ruota di scorta al veicolo - Agrega una rueda de auxilio al vehículo - Add Spare Track Adicionar esteira sobressalente @@ -262,15 +310,6 @@ Aggiungi Cingolo di Scorta Agregar oruga de repuesto - - Adds a Spare Track to the vehicle - Adiciona uma esteira sobressalente ao veículo - Dodaje zapasową gąsienicę do pojazdu - Добавляет запасную гусеницу в транспорт - Přidá náhradní pás do vozidla - Aggiungi un cingolo di scorta al veicolo - Agrega una oruga de repuesto al vehículo - Unit must be alive Utiliser uniquement sur une unité vivante @@ -345,6 +384,9 @@ Юнит не должен быть пленным L'unità non dev'essere un prigioniero + + Unit must belong to an appropriate side + Place on a unit Rien sous le curseur @@ -388,4 +430,4 @@ Aggiungi ogni oggetto creato a tutti i Curatori in missione - \ No newline at end of file + diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index c2b19a22f2..7b561d7c23 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -38,15 +38,15 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { class controls { class Title1: RscText { idc = -1; - text = "General Skill"; - toolTip = "Changes: general, commanding, courage"; + text = CSTRING(ModuleGlobalSetSkill_general); + toolTip = CSTRING(ModuleGlobalSetSkill_general_desc); x = 0; y = 0; w = W_PART(10); h = H_PART(1); colorBackground[] = {0,0,0,0.5}; }; - class Value1: RscXSliderH { + class General: RscXSliderH { idc = 16184; x = W_PART(10.1); y = 0; @@ -55,41 +55,41 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; class Title2: Title1 { idc = -1; - text = "Accuracy"; - toolTip = "Changes: aimingAccuracy"; + text = CSTRING(ModuleGlobalSetSkill_accuracy); + toolTip = CSTRING(ModuleGlobalSetSkill_accuracy_desc); y = H_PART(1.1); }; - class Value2: Value1 { + class Accuracy: General { idc = 16185; y = H_PART(1.1); }; class Title3: Title1 { idc = -1; - text = "Weapon Handling"; - toolTip = "Changes: aimingShake, aimingSpeed, reloadSpeed"; + text = CSTRING(ModuleGlobalSetSkill_handling); + toolTip = CSTRING(ModuleGlobalSetSkill_handling_desc); y = H_PART(2.2); }; - class Value3: Value1 { + class Handling: General { idc = 16186; y = H_PART(2.2); }; class Title4: Title1 { idc = -1; - text = "Spotting"; - toolTip = "Changes: spotDistance, spotTime"; + text = CSTRING(ModuleGlobalSetSkill_spotting); + toolTip = CSTRING(ModuleGlobalSetSkill_spotting_desc); y = H_PART(3.3); }; - class Value4: Value1 { + class Spotting: General { idc = 16187; y = H_PART(3.3); }; class Title5: Title1 { idc = -1; - text = "Seek Cover"; - toolTip = "Will AI seek cover"; + text = CSTRING(ModuleGlobalSetSkill_cover); + toolTip = CSTRING(ModuleGlobalSetSkill_cover_desc); y = H_PART(4.4); }; - class Value5: RscCheckBox { + class Cover: RscCheckBox { idc = 16188; x = W_PART(10.1); y = H_PART(4.4); @@ -98,11 +98,11 @@ class GVAR(RscGlobalSetSkill): RscDisplayAttributes { }; class Title6: Title5 { idc = -1; - text = "AUTOCOMBAT"; - toolTip = "Will AI automatically switch to combat mode"; + text = CSTRING(ModuleGlobalSetSkill_combat); + toolTip = CSTRING(ModuleGlobalSetSkill_combat_desc); y = H_PART(5.5); }; - class Value6: Value5 { + class Combat: Cover { idc = 16189; y = H_PART(5.5); }; @@ -123,7 +123,7 @@ class GVAR(RscGroupSide): RscDisplayAttributes { class Title: Title {}; class Content: Content { class Controls { - class GroupSide: RscControlsGroupNoScrollbars { + class groupSide: RscControlsGroupNoScrollbars { onSetFocus = QUOTE(_this call FUNC(ui_groupSide)); idc = 26422; x = 0; @@ -211,8 +211,8 @@ class GVAR(RscTeleportPlayers): RscDisplayAttributes { class controls { class Title: RscText { idc = -1; - text = "Teleport Player"; - toolTip = "Teleport selected player to module position"; + text = CSTRING(ModuleTeleportPlayers_player); + toolTip = CSTRING(ModuleTeleportPlayers_player_desc); x = 0; y = 0; w = W_PART(26); @@ -228,8 +228,8 @@ class GVAR(RscTeleportPlayers): RscDisplayAttributes { }; class Label: Title { idc = -1; - text = "Teleport Group"; - toolTip = "Teleports all units in group"; + text = CSTRING(ModuleTeleportPlayers_group); + toolTip = CSTRING(ModuleTeleportPlayers_group_desc); y = H_PART(7.1); w = W_PART(10); }; From 600b71817f3ea52e1d69612f6662442be17d6f46 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Wed, 18 May 2016 16:30:14 +0100 Subject: [PATCH 10/15] Update zeus module logic deletion behaviour The teleport players module is reusable, while the global AI skill and group side modules should be deleted appropriately once the display is closed. --- .../zeus/functions/fnc_moduleTeleportPlayers.sqf | 2 -- addons/zeus/functions/fnc_ui_globalSetSkill.sqf | 14 +++++++++----- addons/zeus/functions/fnc_ui_groupSide.sqf | 10 ++++++++++ 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf index e947a45ffd..ebd40e178d 100644 --- a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf +++ b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf @@ -41,5 +41,3 @@ if (_group) then { [_x, _attached] call BIS_fnc_moveToRespawnPosition; }; } forEach _player; - -deleteVehicle _logic; diff --git a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf index 96514931c1..8dcac19bce 100644 --- a/addons/zeus/functions/fnc_ui_globalSetSkill.sqf +++ b/addons/zeus/functions/fnc_ui_globalSetSkill.sqf @@ -49,6 +49,13 @@ private _fnc_sliderMove = { (_display displayCtrl 16188) cbSetChecked (GVAR(GlobalSkillAI) select 4); (_display displayCtrl 16189) cbSetChecked (GVAR(GlobalSkillAI) select 5); +private _fnc_onUnload = { + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + deleteVehicle _logic; +}; + private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; TRACE_1("_fnc_onConfirm params",_this); @@ -56,9 +63,6 @@ private _fnc_onConfirm = { private _display = ctrlparent _ctrlButtonOK; if (isNull _display) exitWith {}; - private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); - if (isNull _logic) exitWith {}; - GVAR(GlobalSkillAI) = [ sliderPosition (_display displayCtrl 16184), // General sliderPosition (_display displayCtrl 16185), // Accuracy @@ -71,7 +75,7 @@ private _fnc_onConfirm = { // PV EH won't run on local machine [QGVAR(GlobalSkillAI),GVAR(GlobalSkillAI)] call FUNC(moduleGlobalSetSkill); - deleteVehicle _logic; }; -_ctrlButtonOK ctrladdeventhandler ["buttonclick", _fnc_onConfirm]; +_display displayAddEventHandler ["unload", _fnc_onUnload]; +_ctrlButtonOK ctrlAddEventHandler ["buttonclick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_ui_groupSide.sqf b/addons/zeus/functions/fnc_ui_groupSide.sqf index 09499cdb67..be3298c8da 100644 --- a/addons/zeus/functions/fnc_ui_groupSide.sqf +++ b/addons/zeus/functions/fnc_ui_groupSide.sqf @@ -107,6 +107,15 @@ private _fnc_onSelection = { _ctrl ctrlAddEventHandler ["buttonclick", _fnc_onSelection]; } forEach IDCs; +private _fnc_onUnload = { + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + if (_this select 1 == 2) then { + deleteVehicle _logic; + }; +}; + private _fnc_onConfirm = { params [["_ctrlButtonOK", controlNull, [controlNull]]]; @@ -123,4 +132,5 @@ private _fnc_onConfirm = { deleteVehicle _logic; }; +_display displayAddEventHandler ["unload", _fnc_onUnload]; _ctrlButtonOK ctrlAddEventHandler ["buttonClick", _fnc_onConfirm]; From e05f2ca63701b7642b0c71f2f0621f70c0dd124e Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Wed, 18 May 2016 21:19:52 +0100 Subject: [PATCH 11/15] Add search nearby building zeus module --- addons/zeus/CfgVehicles.hpp | 5 ++ addons/zeus/XEH_PREP.hpp | 1 + addons/zeus/XEH_postInit.sqf | 2 + addons/zeus/config.cpp | 1 + .../zeus/functions/fnc_moduleSearchNearby.sqf | 50 +++++++++++++++++++ addons/zeus/stringtable.xml | 6 +++ 6 files changed, 65 insertions(+) create mode 100644 addons/zeus/functions/fnc_moduleSearchNearby.sqf diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index ba1f8bfe46..ddf1af6c37 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -113,6 +113,11 @@ class CfgVehicles { displayName = CSTRING(ModuleGroupSide_DisplayName); curatorInfoType = QGVAR(RscGroupSide); }; + class GVAR(moduleSearchNearby): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleSearchNearby_DisplayName); + function = QFUNC(moduleSearchNearby); + }; class GVAR(moduleSetMedic): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSetMedic_DisplayName); diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index d171b3679c..cbc04f1c3a 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -10,6 +10,7 @@ PREP(moduleAddSpareWheel); PREP(moduleCaptive); PREP(moduleGlobalSetSkill); PREP(moduleGroupSide); +PREP(moduleSearchNearby); PREP(moduleSetMedic); PREP(moduleSetMedicalVehicle); PREP(moduleSetMedicalFacility); diff --git a/addons/zeus/XEH_postInit.sqf b/addons/zeus/XEH_postInit.sqf index c2c7c192eb..b7d09aa3c0 100644 --- a/addons/zeus/XEH_postInit.sqf +++ b/addons/zeus/XEH_postInit.sqf @@ -2,3 +2,5 @@ // Global skill module PVs values for persistence, just listen for the PV QGVAR(GlobalSkillAI) addPublicVariableEventHandler FUNC(moduleGlobalSetSkill); + +[QGVAR(moduleSearchNearby), CBA_fnc_searchNearby] call EFUNC(common,addEventHandler); diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index 1b47046fd9..cbcdef373c 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -5,6 +5,7 @@ class CfgPatches { units[] = { QGVAR(moduleGlobalSetSkill), QGVAR(moduleGroupSide), + QGVAR(moduleSearchNearby), QGVAR(moduleTeleportPlayers) }; weapons[] = {}; diff --git a/addons/zeus/functions/fnc_moduleSearchNearby.sqf b/addons/zeus/functions/fnc_moduleSearchNearby.sqf new file mode 100644 index 0000000000..b5be224a84 --- /dev/null +++ b/addons/zeus/functions/fnc_moduleSearchNearby.sqf @@ -0,0 +1,50 @@ +/* + * Author: SilentSpike + * Commands the group the module is placed on to search the nearest building + * + * Arguments: + * 0: The module logic + * 1: Synchronized units + * 2: Activated + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +params ["_logic","_units","_activated"]; + +if !(_activated && local _logic) exitWith {}; + +//Validate the module target: +private _unit = effectiveCommander (attachedTo _logic); +private _building = nearestBuilding (getPosASL _unit); + +scopeName "Main"; +private _fnc_errorAndClose = { + params ["_msg"]; + deleteVehicle _logic; + [_msg] call EFUNC(common,displayTextStructured); + 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 (_unit distance _building < 500): { + [LSTRING(BuildingTooFar)] call _fnc_errorAndClose; + }; +}; + +//Perform the module function: +[QGVAR(moduleSearchNearby), _unit, [_unit]] call EFUNC(common,targetEvent); diff --git a/addons/zeus/stringtable.xml b/addons/zeus/stringtable.xml index df209f4426..a972cd6e06 100644 --- a/addons/zeus/stringtable.xml +++ b/addons/zeus/stringtable.xml @@ -262,6 +262,9 @@ Без сознания (вкл./выкл.) Apri Incosciente + + Search Nearby Building + Assign Medic Sanitäter zuweisen. @@ -387,6 +390,9 @@ Unit must belong to an appropriate side + + Nearest building is too far away + Place on a unit Rien sous le curseur From 3a1dba448608ab3bcedc8c8b67161658c7f43c48 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Thu, 19 May 2016 00:16:50 +0100 Subject: [PATCH 12/15] Add zeus defend, patrol and search modules Using a shared `radius` attribute for all of these displays so a generalized method of initializing and retrieving the value associated that was implemented. --- addons/zeus/CfgVehicles.hpp | 15 +++ addons/zeus/XEH_PREP.hpp | 6 +- addons/zeus/XEH_postInit.sqf | 3 + addons/zeus/config.cpp | 3 + ...vehCargo.sqf => fnc_ui_attributeCargo.sqf} | 2 +- .../zeus/functions/fnc_ui_attributeRadius.sqf | 48 ++++++++++ addons/zeus/functions/fnc_ui_defendArea.sqf | 75 +++++++++++++++ addons/zeus/functions/fnc_ui_patrolArea.sqf | 75 +++++++++++++++ addons/zeus/functions/fnc_ui_searchArea.sqf | 81 ++++++++++++++++ addons/zeus/stringtable.xml | 21 ++++ addons/zeus/ui/RscAttributes.hpp | 95 +++++++++++++++++-- 11 files changed, 416 insertions(+), 8 deletions(-) rename addons/zeus/functions/{fnc_ui_vehCargo.sqf => fnc_ui_attributeCargo.sqf} (91%) create mode 100644 addons/zeus/functions/fnc_ui_attributeRadius.sqf create mode 100644 addons/zeus/functions/fnc_ui_defendArea.sqf create mode 100644 addons/zeus/functions/fnc_ui_patrolArea.sqf create mode 100644 addons/zeus/functions/fnc_ui_searchArea.sqf diff --git a/addons/zeus/CfgVehicles.hpp b/addons/zeus/CfgVehicles.hpp index ddf1af6c37..2247c6e969 100644 --- a/addons/zeus/CfgVehicles.hpp +++ b/addons/zeus/CfgVehicles.hpp @@ -104,6 +104,11 @@ class CfgVehicles { function = QFUNC(moduleCaptive); icon = QUOTE(PATHTOF(UI\Icon_Module_Zeus_Captive_ca.paa)); }; + class GVAR(moduleDefendArea): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleDefendArea_DisplayName); + curatorInfoType = QGVAR(RscDefendArea); + }; class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) { displayName = CSTRING(ModuleGlobalSetSkill_DisplayName); curatorInfoType = QGVAR(RscGlobalSetSkill); @@ -113,6 +118,16 @@ class CfgVehicles { displayName = CSTRING(ModuleGroupSide_DisplayName); curatorInfoType = QGVAR(RscGroupSide); }; + class GVAR(modulePatrolArea): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModulePatrolArea_DisplayName); + curatorInfoType = QGVAR(RscPatrolArea); + }; + class GVAR(moduleSearchArea): GVAR(moduleBase) { + curatorCanAttach = 1; + displayName = CSTRING(ModuleSearchArea_DisplayName); + curatorInfoType = QGVAR(RscSearchArea); + }; class GVAR(moduleSearchNearby): GVAR(moduleBase) { curatorCanAttach = 1; displayName = CSTRING(ModuleSearchNearby_DisplayName); diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index cbc04f1c3a..0de614f190 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -18,8 +18,12 @@ PREP(moduleSurrender); PREP(moduleTeleportPlayers); PREP(moduleUnconscious); PREP(moduleZeusSettings); +PREP(ui_attributeCargo); +PREP(ui_attributeRadius); +PREP(ui_defendArea); PREP(ui_globalSetSkill); PREP(ui_groupSide); +PREP(ui_patrolArea); +PREP(ui_searchArea); PREP(ui_teleportPlayers); -PREP(ui_vehCargo); PREP(zeusAttributes); diff --git a/addons/zeus/XEH_postInit.sqf b/addons/zeus/XEH_postInit.sqf index b7d09aa3c0..b2587aa659 100644 --- a/addons/zeus/XEH_postInit.sqf +++ b/addons/zeus/XEH_postInit.sqf @@ -3,4 +3,7 @@ // Global skill module PVs values for persistence, just listen for the PV QGVAR(GlobalSkillAI) addPublicVariableEventHandler FUNC(moduleGlobalSetSkill); +[QGVAR(moduleDefendArea), CBA_fnc_taskDefend] call EFUNC(common,addEventHandler); +[QGVAR(modulePatrolArea), CBA_fnc_taskPatrol] call EFUNC(common,addEventHandler); [QGVAR(moduleSearchNearby), CBA_fnc_searchNearby] call EFUNC(common,addEventHandler); +[QGVAR(moduleSearchArea), CBA_fnc_taskSearchArea] call EFUNC(common,addEventHandler); diff --git a/addons/zeus/config.cpp b/addons/zeus/config.cpp index cbcdef373c..0abfea0dd6 100644 --- a/addons/zeus/config.cpp +++ b/addons/zeus/config.cpp @@ -3,8 +3,11 @@ class CfgPatches { class ADDON { units[] = { + QGVAR(moduleDefendArea), QGVAR(moduleGlobalSetSkill), QGVAR(moduleGroupSide), + QGVAR(modulePatrolArea), + QGVAR(moduleSearchArea), QGVAR(moduleSearchNearby), QGVAR(moduleTeleportPlayers) }; diff --git a/addons/zeus/functions/fnc_ui_vehCargo.sqf b/addons/zeus/functions/fnc_ui_attributeCargo.sqf similarity index 91% rename from addons/zeus/functions/fnc_ui_vehCargo.sqf rename to addons/zeus/functions/fnc_ui_attributeCargo.sqf index 2a743c8259..444fa5e7e2 100644 --- a/addons/zeus/functions/fnc_ui_vehCargo.sqf +++ b/addons/zeus/functions/fnc_ui_attributeCargo.sqf @@ -29,5 +29,5 @@ TRACE_1("",_loaded); _control ctrlRemoveAllEventHandlers "setFocus"; { - ((ctrlParent _control) displayCtrl 80086) lbAdd (str _x); + (_control controlsGroupCtrl 80086) lbAdd (str _x); } forEach _loaded; diff --git a/addons/zeus/functions/fnc_ui_attributeRadius.sqf b/addons/zeus/functions/fnc_ui_attributeRadius.sqf new file mode 100644 index 0000000000..67ab0801fc --- /dev/null +++ b/addons/zeus/functions/fnc_ui_attributeRadius.sqf @@ -0,0 +1,48 @@ +/* + * Author: SilentSpike + * Initalises the `radius` zeus module attribute + * + * Arguments: + * 0: radius controls group + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +disableSerialization; + +//Generic Init: +params ["_control"]; +private _display = ctrlParent _control; + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Specific on-load stuff: +private _edit = _control controlsGroupCtrl 26467; + +_edit ctrlSetText "50"; + +private _fnc_onKeyUp = { + params ["_display"]; + + private _edit = _display displayCtrl 26467; + private _radius = parseNumber (ctrlText _edit); + + // Handle invalid radius (non-numerical input) + if (_radius == 0) then { + _edit ctrlSetTooltip (localize LSTRING(AttributeRadiusInvalid)); + _edit ctrlSetTextColor [1,0,0,1]; + SETVAR(_display,GVAR(radius),50); + } else { + _edit ctrlSetTooltip ""; + _edit ctrlSetTextColor [1,1,1,1]; + SETVAR(_display,GVAR(radius),_radius); + }; +}; + +[_display] call _fnc_onKeyUp; +_display displayAddEventHandler ["keyUp", _fnc_onKeyUp]; diff --git a/addons/zeus/functions/fnc_ui_defendArea.sqf b/addons/zeus/functions/fnc_ui_defendArea.sqf new file mode 100644 index 0000000000..bce2a9c2a2 --- /dev/null +++ b/addons/zeus/functions/fnc_ui_defendArea.sqf @@ -0,0 +1,75 @@ +/* + * Author: SilentSpike + * Initalises the `defend area` zeus module display + * + * Arguments: + * 0: dummy controls group + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +disableSerialization; + +//Generic Init: +params ["_control"]; +private _display = ctrlParent _control; +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Validate the module target: +private _unit = effectiveCommander (attachedTo _logic); + +scopeName "Main"; +private _fnc_errorAndClose = { + params ["_msg"]; + _display closeDisplay 0; + deleteVehicle _logic; + [_msg] call EFUNC(common,displayTextStructured); + 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 = { + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + if (_this select 1 == 2) then { + deleteVehicle _logic; + }; +}; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + private _unit = effectiveCommander (attachedTo _logic); + private _radius = GETVAR(_display,GVAR(radius),50); + + [QGVAR(moduleDefendArea), _unit, [_unit,nil,_radius]] call EFUNC(common,targetEvent); + deleteVehicle _logic; +}; + +_display displayAddEventHandler ["unload", _fnc_onUnload]; +_control ctrlAddEventHandler ["buttonClick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_ui_patrolArea.sqf b/addons/zeus/functions/fnc_ui_patrolArea.sqf new file mode 100644 index 0000000000..3afbf74e8c --- /dev/null +++ b/addons/zeus/functions/fnc_ui_patrolArea.sqf @@ -0,0 +1,75 @@ +/* + * Author: SilentSpike + * Initalises the `patrol area` zeus module display + * + * Arguments: + * 0: dummy controls group + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +disableSerialization; + +//Generic Init: +params ["_control"]; +private _display = ctrlParent _control; +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Validate the module target: +private _unit = effectiveCommander (attachedTo _logic); + +scopeName "Main"; +private _fnc_errorAndClose = { + params ["_msg"]; + _display closeDisplay 0; + deleteVehicle _logic; + [_msg] call EFUNC(common,displayTextStructured); + 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 = { + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + if (_this select 1 == 2) then { + deleteVehicle _logic; + }; +}; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + private _unit = effectiveCommander (attachedTo _logic); + private _radius = GETVAR(_display,GVAR(radius),50); + + [QGVAR(modulePatrolArea), _unit, [_unit,nil,_radius,5]] call EFUNC(common,targetEvent); + deleteVehicle _logic; +}; + +_display displayAddEventHandler ["unload", _fnc_onUnload]; +_control ctrlAddEventHandler ["buttonClick", _fnc_onConfirm]; diff --git a/addons/zeus/functions/fnc_ui_searchArea.sqf b/addons/zeus/functions/fnc_ui_searchArea.sqf new file mode 100644 index 0000000000..3fb393ea37 --- /dev/null +++ b/addons/zeus/functions/fnc_ui_searchArea.sqf @@ -0,0 +1,81 @@ +/* + * Author: SilentSpike + * Initalises the `search area` zeus module display + * + * Arguments: + * 0: dummy controls group + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +disableSerialization; + +//Generic Init: +params ["_control"]; +private _display = ctrlParent _control; +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Validate the module target: +private _unit = effectiveCommander (attachedTo _logic); + +scopeName "Main"; +private _fnc_errorAndClose = { + params ["_msg"]; + _display closeDisplay 0; + deleteVehicle _logic; + [_msg] call EFUNC(common,displayTextStructured); + 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 = { + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + if (_this select 1 == 2) then { + deleteVehicle _logic; + }; +}; + +private _fnc_onConfirm = { + params [["_ctrlButtonOK", controlNull, [controlNull]]]; + + private _display = ctrlparent _ctrlButtonOK; + if (isNull _display) exitWith {}; + + private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + if (isNull _logic) exitWith {}; + + private _unit = effectiveCommander (attachedTo _logic); + private _radius = GETVAR(_display,GVAR(radius),50); + private _marker = QGVAR(ModuleSearchArea) + str(_unit); + + createMarker [_marker, getPosASL _unit]; + _marker setMarkerAlpha 0; + _marker setMarkerShape "ELLIPSE"; + _marker setMarkerSize [_radius,_radius]; + + [QGVAR(moduleSearchArea), _unit, [_unit,_marker]] call EFUNC(common,targetEvent); + deleteVehicle _logic; +}; + +_display displayAddEventHandler ["unload", _fnc_onUnload]; +_control ctrlAddEventHandler ["buttonClick", _fnc_onConfirm]; diff --git a/addons/zeus/stringtable.xml b/addons/zeus/stringtable.xml index a972cd6e06..30bd14bf10 100644 --- a/addons/zeus/stringtable.xml +++ b/addons/zeus/stringtable.xml @@ -181,6 +181,9 @@ Пленный (вкл./выкл.) Apri Catturato + + Defend Area + Global AI Skill @@ -223,6 +226,9 @@ Group Side + + Patrol Area + Toggle Surrender Przełącz kapitulację @@ -262,6 +268,9 @@ Без сознания (вкл./выкл.) Apri Incosciente + + Search Area + Search Nearby Building @@ -435,5 +444,17 @@ Přidá jakékoliv spawnuté objekty všem kurátorům v misi Aggiungi ogni oggetto creato a tutti i Curatori in missione + + Cargo: + + + Task Radius + + + Radius to perform the task within + + + Invalid radius entered + diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index 7b561d7c23..c5022b6974 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -20,6 +20,53 @@ class RscDisplayAttributes { }; }; +class GVAR(AttributeRadius): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_attributeRadius)); + idc = 26466; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(1.2); + class controls { + class Title1: RscText { + idc = -1; + text = CSTRING(AttributeRadius); + toolTip = CSTRING(AttributeRadius_desc); + x = 0; + y = H_PART(0.1); + w = W_PART(10); + h = H_PART(1); + colorBackground[] = {0,0,0,0.5}; + }; + class Radius: RscEdit { + idc = 26467; + x = W_PART(10.1); + y = H_PART(0.1); + w = W_PART(15.8); + h = H_PART(1); + autocomplete = ""; + }; + }; +}; + +class GVAR(RscDefendArea): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscDefendArea)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscDefendArea)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class radius: GVAR(AttributeRadius) {}; + }; + }; + class ButtonOK: ButtonOK { + onSetFocus = QUOTE(_this call FUNC(ui_defendArea)); + }; + class ButtonCancel: ButtonCancel {}; + }; +}; + class GVAR(RscGlobalSetSkill): RscDisplayAttributes { onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscGlobalSetSkill)))] call FUNC(zeusAttributes)); onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscGlobalSetSkill)))] call FUNC(zeusAttributes)); @@ -193,6 +240,42 @@ class GVAR(RscGroupSide): RscDisplayAttributes { }; }; +class GVAR(RscPatrolArea): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscPatrolArea)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscPatrolArea)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class radius: GVAR(AttributeRadius) {}; + }; + }; + class ButtonOK: ButtonOK { + onSetFocus = QUOTE(_this call FUNC(ui_patrolArea)); + }; + class ButtonCancel: ButtonCancel {}; + }; +}; + +class GVAR(RscSearchArea): RscDisplayAttributes { + onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscSearchArea)))] call FUNC(zeusAttributes)); + onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscSearchArea)))] call FUNC(zeusAttributes)); + class Controls: Controls { + class Background: Background {}; + class Title: Title {}; + class Content: Content { + class Controls { + class radius: GVAR(AttributeRadius) {}; + }; + }; + class ButtonOK: ButtonOK { + onSetFocus = QUOTE(_this call FUNC(ui_searchArea)); + }; + class ButtonCancel: ButtonCancel {}; + }; +}; + class GVAR(RscTeleportPlayers): RscDisplayAttributes { onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscTeleportPlayers)))] call FUNC(zeusAttributes)); onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscTeleportPlayers)))] call FUNC(zeusAttributes)); @@ -250,9 +333,9 @@ class GVAR(RscTeleportPlayers): RscDisplayAttributes { }; -class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { - onSetFocus = QUOTE(_this call FUNC(ui_vehCargo)); - idc = 80085; +class GVAR(AttributeCargo): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_attributeCargo)); + idc = -1; x = X_PART(7); y = Y_PART(10); w = W_PART(26); @@ -260,7 +343,7 @@ class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { class controls { class Title: RscText { idc = -1; - text = "Cargo:"; + text = CSTRING(AttributeCargo); x = 0; y = 0; w = W_PART(10); @@ -290,7 +373,7 @@ class RscDisplayAttributesVehicle: RscDisplayAttributes { class Controls: Controls { class Content: Content { class Controls: controls { - class ace_cargo: GVAR(cargoAttribute) { }; + class ace_cargo: GVAR(AttributeCargo) { }; }; }; }; @@ -300,7 +383,7 @@ class RscDisplayAttributesVehicleEmpty: RscDisplayAttributes { class Controls: Controls { class Content: Content { class Controls: controls { - class ace_cargo: GVAR(cargoAttribute) { }; + class ace_cargo: GVAR(AttributeCargo) { }; }; }; }; From adaa10aea5ce5004c45f2bdd4dff978f73299858 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Thu, 19 May 2016 22:32:05 +0100 Subject: [PATCH 13/15] Adjust center of zeus AI task modules The tasks should center on the logic rather than the group leader. The search nearby module is also deleted after it's processed. --- addons/zeus/functions/fnc_moduleSearchNearby.sqf | 1 + addons/zeus/functions/fnc_ui_defendArea.sqf | 2 +- addons/zeus/functions/fnc_ui_patrolArea.sqf | 2 +- addons/zeus/functions/fnc_ui_searchArea.sqf | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/addons/zeus/functions/fnc_moduleSearchNearby.sqf b/addons/zeus/functions/fnc_moduleSearchNearby.sqf index b5be224a84..8affe2e554 100644 --- a/addons/zeus/functions/fnc_moduleSearchNearby.sqf +++ b/addons/zeus/functions/fnc_moduleSearchNearby.sqf @@ -48,3 +48,4 @@ switch (false) do { //Perform the module function: [QGVAR(moduleSearchNearby), _unit, [_unit]] call EFUNC(common,targetEvent); +deleteVehicle _logic; diff --git a/addons/zeus/functions/fnc_ui_defendArea.sqf b/addons/zeus/functions/fnc_ui_defendArea.sqf index bce2a9c2a2..fd56e316a7 100644 --- a/addons/zeus/functions/fnc_ui_defendArea.sqf +++ b/addons/zeus/functions/fnc_ui_defendArea.sqf @@ -67,7 +67,7 @@ private _fnc_onConfirm = { private _unit = effectiveCommander (attachedTo _logic); private _radius = GETVAR(_display,GVAR(radius),50); - [QGVAR(moduleDefendArea), _unit, [_unit,nil,_radius]] call EFUNC(common,targetEvent); + [QGVAR(moduleDefendArea), _unit, [_unit,getPosASL _logic,_radius]] call EFUNC(common,targetEvent); deleteVehicle _logic; }; diff --git a/addons/zeus/functions/fnc_ui_patrolArea.sqf b/addons/zeus/functions/fnc_ui_patrolArea.sqf index 3afbf74e8c..74e9b4ce80 100644 --- a/addons/zeus/functions/fnc_ui_patrolArea.sqf +++ b/addons/zeus/functions/fnc_ui_patrolArea.sqf @@ -67,7 +67,7 @@ private _fnc_onConfirm = { private _unit = effectiveCommander (attachedTo _logic); private _radius = GETVAR(_display,GVAR(radius),50); - [QGVAR(modulePatrolArea), _unit, [_unit,nil,_radius,5]] call EFUNC(common,targetEvent); + [QGVAR(modulePatrolArea), _unit, [_unit,getPosASL _logic,_radius,5]] call EFUNC(common,targetEvent); deleteVehicle _logic; }; diff --git a/addons/zeus/functions/fnc_ui_searchArea.sqf b/addons/zeus/functions/fnc_ui_searchArea.sqf index 3fb393ea37..7f92263ffa 100644 --- a/addons/zeus/functions/fnc_ui_searchArea.sqf +++ b/addons/zeus/functions/fnc_ui_searchArea.sqf @@ -68,7 +68,7 @@ private _fnc_onConfirm = { private _radius = GETVAR(_display,GVAR(radius),50); private _marker = QGVAR(ModuleSearchArea) + str(_unit); - createMarker [_marker, getPosASL _unit]; + createMarker [_marker, getPosASL _logic]; _marker setMarkerAlpha 0; _marker setMarkerShape "ELLIPSE"; _marker setMarkerSize [_radius,_radius]; From b3192adbb7a02709640bb7f2fae6fb6aa22ded6c Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sat, 21 May 2016 17:29:53 +0100 Subject: [PATCH 14/15] Add support for a zeus module position attribute Allows zeus to select a position for the module task to be carried out at - as a bonus it works alongside the radius attribute and will draw a circle preview if a radius is present. Unfortunately control types 100 & 101 don't play nicely with controls groups and so I've commented out the position attribute from the displays that would currently use it. Otherwise it is all seemingly working fine, just that the position of the control is all wrong and it doesn't stay within the bounds of the controls group. I opened an issue tracker ticket for the problem here: https://feedback.bistudio.com/T116708 --- addons/zeus/XEH_PREP.hpp | 1 + .../functions/fnc_ui_attributePosition.sqf | 60 +++++++++++++++++++ .../zeus/functions/fnc_ui_attributeRadius.sqf | 3 +- addons/zeus/functions/fnc_ui_defendArea.sqf | 3 +- addons/zeus/functions/fnc_ui_patrolArea.sqf | 3 +- addons/zeus/functions/fnc_ui_searchArea.sqf | 3 +- addons/zeus/stringtable.xml | 6 ++ addons/zeus/ui/RscAttributes.hpp | 32 ++++++++++ 8 files changed, 106 insertions(+), 5 deletions(-) create mode 100644 addons/zeus/functions/fnc_ui_attributePosition.sqf diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 0de614f190..eb70a8529d 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -19,6 +19,7 @@ PREP(moduleTeleportPlayers); PREP(moduleUnconscious); PREP(moduleZeusSettings); PREP(ui_attributeCargo); +//PREP(ui_attributePosition); PREP(ui_attributeRadius); PREP(ui_defendArea); PREP(ui_globalSetSkill); diff --git a/addons/zeus/functions/fnc_ui_attributePosition.sqf b/addons/zeus/functions/fnc_ui_attributePosition.sqf new file mode 100644 index 0000000000..95557a891b --- /dev/null +++ b/addons/zeus/functions/fnc_ui_attributePosition.sqf @@ -0,0 +1,60 @@ +/* + * Author: SilentSpike + * Initalises the `position` zeus module attribute + * + * Arguments: + * 0: position controls group + * + * Return Value: + * None + * + * Public: No + */ + +#include "script_component.hpp" + +disableSerialization; + +//Generic Init: +params ["_control"]; +private _display = ctrlParent _control; +private _logic = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull); + +_control ctrlRemoveAllEventHandlers "setFocus"; + +//Specific on-load stuff: +private _map = _control controlsGroupCtrl 26469; + +// Centre map on the logic initially +_map ctrlMapAnimAdd [0, ctrlMapScale _map, _logic]; +ctrlMapAnimCommit _map; + +private _fnc_onDraw = { + params ["_map"]; + + private _display = ctrlParent _map; + private _pos = GETVAR(_display,GVAR(position),[]); + private _radius = GETVAR(_display,GVAR(radius),0); + + if !(_pos isEqualTo []) then { + // Works alongside radius attribute + if (_radius == 0) then { + _map drawIcon ["\A3\ui_f\data\map\markers\military\dot_CA.paa", [0,0,0,1], _pos, 19, 19, 0, "", 0, 0]; + } else { + _map drawEllipse [_pos, _radius, _radius, 0, [0,0,0,1], ""]; + }; + }; +}; + +private _fnc_onMapClick = { + params ["_map","_button","_x","_y","_shift","_ctrl","_alt"]; + + if (_button == 0) then { + private _display = ctrlParent _map; + SETVAR(_display,GVAR(position),_pos); + }; +}; + +SETVAR(_display,GVAR(position),getPos _logic); +_map ctrlAddEventHandler ["draw",_fnc_onDraw]; +_map ctrlAddEventHandler ["mouseButtonDown",_fnc_onMapClick]; diff --git a/addons/zeus/functions/fnc_ui_attributeRadius.sqf b/addons/zeus/functions/fnc_ui_attributeRadius.sqf index 67ab0801fc..c26f8ac97d 100644 --- a/addons/zeus/functions/fnc_ui_attributeRadius.sqf +++ b/addons/zeus/functions/fnc_ui_attributeRadius.sqf @@ -24,7 +24,7 @@ _control ctrlRemoveAllEventHandlers "setFocus"; //Specific on-load stuff: private _edit = _control controlsGroupCtrl 26467; -_edit ctrlSetText "50"; +_edit ctrlSetText "100"; private _fnc_onKeyUp = { params ["_display"]; @@ -36,7 +36,6 @@ private _fnc_onKeyUp = { if (_radius == 0) then { _edit ctrlSetTooltip (localize LSTRING(AttributeRadiusInvalid)); _edit ctrlSetTextColor [1,0,0,1]; - SETVAR(_display,GVAR(radius),50); } else { _edit ctrlSetTooltip ""; _edit ctrlSetTextColor [1,1,1,1]; diff --git a/addons/zeus/functions/fnc_ui_defendArea.sqf b/addons/zeus/functions/fnc_ui_defendArea.sqf index fd56e316a7..210dfe61c6 100644 --- a/addons/zeus/functions/fnc_ui_defendArea.sqf +++ b/addons/zeus/functions/fnc_ui_defendArea.sqf @@ -66,8 +66,9 @@ private _fnc_onConfirm = { private _unit = effectiveCommander (attachedTo _logic); private _radius = GETVAR(_display,GVAR(radius),50); + private _position = GETVAR(_display,GVAR(position),getPos _logic); - [QGVAR(moduleDefendArea), _unit, [_unit,getPosASL _logic,_radius]] call EFUNC(common,targetEvent); + [QGVAR(moduleDefendArea), _unit, [_unit,_position,_radius]] call EFUNC(common,targetEvent); deleteVehicle _logic; }; diff --git a/addons/zeus/functions/fnc_ui_patrolArea.sqf b/addons/zeus/functions/fnc_ui_patrolArea.sqf index 74e9b4ce80..5eb324bdd7 100644 --- a/addons/zeus/functions/fnc_ui_patrolArea.sqf +++ b/addons/zeus/functions/fnc_ui_patrolArea.sqf @@ -66,8 +66,9 @@ private _fnc_onConfirm = { private _unit = effectiveCommander (attachedTo _logic); private _radius = GETVAR(_display,GVAR(radius),50); + private _position = GETVAR(_display,GVAR(position),getPos _logic); - [QGVAR(modulePatrolArea), _unit, [_unit,getPosASL _logic,_radius,5]] call EFUNC(common,targetEvent); + [QGVAR(modulePatrolArea), _unit, [_unit,_position,_radius,5]] call EFUNC(common,targetEvent); deleteVehicle _logic; }; diff --git a/addons/zeus/functions/fnc_ui_searchArea.sqf b/addons/zeus/functions/fnc_ui_searchArea.sqf index 7f92263ffa..c06f6d1290 100644 --- a/addons/zeus/functions/fnc_ui_searchArea.sqf +++ b/addons/zeus/functions/fnc_ui_searchArea.sqf @@ -66,9 +66,10 @@ private _fnc_onConfirm = { private _unit = effectiveCommander (attachedTo _logic); private _radius = GETVAR(_display,GVAR(radius),50); + private _position = GETVAR(_display,GVAR(position),getPos _logic); private _marker = QGVAR(ModuleSearchArea) + str(_unit); - createMarker [_marker, getPosASL _logic]; + createMarker [_marker, _position]; _marker setMarkerAlpha 0; _marker setMarkerShape "ELLIPSE"; _marker setMarkerSize [_radius,_radius]; diff --git a/addons/zeus/stringtable.xml b/addons/zeus/stringtable.xml index 30bd14bf10..c13851a0fc 100644 --- a/addons/zeus/stringtable.xml +++ b/addons/zeus/stringtable.xml @@ -447,6 +447,12 @@ Cargo: + + Task Position + + + Select a position to perform the task at + Task Radius diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index c5022b6974..c9ff3f3743 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -7,6 +7,7 @@ class RscEdit; class RscXSliderH; class RscCheckBox; class RscActivePicture; +class RscMapControl; class RscDisplayAttributes { class Controls { @@ -49,6 +50,34 @@ class GVAR(AttributeRadius): RscControlsGroupNoScrollbars { }; }; +class GVAR(AttributePosition): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(ui_attributePosition)); + idc = 26468; + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(26); + class controls { + class Title1: RscText { + idc = -1; + text = CSTRING(AttributePosition); + toolTip = CSTRING(AttributePosition_desc); + x = 0; + y = 0; + w = W_PART(26); + h = H_PART(1); + colorBackground[] = {0,0,0,0.5}; + }; + class Position: RscMapControl { + idc = 26469; + x = W_PART(0.5); + y = H_PART(1.1); + w = W_PART(25); + h = H_PART(24.8); + }; + }; +}; + class GVAR(RscDefendArea): RscDisplayAttributes { onLoad = QUOTE([ARR_3('onLoad', _this, QUOTE(QGVAR(RscDefendArea)))] call FUNC(zeusAttributes)); onUnload = QUOTE([ARR_3('onUnload', _this, QUOTE(QGVAR(RscDefendArea)))] call FUNC(zeusAttributes)); @@ -58,6 +87,7 @@ class GVAR(RscDefendArea): RscDisplayAttributes { class Content: Content { class Controls { class radius: GVAR(AttributeRadius) {}; + //class position: GVAR(AttributePosition) {}; }; }; class ButtonOK: ButtonOK { @@ -249,6 +279,7 @@ class GVAR(RscPatrolArea): RscDisplayAttributes { class Content: Content { class Controls { class radius: GVAR(AttributeRadius) {}; + //class position: GVAR(AttributePosition) {}; }; }; class ButtonOK: ButtonOK { @@ -267,6 +298,7 @@ class GVAR(RscSearchArea): RscDisplayAttributes { class Content: Content { class Controls { class radius: GVAR(AttributeRadius) {}; + //class position: GVAR(AttributePosition) {}; }; }; class ButtonOK: ButtonOK { From a7c1d0e5bf69c54c4465ad504ab051b90b4eb4c7 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sat, 21 May 2016 17:43:25 +0100 Subject: [PATCH 15/15] Remove erroneous tabs --- .../functions/fnc_moduleTeleportPlayers.sqf | 10 +- addons/zeus/ui/RscAttributes.hpp | 106 +++++++++--------- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf index ebd40e178d..decdb21999 100644 --- a/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf +++ b/addons/zeus/functions/fnc_moduleTeleportPlayers.sqf @@ -32,12 +32,12 @@ if (_group) then { // Handle teleportation { - moveOut _x; + moveOut _x; - private _attached = attachedTo _logic; - if (isNull _attached) then { - [_x, _logic] call BIS_fnc_moveToRespawnPosition; + private _attached = attachedTo _logic; + if (isNull _attached) then { + [_x, _logic] call BIS_fnc_moveToRespawnPosition; } else { - [_x, _attached] call BIS_fnc_moveToRespawnPosition; + [_x, _attached] call BIS_fnc_moveToRespawnPosition; }; } forEach _player; diff --git a/addons/zeus/ui/RscAttributes.hpp b/addons/zeus/ui/RscAttributes.hpp index c9ff3f3743..1efcde2c66 100644 --- a/addons/zeus/ui/RscAttributes.hpp +++ b/addons/zeus/ui/RscAttributes.hpp @@ -208,59 +208,59 @@ class GVAR(RscGroupSide): RscDisplayAttributes { w = W_PART(26); h = H_PART(2.5); class controls { - class Title: RscText { - idc = 31002; - text = "$STR_disp_arcunit_side"; - x = 0; - y = 0; - w = W_PART(10); - h = H_PART(2.5); - colorBackground[] = {0,0,0,0.5}; - }; - class Background: RscText { - idc = 31000; - x = W_PART(10); - y = 0; - w = W_PART(16); - h = H_PART(2.5); - colorBackground[] = {1,1,1,0.1}; - }; - class BLUFOR: RscActivePicture { - idc = 31200; - text = "\a3\Ui_f\data\Map\Markers\NATO\b_unknown.paa"; - x = W_PART(12.5); - y = H_PART(0.25); - w = W_PART(2); - h = H_PART(2); - tooltip = "$STR_WEST"; - }; - class OPFOR: BLUFOR { - idc = 31201; - text = "\a3\Ui_f\data\Map\Markers\NATO\o_unknown.paa"; - x = W_PART(15.5); - y = H_PART(0.25); - w = W_PART(2); - h = H_PART(2); - tooltip = "$STR_EAST"; - }; - class Independent: BLUFOR { - idc = 31202; - text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; - x = W_PART(18.5); - y = H_PART(0.25); - w = W_PART(2); - h = H_PART(2); - tooltip = "$STR_guerrila"; - }; - class Civilian: BLUFOR { - idc = 31203; - text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; - x = W_PART(21.5); - y = H_PART(0.25); - w = W_PART(2); - h = H_PART(2); - tooltip = "$STR_Civilian"; - }; + class Title: RscText { + idc = 31002; + text = "$STR_disp_arcunit_side"; + x = 0; + y = 0; + w = W_PART(10); + h = H_PART(2.5); + colorBackground[] = {0,0,0,0.5}; + }; + class Background: RscText { + idc = 31000; + x = W_PART(10); + y = 0; + w = W_PART(16); + h = H_PART(2.5); + colorBackground[] = {1,1,1,0.1}; + }; + class BLUFOR: RscActivePicture { + idc = 31200; + text = "\a3\Ui_f\data\Map\Markers\NATO\b_unknown.paa"; + x = W_PART(12.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_WEST"; + }; + class OPFOR: BLUFOR { + idc = 31201; + text = "\a3\Ui_f\data\Map\Markers\NATO\o_unknown.paa"; + x = W_PART(15.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_EAST"; + }; + class Independent: BLUFOR { + idc = 31202; + text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; + x = W_PART(18.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_guerrila"; + }; + class Civilian: BLUFOR { + idc = 31203; + text = "\a3\Ui_f\data\Map\Markers\NATO\n_unknown.paa"; + x = W_PART(21.5); + y = H_PART(0.25); + w = W_PART(2); + h = H_PART(2); + tooltip = "$STR_Civilian"; + }; }; }; };