1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/openmw/mwworld/actiontake.cpp

24 lines
735 B
C++
Raw Normal View History

2010-08-07 20:25:17 +02:00
#include "actiontake.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/world.hpp"
#include "../mwbase/windowmanager.hpp"
2014-01-07 19:49:16 +01:00
#include "../mwbase/mechanicsmanager.hpp"
2010-08-07 20:25:17 +02:00
#include "class.hpp"
#include "containerstore.hpp"
2010-08-07 20:25:17 +02:00
namespace MWWorld
{
2012-09-04 20:56:28 +02:00
ActionTake::ActionTake (const MWWorld::Ptr& object) : Action (true, object) {}
2010-08-07 20:25:17 +02:00
void ActionTake::executeImp (const Ptr& actor)
2010-08-07 20:25:17 +02:00
{
2014-01-07 19:49:16 +01:00
MWBase::Environment::get().getMechanicsManager()->itemTaken(
actor, getTarget(), getTarget().getRefData().getCount());
actor.getClass().getContainerStore (actor).add (getTarget(), getTarget().getRefData().getCount(), actor);
MWBase::Environment::get().getWorld()->deleteObject (getTarget());
2010-08-07 20:25:17 +02:00
}
}