OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ingredient.hpp
Go to the documentation of this file.
1 #ifndef GAME_MWCLASS_INGREDIENT_H
2 #define GAME_MWCLASS_INGREDIENT_H
3 
4 #include "../mwworld/class.hpp"
5 
6 namespace MWClass
7 {
8  class Ingredient : public MWWorld::Class
9  {
10  virtual MWWorld::Ptr copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const;
11 
12  public:
13 
14  virtual void insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const;
16 
17  virtual void insertObject(const MWWorld::Ptr& ptr, const std::string& model, MWPhysics::PhysicsSystem& physics) const;
18 
19  virtual std::string getName (const MWWorld::ConstPtr& ptr) const;
22 
23  virtual boost::shared_ptr<MWWorld::Action> activate (const MWWorld::Ptr& ptr,
24  const MWWorld::Ptr& actor) const;
26 
27  virtual bool hasToolTip (const MWWorld::ConstPtr& ptr) const;
29 
30  virtual MWGui::ToolTipInfo getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const;
32 
33  virtual std::string getScript (const MWWorld::ConstPtr& ptr) const;
35 
36  virtual int getValue (const MWWorld::ConstPtr& ptr) const;
38 
39  virtual boost::shared_ptr<MWWorld::Action> use (const MWWorld::Ptr& ptr)
40  const;
42 
43  static void registerSelf();
44 
45  virtual std::string getUpSoundId (const MWWorld::ConstPtr& ptr) const;
47 
48  virtual std::string getDownSoundId (const MWWorld::ConstPtr& ptr) const;
50 
51  virtual std::string getInventoryIcon (const MWWorld::ConstPtr& ptr) const;
53 
54  virtual std::string getModel(const MWWorld::ConstPtr &ptr) const;
55 
56  virtual float getWeight (const MWWorld::ConstPtr& ptr) const;
57 
58  virtual bool canSell (const MWWorld::ConstPtr& item, int npcServices) const;
59  };
60 }
61 
62 #endif
Definition: tooltips.hpp:18
virtual std::string getDownSoundId(const MWWorld::ConstPtr &ptr) const
Return the put down sound Id.
Definition: ingredient.cpp:99
virtual MWWorld::Ptr copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
Definition: ingredient.cpp:167
Definition: renderinginterface.hpp:9
virtual void insertObject(const MWWorld::Ptr &ptr, const std::string &model, MWPhysics::PhysicsSystem &physics) const
Add reference into a cell for rendering (default implementation: don't render anything).
Definition: ingredient.cpp:34
Definition: physicssystem.hpp:51
virtual int getValue(const MWWorld::ConstPtr &ptr) const
Return trade value of the object. Throws an exception, if the object can't be traded.
Definition: ingredient.cpp:70
Base class for referenceable esm records.
Definition: class.hpp:52
Definition: ingredient.hpp:8
virtual float getWeight(const MWWorld::ConstPtr &ptr) const
Definition: ingredient.cpp:180
Mutable state of a cell.
Definition: cellstore.hpp:53
Pointer to a const LiveCellRef.
Definition: ptr.hpp:90
virtual MWGui::ToolTipInfo getToolTipInfo(const MWWorld::ConstPtr &ptr, int count) const
Definition: ingredient.cpp:118
virtual boost::shared_ptr< MWWorld::Action > use(const MWWorld::Ptr &ptr) const
Generate action for using via inventory menu.
Definition: ingredient.cpp:78
virtual bool canSell(const MWWorld::ConstPtr &item, int npcServices) const
Determine whether or not item can be sold to an npc with the given npcServices.
Definition: ingredient.cpp:174
static void registerSelf()
Definition: ingredient.cpp:87
virtual std::string getUpSoundId(const MWWorld::ConstPtr &ptr) const
Return the pick up sound Id.
Definition: ingredient.cpp:94
Pointer to a LiveCellRef.
Definition: ptr.hpp:19
virtual std::string getName(const MWWorld::ConstPtr &ptr) const
Definition: ingredient.cpp:50
virtual std::string getScript(const MWWorld::ConstPtr &ptr) const
Return name of the script attached to ptr.
Definition: ingredient.cpp:63
virtual std::string getModel(const MWWorld::ConstPtr &ptr) const
Definition: ingredient.cpp:39
virtual bool hasToolTip(const MWWorld::ConstPtr &ptr) const
Definition: ingredient.cpp:111
virtual void insertObjectRendering(const MWWorld::Ptr &ptr, const std::string &model, MWRender::RenderingInterface &renderingInterface) const
Add reference into a cell for rendering.
Definition: ingredient.cpp:27
virtual boost::shared_ptr< MWWorld::Action > activate(const MWWorld::Ptr &ptr, const MWWorld::Ptr &actor) const
Generate action for activation.
Definition: ingredient.cpp:57
virtual std::string getInventoryIcon(const MWWorld::ConstPtr &ptr) const
Return name of inventory icon.
Definition: ingredient.cpp:104