mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9618c2de95
Arsenal - Various additions and fixes
63 lines
1.9 KiB
Plaintext
63 lines
1.9 KiB
Plaintext
/*
|
|
* Author: Alganthe
|
|
* onLoad EH for arsenal loadouts display.
|
|
*
|
|
* Arguments:
|
|
* 0: Ignored
|
|
* 1: Arguments <ARRAY>
|
|
* 1.1: Loadouts display <DISPLAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
#include "..\defines.hpp"
|
|
|
|
params ["", "_args"];
|
|
_args params ["_display"];
|
|
|
|
private _arsenalDisplay = findDisplay IDD_ace_arsenal;
|
|
private _mouseBlockCtrl = _arsenalDisplay displayCtrl IDC_mouseBlock;
|
|
|
|
_mouseBlockCtrl ctrlEnable true;
|
|
_mouseBlockCtrl ctrlCommit 0;
|
|
|
|
[_arsenalDisplay] call FUNC(buttonHide);
|
|
|
|
GVAR(currentLoadoutsTab) = -1;
|
|
GVAR(loadoutsSearchbarFocus) = false;
|
|
GVAR(loadoutsPanelFocus) = false;
|
|
|
|
GVAR(previousCameraPos) = GVAR(cameraPosition);
|
|
GVAR(cameraPosition) = [5,0,20,[-0.85,0,0.85]];
|
|
|
|
private _panelContentCtrl = _display displayCtrl IDC_contentPanel;
|
|
_panelContentCtrl ctrlSetFontHeight (4.5 * GRID_H);
|
|
_panelContentCtrl ctrlCommit 0;
|
|
|
|
if !(GVAR(allowDefaultLoadouts)) then {
|
|
private _buttonDefaultLoadoutsCtrl = _display displayCtrl IDC_buttonDefaultLoadouts;
|
|
_buttonDefaultLoadoutsCtrl ctrlEnable false;
|
|
_buttonDefaultLoadoutsCtrl ctrlCommit 0;
|
|
|
|
private _buttonDefaultLoadoutsBackgroundCtrl = _display displayCtrl IDC_buttonDefaultLoadoutsBackground;
|
|
_buttonDefaultLoadoutsBackgroundCtrl ctrlShow false;
|
|
_buttonDefaultLoadoutsBackgroundCtrl ctrlCommit 0;
|
|
};
|
|
|
|
if !(GVAR(allowSharedLoadouts) && {isMultiplayer}) then {
|
|
private _buttonShareLoadoutsCtrl = _display displayCtrl IDC_buttonSharedLoadouts;
|
|
_buttonShareLoadoutsCtrl ctrlEnable false;
|
|
_buttonShareLoadoutsCtrl ctrlCommit 0;
|
|
|
|
private _buttonShareLoadoutsBackgroundCtrl = _display displayCtrl IDC_buttonSharedLoadoutsBackground;
|
|
_buttonShareLoadoutsBackgroundCtrl ctrlShow false;
|
|
_buttonShareLoadoutsBackgroundCtrl ctrlCommit 0;
|
|
};
|
|
|
|
[QGVAR(loadoutsDisplayOpened), [_display]] call CBA_fnc_localEvent;
|
|
|
|
[_display, _display displayCtrl IDC_buttonMyLoadouts] call FUNC(loadoutsChangeTab);
|