2015-09-19 19:33:25 +00:00
|
|
|
/*
|
|
|
|
* Author: ?
|
|
|
|
* Returns value attached to key in given hash.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Hash <ARRAY>
|
|
|
|
* 1: Key <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Value <ANY>
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-14 21:29:52 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
private ["_val", "_index"];
|
2015-01-14 21:29:52 +00:00
|
|
|
|
2015-09-19 19:33:25 +00:00
|
|
|
params ["_hash", "_key"];
|
2015-05-14 18:06:06 +00:00
|
|
|
|
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 };
|
2015-09-19 19:33:25 +00:00
|
|
|
|
|
|
|
_val
|