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

24 lines
735 B
C++
Raw Normal View History

2010-08-07 18:25:17 +00:00
#include "actiontake.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/world.hpp"
#include "../mwbase/windowmanager.hpp"
2014-01-07 18:49:16 +00:00
#include "../mwbase/mechanicsmanager.hpp"
2010-08-07 18:25:17 +00:00
#include "class.hpp"
#include "containerstore.hpp"
2010-08-07 18:25:17 +00:00
namespace MWWorld
{
2012-09-04 18:56:28 +00:00
ActionTake::ActionTake (const MWWorld::Ptr& object) : Action (true, object) {}
2010-08-07 18:25:17 +00:00
void ActionTake::executeImp (const Ptr& actor)
2010-08-07 18:25:17 +00:00
{
2014-01-07 18:49:16 +00: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 18:25:17 +00:00
}
}