ACE3/addons/weaponselect/functions/fnc_selectGrenadeOther.sqf

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-01-17 17:26:51 +00:00
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain, commy2
2015-01-17 17:26:51 +00:00
*
* Cycle through non explosive grenades.
*
* Argument:
* None
*
* Return value:
* None
*/
#include "script_component.hpp"
2015-04-17 20:45:00 +00:00
private ["_nextMuzzle", "_text"];
2015-01-17 17:26:51 +00:00
2015-04-17 20:45:00 +00:00
PARAMS_1(_unit);
2015-01-17 17:26:51 +00:00
_nextMuzzle = ["NonFrag"] call FUNC(findNextGrenadeMuzzle);
if (_nextMuzzle != "") then {
2015-04-17 20:45:00 +00:00
GVAR(CurrentGrenadeMuzzleOther) = _nextMuzzle;
2015-01-17 17:26:51 +00:00
2015-04-17 20:45:00 +00:00
private ["_magazines", "_magazine", "_count", "_return"];
_magazines = GVAR(NonFragMagazines) select (GVAR(NonFragMuzzles) find _nextMuzzle);
reverse _magazines;
2015-01-17 17:26:51 +00:00
2015-04-17 20:45:00 +00:00
_magazine = "";
_count = {_return = _x in _magazines; if (_return) then {_magazine = _x}; _return} count magazines _unit;
2015-01-17 17:26:51 +00:00
2015-04-17 20:45:00 +00:00
// There is a muzzle with magazines --> cycle to it
[_unit, _nextMuzzle] call FUNC(setNextGrenadeMuzzle);
2015-01-17 17:26:51 +00:00
2015-04-17 20:45:00 +00:00
[_magazine, _count] call FUNC(displayGrenadeTypeAndNumber);
2015-01-17 17:26:51 +00:00
} else {
2015-04-17 20:45:00 +00:00
// There is a no muzzle with magazines --> select nothing
GVAR(CurrentGrenadeMuzzleOther) = "";
if (GVAR(DisplayText)) then {
2015-05-28 19:59:04 +00:00
_text = [localize LSTRING(NoMiscGrenadeLeft), [1,0,0]] call EFUNC(common,stringToColoredText);
2015-04-17 20:45:00 +00:00
[composeText [lineBreak, _text]] call EFUNC(common,displayTextStructured);
};
2015-01-17 17:26:51 +00:00
};
GVAR(CurrentGrenadeMuzzleIsFrag) = false;