2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2020-04-07 15:48:32 +00:00
|
|
|
/*
|
|
|
|
* Author: veteran29
|
|
|
|
* Checks if the given item is a flashlight.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Item Classname <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Is flashlight <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* ["acc_flashlight"] call ace_map_fnc_isFlashlight
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params [["_class", "", [""]]];
|
|
|
|
|
2024-06-11 15:34:32 +00:00
|
|
|
GVAR(flashlights) getOrDefaultCall [_class, {
|
2020-04-07 15:48:32 +00:00
|
|
|
private _items = ([_class] + (_class call CBA_fnc_switchableAttachments));
|
|
|
|
private _cfgWeapons = configFile >> "CfgWeapons";
|
|
|
|
|
|
|
|
// if this item or any of the switchable items is a flashlight
|
2024-06-11 15:34:32 +00:00
|
|
|
_items findIf {
|
2020-04-07 15:48:32 +00:00
|
|
|
private _weaponConfig = _cfgWeapons >> _x;
|
|
|
|
|
|
|
|
[
|
|
|
|
_weaponConfig >> "ItemInfo" >> "FlashLight",
|
|
|
|
_weaponConfig >> "FlashLight"
|
|
|
|
] findIf {
|
|
|
|
isText (_x >> "ACE_Flashlight_Colour")
|
2023-09-17 07:32:39 +00:00
|
|
|
|| {!(getArray (_x >> "ambient") in [[], [0,0,0]]) && {getNumber (_x >> "irLight") == 0}}
|
2020-04-07 15:48:32 +00:00
|
|
|
} != -1 // return
|
2024-06-11 15:34:32 +00:00
|
|
|
} != -1 // return
|
|
|
|
}, true] // return
|