2010-08-03 11:03:08 +00:00
|
|
|
|
|
|
|
#include "activator.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadacti.hpp>
|
|
|
|
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-08-12 16:11:09 +00:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld//cellstore.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwworld/physicssystem.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwgui/tooltips.hpp"
|
2010-08-14 08:02:54 +00:00
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
namespace MWClass
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
2011-11-12 04:01:12 +00:00
|
|
|
void Activator::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
2012-07-24 16:22:11 +00:00
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if (!model.empty()) {
|
2011-11-19 06:01:19 +00:00
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
2011-11-12 04:01:12 +00:00
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
2012-07-24 16:22:11 +00:00
|
|
|
objects.insertMesh(ptr, model);
|
2010-08-14 08:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
void Activator::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
2012-07-24 16:22:11 +00:00
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if(!model.empty()) {
|
|
|
|
physics.insertObjectPhysics(ptr, model);
|
|
|
|
}
|
|
|
|
}
|
2012-08-12 16:11:09 +00:00
|
|
|
|
2012-07-24 16:22:11 +00:00
|
|
|
std::string Activator::getModel(const MWWorld::Ptr &ptr) const
|
2011-11-12 04:01:12 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2011-11-12 04:01:12 +00:00
|
|
|
ptr.get<ESM::Activator>();
|
2012-07-24 16:22:11 +00:00
|
|
|
assert(ref->base != NULL);
|
2011-11-12 04:01:12 +00:00
|
|
|
|
|
|
|
const std::string &model = ref->base->model;
|
2012-07-24 16:22:11 +00:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2011-11-12 04:01:12 +00:00
|
|
|
}
|
2012-07-24 16:22:11 +00:00
|
|
|
return "";
|
2011-11-12 04:01:12 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Activator::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2010-08-03 15:11:41 +00:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Activator::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2010-08-05 13:40:03 +00:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 11:03:08 +00:00
|
|
|
void Activator::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Activator);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Activator).name(), instance);
|
|
|
|
}
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
bool Activator::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return (ref->base->name != "");
|
|
|
|
}
|
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
MWGui::ToolTipInfo Activator::getToolTipInfo (const MWWorld::Ptr& ptr) const
|
2012-04-16 20:58:16 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-05-12 11:46:03 +00:00
|
|
|
info.caption = ref->base->name + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
std::string text;
|
2012-04-24 00:02:03 +00:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp())
|
2012-04-16 20:58:16 +00:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->base->script, "Script");
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-07-25 13:18:17 +00:00
|
|
|
|
|
|
|
MWWorld::Ptr
|
2012-07-26 12:14:11 +00:00
|
|
|
Activator::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Activator> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return MWWorld::Ptr(&cell.activators.insert(*ref), &cell);
|
|
|
|
}
|
2010-08-03 11:03:08 +00:00
|
|
|
}
|