mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
c27351c19e
AddItem, RemoveItem, GetItemName, GetItemCount, GetItemHealth, GetInventorySize SendInventory Example: ```lua tes3mp.AddItem(pid, "glass dagger", 1, 50) tes3mp.AddItem(pid, "glass dagger", 1, -1) tes3mp.SendInventory(pid) tes3mp.RemoveItem(pid, "glass dagger", 1) tes3mp.SendInventory(pid) local invSize = tes3mp.GetInventorySize(pid) - 1 for i = 0, invSize do print(("%s %d %d"):format(tes3mp.GetItemName(pid, i), tes3mp.GetItemCount(pid, i), tes3mp.GetItemHealth(pid, i))) end ```
129 lines
3.6 KiB
C++
129 lines
3.6 KiB
C++
//
|
|
// Created by koncord on 02.03.16.
|
|
//
|
|
|
|
#include "Items.hpp"
|
|
#include <apps/openmw-mp/Script/ScriptFunctions.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <apps/openmw-mp/Networking.hpp>
|
|
#include <components/misc/stringops.hpp>
|
|
|
|
using namespace mwmp;
|
|
|
|
void ItemFunctions::AddItem(unsigned short pid, const char* itemName, unsigned int count, int health) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player,);
|
|
|
|
Item item;
|
|
item.refid = itemName;
|
|
item.count = count;
|
|
item.health = health;
|
|
|
|
player->inventorySendBuffer.items.push_back(item);
|
|
player->inventorySendBuffer.action = Inventory::ADDITEM;
|
|
}
|
|
|
|
void ItemFunctions::EquipItem(unsigned short pid, unsigned short slot, const char *itemName, unsigned int count, int health) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player,);
|
|
|
|
player->EquipedItem(slot)->refid = itemName;
|
|
player->EquipedItem(slot)->count = count;
|
|
player->EquipedItem(slot)->health = health;
|
|
}
|
|
|
|
void ItemFunctions::UnequipItem(unsigned short pid, unsigned short slot) noexcept
|
|
{
|
|
LOG_MESSAGE(Log::LOG_WARN, "%s", "stub");
|
|
//ItemFunctions::EquipItem(pid, slot, "", 0);
|
|
}
|
|
|
|
const char *ItemFunctions::GetItemSlot(unsigned short pid, unsigned short slot) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, 0);
|
|
|
|
return player->EquipedItem(slot)->refid.c_str();
|
|
}
|
|
|
|
bool ItemFunctions::HasItemEquipped(unsigned short pid, const char* itemName)
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, false);
|
|
|
|
for (int slot = 0; slot < 27; slot ++)
|
|
if (Misc::StringUtils::ciEqual(player->EquipedItem(slot)->refid, itemName))
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
void ItemFunctions::RemoveItem(unsigned short pid, const char* itemName, unsigned short count) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player,);
|
|
|
|
Item item;
|
|
item.refid = itemName;
|
|
item.count = count;
|
|
|
|
player->inventorySendBuffer.items.clear();
|
|
player->inventorySendBuffer.items.push_back(item);
|
|
player->inventorySendBuffer.action = Inventory::REMOVEITEM;
|
|
}
|
|
void ItemFunctions::GetItemCount(unsigned short pid, const char* itemName) noexcept
|
|
{
|
|
LOG_MESSAGE(Log::LOG_WARN, "%s", "stub");
|
|
}
|
|
|
|
const char *ItemFunctions::GetItemName(unsigned short pid, unsigned int i) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, "");
|
|
|
|
return player->inventory.items.at(i).refid.c_str();
|
|
}
|
|
|
|
int ItemFunctions::GetItemCount2(unsigned short pid, unsigned int i) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, 0);
|
|
|
|
return player->inventory.items.at(i).count;
|
|
}
|
|
|
|
int ItemFunctions::GetItemHealth(unsigned short pid, unsigned int i) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, 0);
|
|
|
|
return player->inventory.items.at(i).health;
|
|
}
|
|
|
|
unsigned int ItemFunctions::GetInventorySize(unsigned short pid) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, 0);
|
|
|
|
return player->inventory.count;
|
|
}
|
|
|
|
void ItemFunctions::SendEquipment(unsigned short pid) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, );
|
|
|
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_EQUIPMENT)->Send(player, false);
|
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_EQUIPMENT)->Send(player, true);
|
|
}
|
|
|
|
void ItemFunctions::SendInventory(unsigned short pid) noexcept
|
|
{
|
|
Player *player;
|
|
GET_PLAYER(pid, player, );
|
|
std::swap(player->inventory, player->inventorySendBuffer);
|
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_INVENTORY)->Send(player, false);
|
|
player->inventory = std::move(player->inventorySendBuffer);
|
|
player->inventorySendBuffer.items.clear();
|
|
}
|