2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-16 02:36:31 +00:00
|
|
|
/*
|
|
|
|
* Author: Commy2
|
2015-02-08 22:54:12 +00:00
|
|
|
* Make the unit clear the jam from a weapon
|
2015-01-16 02:36:31 +00:00
|
|
|
*
|
2015-02-08 22:54:12 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Player <OBJECT>
|
|
|
|
* 1: Weapon <STRING>
|
|
|
|
* 2: Skip anim? <BOOL>
|
2015-01-16 02:36:31 +00:00
|
|
|
*
|
2015-02-08 22:54:12 +00:00
|
|
|
* Return Value:
|
|
|
|
* None
|
2015-01-16 02:36:31 +00:00
|
|
|
*
|
2015-12-15 07:09:26 +00:00
|
|
|
* Example:
|
|
|
|
* [player, currentWeapon player, false] call ace_overheating_fnc_clearJam
|
|
|
|
*
|
2015-02-08 22:54:12 +00:00
|
|
|
* Public: No
|
2015-01-16 02:36:31 +00:00
|
|
|
*/
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-02-20 23:19:56 +00:00
|
|
|
params ["_unit", "_weapon", ["_skipAnim", false]];
|
2015-12-15 07:09:26 +00:00
|
|
|
TRACE_3("params",_unit,_weapon,_skipAnim);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-15 07:09:26 +00:00
|
|
|
private _jammedWeapons = _unit getVariable [QGVAR(jammedWeapons), []];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (_weapon in _jammedWeapons) then {
|
2016-02-21 00:09:52 +00:00
|
|
|
private _delay = 0;
|
2015-12-15 07:09:26 +00:00
|
|
|
if !(_skipAnim) then {
|
2016-02-21 00:09:52 +00:00
|
|
|
_delay = 2.5;
|
2015-12-15 07:09:26 +00:00
|
|
|
private _clearJamAction = getText (configFile >> "CfgWeapons" >> _weapon >> "ACE_clearJamAction");
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-15 07:09:26 +00:00
|
|
|
if (_clearJamAction == "") then {
|
|
|
|
_clearJamAction = getText (configFile >> "CfgWeapons" >> _weapon >> "reloadAction");
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-07-13 09:00:31 +00:00
|
|
|
[_unit, _clearJamAction, 1] call EFUNC(common,doGesture);
|
2021-10-14 15:47:52 +00:00
|
|
|
|
2015-12-15 07:09:26 +00:00
|
|
|
if (_weapon == primaryWeapon _unit) then {
|
|
|
|
playSound QGVAR(fixing_rifle);
|
|
|
|
} else {
|
2020-01-18 17:40:41 +00:00
|
|
|
if (_weapon == handgunWeapon _unit) then {
|
2015-12-15 07:09:26 +00:00
|
|
|
playSound QGVAR(fixing_pistol);
|
|
|
|
};
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2021-10-14 15:47:52 +00:00
|
|
|
// Check if the jam clearing will be successfull
|
2016-02-21 00:09:52 +00:00
|
|
|
if (random 1 > GVAR(unJamFailChance)) then {
|
|
|
|
// Success
|
2021-10-14 15:47:52 +00:00
|
|
|
|
|
|
|
[{
|
|
|
|
params ["_unit", "_weapon", "_jammedWeapons"];
|
|
|
|
_jammedWeapons = _jammedWeapons - [_weapon];
|
|
|
|
_unit setVariable [QGVAR(jammedWeapons), _jammedWeapons];
|
|
|
|
|
|
|
|
// If the round is a dud eject the round
|
|
|
|
if (_unit getVariable [format [QGVAR(%1_jamType), _weapon], "None"] isEqualTo "Dud") then {
|
|
|
|
private _ammo = _unit ammo _weapon;
|
|
|
|
_unit setAmmo [_weapon, _ammo - 1];
|
|
|
|
};
|
|
|
|
|
|
|
|
_unit setVariable [format [QGVAR(%1_jamType), _weapon], "None"];
|
|
|
|
|
|
|
|
if (_jammedWeapons isEqualTo []) then {
|
|
|
|
private _id = _unit getVariable [QGVAR(JammingActionID), -1];
|
|
|
|
[_unit, "DefaultAction", _id] call EFUNC(common,removeActionEventHandler);
|
|
|
|
_unit setVariable [QGVAR(JammingActionID), -1];
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GVAR(DisplayTextOnJam)) then {
|
2016-02-21 00:09:52 +00:00
|
|
|
[localize LSTRING(WeaponUnjammed)] call EFUNC(common,displayTextStructured);
|
2021-10-14 15:47:52 +00:00
|
|
|
};
|
|
|
|
}, [_unit, _weapon, _jammedWeapons], _delay] call CBA_fnc_waitAndExecute;
|
2016-02-21 00:09:52 +00:00
|
|
|
} else {
|
|
|
|
// Failure
|
|
|
|
if (GVAR(DisplayTextOnJam)) then {
|
|
|
|
[{
|
|
|
|
[localize LSTRING(WeaponUnjamFailed)] call EFUNC(common,displayTextStructured);
|
2016-05-22 13:27:24 +00:00
|
|
|
}, [], _delay] call CBA_fnc_waitAndExecute;
|
2016-02-21 00:09:52 +00:00
|
|
|
};
|
2015-02-01 10:11:51 +00:00
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|