2015-01-14 21:29:52 +00:00
|
|
|
//fnc_hashGet.sqf
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
private ["_val", "_index"];
|
2015-05-21 16:42:44 +00:00
|
|
|
// diag_log text format["%1 HASH GET: %2", ACE_diagTime, _this];
|
2015-01-14 21:29:52 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_2(_hash,_key);
|
|
|
|
|
2015-01-14 21:29:52 +00:00
|
|
|
ERRORDATA(2);
|
|
|
|
_val = nil;
|
|
|
|
try {
|
2015-02-19 18:14:52 +00:00
|
|
|
if(VALIDHASH(_hash)) then {
|
|
|
|
_index = (_hash select 0) find _key;
|
|
|
|
if(_index != -1) then {
|
|
|
|
_val = (_hash select 1) select _index;
|
|
|
|
if(IS_STRING(_val) && {_val == "ACREHASHREMOVEDONOTUSETHISVAL"}) then {
|
|
|
|
_val = nil;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
ERROR("Input hash is not valid");
|
|
|
|
};
|
2015-01-14 21:29:52 +00:00
|
|
|
} catch {
|
2015-02-19 18:14:52 +00:00
|
|
|
HANDLECATCH;
|
2015-01-14 21:29:52 +00:00
|
|
|
};
|
2015-05-15 17:45:07 +00:00
|
|
|
|
|
|
|
if (isNil "_val") exitWith { nil };
|
|
|
|
_val;
|