Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wind Deflection - Improve Performance in updateTrajectoryPFH #7700

Merged
merged 1 commit into from
Jun 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions addons/winddeflection/functions/fnc_updateTrajectoryPFH.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@
_args set [0, CBA_missionTime];
private _isWind = (vectorMagnitude wind > 0);

private _deleted = false;
{
_x params ["_bullet", "_airFriction"];

private _bulletVelocity = velocity _bullet;
private _bulletSpeedSqr = vectorMagnitudeSqr _bulletVelocity;

if ((!alive _bullet) || {(_bullet isKindOf "BulletBase") && {_bulletSpeedSqr < 10000}}) then {
GVAR(trackedBullets) deleteAt (GVAR(trackedBullets) find _x);
GVAR(trackedBullets) set [_forEachIndex, objNull];
_deleted = true;
} else {
if (_isWind) then {
private _trueVelocity = _bulletVelocity vectorDiff wind;
Expand All @@ -48,7 +50,11 @@
};
_bullet setVelocity _bulletVelocity;
};
nil
} count +GVAR(trackedBullets);
} forEach GVAR(trackedBullets);

if (_deleted) then {
GVAR(trackedBullets) = GVAR(trackedBullets) - [objNull];
};

// END_COUNTER(pfeh);
}, GVAR(simulationInterval), [CBA_missionTime]] call CBA_fnc_addPerFrameHandler;