2023-07-25 06:30:49 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
#include "..\defines.hpp"
|
|
|
|
/*
|
2023-07-25 06:41:15 +00:00
|
|
|
* Author: Brett Mayson, johnb43
|
|
|
|
* Refreshes the arsenal to show external changes.
|
2023-07-25 06:30:49 +00:00
|
|
|
*
|
2023-08-20 03:56:59 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Update current and unique items lists <BOOL> (default: true)
|
|
|
|
*
|
2023-07-25 06:30:49 +00:00
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2023-08-20 03:56:59 +00:00
|
|
|
* Example:
|
|
|
|
* call ace_arsenal_fnc_refresh
|
|
|
|
*
|
|
|
|
* Public: Yes
|
2023-07-25 06:30:49 +00:00
|
|
|
*/
|
2023-08-20 03:56:59 +00:00
|
|
|
params [["_updateItems", true, [true]]];
|
2023-07-25 06:30:49 +00:00
|
|
|
|
2023-08-20 03:56:59 +00:00
|
|
|
if (_updateItems) then {
|
|
|
|
// Update current item list
|
|
|
|
call FUNC(updateCurrentItemsList);
|
2023-07-25 06:30:49 +00:00
|
|
|
|
2023-08-20 03:56:59 +00:00
|
|
|
// This takes care of unique inventory items (arsenal doesn't have it whitelisted)
|
|
|
|
call FUNC(updateUniqueItemsList);
|
|
|
|
};
|
2023-07-25 06:30:49 +00:00
|
|
|
|
2023-07-25 06:41:15 +00:00
|
|
|
// Don't refresh left panel if in loadout tab
|
|
|
|
if (!isNull findDisplay IDD_loadouts_display) exitWith {};
|
|
|
|
|
|
|
|
private _display = findDisplay IDD_ace_arsenal;
|
|
|
|
|
2023-07-25 06:30:49 +00:00
|
|
|
[_display, _display displayCtrl GVAR(currentLeftPanel)] call FUNC(fillLeftPanel);
|