mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 19:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			165 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
 | |
| #include "apparatus.hpp"
 | |
| 
 | |
| #include <components/esm/loadappa.hpp>
 | |
| 
 | |
| #include "../mwbase/environment.hpp"
 | |
| #include "../mwbase/world.hpp"
 | |
| #include "../mwbase/windowmanager.hpp"
 | |
| 
 | |
| #include "../mwworld/ptr.hpp"
 | |
| #include "../mwworld/actiontake.hpp"
 | |
| #include "../mwworld/actionalchemy.hpp"
 | |
| #include "../mwworld/cellstore.hpp"
 | |
| #include "../mwworld/physicssystem.hpp"
 | |
| #include "../mwworld/nullaction.hpp"
 | |
| 
 | |
| #include "../mwrender/objects.hpp"
 | |
| #include "../mwrender/renderinginterface.hpp"
 | |
| 
 | |
| #include "../mwgui/tooltips.hpp"
 | |
| 
 | |
| namespace MWClass
 | |
| {
 | |
|     void Apparatus::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
 | |
|     {
 | |
|         const std::string model = getModel(ptr);
 | |
|         if (!model.empty()) {
 | |
|             renderingInterface.getObjects().insertModel(ptr, model);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     void Apparatus::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
 | |
|     {
 | |
|         const std::string model = getModel(ptr);
 | |
|         if(!model.empty())
 | |
|             physics.addObject(ptr,true);
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getModel(const MWWorld::Ptr &ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
|         assert(ref->mBase != NULL);
 | |
| 
 | |
|         const std::string &model = ref->mBase->mModel;
 | |
|         if (!model.empty()) {
 | |
|             return "meshes\\" + model;
 | |
|         }
 | |
|         return "";
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getName (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return ref->mBase->mName;
 | |
|     }
 | |
| 
 | |
|     boost::shared_ptr<MWWorld::Action> Apparatus::activate (const MWWorld::Ptr& ptr,
 | |
|         const MWWorld::Ptr& actor) const
 | |
|     {
 | |
|         return defaultItemActivate(ptr, actor);
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getScript (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return ref->mBase->mScript;
 | |
|     }
 | |
| 
 | |
|     int Apparatus::getValue (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return ref->mBase->mData.mValue;
 | |
|     }
 | |
| 
 | |
|     void Apparatus::registerSelf()
 | |
|     {
 | |
|         boost::shared_ptr<Class> instance (new Apparatus);
 | |
| 
 | |
|         registerClass (typeid (ESM::Apparatus).name(), instance);
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getUpSoundId (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         return std::string("Item Apparatus Up");
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getDownSoundId (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         return std::string("Item Apparatus Down");
 | |
|     }
 | |
| 
 | |
|     std::string Apparatus::getInventoryIcon (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|           MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return ref->mBase->mIcon;
 | |
|     }
 | |
| 
 | |
|     bool Apparatus::hasToolTip (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return (ref->mBase->mName != "");
 | |
|     }
 | |
| 
 | |
|     MWGui::ToolTipInfo Apparatus::getToolTipInfo (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         MWGui::ToolTipInfo info;
 | |
|         info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
 | |
|         info.icon = ref->mBase->mIcon;
 | |
| 
 | |
|         std::string text;
 | |
|         text += "\n#{sQuality}: " + MWGui::ToolTips::toString(ref->mBase->mData.mQuality);
 | |
|         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(ptr.getCellRef().getOwner(), "Owner");
 | |
|             text += MWGui::ToolTips::getMiscString(ptr.getCellRef().getFaction(), "Faction");
 | |
|             text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
 | |
|         }
 | |
|         info.text = text;
 | |
| 
 | |
|         return info;
 | |
|     }
 | |
| 
 | |
| 
 | |
|     boost::shared_ptr<MWWorld::Action> Apparatus::use (const MWWorld::Ptr& ptr) const
 | |
|     {
 | |
|         return boost::shared_ptr<MWWorld::Action>(new MWWorld::ActionAlchemy());
 | |
|     }
 | |
| 
 | |
|     MWWorld::Ptr
 | |
|     Apparatus::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
| 
 | |
|         return MWWorld::Ptr(&cell.get<ESM::Apparatus>().insert(*ref), &cell);
 | |
|     }
 | |
| 
 | |
|     bool Apparatus::canSell (const MWWorld::Ptr& item, int npcServices) const
 | |
|     {
 | |
|         return npcServices & ESM::NPC::Apparatus;
 | |
|     }
 | |
| 
 | |
|     float Apparatus::getWeight(const MWWorld::Ptr &ptr) const
 | |
|     {
 | |
|         MWWorld::LiveCellRef<ESM::Apparatus> *ref =
 | |
|             ptr.get<ESM::Apparatus>();
 | |
|         return ref->mBase->mData.mWeight;
 | |
|     }
 | |
| }
 |