mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
320 lines
11 KiB
Plaintext
320 lines
11 KiB
Plaintext
|
/*
|
||
|
* Author: Alganthe
|
||
|
* Handles the stats control group
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Arsenal display <DISPLAY>
|
||
|
* 1: Current panel control <CONTROL>
|
||
|
* 2: Current panel selection <SCALAR>
|
||
|
* 3: Item config entry <CONFIG>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
#include "..\defines.hpp"
|
||
|
|
||
|
#ifdef ENABLE_PERF_PROFILING
|
||
|
private _scopeHandleStats = createProfileScope QFUNC(handleStats);
|
||
|
#endif
|
||
|
|
||
|
params ["_display", "_control", "_curSel", "_itemCfg"];
|
||
|
|
||
|
private _statsBoxCtrl = _display displayCtrl IDC_statsBox;
|
||
|
private _statsPreviousPageCtrl = _display displayCtrl IDC_statsPreviousPage;
|
||
|
private _statsNextPageCtrl = _display displayCtrl IDC_statsNextPage;
|
||
|
private _statsCurrentPageCtrl = _display displayCtrl IDC_statsCurrentPage;
|
||
|
|
||
|
private _hideUnusedFnc = {
|
||
|
params ["_numbers"];
|
||
|
|
||
|
{
|
||
|
private _statsTitleCtrl = _display displayCtrl (5101 + ((_x - 1) * 4));
|
||
|
private _statsTitleIDC = ctrlIDC _statsTitleCtrl;
|
||
|
|
||
|
private _statsBackgroundCtrl = _display displayCtrl (_statsTitleIDC + 1);
|
||
|
private _statsBarCtrl = _display displayCtrl (_statsTitleIDC + 2);
|
||
|
private _statsTextCtrl = _display displayCtrl (_statsTitleIDC + 3);
|
||
|
|
||
|
{
|
||
|
_x ctrlSetFade 1;
|
||
|
_x ctrlCommit 0;
|
||
|
} forEach [
|
||
|
_statsTitleCtrl,
|
||
|
_statsBackgroundCtrl,
|
||
|
_statsBarCtrl,
|
||
|
_statsTextCtrl
|
||
|
];
|
||
|
} forEach _numbers;
|
||
|
};
|
||
|
|
||
|
if !(isNil "_itemCfg") then {
|
||
|
|
||
|
private _handleStatsFnc = {
|
||
|
params ["_statsIndex", "_leftPanel"];
|
||
|
|
||
|
// Get the proper list and page
|
||
|
if (_leftPanel) then {
|
||
|
[true, (uiNamespace getVariable QGVAR(statsListLeftPanel)) select _statsIndex, GVAR(statsPagesLeft) select _statsIndex]
|
||
|
} else {
|
||
|
[false, (uiNamespace getVariable QGVAR(statsListRightPanel)) select _statsIndex, GVAR(statsPagesRight) select _statsIndex]
|
||
|
} params ["_isLeftPanel", "_statsArray", "_currentPage"];
|
||
|
|
||
|
private _statsList = _statsArray select _currentPage;
|
||
|
|
||
|
private _statsCount = 0;
|
||
|
|
||
|
// Handle titles, bars and text
|
||
|
_statsList = _statsList select [0, 5];
|
||
|
if !(_statsList isEqualTo []) then {
|
||
|
{
|
||
|
_x params ["_ID", "_configEntry", "_title", "_bools", "_statements"];
|
||
|
_bools params ["_showBar", "_showText"];
|
||
|
_statements params [["_barStatement", {}, [{}]], ["_textStatement", {}, [{}]], ["_condition", {true}, [{}]]];
|
||
|
|
||
|
private _statsTitleCtrl = _display displayCtrl (5101 + _forEachIndex * 4);
|
||
|
private _statsTitleIDC = ctrlIDC _statsTitleCtrl;
|
||
|
private _statsBackgroundCtrl = _display displayCtrl (_statsTitleIDC + 1);
|
||
|
private _statsBarCtrl = _display displayCtrl (_statsTitleIDC + 2);
|
||
|
private _statsTextCtrl = _display displayCtrl (_statsTitleIDC + 3);
|
||
|
|
||
|
_statsCount = _statsCount + 1;
|
||
|
_statsTitleCtrl ctrlSetText _title;
|
||
|
_statsTitleCtrl ctrlSetFade 0;
|
||
|
|
||
|
// Handle bars
|
||
|
if (_showBar) then {
|
||
|
_statsBarCtrl progressSetPosition ([_configEntry, _itemCfg] call _barStatement);
|
||
|
|
||
|
_statsBackgroundCtrl ctrlSetFade 0;
|
||
|
_statsBarCtrl ctrlSetFade 0;
|
||
|
} else {
|
||
|
_statsBackgroundCtrl ctrlSetFade 1;
|
||
|
_statsBarCtrl ctrlSetFade 1;
|
||
|
};
|
||
|
|
||
|
// Handle text entries
|
||
|
if (_showText) then {
|
||
|
private _textStatementResult = [_configEntry, _itemCfg] call _textStatement;
|
||
|
|
||
|
if (_textStatementResult isEqualtype "") then {
|
||
|
_statsTextCtrl ctrlSetText _textStatementResult;
|
||
|
} else {
|
||
|
_statsTextCtrl ctrlSetText (str _textStatementResult);
|
||
|
};
|
||
|
_statsTextCtrl ctrlSetTextColor ([[1,1,1,1], [0,0,0,1]] select (_showBar));
|
||
|
|
||
|
_statsTextCtrl ctrlSetFade 0;
|
||
|
} else {
|
||
|
_statsTextCtrl ctrlSetFade 1;
|
||
|
};
|
||
|
|
||
|
{
|
||
|
_x ctrlCommit 0;
|
||
|
} forEach [
|
||
|
_statsTitleCtrl,
|
||
|
_statsBackgroundCtrl,
|
||
|
_statsBarCtrl,
|
||
|
_statsTextCtrl
|
||
|
];
|
||
|
} forEach (_statsList select {
|
||
|
_x params ["_ID","_configEntry", "_title", "_bools", "_statements"];
|
||
|
_statements params [["_barStatement", {}, [{}]], ["_textStatement", {}, [{}]], ["_condition", {true}, [{}]]];
|
||
|
|
||
|
([_configEntry, _itemCfg] call _condition)
|
||
|
});
|
||
|
};
|
||
|
|
||
|
// Resize the window
|
||
|
switch (_statsCount) do {
|
||
|
case 0: {
|
||
|
[[1, 2, 3, 4, 5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
11 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
case 1: {
|
||
|
[[2, 3, 4, 5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
15 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
case 2: {
|
||
|
[[3, 4, 5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
25 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
case 3: {
|
||
|
[[4, 5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
35 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
case 4: {
|
||
|
[[5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
45 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
case 5: {
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
55 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
GVAR(statsInfo) = [_isLeftPanel, _statsIndex, _control, _curSel, _itemCfg];
|
||
|
|
||
|
// Toggle page buttons
|
||
|
_statsPreviousPageCtrl ctrlEnable !(_currentPage == 0);
|
||
|
_statsNextPageCtrl ctrlEnable !(_currentPage + 1 >= count _statsArray);
|
||
|
_statsCurrentPageCtrl ctrlSetText ([localize LSTRING(page), str (_currentPage + 1)] joinString " ");
|
||
|
|
||
|
{
|
||
|
_x ctrlSetFade 0;
|
||
|
_x ctrlCommit 0;
|
||
|
} forEach [
|
||
|
_statsPreviousPageCtrl,
|
||
|
_statsNextPageCtrl,
|
||
|
_statsCurrentPageCtrl
|
||
|
];
|
||
|
};
|
||
|
|
||
|
if (ctrlIDC _control == IDC_leftTabContent) then {
|
||
|
|
||
|
switch (GVAR(currentLeftPanel)) do {
|
||
|
case IDC_buttonPrimaryWeapon: {
|
||
|
[0, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonHandgun: {
|
||
|
[1, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonSecondaryWeapon: {
|
||
|
[2, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonUniform: {
|
||
|
[3, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonVest: {
|
||
|
[4, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonBackpack: {
|
||
|
[5, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonHeadgear: {
|
||
|
[6, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonGoggles: {
|
||
|
[7, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonNVG: {
|
||
|
[8, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonBinoculars: {
|
||
|
[9, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonMap: {
|
||
|
[10, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonGPS: {
|
||
|
[11, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonRadio: {
|
||
|
[12, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonCompass: {
|
||
|
[13, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonWatch: {
|
||
|
[14, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonFace: {
|
||
|
[15, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonVoice: {
|
||
|
[16, true] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonInsigna: {
|
||
|
[17, true] call _handleStatsFnc;
|
||
|
};
|
||
|
};
|
||
|
} else {
|
||
|
|
||
|
switch (GVAR(currentRightPanel)) do {
|
||
|
case IDC_buttonOptic: {
|
||
|
[0, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonItemAcc: {
|
||
|
[1, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonMuzzle: {
|
||
|
[2, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonBipod: {
|
||
|
[3, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonCurrentMag;
|
||
|
case IDC_buttonCurrentMag2;
|
||
|
case IDC_buttonMag;
|
||
|
case IDC_buttonMagALL: {
|
||
|
[4, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonThrow: {
|
||
|
[5, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonPut: {
|
||
|
[6, false] call _handleStatsFnc;
|
||
|
};
|
||
|
case IDC_buttonMisc: {
|
||
|
[7, false] call _handleStatsFnc;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
} else {
|
||
|
|
||
|
[[1, 2, 3, 4, 5]] call _hideUnusedFnc;
|
||
|
_statsBoxCtrl ctrlSetPosition [
|
||
|
(0.5 - WIDTH_TOTAL / 2) + WIDTH_GAP,
|
||
|
safezoneY + 1.8 * GRID_H,
|
||
|
47 * GRID_W,
|
||
|
11 * GRID_H
|
||
|
];
|
||
|
_statsBoxCtrl ctrlCommit 0;
|
||
|
|
||
|
{
|
||
|
_x ctrlSetFade 1;
|
||
|
_x ctrlCommit 0;
|
||
|
} forEach [
|
||
|
_statsPreviousPageCtrl,
|
||
|
_statsNextPageCtrl,
|
||
|
_statsCurrentPageCtrl
|
||
|
];
|
||
|
};
|