mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1994e301fd
* Compile stats on preInit * Remove uneeded check in add/removeStat * Remove perf profiler vars They aren't required anymore * Fix case issue in verifyLoadout, remove uneeded line * Fix ace arsenal cam not working porperly underwater By removing those checks the cam is allowed to clip through objects and work properly underwater, sounds like features to me :D * Fix gunbag behavior in ace arsenal Switching between gunbags will keep the weapon, switching to another backpack then back to a gunbag will also keep the weapon. * Fix text scaling in the searchbars and loadout name edit boxes Also made the text bigger by default
64 lines
2.5 KiB
Plaintext
64 lines
2.5 KiB
Plaintext
#include "script_component.hpp"
|
|
#include "defines.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
// Arsenal
|
|
GVAR(modList) = ["","curator","kart","heli","mark","expansion","expansionpremium"];
|
|
|
|
[QGVAR(camInverted), "CHECKBOX", localize LSTRING(invertCameraSetting), localize LSTRING(settingCategory), false] call CBA_Settings_fnc_init;
|
|
[QGVAR(enableModIcons), "CHECKBOX", [LSTRING(modIconsSetting), LSTRING(modIconsTooltip)], localize LSTRING(settingCategory), true] call CBA_Settings_fnc_init;
|
|
[QGVAR(fontHeight), "SLIDER", [LSTRING(fontHeightSetting), LSTRING(fontHeightTooltip)], localize LSTRING(settingCategory), [1, 10, 4.5, 1]] call CBA_Settings_fnc_init;
|
|
[QGVAR(enableIdentityTabs), "CHECKBOX", localize LSTRING(enableIdentityTabsSettings), localize LSTRING(settingCategory), true, true] call CBA_Settings_fnc_init;
|
|
|
|
|
|
// Arsenal loadouts
|
|
[QGVAR(allowDefaultLoadouts), "CHECKBOX", [LSTRING(allowDefaultLoadoutsSetting), LSTRING(defaultLoadoutsTooltip)], localize LSTRING(settingCategory), true, true] call CBA_Settings_fnc_init;
|
|
[QGVAR(allowSharedLoadouts), "CHECKBOX", localize LSTRING(allowSharingSetting), localize LSTRING(settingCategory), true, true] call CBA_Settings_fnc_init;
|
|
[QGVAR(EnableRPTLog), "CHECKBOX", [LSTRING(printToRPTSetting), LSTRING(printToRPTTooltip)], localize LSTRING(settingCategory), false, false] call CBA_Settings_fnc_init;
|
|
|
|
[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;
|
|
|
|
private _statsButtonCtrl = _display displayCtrl IDC_statsButton;
|
|
private _statsButtonCloseCtrl = _display displayCtrl IDC_statsButtonClose;
|
|
|
|
{
|
|
_x ctrlShow (GVAR(showStats) && {_showStats});
|
|
} forEach [
|
|
_statsCtrlGroupCtrl,
|
|
_statsPreviousPageCtrl,
|
|
_statsNextPageCtrl,
|
|
_statsCurrentPageCtrl,
|
|
_statsButtonCloseCtrl
|
|
];
|
|
|
|
_statsButtonCtrl ctrlShow (!GVAR(showStats) && {_showStats})
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(statsButton), {
|
|
_this call FUNC(buttonStats);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
[QGVAR(statsChangePage), {
|
|
_this call FUNC(buttonStatsPage);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
|
|
[QGVAR(displayStats), {
|
|
_this call FUNC(handleStats);
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
call FUNC(compileStats);
|
|
|
|
ADDON = true;
|