2016-05-30 16:37:03 +00:00
|
|
|
/*
|
|
|
|
* Author: jaynus
|
|
|
|
*
|
|
|
|
* Master single PFH abstraction for all rounds being tracked by frag/spall
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*/
|
|
|
|
//#define DEBUG_MODE_FULL
|
|
|
|
#include "script_component.hpp"
|
|
|
|
//PARAMS_2(_pfhArgs,_handle);
|
|
|
|
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
private _gcIndex = [];
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
private _iter = 0;
|
|
|
|
private _objectCount = count GVAR(objects);
|
|
|
|
while {_objectCount > 0 && {_iter < (GVAR(MaxTrackPerFrame) min _objectCount)}} do {
|
|
|
|
|
|
|
|
if (GVAR(lastIterationIndex) >= _objectCount) then {
|
2016-05-30 16:37:03 +00:00
|
|
|
GVAR(lastIterationIndex) = 0;
|
|
|
|
};
|
2016-10-26 22:16:31 +00:00
|
|
|
private _object = GVAR(objects) select GVAR(lastIterationIndex);
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
if (!isNil "_object") then {
|
|
|
|
private _args = GVAR(arguments) select GVAR(lastIterationIndex);
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
if (!(_args call FUNC(pfhRound))) then {
|
|
|
|
_gcIndex pushBack GVAR(lastIterationIndex); // Add it to the GC if it returns false
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
};
|
2016-10-26 22:16:31 +00:00
|
|
|
INC(_iter);
|
|
|
|
INC(GVAR(lastIterationIndex));
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
// Clean up dead object references
|
|
|
|
private _deletionCount = 0;
|
2016-05-30 16:37:03 +00:00
|
|
|
{
|
|
|
|
TRACE_1("GC Projectile", _x);
|
2016-10-26 22:16:31 +00:00
|
|
|
private _deleteIndex = _x - _deletionCount;
|
2016-05-30 16:37:03 +00:00
|
|
|
GVAR(objects) deleteAt _deleteIndex;
|
|
|
|
GVAR(arguments) deleteAt _deleteIndex;
|
|
|
|
|
2016-10-26 22:16:31 +00:00
|
|
|
INC(_deletionCount);
|
2016-05-30 16:37:03 +00:00
|
|
|
} forEach _gcIndex;
|