mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
62 lines
2.5 KiB
C++
62 lines
2.5 KiB
C++
//
|
|
// Created by koncord on 30.08.16.
|
|
//
|
|
|
|
#ifndef OPENMW_ITEMS_HPP
|
|
#define OPENMW_ITEMS_HPP
|
|
|
|
#define ITEMAPI \
|
|
{"GetEquipmentSize", ItemFunctions::GetEquipmentSize},\
|
|
{"GetInventorySize", ItemFunctions::GetInventorySize},\
|
|
\
|
|
{"EquipItem", ItemFunctions::EquipItem},\
|
|
{"UnequipItem", ItemFunctions::UnequipItem},\
|
|
\
|
|
{"AddItem", ItemFunctions::AddItem},\
|
|
{"RemoveItem", ItemFunctions::RemoveItem},\
|
|
{"ClearInventory", ItemFunctions::ClearInventory},\
|
|
\
|
|
{"HasItemEquipped", ItemFunctions::HasItemEquipped},\
|
|
\
|
|
{"GetEquipmentItemId", ItemFunctions::GetEquipmentItemId},\
|
|
{"GetEquipmentItemCount", ItemFunctions::GetEquipmentItemCount},\
|
|
{"GetEquipmentItemHealth", ItemFunctions::GetEquipmentItemHealth},\
|
|
\
|
|
{"GetInventoryItemId", ItemFunctions::GetInventoryItemId},\
|
|
{"GetInventoryItemCount", ItemFunctions::GetInventoryItemCount},\
|
|
{"GetInventoryItemHealth", ItemFunctions::GetInventoryItemHealth},\
|
|
\
|
|
{"SendEquipment", ItemFunctions::SendEquipment},\
|
|
{"SendInventory", ItemFunctions::SendInventory}
|
|
|
|
class ItemFunctions
|
|
{
|
|
public:
|
|
|
|
static int GetEquipmentSize() noexcept;
|
|
static unsigned int GetInventorySize(unsigned short pid) noexcept;
|
|
|
|
static void EquipItem(unsigned short pid, unsigned short slot, const char* itemName, unsigned int count, int health) noexcept;
|
|
static void UnequipItem(unsigned short pid, unsigned short slot) noexcept;
|
|
|
|
static void AddItem(unsigned short pid, const char* itemName, unsigned int count, int health) noexcept;
|
|
static void RemoveItem(unsigned short pid, const char* itemName, unsigned short count) noexcept;
|
|
static void ClearInventory(unsigned short pid) noexcept;
|
|
|
|
static bool HasItemEquipped(unsigned short pid, const char* itemName);
|
|
|
|
static const char *GetEquipmentItemId(unsigned short pid, unsigned short slot) noexcept;
|
|
static int GetEquipmentItemCount(unsigned short pid, unsigned short slot) noexcept;
|
|
static int GetEquipmentItemHealth(unsigned short pid, unsigned short slot) noexcept;
|
|
|
|
static const char *GetInventoryItemId(unsigned short pid, unsigned int i) noexcept;
|
|
static int GetInventoryItemCount(unsigned short pid, unsigned int i) noexcept;
|
|
static int GetInventoryItemHealth(unsigned short pid, unsigned int i) noexcept;
|
|
|
|
static void SendEquipment(unsigned short pid) noexcept;
|
|
static void SendInventory(unsigned short pid) noexcept;
|
|
private:
|
|
|
|
};
|
|
|
|
#endif //OPENMW_ITEMS_HPP
|