2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-17 17:26:51 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* The player will select the specified weapon and change to the first additional muzzle. E.g. the grenade launcher of a assault rifle.
|
|
|
|
*
|
2015-08-08 12:40:23 +00:00
|
|
|
* Arguments:
|
2015-08-04 01:08:21 +00:00
|
|
|
* 0: Unit <OBJECT>
|
|
|
|
* 1: Weapon <STRING>
|
2015-01-17 17:26:51 +00:00
|
|
|
*
|
2015-08-08 12:40:23 +00:00
|
|
|
* Return Value:
|
2015-08-04 01:08:21 +00:00
|
|
|
* None
|
2015-08-08 12:40:23 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player, currentWeapon player] call ace_weaponselect_fnc_selectWeaponMuzzle
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-17 17:26:51 +00:00
|
|
|
*/
|
|
|
|
|
2015-08-04 01:08:21 +00:00
|
|
|
params ["_unit", "_weapon"];
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
if (_weapon == "" || {!(_unit hasWeapon _weapon)}) exitWith {};
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2016-01-06 21:42:02 +00:00
|
|
|
private _muzzles = _weapon call EFUNC(common,getWeaponMuzzles);
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
if (count _muzzles <= 1) exitWith {};
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
private _muzzle = (_unit weaponState _weapon) select 1;
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
private _index = if (currentWeapon _unit == _weapon) then {
|
|
|
|
(((_muzzles find currentMuzzle _unit) + 1) % (count _muzzles)) max 1
|
|
|
|
} else {
|
|
|
|
1
|
2015-01-17 17:26:51 +00:00
|
|
|
};
|
|
|
|
|
2016-01-06 21:42:02 +00:00
|
|
|
private _muzzle = _muzzles select _index;
|
2015-01-17 17:26:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
_unit selectWeapon [_weapon, _muzzle, ([_weapon, _muzzle] call EFUNC(common,getWeaponModes)) select 0];
|
|
|
|
|
|
|
|
nil // return
|