2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-02-14 06:39:01 +00:00
|
|
|
* Author: commy2
|
|
|
|
* Adjust the grenades throwing direction and speed to the selected throwing mode.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: unit - Object the event handler is assigned to <OBJECT>
|
|
|
|
* 1: weapon - Fired weapon <STRING>
|
|
|
|
* 2: muzzle - Muzzle that was used <STRING>
|
|
|
|
* 3: mode - Current mode of the fired weapon <STRING>
|
|
|
|
* 4: ammo - Ammo used <STRING>
|
|
|
|
* 5: magazine - magazine name which was used <STRING>
|
|
|
|
* 6: projectile - Object of the projectile that was shot <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-13 20:36:58 +00:00
|
|
|
* None
|
2015-02-14 06:39:01 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [clientFiredBIS-XEH] call ace_grenades_fnc_throwGrenade
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-14 09:06:47 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-13 20:36:58 +00:00
|
|
|
private ["_mode", "_fuzeTime"];
|
|
|
|
params ["_unit", "_weapon", "", "", "", "", "_projectile"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-14 09:06:47 +00:00
|
|
|
if (_unit != ACE_player) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
if (_weapon != "Throw") exitWith {};
|
|
|
|
|
2015-01-14 09:06:47 +00:00
|
|
|
_mode = missionNamespace getVariable [QGVAR(currentThrowMode), 0];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (_mode != 0) then {
|
2015-02-14 06:39:01 +00:00
|
|
|
private "_velocity";
|
|
|
|
|
|
|
|
_velocity = velocity _projectile;
|
|
|
|
|
|
|
|
switch (_mode) do {
|
|
|
|
//high throw
|
|
|
|
case 1 : {
|
|
|
|
_velocity = [
|
|
|
|
0.5 * (_velocity select 0),
|
|
|
|
0.5 * (_velocity select 1),
|
|
|
|
[0, 0, 0] distance (_velocity vectorMultiply 0.5)
|
|
|
|
];
|
|
|
|
};
|
|
|
|
//precise throw
|
|
|
|
case 2 : {
|
|
|
|
_velocity = (_unit weaponDirection _weapon) vectorMultiply (vectorMagnitude _velocity);
|
|
|
|
};
|
|
|
|
//roll grande
|
|
|
|
case 3 : {
|
|
|
|
//@todo
|
|
|
|
};
|
|
|
|
//drop grenade
|
|
|
|
case 4 : {
|
|
|
|
_velocity = [0, 0, 0];
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-02-14 06:39:01 +00:00
|
|
|
_projectile setVelocity _velocity;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-14 09:06:47 +00:00
|
|
|
if (typeOf _projectile == "ACE_G_M84") then {
|
2015-02-14 06:39:01 +00:00
|
|
|
_fuzeTime = getNumber (configFile >> "CfgAmmo" >> typeOf _projectile >> "fuseDistance");
|
|
|
|
// _fuzeTime = getNumber (configFile >> "CfgAmmo" >> typeOf _projectile >> "explosionTime"); //@toDo pretty sure this should be explosionTime not fuseDistance
|
|
|
|
[FUNC(flashbangThrownFuze), [_projectile], _fuzeTime, 0] call EFUNC(common,waitAndExecute);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|