2010-08-07 20:25:17 +02:00
|
|
|
|
|
|
|
#include "actiontake.hpp"
|
|
|
|
|
2012-04-23 15:27:03 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 12:30:50 +02:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2014-01-07 19:49:16 +01:00
|
|
|
#include "../mwbase/mechanicsmanager.hpp"
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2010-08-07 20:25:17 +02:00
|
|
|
#include "class.hpp"
|
2012-02-23 12:38:25 +01:00
|
|
|
#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
|
|
|
|
2013-02-17 15:56:22 +01: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());
|
2014-01-05 20:53:45 +01:00
|
|
|
actor.getClass().getContainerStore (actor).add (getTarget(), getTarget().getRefData().getCount(), actor);
|
2012-09-04 15:34:44 +02:00
|
|
|
MWBase::Environment::get().getWorld()->deleteObject (getTarget());
|
2010-08-07 20:25:17 +02:00
|
|
|
}
|
|
|
|
}
|