xpdb/addons/core/functions/fnc_saveData.sqf
Jacob Schmidt 1b6b825653
All checks were successful
Build / Build (push) Successful in 53s
Initial Repo Setup
2025-01-01 21:18:03 -06:00

53 lines
1.7 KiB
Plaintext

#include "script_component.hpp"
/*
* Function: xpdb_core_fnc_saveData
* Author: NikolaiF90, J.Schmidt
* Edit: 07.27.2024
* Copyright © 2024 NikolaiF90, J.Schmidt, All rights reserved
*
* Do not edit without permission!
*
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivative 4.0 International License.
* To view a copy of this license, vist https://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to Creative Commons,
* PO Box 1866, Mountain View, CA 94042
*
* [Description]
* Save data in missionProfileNamespace using specified key, value, and slot.
*
* Arguments:
* 0: Name of key <STRING> (default: "")
* 1: Value to save in key <ARRAY|STRING|SCALAR|BOOL|HASHMAP> (default: "")
* 2: Slot number to save value to <SCALAR> (default: 0)
*
* Return Value:
* N/A
*
* Examples:
* ["name", name player, 1] call xpdb_core_fnc_saveData
* ["rating", rating player, 2] call xpdb_core_fnc_saveData
*
* Public: Yes
*/
params [["_key", "", [""]], ["_value", "", [[], 0, "", false, createHashMap]], ["_slot", 0, [0]]];
private _hashKey = format ["%1.%2.%3", EGVAR(db,prefix), _slot, _key];
private _hashMap = createHashMap;
if (_value isEqualType createHashMap) then {
_hashMap = _value;
};
if (_value isEqualType []) then {
_hashMap = createHashMapFromArray _value
};
if (!(_value isEqualType createHashMap) && !(_value isEqualType []) && !(_value isEqualTo createHashMap)) then {
_hashMap set [_key, _value];
};
_hashMap set ["hashKey", _hashKey];
missionProfileNamespace setVariable [_hashKey, _hashMap];
[EGVAR(db,debug), "xpdb_core_fnc_saveData", format ["Saved data to '%1'.", _hashKey], true] call EFUNC(utils,debug);