ACE3/addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf

61 lines
1.9 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Glowbal, Ruthberg
* Handles wind deflection for projectiles.
*
* Arguments:
* 0: bullet - Object the event handler is assigned to <OBJECT>
* 1: airFriction - air friction of the bullet <NUMBER>
*
* Return Value:
* None
*
* Example:
* [bullet, 2] call ace_winddeflection_fnc_updateTrajectoryPFH
*
* Public: No
*/
[{
2015-07-22 08:27:40 +00:00
// BEGIN_COUNTER(pfeh);
2015-07-22 08:04:54 +00:00
params ["_args"];
_args params ["_lastTime"];
private _deltaT = CBA_missionTime - _lastTime;
2016-03-02 10:01:39 +00:00
_args set [0, CBA_missionTime];
private _isWind = (vectorMagnitude wind > 0);
2015-07-22 08:04:54 +00:00
private _deleted = false;
2015-07-22 08:04:54 +00:00
{
_x params ["_bullet", "_airFriction"];
private _bulletVelocity = velocity _bullet;
private _bulletSpeedSqr = vectorMagnitudeSqr _bulletVelocity;
2015-07-22 08:04:54 +00:00
if ((!alive _bullet) || {(_bullet isKindOf "BulletBase") && {_bulletSpeedSqr < 10000}}) then {
GVAR(trackedBullets) set [_forEachIndex, objNull];
_deleted = true;
2015-07-22 08:04:54 +00:00
} else {
if (_isWind) then {
private _trueVelocity = _bulletVelocity vectorDiff wind;
private _trueSpeed = vectorMagnitude _trueVelocity;
2015-07-22 08:04:54 +00:00
private _dragRef = _deltaT * _airFriction * _bulletSpeedSqr;
private _accelRef = (vectorNormalized _bulletVelocity) vectorMultiply (_dragRef);
2015-07-22 08:04:54 +00:00
_bulletVelocity = _bulletVelocity vectorDiff _accelRef;
private _drag = _deltaT * _airFriction * _trueSpeed;
private _accel = _trueVelocity vectorMultiply (_drag);
2015-07-22 08:04:54 +00:00
_bulletVelocity = _bulletVelocity vectorAdd _accel;
};
_bullet setVelocity _bulletVelocity;
};
} forEach GVAR(trackedBullets);
if (_deleted) then {
GVAR(trackedBullets) = GVAR(trackedBullets) - [objNull];
};
2015-07-22 08:27:40 +00:00
// END_COUNTER(pfeh);
2016-03-02 10:01:39 +00:00
}, GVAR(simulationInterval), [CBA_missionTime]] call CBA_fnc_addPerFrameHandler;