mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
#include "companionitemmodel.hpp"
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
namespace
|
|
{
|
|
|
|
void modifyProfit(const MWWorld::Ptr& actor, int diff)
|
|
{
|
|
std::string script = actor.getClass().getScript(actor);
|
|
if (!script.empty())
|
|
{
|
|
int profit = actor.getRefData().getLocals().getIntVar(script, "minimumprofit");
|
|
profit += diff;
|
|
actor.getRefData().getLocals().setVarByInt(script, "minimumprofit", profit);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
CompanionItemModel::CompanionItemModel(const MWWorld::Ptr &actor)
|
|
: InventoryItemModel(actor)
|
|
{
|
|
}
|
|
|
|
MWWorld::Ptr CompanionItemModel::copyItem (const ItemStack& item, size_t count, bool allowAutoEquip)
|
|
{
|
|
if (hasProfit(mActor))
|
|
modifyProfit(mActor, item.mBase.getClass().getValue(item.mBase) * count);
|
|
|
|
return InventoryItemModel::copyItem(item, count, allowAutoEquip);
|
|
}
|
|
|
|
void CompanionItemModel::removeItem (const ItemStack& item, size_t count)
|
|
{
|
|
if (hasProfit(mActor))
|
|
modifyProfit(mActor, -item.mBase.getClass().getValue(item.mBase) * count);
|
|
|
|
InventoryItemModel::removeItem(item, count);
|
|
}
|
|
|
|
bool CompanionItemModel::hasProfit(const MWWorld::Ptr &actor)
|
|
{
|
|
std::string script = actor.getClass().getScript(actor);
|
|
if (script.empty())
|
|
return false;
|
|
return actor.getRefData().getLocals().hasVar(script, "minimumprofit");
|
|
}
|
|
}
|