Jaysyn904 b927d0faf8 File re-organization.
File re-organization.  Added module builder & hak builder.
2021-09-16 10:15:32 -04:00

110 lines
4.7 KiB
Plaintext

/// @addtogroup itemproperty ItemProperty
/// @brief Utility functions to manipulate the builtin itemproperty type.
/// @{
/// @file nwnx_itemprop.nss
#include "nwnx"
const string NWNX_ItemProperty = "NWNX_ItemProperty"; ///< @private
/// @brief An unpacked itemproperty.
struct NWNX_IPUnpacked
{
int nProperty; ///< @todo Describe
int nSubType; ///< @todo Describe
int nCostTable; ///< @todo Describe
int nCostTableValue; ///< @todo Describe
int nParam1; ///< @todo Describe
int nParam1Value; ///< @todo Describe
int nUsesPerDay; ///< @todo Describe
int nChanceToAppear; ///< @todo Describe
int bUsable; ///< @todo Describe
int nSpellId; ///< @todo Describe
object oCreator; ///< @todo Describe
string sTag; ///< @todo Describe
};
/// @brief Convert native itemproperty type to unpacked structure.
/// @param ip The itemproperty to convert.
/// @return A constructed NWNX_IPUnpacked.
struct NWNX_IPUnpacked NWNX_ItemProperty_UnpackIP(itemproperty ip);
/// @brief Convert unpacked itemproperty structure to native type.
/// @param ip The NWNX_IPUnpacked structure to convert.
/// @return The itemproperty.
itemproperty NWNX_ItemProperty_PackIP(struct NWNX_IPUnpacked ip);
/// @brief Gets the active item property at the index
/// @param oItem - the item with the property
/// @param nIndex - the index such as returned by some Item Events
/// @return A constructed NWNX_IPUnpacked, except for creator, and spell id.
struct NWNX_IPUnpacked NWNX_ItemProperty_GetActiveProperty(object oItem, int nIndex);
/// @}
struct NWNX_IPUnpacked NWNX_ItemProperty_UnpackIP(itemproperty ip)
{
string sFunc = "UnpackIP";
NWNX_PushArgumentItemProperty(NWNX_ItemProperty, sFunc, ip);
NWNX_CallFunction(NWNX_ItemProperty, sFunc);
struct NWNX_IPUnpacked n;
n.nProperty = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nSubType = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nCostTable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nCostTableValue = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nParam1 = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nParam1Value = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nUsesPerDay = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nChanceToAppear = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.bUsable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nSpellId = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.oCreator = NWNX_GetReturnValueObject(NWNX_ItemProperty, sFunc);
n.sTag = NWNX_GetReturnValueString(NWNX_ItemProperty, sFunc);
return n;
}
itemproperty NWNX_ItemProperty_PackIP(struct NWNX_IPUnpacked n)
{
string sFunc = "PackIP";
NWNX_PushArgumentString(NWNX_ItemProperty, sFunc, n.sTag);
NWNX_PushArgumentObject(NWNX_ItemProperty, sFunc, n.oCreator);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nSpellId);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.bUsable);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nChanceToAppear);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nUsesPerDay);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nParam1Value);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nParam1);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nCostTableValue);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nCostTable);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nSubType);
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, n.nProperty);
NWNX_CallFunction(NWNX_ItemProperty, sFunc);
return NWNX_GetReturnValueItemProperty(NWNX_ItemProperty, sFunc);
}
struct NWNX_IPUnpacked NWNX_ItemProperty_GetActiveProperty(object oItem, int nIndex)
{
string sFunc = "GetActiveProperty";
NWNX_PushArgumentInt(NWNX_ItemProperty, sFunc, nIndex);
NWNX_PushArgumentObject(NWNX_ItemProperty, sFunc, oItem);
NWNX_CallFunction(NWNX_ItemProperty, sFunc);
struct NWNX_IPUnpacked n;
n.nProperty = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nSubType = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nCostTable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nCostTableValue = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nParam1 = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nParam1Value = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nUsesPerDay = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.nChanceToAppear = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.bUsable = NWNX_GetReturnValueInt(NWNX_ItemProperty, sFunc);
n.sTag = NWNX_GetReturnValueString(NWNX_ItemProperty, sFunc);
return n;
}