RoT2_PRC8/_module/nss/util_i_lists.nss
Jaysyn904 379c5dce03 Added persistent player storage
Added persistent player storage.  Fixed store items.  Full compile.  Updated release archive.
2025-03-09 20:14:36 -04:00

99 lines
3.9 KiB
Plaintext

/// ----------------------------------------------------------------------------
/// @file util_i_lists.nss
/// @author Michael A. Sinclair (Squatting Monk) <squattingmonk@gmail.com>
/// @author Ed Burke (tinygiant98) <af.hog.pilot@gmail.com>
/// @brief Compatibility functions to convert between CSV and localvar lists.
/// ----------------------------------------------------------------------------
#include "util_i_csvlists"
#include "util_i_varlists"
// -----------------------------------------------------------------------------
// Constants
// -----------------------------------------------------------------------------
// Acceptable values for nListType in SplitList() and JoinList().
const int LIST_TYPE_FLOAT = 0;
const int LIST_TYPE_INT = 1;
const int LIST_TYPE_STRING = 2;
// -----------------------------------------------------------------------------
// Function Prototypes
// -----------------------------------------------------------------------------
/// @brief Splits a comma-separated value list into a local variable list of the
/// given type.
/// @param oTarget Object on which to create the list
/// @param sList Source CSV list
/// @param sListName Name of the list to create or add to
/// @param bAddUnique If TRUE, prevents duplicate list items
/// @param nListType Type of list to create
/// LIST_TYPE_STRING (default)
/// LIST_TYPE_FLOAT
/// LIST_TYPE_INT
/// @returns JSON array of split CSV list
json SplitList(object oTarget, string sList, string sListName = "", int bAddUnique = FALSE, int nListType = LIST_TYPE_STRING);
/// @brief Joins a local variable list of a given type into a comma-separated
/// value list
/// @param oTarget Object from which to source the local variable list
/// @param sListName Name of the local variable list
/// @param bAddUnique If TRUE, prevents duplicate list items
/// @param nListType Type of local variable list
/// LIST_TYPE_STRING (default)
/// LIST_TYPE_FLOAT
/// LIST_TYPE_INT
/// @returns Joined CSV list of local variable list
string JoinList(object oTarget, string sListName = "", int bAddUnique = FALSE, int nListType = LIST_TYPE_STRING);
// -----------------------------------------------------------------------------
// Function Implementations
// -----------------------------------------------------------------------------
json SplitList(object oTarget, string sList, string sListName = "", int bAddUnique = FALSE, int nListType = LIST_TYPE_STRING)
{
json jList = JSON_ARRAY;
if (nListType == LIST_TYPE_STRING)
jList = ListToJson(sList, TRUE);
else
jList = JsonParse("[" + sList + "]");
string sListType = (nListType == LIST_TYPE_STRING ? VARLIST_TYPE_STRING :
nListType == LIST_TYPE_INT ? VARLIST_TYPE_INT :
VARLIST_TYPE_FLOAT);
if (bAddUnique == TRUE)
jList = JsonArrayTransform(jList, JSON_ARRAY_UNIQUE);
if (oTarget != OBJECT_INVALID)
_SetList(oTarget, sListType, sListName, jList);
return jList;
}
string JoinList(object oTarget, string sListName = "", int bAddUnique = FALSE, int nListType = LIST_TYPE_STRING)
{
string sListType = (nListType == LIST_TYPE_STRING ? VARLIST_TYPE_STRING :
nListType == LIST_TYPE_INT ? VARLIST_TYPE_INT :
VARLIST_TYPE_FLOAT);
json jList = _GetList(oTarget, sListType, sListName);
if (jList == JsonNull() || JsonGetLength(jList) == 0)
return "";
if (bAddUnique == TRUE)
jList = JsonArrayTransform(jList, JSON_ARRAY_UNIQUE);
string sList;
if (nListType == LIST_TYPE_STRING)
sList = JsonToList(jList);
else
{
sList = JsonDump(jList);
sList = GetStringSlice(sList, 1, GetStringLength(sList) - 2);
}
return sList;
}