2010-08-03 13:24:44 +00:00
|
|
|
#include "book.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadbook.hpp>
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 10:30:50 +00:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-09 12:33:21 +00:00
|
|
|
#include "../mwbase/soundmanager.hpp"
|
2012-08-12 16:11:09 +00:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 13:27:03 +00:00
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-05-03 03:26:05 +00:00
|
|
|
#include "../mwworld/actionread.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwworld/physicssystem.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2012-01-27 14:11:02 +00:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2010-08-14 08:02:54 +00:00
|
|
|
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwgui/tooltips.hpp"
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2011-11-12 04:01:12 +00:00
|
|
|
void Book::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 Book::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
2012-07-24 16:22:11 +00:00
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
2012-11-05 18:40:02 +00:00
|
|
|
if(!model.empty())
|
2013-03-14 02:04:02 +00:00
|
|
|
physics.addObject(ptr,true);
|
2012-07-24 16:22:11 +00:00
|
|
|
}
|
2012-08-09 12:33:21 +00:00
|
|
|
|
2012-07-24 16:22:11 +00:00
|
|
|
std::string Book::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::Book> *ref =
|
2011-11-12 04:01:12 +00:00
|
|
|
ptr.get<ESM::Book>();
|
2012-11-05 12:07:59 +00:00
|
|
|
assert(ref->mBase != NULL);
|
2011-11-12 04:01:12 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
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 Book::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2010-08-03 15:11:41 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mName;
|
2010-08-03 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2010-08-07 18:25:17 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> Book::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 13:27:03 +00:00
|
|
|
const MWWorld::Ptr& actor) const
|
2010-08-07 18:25:17 +00:00
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action> (
|
2012-05-03 03:26:05 +00:00
|
|
|
new MWWorld::ActionRead (ptr));
|
2010-08-07 18:25:17 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Book::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2010-08-05 13:40:03 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 13:40:03 +00:00
|
|
|
}
|
|
|
|
|
2012-04-07 17:53:49 +00:00
|
|
|
int Book::getValue (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2012-04-07 17:53:49 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 17:53:49 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Book::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Book);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Book).name(), instance);
|
|
|
|
}
|
2012-03-13 16:50:32 +00:00
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Book::getUpSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Book Up");
|
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Book::getDownSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Book Down");
|
|
|
|
}
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-04-15 15:52:39 +00:00
|
|
|
std::string Book::getInventoryIcon (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2012-04-15 15:52:39 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mIcon;
|
2012-04-15 15:52:39 +00:00
|
|
|
}
|
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
bool Book::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return (ref->mBase->mName != "");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
MWGui::ToolTipInfo Book::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::Book> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-11-05 12:07:59 +00:00
|
|
|
info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight);
|
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2012-11-05 12:07:59 +00:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mRef.mOwner, "Owner");
|
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
info.enchant = ref->mBase->mEnchant;
|
2012-04-29 22:57:41 +00:00
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-05-12 19:44:33 +00:00
|
|
|
|
|
|
|
std::string Book::getEnchantment (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
2012-05-12 19:44:33 +00:00
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mEnchant;
|
2012-05-12 19:44:33 +00:00
|
|
|
}
|
2012-05-15 16:05:53 +00:00
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Book::use (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action>(new MWWorld::ActionRead(ptr));
|
|
|
|
}
|
|
|
|
|
2012-07-25 13:18:17 +00:00
|
|
|
MWWorld::Ptr
|
2012-07-26 12:14:11 +00:00
|
|
|
Book::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return MWWorld::Ptr(&cell.mBooks.insert(*ref), &cell);
|
2012-07-25 13:18:17 +00:00
|
|
|
}
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|