mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
91 lines
2.7 KiB
Plaintext
91 lines
2.7 KiB
Plaintext
#include "script_component.hpp"
|
|
#include "defines.hpp"
|
|
|
|
#define TOOLS_TAB_ICON "\A3\ui_f\data\igui\cfg\actions\repair_ca.paa"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
#include "initSettings.inc.sqf"
|
|
|
|
// Arsenal events
|
|
[QGVAR(statsToggle), {
|
|
params ["_display", "_showStats"];
|
|
|
|
private _statsCtrlGroupCtrl = _display displayCtrl IDC_statsBox;
|
|
private _statsPreviousPageCtrl = _display displayCtrl IDC_statsPreviousPage;
|
|
private _statsNextPageCtrl = _display displayCtrl IDC_statsNextPage;
|
|
private _statsCurrentPageCtrl = _display displayCtrl IDC_statsCurrentPage;
|
|
|
|
{
|
|
_x ctrlShow (GVAR(showStats) && {_showStats});
|
|
} forEach [
|
|
_statsCtrlGroupCtrl,
|
|
_statsPreviousPageCtrl,
|
|
_statsNextPageCtrl,
|
|
_statsCurrentPageCtrl
|
|
];
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(statsChangePage), {
|
|
_this call FUNC(buttonStatsPage);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(displayStats), {
|
|
_this call FUNC(handleStats);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(actionsChangePage), {
|
|
_this call FUNC(buttonActionsPage);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(displayActions), {
|
|
_this call FUNC(handleActions);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(actionsToggle), {
|
|
params ["_display", "_showActions"];
|
|
|
|
private _actionsCtrlGroupCtrl = _display displayCtrl IDC_actionsBox;
|
|
private _actionsPreviousPageCtrl = _display displayCtrl IDC_actionsPreviousPage;
|
|
private _actionsNextPageCtrl = _display displayCtrl IDC_actionsNextPage;
|
|
private _actionsCurrentPageCtrl = _display displayCtrl IDC_actionsCurrentPage;
|
|
|
|
{
|
|
_x ctrlShow (GVAR(showActions) && {_showActions});
|
|
} forEach [
|
|
_actionsCtrlGroupCtrl,
|
|
_actionsPreviousPageCtrl,
|
|
_actionsNextPageCtrl,
|
|
_actionsCurrentPageCtrl
|
|
];
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
call FUNC(compileActions);
|
|
call FUNC(compileSorts);
|
|
call FUNC(compileStats);
|
|
|
|
[QUOTE(ADDON), {!isNil QGVAR(camera)}] call CBA_fnc_registerFeatureCamera;
|
|
|
|
// Compatibility with CBA scripted optics and disposable framework
|
|
[QGVAR(displayOpened), {
|
|
"CBA_optics_arsenalOpened" call CBA_fnc_localEvent;
|
|
"CBA_disposable_arsenalOpened" call CBA_fnc_localEvent;
|
|
EGVAR(common,blockItemReplacement) = true;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(displayClosed), {
|
|
"CBA_optics_arsenalClosed" call CBA_fnc_localEvent;
|
|
"CBA_disposable_arsenalClosed" call CBA_fnc_localEvent;
|
|
EGVAR(common,blockItemReplacement) = false;
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
// Setup Tools tab
|
|
[keys (uiNamespace getVariable [QGVAR(configItemsTools), createHashMap]), LLSTRING(toolsTab), TOOLS_TAB_ICON, -1, true] call FUNC(addRightPanelButton);
|
|
|
|
|
|
ADDON = true;
|