2015-04-18 18:37:06 +00:00
|
|
|
//#define DEBUG_MODE_FULL
|
2015-04-18 15:31:03 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-18 18:37:06 +00:00
|
|
|
|
|
|
|
if(!hasInterface) exitWith { false };
|
|
|
|
|
2015-04-18 15:31:03 +00:00
|
|
|
PARAMS_3(_litterClass,_position,_direction);
|
2015-04-19 16:04:42 +00:00
|
|
|
private["_litterObject", "_maxLitterCount"];
|
2015-04-30 06:17:26 +00:00
|
|
|
//IGNORE_PRIVATE_WARNING(_values);
|
2015-04-18 15:31:03 +00:00
|
|
|
|
2015-04-18 18:16:18 +00:00
|
|
|
if (isNil QGVAR(allCreatedLitter)) then {
|
2015-04-18 15:31:03 +00:00
|
|
|
GVAR(allCreatedLitter) = [];
|
|
|
|
GVAR(litterPFHRunning) = false;
|
|
|
|
};
|
|
|
|
|
2015-04-18 18:37:06 +00:00
|
|
|
_litterObject = _litterClass createVehicleLocal _position;
|
|
|
|
_litterObject setDir _direction;
|
2015-05-14 00:29:09 +00:00
|
|
|
_litterObject setPosATL _position;
|
|
|
|
// Move the litter next frame to get rid of HORRIBLE spacing, fixes #1112
|
2015-05-14 14:15:52 +00:00
|
|
|
[{ (_this select 0) setPosATL (_this select 1); }, [_litterObject, _position]] call EFUNC(common,execNextFrame);
|
2015-05-14 00:29:09 +00:00
|
|
|
|
2015-04-19 16:04:42 +00:00
|
|
|
_maxLitterCount = getArray (configFile >> "ACE_Settings" >> QGVAR(litterSimulationDetail) >> "_values") select GVAR(litterSimulationDetail);
|
|
|
|
if((count GVAR(allCreatedLitter)) > _maxLitterCount ) then {
|
2015-04-18 18:37:06 +00:00
|
|
|
// gank the first litter object, and spawn ours.
|
|
|
|
private["_oldLitter"];
|
|
|
|
_oldLitter = GVAR(allCreatedLitter) deleteAt 0;
|
|
|
|
{
|
|
|
|
deleteVehicle _x;
|
|
|
|
} forEach (_oldLitter select 1);
|
2015-04-18 15:31:03 +00:00
|
|
|
};
|
|
|
|
|
2015-05-21 16:42:44 +00:00
|
|
|
GVAR(allCreatedLitter) pushBack [ACE_time, [_litterObject]];
|
2015-04-18 18:37:06 +00:00
|
|
|
|
|
|
|
if(!GVAR(litterPFHRunning) && {GVAR(litterCleanUpDelay) > 0}) then {
|
|
|
|
[{
|
|
|
|
{
|
2015-05-21 16:42:44 +00:00
|
|
|
if (ACE_time - (_x select 0) >= GVAR(litterCleanUpDelay)) then {
|
2015-04-18 18:37:06 +00:00
|
|
|
{
|
|
|
|
deleteVehicle _x;
|
2015-04-18 18:48:44 +00:00
|
|
|
} forEach (_x select 1);
|
2015-04-18 18:37:06 +00:00
|
|
|
GVAR(allCreatedLitter) set[_foreachIndex, objNull];
|
|
|
|
};
|
2015-04-18 18:48:44 +00:00
|
|
|
} forEach GVAR(allCreatedLitter);
|
2015-04-18 18:37:06 +00:00
|
|
|
GVAR(allCreatedLitter) = GVAR(allCreatedLitter) - [objNull];
|
|
|
|
|
|
|
|
if ( (count GVAR(allCreatedLitter)) == 0) exitwith {
|
|
|
|
[(_this select 1)] call CBA_fnc_removePerFrameHandler;
|
|
|
|
GVAR(litterPFHRunning) = false;
|
|
|
|
};
|
|
|
|
}, 30, []] call cba_fnc_addPerFrameHandler;
|
|
|
|
};
|
2015-04-18 15:31:03 +00:00
|
|
|
|
|
|
|
true
|