2015-03-11 02:20:05 +00:00
|
|
|
/*
|
2015-09-18 11:09:40 +00:00
|
|
|
* Author: esteldunedain, Jaynus
|
2015-10-21 20:52:21 +00:00
|
|
|
* Returns the result of the function and caches it up to a given time or event
|
2015-03-11 02:20:05 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Parameters <ARRAY>
|
|
|
|
* 1: Function <CODE>
|
|
|
|
* 2: Namespace to store the cache on <NAMESPACE>
|
|
|
|
* 3: Cache uid <STRING>
|
|
|
|
* 4: Max duration of the cache <NUMBER>
|
2015-09-18 11:09:40 +00:00
|
|
|
* 5: Event that clears the cache (default: nil) <STRING>
|
2015-03-11 02:20:05 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Result of the function <ANY>
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-18 11:09:40 +00:00
|
|
|
params ["_params", "_function", "_namespace", "_uid", "_duration", "_event"];
|
2015-03-11 02:20:05 +00:00
|
|
|
|
2015-09-18 11:09:40 +00:00
|
|
|
if ((_namespace getVariable [_uid, [-99999]]) select 0 < ACE_diagTime) then {
|
2015-05-21 16:42:44 +00:00
|
|
|
_namespace setVariable [_uid, [ACE_diagTime + _duration, _params call _function]];
|
2015-03-21 20:50:35 +00:00
|
|
|
|
|
|
|
// Does the cache needs to be cleared on an event?
|
2015-09-18 11:09:40 +00:00
|
|
|
if (!isNil "_event") then {
|
|
|
|
private ["_varName", "_cacheList"];
|
|
|
|
|
|
|
|
_varName = format [QGVAR(clearCache_%1), _event];
|
2015-03-21 20:50:35 +00:00
|
|
|
_cacheList = missionNamespace getVariable _varName;
|
|
|
|
|
|
|
|
// If there was no EH to clear these caches, add one
|
2015-09-18 11:09:40 +00:00
|
|
|
if (isNil "_cacheList") then {
|
2015-03-21 20:50:35 +00:00
|
|
|
_cacheList = [];
|
|
|
|
missionNamespace setVariable [_varName, _cacheList];
|
|
|
|
|
|
|
|
[_event, {
|
2015-09-18 11:09:40 +00:00
|
|
|
private ["_varName", "_cacheList"];
|
2015-03-21 20:50:35 +00:00
|
|
|
// _eventName is defined on the function that calls the event
|
2015-03-21 21:09:42 +00:00
|
|
|
#ifdef DEBUG_MODE_FULL
|
2015-08-26 15:39:44 +00:00
|
|
|
ACE_LOGINFO_1("Clear cached variables on event: %1",_eventName);
|
2015-03-21 21:09:42 +00:00
|
|
|
#endif
|
2015-03-21 20:50:35 +00:00
|
|
|
// Get the list of caches to clear
|
2015-09-18 11:09:40 +00:00
|
|
|
_varName = format [QGVAR(clearCache_%1), _eventName];
|
2015-03-21 20:50:35 +00:00
|
|
|
_cacheList = missionNamespace getVariable [_varName, []];
|
|
|
|
// Erase all the cached results
|
|
|
|
{
|
|
|
|
_x call FUNC(eraseCache);
|
|
|
|
} forEach _cacheList;
|
|
|
|
// Empty the list
|
|
|
|
missionNamespace setVariable [_varName, []];
|
|
|
|
}] call FUNC(addEventhandler);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Add this cache to the list of the event
|
|
|
|
_cacheList pushBack [_namespace, _uid];
|
|
|
|
};
|
2015-09-18 11:09:40 +00:00
|
|
|
|
2015-03-11 02:20:05 +00:00
|
|
|
#ifdef DEBUG_MODE_FULL
|
2015-08-26 15:39:44 +00:00
|
|
|
ACE_LOGINFO_2("Calculated result: %1 %2",_namespace,_uid);
|
2015-03-11 02:20:05 +00:00
|
|
|
} else {
|
2015-08-26 15:39:44 +00:00
|
|
|
ACE_LOGINFO_2("Cached result: %1 %2",_namespace,_uid);
|
2015-03-11 02:20:05 +00:00
|
|
|
#endif
|
2015-09-18 11:09:40 +00:00
|
|
|
|
2015-03-11 02:20:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
(_namespace getVariable _uid) select 1
|