mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
95a5fb040a
* Added two local events to arsenal * onInitArsenal fired when Arsenal got initiated * onRemoveArsenal fired when Arsenal got removed * added them to the arsenal event listing in the docs * Update addons/arsenal/functions/fnc_removeBox.sqf Co-authored-by: BrettMayson <brett@mayson.io> * Update addons/arsenal/functions/fnc_removeBox.sqf Co-authored-by: BrettMayson <brett@mayson.io> * Renamed events in accordance with event naming patterns sans "on" * Apply suggestions from code review Co-authored-by: BrettMayson <brett@mayson.io> * Improved Docs Co-authored-by: BrettMayson <brett@mayson.io>
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Alganthe
|
|
* Initialize a box / object for arsenal.
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Items <BOOL> or <ARRAY>
|
|
* 2: Initialize globally <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_box, ["MyItem1", "MyItem2", "MyItemN"]] call ace_arsenal_fnc_initBox
|
|
* [_box, true] call ace_arsenal_fnc_initBox
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params [["_object", objNull, [objNull]], ["_items", true, [[], true]], ["_global", true, [true]]];
|
|
|
|
if (isNull _object) exitWith {};
|
|
|
|
if (isNil QGVAR(EHIDArray)) then {
|
|
GVAR(EHIDArray) = [];
|
|
};
|
|
|
|
if (_global && {isMultiplayer} && {{_object in _x} count GVAR(EHIDArray) == 0}) then {
|
|
|
|
private _ID = [QGVAR(initBox), [_object, _items, false]] call CBA_fnc_globalEventJIP;
|
|
[_ID, _object] call CBA_fnc_removeGlobalEventJIP;
|
|
|
|
GVAR(EHIDArray) pushBack [_ID, _object];
|
|
publicVariable QGVAR(EHIDArray);
|
|
} else {
|
|
|
|
if ({(_x select 0) select 0 isEqualTo QGVAR(interaction)} count (_object getVariable [QEGVAR(interact_menu,actions), []]) == 0) then {
|
|
|
|
private _action = [
|
|
QGVAR(interaction),
|
|
localize "STR_A3_Arsenal",
|
|
"",
|
|
{
|
|
params ["_target", "_player"];
|
|
|
|
[_target, _player] call FUNC(openBox);
|
|
},
|
|
{
|
|
params ["_target", "_player"];
|
|
|
|
[_player, _target] call EFUNC(common,canInteractWith)
|
|
},
|
|
{},
|
|
[]
|
|
] call EFUNC(interact_menu,createAction);
|
|
[_object, 0, ["ACE_MainActions"], _action] call EFUNC(interact_menu,addActionToObject);
|
|
|
|
[_object, _items, false] call FUNC(addVirtualItems);
|
|
|
|
[QGVAR(boxInitialized), [_object, _items]] call CBA_fnc_localEvent;
|
|
};
|
|
};
|