mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
687bbfb798
Thanks for the tip Zupa!
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
/*
|
|
DMS_fnc_CleanUpManager
|
|
Created by eraser1
|
|
|
|
Objects to be cleaned up together have an entry in "DMS_CleanUpList"
|
|
The list is formatted as:
|
|
[
|
|
[
|
|
_objectToClean1,
|
|
_objectToClean2,
|
|
...
|
|
_objectToCleanN
|
|
],
|
|
_timeAddedToList,
|
|
_timeUntilClean
|
|
]
|
|
|
|
A single object can also be used for (_this select 0)
|
|
*/
|
|
if (DMS_CleanUpList isEqualTo []) exitWith {}; // Empty array, no objects to clean :)
|
|
|
|
{
|
|
if (DMS_DEBUG) then
|
|
{
|
|
diag_log format ["DMS_DEBUG CleanUpManager :: Checking Cleaning Status for: %1",_x];
|
|
};
|
|
|
|
private ["_objs","_timeAddedToList","_timeUntilClean"];
|
|
|
|
_OK = _x params
|
|
[
|
|
["_objs",[objNull],[objNull,[],grpNull]],
|
|
["_timeAddedToList",diag_tickTime,[0]],
|
|
["_timeUntilClean",DMS_CompletedMissionCleanupTime,[0]]
|
|
];
|
|
|
|
if (!_OK) then
|
|
{
|
|
diag_log format ["DMS ERROR :: Invalid parameters for DMS_fnc_CleanUpManager: %1 replaced with %2",_x,[_objs,_timeAddedToList,_timeUntilClean]];
|
|
};
|
|
|
|
if ((diag_tickTime-_timeAddedToList)>=_timeUntilClean) then
|
|
{
|
|
_objs call DMS_fnc_CleanUp;
|
|
}
|
|
else
|
|
{
|
|
if (DMS_DEBUG) then
|
|
{
|
|
diag_log format ["DMS_DEBUG CleanUpManager :: %1 is not yet ready to clean!",_x];
|
|
};
|
|
};
|
|
} forEach DMS_CleanUpList; |