|
|
|
#include "book.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadbook.hpp>
|
|
|
|
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
#include "../mwbase/soundmanager.hpp"
|
|
|
|
#include "../mwbase/windowmanager.hpp"
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include "../mwworld/actionread.hpp"
|
|
|
|
#include "../mwworld/cellstore.hpp"
|
|
|
|
#include "../mwworld/physicssystem.hpp"
|
|
|
|
|
|
|
|
#include "../mwrender/objects.hpp"
|
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
|
|
|
|
|
|
|
#include "../mwgui/tooltips.hpp"
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
|
|
|
void Book::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if (!model.empty()) {
|
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
|
|
|
objects.insertMesh(ptr, model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Book::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if(!model.empty())
|
|
|
|
physics.addObject(ptr,true);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getModel(const MWWorld::Ptr &ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
assert(ref->mBase != NULL);
|
|
|
|
|
|
|
|
const std::string &model = ref->mBase->mModel;
|
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return ref->mBase->mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Book::activate (const MWWorld::Ptr& ptr,
|
|
|
|
const MWWorld::Ptr& actor) const
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action> (
|
|
|
|
new MWWorld::ActionRead (ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return ref->mBase->mScript;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Book::getValue (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return ref->mBase->mData.mValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Book::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Book);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Book).name(), instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getUpSoundId (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
return std::string("Item Book Up");
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getDownSoundId (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
return std::string("Item Book Down");
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getInventoryIcon (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return ref->mBase->mIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Book::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return (ref->mBase->mName != "");
|
|
|
|
}
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo Book::getToolTipInfo (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
|
|
|
info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
|
|
|
info.icon = ref->mBase->mIcon;
|
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight);
|
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
|
|
|
|
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mRef.mOwner, "Owner");
|
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
|
|
|
}
|
|
|
|
|
|
|
|
info.enchant = ref->mBase->mEnchant;
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Book::getEnchantment (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return ref->mBase->mEnchant;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Book::use (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action>(new MWWorld::ActionRead(ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
MWWorld::Ptr
|
|
|
|
Book::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Book> *ref =
|
|
|
|
ptr.get<ESM::Book>();
|
|
|
|
|
|
|
|
return MWWorld::Ptr(&cell.mBooks.insert(*ref), &cell);
|
|
|
|
}
|
|
|
|
}
|