ACE3/addons/ui/XEH_clientInit.sqf

73 lines
2.6 KiB
Plaintext
Raw Permalink Normal View History

#include "script_component.hpp"
#include "\a3\ui_f\hpp\defineDIKCodes.inc"
// Exit on Headless
2015-10-28 22:23:02 +00:00
if (!hasInterface) exitWith {};
// Compile and cache config UI
GVAR(configCache) = createHashMap;
call FUNC(compileConfigUI);
// Scripted API namespace
GVAR(elementsSet) = createHashMap;
// Attach all event handlers where UI has to be updated
["CBA_settingsInitialized", {
// Initial settings
[false] call FUNC(setElements);
2015-10-28 22:23:02 +00:00
// On load and entering/exiting a vehicle
["ace_infoDisplayChanged", {
2015-10-28 22:23:02 +00:00
// Selective UI Advanced
// Defaults must be set in this EH to make sure controls are activated and advanced settings can be modified
{
2024-03-28 13:11:26 +00:00
[_x, missionNamespace getVariable (format [QGVAR(%1), _x]), false, !GVAR(allowSelectiveUI)] call FUNC(setAdvancedElement);
} forEach (keys GVAR(configCache));
// Execute local event for when it's safe to modify UI through this API
// infoDisplayChanged can execute multiple times, make sure it only happens once
if (!GVAR(interfaceInitialized)) then {
2016-06-03 01:05:03 +00:00
[QGVAR(InterfaceInitialized), []] call CBA_fnc_localEvent;
GVAR(interfaceInitialized) = true;
};
2016-06-03 00:59:18 +00:00
}] call CBA_fnc_addEventHandler;
// On changing settings
["CBA_SettingChanged", {
params ["_name", "_value"];
if (_name select [0, 7] != "ace_ui_") exitWith {};
2015-10-28 22:23:02 +00:00
if (_name in ELEMENTS_BASIC) then {
[true] call FUNC(setElements);
} else {
private _nameNoPrefix = toLowerANSI (_name select [7]);
if (_nameNoPrefix in GVAR(configCache)) then {
[_nameNoPrefix, _value, true] call FUNC(setAdvancedElement);
};
2015-10-28 22:23:02 +00:00
};
}] call CBA_fnc_addEventHandler;
}] call CBA_fnc_addEventHandler;
[QUOTE(ADDON), "AnimChanged", LINKFUNC(onAnimChanged), true] call EFUNC(common,addPlayerEH);
["ACE3 Common", QGVAR(hideHud), localize LSTRING(hideHud), {
GVAR(hideHud) = !(missionNamespace getVariable [QGVAR(hideHud), false]);
[QGVAR(hideHud), [GVAR(hideHud)]] call CBA_fnc_localEvent;
private _mask = [];
if (GVAR(hideHud)) then { _mask resize [10, false] };
[QGVAR(hideHud), _mask] call EFUNC(common,showHud);
if (missionNamespace getVariable [QGVAR(hideHud_hideChat), true]) then {
showChat !GVAR(hideHud);
};
if (!isNil "diwako_dui_main_toggled_off") then {
diwako_dui_main_toggled_off = GVAR(hideHud); // ref https://github.com/diwako/diwako_dui/wiki/Hiding-DUI-for-cutscenes
};
true
},
{false},
[DIK_F12, [false, true, false]], false] call CBA_fnc_addKeybind; // ctrl+f12