2010-08-03 15:24:44 +02:00
|
|
|
#include "book.hpp"
|
|
|
|
|
2022-01-22 15:58:41 +01:00
|
|
|
#include <components/esm3/loadbook.hpp>
|
2010-08-03 15:24:44 +02:00
|
|
|
|
2012-04-23 15:27:03 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 12:30:50 +02:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-09 14:33:21 +02:00
|
|
|
#include "../mwbase/soundmanager.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-05-03 05:26:05 +02:00
|
|
|
#include "../mwworld/actionread.hpp"
|
2013-08-08 22:34:53 -07:00
|
|
|
#include "../mwworld/failedaction.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2014-12-19 11:26:54 +01:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
2015-05-10 01:09:00 +02:00
|
|
|
#include "../mwphysics/physicssystem.hpp"
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-01-27 15:11:02 +01:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2010-08-14 10:02:54 +02:00
|
|
|
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwgui/tooltips.hpp"
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2013-08-08 22:34:53 -07:00
|
|
|
#include "../mwmechanics/npcstats.hpp"
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2022-04-04 02:44:53 +02:00
|
|
|
Book::Book()
|
|
|
|
: MWWorld::RegisteredClass<Book>(ESM::Book::sRecordId)
|
|
|
|
{
|
|
|
|
}
|
2014-07-18 09:56:58 +02:00
|
|
|
|
2015-01-12 11:29:56 +01:00
|
|
|
void Book::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 10:02:54 +02:00
|
|
|
{
|
2012-07-24 20:22:11 +04:00
|
|
|
if (!model.empty()) {
|
2013-08-07 03:51:57 -07:00
|
|
|
renderingInterface.getObjects().insertModel(ptr, model);
|
2010-08-14 10:02:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-18 15:51:05 +01:00
|
|
|
std::string Book::getModel(const MWWorld::ConstPtr &ptr) const
|
2011-11-11 23:01:12 -05:00
|
|
|
{
|
2015-12-18 15:51:05 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
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
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
std::string Book::getName (const MWWorld::ConstPtr& ptr) const
|
2010-08-03 17:11:41 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2019-09-11 00:06:50 +03:00
|
|
|
const std::string& name = ref->mBase->mName;
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2019-09-11 00:06:50 +03:00
|
|
|
return !name.empty() ? name : ref->mBase->mId;
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2022-04-06 17:06:55 +02:00
|
|
|
std::unique_ptr<MWWorld::Action> Book::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 15:27:03 +02:00
|
|
|
const MWWorld::Ptr& actor) const
|
2010-08-07 20:25:17 +02:00
|
|
|
{
|
2014-05-22 20:37:22 +02:00
|
|
|
if(actor.getClass().isNpc() && actor.getClass().getNpcStats(actor).isWerewolf())
|
2013-08-08 22:34:53 -07:00
|
|
|
{
|
2013-08-11 00:35:19 -07:00
|
|
|
const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
|
2022-03-06 21:56:02 +02:00
|
|
|
auto& prng = MWBase::Environment::get().getWorld()->getPrng();
|
|
|
|
const ESM::Sound *sound = store.get<ESM::Sound>().searchRandom("WolfItem", prng);
|
2013-08-11 00:35:19 -07:00
|
|
|
|
2022-05-29 13:24:48 +02:00
|
|
|
std::unique_ptr<MWWorld::Action> action = std::make_unique<MWWorld::FailedAction>("#{sWerewolfRefusal}");
|
2013-08-11 00:35:19 -07:00
|
|
|
if(sound) action->setSound(sound->mId);
|
|
|
|
|
2013-08-08 22:34:53 -07:00
|
|
|
return action;
|
|
|
|
}
|
|
|
|
|
2022-05-29 13:24:48 +02:00
|
|
|
return std::make_unique<MWWorld::ActionRead>(ptr);
|
2010-08-07 20:25:17 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 00:12:03 +01:00
|
|
|
std::string Book::getScript (const MWWorld::ConstPtr& ptr) const
|
2010-08-05 15:40:03 +02:00
|
|
|
{
|
2015-12-18 00:12:03 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2010-08-05 15:40:03 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 15:40:03 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
int Book::getValue (const MWWorld::ConstPtr& ptr) const
|
2012-04-07 19:53:49 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2012-04-07 19:53:49 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 19:53:49 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Book::getUpSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 18:50:32 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Book Up");
|
|
|
|
}
|
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Book::getDownSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 18:50:32 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Book Down");
|
|
|
|
}
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2015-12-18 15:53:47 +01:00
|
|
|
std::string Book::getInventoryIcon (const MWWorld::ConstPtr& ptr) const
|
2012-04-15 17:52:39 +02:00
|
|
|
{
|
2015-12-18 15:53:47 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mIcon;
|
2012-04-15 17:52:39 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 16:29:07 +01:00
|
|
|
MWGui::ToolTipInfo Book::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2019-09-10 21:56:10 +03:00
|
|
|
info.caption = MyGUI::TextIterator::toTagsString(getName(ptr)) + MWGui::ToolTips::getCountString(count);
|
2012-11-05 16:07:59 +04:00
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
2016-08-14 19:37:22 +09:00
|
|
|
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
|
2014-06-12 21:49:18 +02:00
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2012-04-24 02:02:03 +02:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2014-07-22 20:03:35 +02:00
|
|
|
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
|
2012-11-05 16:07:59 +04:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
info.enchant = ref->mBase->mEnchant;
|
2012-04-30 00:57:41 +02:00
|
|
|
|
2012-04-16 22:58:16 +02:00
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-05-12 21:44:33 +02:00
|
|
|
|
2015-12-18 15:56:45 +01:00
|
|
|
std::string Book::getEnchantment (const MWWorld::ConstPtr& ptr) const
|
2012-05-12 21:44:33 +02:00
|
|
|
{
|
2015-12-18 15:56:45 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2012-05-12 21:44:33 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mEnchant;
|
2012-05-12 21:44:33 +02:00
|
|
|
}
|
2012-05-15 18:05:53 +02:00
|
|
|
|
2015-12-18 16:43:11 +01:00
|
|
|
std::string Book::applyEnchantment(const MWWorld::ConstPtr &ptr, const std::string& enchId, int enchCharge, const std::string& newName) const
|
2013-03-28 17:41:00 +01:00
|
|
|
{
|
2015-12-18 16:43:11 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2013-03-28 23:39:20 +01:00
|
|
|
|
|
|
|
ESM::Book newItem = *ref->mBase;
|
2022-05-04 22:33:39 +02:00
|
|
|
newItem.mId.clear();
|
2013-03-28 17:41:00 +01:00
|
|
|
newItem.mName=newName;
|
|
|
|
newItem.mData.mIsScroll = 1;
|
|
|
|
newItem.mData.mEnchant=enchCharge;
|
|
|
|
newItem.mEnchant=enchId;
|
|
|
|
const ESM::Book *record = MWBase::Environment::get().getWorld()->createRecord (newItem);
|
2014-05-24 14:48:37 +02:00
|
|
|
return record->mId;
|
2013-03-28 17:41:00 +01:00
|
|
|
}
|
|
|
|
|
2022-04-06 17:06:55 +02:00
|
|
|
std::unique_ptr<MWWorld::Action> Book::use (const MWWorld::Ptr& ptr, bool force) const
|
2012-05-15 18:05:53 +02:00
|
|
|
{
|
2022-05-29 13:24:48 +02:00
|
|
|
return std::make_unique<MWWorld::ActionRead>(ptr);
|
2012-05-15 18:05:53 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 16:24:24 +01:00
|
|
|
MWWorld::Ptr Book::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 17:18:17 +04:00
|
|
|
{
|
2015-12-18 16:24:24 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2015-11-14 17:12:05 +01:00
|
|
|
return MWWorld::Ptr(cell.insert(ref), &cell);
|
2012-07-25 17:18:17 +04:00
|
|
|
}
|
2013-03-28 17:41:00 +01:00
|
|
|
|
2015-12-18 16:48:19 +01:00
|
|
|
int Book::getEnchantmentPoints (const MWWorld::ConstPtr& ptr) const
|
2013-03-28 17:41:00 +01:00
|
|
|
{
|
2015-12-18 16:48:19 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2013-03-28 17:41:00 +01:00
|
|
|
|
2014-01-27 01:58:04 +01:00
|
|
|
return ref->mBase->mData.mEnchant;
|
2013-03-28 17:41:00 +01:00
|
|
|
}
|
2013-04-07 21:38:53 +02:00
|
|
|
|
2015-12-18 15:58:23 +01:00
|
|
|
bool Book::canSell (const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 21:38:53 +02:00
|
|
|
{
|
2014-09-01 02:04:44 +02:00
|
|
|
return (npcServices & ESM::NPC::Books)
|
|
|
|
|| ((npcServices & ESM::NPC::MagicItems) && !getEnchantment(item).empty());
|
2013-04-07 21:38:53 +02:00
|
|
|
}
|
2013-05-11 18:38:27 +02:00
|
|
|
|
2015-12-18 16:00:50 +01:00
|
|
|
float Book::getWeight(const MWWorld::ConstPtr &ptr) const
|
2013-05-11 18:38:27 +02:00
|
|
|
{
|
2015-12-18 16:00:50 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Book> *ref = ptr.get<ESM::Book>();
|
2013-05-11 18:38:27 +02:00
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2010-08-03 15:24:44 +02:00
|
|
|
}
|