1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 00:35:23 +00:00
OpenMW/apps/openmw/mwworld/actionopen.cpp

29 lines
691 B
C++
Raw Normal View History

2012-04-15 17:52:39 +02:00
#include "actionopen.hpp"
2012-05-11 11:52:07 +02:00
#include "../mwbase/environment.hpp"
#include "../mwbase/windowmanager.hpp"
#include "../mwmechanics/disease.hpp"
#include "class.hpp"
#include "containerstore.hpp"
2012-04-15 17:52:39 +02:00
namespace MWWorld
{
ActionOpen::ActionOpen (const MWWorld::Ptr& container, bool loot)
: Action (false, container)
, mLoot(loot)
{
2012-04-15 17:52:39 +02:00
}
void ActionOpen::executeImp (const MWWorld::Ptr& actor)
2012-04-15 17:52:39 +02:00
{
if (!MWBase::Environment::get().getWindowManager()->isAllowed(MWGui::GW_Inventory))
return;
MWMechanics::diseaseContact(actor, getTarget());
2015-03-11 20:04:25 +01:00
MWBase::Environment::get().getWindowManager()->openContainer(getTarget(), mLoot);
2012-04-15 17:52:39 +02:00
}
}