2015-03-19 16:31:45 +00:00
|
|
|
/*
|
|
|
|
* Author: Garth 'L-H' de Wet and CAA-Picard
|
2015-08-15 19:35:33 +00:00
|
|
|
* Adds sub actions for all explosive magazines (from insertChildren)
|
2015-03-19 16:31:45 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Actions
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-15 19:35:33 +00:00
|
|
|
params ["_unit"];
|
|
|
|
TRACE_1("params",_unit);
|
|
|
|
|
|
|
|
private ["_mags", "_item", "_index", "_children", "_itemCount", "_list"];
|
2015-03-19 16:31:45 +00:00
|
|
|
|
|
|
|
_mags = magazines _unit;
|
|
|
|
_list = [];
|
|
|
|
_itemCount = [];
|
|
|
|
{
|
|
|
|
_item = ConfigFile >> "CfgMagazines" >> _x;
|
2016-01-14 22:05:56 +00:00
|
|
|
if (getNumber(_item >> QGVAR(Placeable)) == 1) then {
|
2015-03-19 16:31:45 +00:00
|
|
|
_index = _list find _item;
|
|
|
|
if (_index != -1) then {
|
|
|
|
_itemCount set [_index, (_itemCount select _index) + 1];
|
|
|
|
} else {
|
|
|
|
_list pushBack _item;
|
|
|
|
_itemCount pushBack 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} forEach _mags;
|
|
|
|
|
|
|
|
_children = [];
|
|
|
|
|
|
|
|
{
|
2015-04-01 17:09:19 +00:00
|
|
|
private "_name";
|
|
|
|
_name = if(isText(_x >> "displayNameShort") && {getText(_x >> "displayNameShort") != ""}) then
|
|
|
|
{getText (_x >> "displayNameShort")}else{getText(_x >> "displayName")};
|
2015-03-31 21:20:32 +00:00
|
|
|
_children pushBack
|
|
|
|
[
|
|
|
|
[
|
|
|
|
format ["Explosive_%1", _forEachIndex],
|
2015-08-15 19:35:33 +00:00
|
|
|
format [_name + " (%1)", _itemCount select _forEachIndex],
|
2015-03-31 21:20:32 +00:00
|
|
|
getText(_x >> "picture"),
|
2015-09-22 16:31:58 +00:00
|
|
|
{[{_this call FUNC(setupExplosive)}, _this] call EFUNC(common,execNextFrame)},
|
2015-03-31 21:20:32 +00:00
|
|
|
{true},
|
|
|
|
{},
|
2015-07-14 05:24:55 +00:00
|
|
|
(configName _x)
|
2015-03-31 21:20:32 +00:00
|
|
|
] call EFUNC(interact_menu,createAction),
|
|
|
|
[],
|
|
|
|
_unit
|
|
|
|
];
|
2015-08-15 19:35:33 +00:00
|
|
|
} forEach _list;
|
2015-03-19 16:31:45 +00:00
|
|
|
|
|
|
|
_children
|