2010-08-03 13:03:08 +02:00
|
|
|
|
|
|
|
#include "activator.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadacti.hpp>
|
|
|
|
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2013-01-16 14:37:32 -08:00
|
|
|
#include "../mwbase/mechanicsmanager.hpp"
|
2013-08-28 11:36:22 -07:00
|
|
|
#include "../mwbase/world.hpp"
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwworld//cellstore.hpp"
|
2010-08-03 17:11:41 +02:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwworld/physicssystem.hpp"
|
2013-08-28 11:36:22 -07:00
|
|
|
#include "../mwworld/action.hpp"
|
|
|
|
#include "../mwworld/failedaction.hpp"
|
|
|
|
#include "../mwworld/nullaction.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
|
2013-01-16 14:37:32 -08:00
|
|
|
#include "../mwrender/actors.hpp"
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwgui/tooltips.hpp"
|
2010-08-14 10:02:54 +02:00
|
|
|
|
2013-08-28 11:36:22 -07:00
|
|
|
#include "../mwmechanics/npcstats.hpp"
|
|
|
|
|
|
|
|
|
2010-08-03 13:17:31 +02:00
|
|
|
namespace MWClass
|
2010-08-03 13:03:08 +02:00
|
|
|
{
|
2013-08-28 11:36:22 -07:00
|
|
|
void Activator::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 10:02:54 +02:00
|
|
|
{
|
2012-07-24 20:22:11 +04:00
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if (!model.empty()) {
|
2013-01-16 14:37:32 -08:00
|
|
|
MWRender::Actors& actors = renderingInterface.getActors();
|
|
|
|
actors.insertActivator(ptr);
|
2010-08-14 10:02:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 15:27:03 +02:00
|
|
|
void Activator::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
2012-07-24 20:22:11 +04:00
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
2012-11-05 18:40:02 +00:00
|
|
|
if(!model.empty())
|
|
|
|
physics.addObject(ptr);
|
2013-01-28 23:39:11 -08:00
|
|
|
MWBase::Environment::get().getMechanicsManager()->add(ptr);
|
2012-07-24 20:22:11 +04:00
|
|
|
}
|
2012-08-12 18:11:09 +02:00
|
|
|
|
2012-07-24 20:22:11 +04:00
|
|
|
std::string Activator::getModel(const MWWorld::Ptr &ptr) const
|
2011-11-11 23:01:12 -05:00
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2011-11-11 23:01:12 -05:00
|
|
|
ptr.get<ESM::Activator>();
|
2012-11-05 16:07:59 +04:00
|
|
|
assert(ref->mBase != NULL);
|
2011-11-11 23:01:12 -05:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-07-24 20:22:11 +04:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
2012-07-24 20:22:11 +04:00
|
|
|
return "";
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
std::string Activator::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2010-08-03 17:11:41 +02:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mName;
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2010-08-05 15:40:03 +02:00
|
|
|
std::string Activator::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2010-08-05 15:40:03 +02:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 15:40:03 +02:00
|
|
|
}
|
|
|
|
|
2010-08-03 13:03:08 +02:00
|
|
|
void Activator::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Activator);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Activator).name(), instance);
|
|
|
|
}
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
bool Activator::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2012-04-16 22:58:16 +02:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return (ref->mBase->mName != "");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
2012-04-24 02:02:03 +02:00
|
|
|
MWGui::ToolTipInfo Activator::getToolTipInfo (const MWWorld::Ptr& ptr) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2012-06-29 18:54:23 +02:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2012-04-16 22:58:16 +02:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-11-05 16:07:59 +04:00
|
|
|
info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
std::string text;
|
2012-04-24 02:02:03 +02:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp())
|
2014-01-07 20:24:01 +01:00
|
|
|
{
|
2014-05-25 14:13:07 +02:00
|
|
|
text += MWGui::ToolTips::getMiscString(ptr.getCellRef().getOwner(), "Owner");
|
|
|
|
text += MWGui::ToolTips::getMiscString(ptr.getCellRef().getFaction(), "Faction");
|
2012-11-05 16:07:59 +04:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2014-01-07 20:24:01 +01:00
|
|
|
}
|
2012-04-16 22:58:16 +02:00
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2013-08-28 11:36:22 -07:00
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Activator::activate(const MWWorld::Ptr &ptr, const MWWorld::Ptr &actor) const
|
|
|
|
{
|
2014-05-22 20:37:22 +02:00
|
|
|
if(actor.getClass().isNpc() && actor.getClass().getNpcStats(actor).isWerewolf())
|
2013-08-28 11:36:22 -07:00
|
|
|
{
|
|
|
|
const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
|
|
|
|
const ESM::Sound *sound = store.get<ESM::Sound>().searchRandom("WolfActivator");
|
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> action(new MWWorld::FailedAction("#{sWerewolfRefusal}"));
|
|
|
|
if(sound) action->setSound(sound->mId);
|
|
|
|
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
return boost::shared_ptr<MWWorld::Action>(new MWWorld::NullAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-25 17:18:17 +04:00
|
|
|
MWWorld::Ptr
|
2012-07-26 16:14:11 +04:00
|
|
|
Activator::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 17:18:17 +04:00
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
2014-02-23 21:21:27 +01:00
|
|
|
return MWWorld::Ptr(&cell.get<ESM::Activator>().insert(*ref), &cell);
|
2012-07-25 17:18:17 +04:00
|
|
|
}
|
2010-08-03 13:03:08 +02:00
|
|
|
}
|