1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/openmw/mwclass/repair.cpp

154 lines
4.6 KiB
C++
Raw Normal View History

2010-08-03 15:24:44 +02:00
#include "repair.hpp"
2013-03-22 05:50:54 +01:00
#include <components/esm/loadrepa.hpp>
2010-08-03 15:24:44 +02:00
#include "../mwbase/environment.hpp"
#include "../mwbase/windowmanager.hpp"
2010-08-03 17:11:41 +02:00
#include "../mwworld/ptr.hpp"
#include "../mwworld/cellstore.hpp"
#include "../mwphysics/physicssystem.hpp"
2013-03-23 08:16:46 +01:00
#include "../mwworld/actionrepair.hpp"
#include "../mwgui/tooltips.hpp"
2010-08-03 17:11:41 +02:00
2012-01-27 15:11:02 +01:00
#include "../mwrender/objects.hpp"
#include "../mwrender/renderinginterface.hpp"
2012-01-27 15:11:02 +01:00
2010-08-03 15:24:44 +02:00
namespace MWClass
{
void Repair::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
{
2012-07-24 20:22:11 +04:00
if (!model.empty()) {
2013-08-07 03:51:57 -07:00
renderingInterface.getObjects().insertModel(ptr, model);
}
}
2015-12-18 15:51:05 +01:00
std::string Repair::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::Repair> *ref = ptr.get<ESM::Repair>();
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
}
std::string Repair::getName (const MWWorld::ConstPtr& ptr) const
2010-08-03 17:11:41 +02:00
{
const MWWorld::LiveCellRef<ESM::Repair> *ref = ptr.get<ESM::Repair>();
const std::string& name = ref->mBase->mName;
2010-08-03 17:11:41 +02:00
return !name.empty() ? name : ref->mBase->mId;
2010-08-03 17:11:41 +02:00
}
std::shared_ptr<MWWorld::Action> Repair::activate (const MWWorld::Ptr& ptr,
const MWWorld::Ptr& actor) const
2010-08-07 20:25:17 +02:00
{
2013-08-08 22:34:53 -07:00
return defaultItemActivate(ptr, actor);
2010-08-07 20:25:17 +02:00
}
2015-12-18 00:12:03 +01:00
std::string Repair::getScript (const MWWorld::ConstPtr& ptr) const
{
2015-12-18 00:12:03 +01:00
const MWWorld::LiveCellRef<ESM::Repair> *ref =
ptr.get<ESM::Repair>();
2012-11-05 16:07:59 +04:00
return ref->mBase->mScript;
}
int Repair::getValue (const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Repair> *ref = ptr.get<ESM::Repair>();
return ref->mBase->mData.mValue;
}
2010-08-03 15:24:44 +02:00
void Repair::registerSelf()
{
std::shared_ptr<Class> instance (new Repair);
2010-08-03 15:24:44 +02:00
registerClass (typeid (ESM::Repair).name(), instance);
}
2015-12-18 16:09:08 +01:00
std::string Repair::getUpSoundId (const MWWorld::ConstPtr& ptr) const
{
return std::string("Item Repair Up");
}
2015-12-18 16:09:08 +01:00
std::string Repair::getDownSoundId (const MWWorld::ConstPtr& ptr) const
{
return std::string("Item Repair Down");
}
2012-04-15 17:52:39 +02:00
2015-12-18 15:53:47 +01:00
std::string Repair::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::Repair> *ref = ptr.get<ESM::Repair>();
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
}
bool Repair::hasItemHealth (const MWWorld::ConstPtr& ptr) const
2013-03-23 08:16:46 +01:00
{
return true;
}
int Repair::getItemMaxHealth (const MWWorld::ConstPtr& ptr) const
2013-03-23 08:16:46 +01:00
{
const MWWorld::LiveCellRef<ESM::Repair> *ref = ptr.get<ESM::Repair>();
2013-03-23 08:16:46 +01:00
return ref->mBase->mData.mUses;
}
2015-12-19 16:29:07 +01:00
MWGui::ToolTipInfo Repair::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
{
const MWWorld::LiveCellRef<ESM::Repair> *ref = ptr.get<ESM::Repair>();
MWGui::ToolTipInfo info;
info.caption = MyGUI::TextIterator::toTagsString(getName(ptr)) + MWGui::ToolTips::getCountString(count);
2012-11-05 16:07:59 +04:00
info.icon = ref->mBase->mIcon;
std::string text;
int remainingUses = getItemHealth(ptr);
text += "\n#{sUses}: " + MWGui::ToolTips::toString(remainingUses);
2012-11-05 16:07:59 +04:00
text += "\n#{sQuality}: " + MWGui::ToolTips::toString(ref->mBase->mData.mQuality);
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
2012-11-05 16:07:59 +04:00
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
}
info.text = text;
return info;
}
2015-12-18 16:24:24 +01:00
MWWorld::Ptr Repair::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
{
2015-12-18 16:24:24 +01:00
const MWWorld::LiveCellRef<ESM::Repair> *ref = ptr.get<ESM::Repair>();
return MWWorld::Ptr(cell.insert(ref), &cell);
}
2013-03-23 08:16:46 +01:00
std::shared_ptr<MWWorld::Action> Repair::use (const MWWorld::Ptr& ptr, bool force) const
2013-03-23 08:16:46 +01:00
{
return std::shared_ptr<MWWorld::Action>(new MWWorld::ActionRepair(ptr, force));
2013-03-23 08:16:46 +01:00
}
2015-12-18 15:58:23 +01:00
bool Repair::canSell (const MWWorld::ConstPtr& item, int npcServices) const
{
return (npcServices & ESM::NPC::RepairItem) != 0;
}
2013-05-11 18:38:27 +02:00
2015-12-18 16:00:50 +01:00
float Repair::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::Repair> *ref = ptr.get<ESM::Repair>();
2013-05-11 18:38:27 +02:00
return ref->mBase->mData.mWeight;
}
2010-08-03 15:24:44 +02:00
}