ACE3/addons/common/functions/fnc_hashSet.sqf

37 lines
733 B
Plaintext
Raw Normal View History

2015-09-19 19:33:25 +00:00
/*
* Author: ?
* ?
*
* Arguments:
* ?
*
* Return Value:
* ?
*
* Public: ?
*/
2015-01-14 21:29:52 +00:00
#include "script_component.hpp"
2016-03-02 10:01:39 +00:00
// diag_log text format["%1 HASH SET: %2", diag_tickTime, _this];
2015-01-14 21:29:52 +00:00
2015-09-19 19:33:25 +00:00
params ["_hash", "_key", "_val"];
2015-05-14 18:06:06 +00:00
2015-01-14 21:29:52 +00:00
ERRORDATA(3);
try {
2015-02-19 18:14:52 +00:00
if(VALIDHASH(_hash)) then {
private _index = (_hash select 0) find _key;
2015-02-19 18:14:52 +00:00
if(_index == -1) then {
_index = (_hash select 0) find "ACREHASHREMOVEDONOTUSETHISVAL";
if(_index == -1) then {
_index = (count (_hash select 0));
};
(_hash select 0) set[_index, _key];
};
(_hash select 1) set[_index, _val];
} 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
};