2010-08-03 15:24:44 +02:00
|
|
|
#ifndef GAME_MWCLASS_CONTAINER_H
|
|
|
|
#define GAME_MWCLASS_CONTAINER_H
|
|
|
|
|
|
|
|
#include "../mwworld/class.hpp"
|
2020-10-13 17:46:32 +02:00
|
|
|
#include "../mwworld/containerstore.hpp"
|
|
|
|
#include "../mwworld/customdata.hpp"
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
struct Container;
|
|
|
|
struct InventoryState;
|
|
|
|
}
|
2010-08-03 15:24:44 +02:00
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
2021-04-03 12:59:44 +02:00
|
|
|
class ContainerCustomData : public MWWorld::TypedCustomData<ContainerCustomData>
|
2020-10-13 17:46:32 +02:00
|
|
|
{
|
|
|
|
MWWorld::ContainerStore mStore;
|
|
|
|
public:
|
|
|
|
ContainerCustomData(const ESM::Container& container, MWWorld::CellStore* cell);
|
|
|
|
ContainerCustomData(const ESM::InventoryState& inventory);
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
ContainerCustomData& asContainerCustomData() override;
|
|
|
|
const ContainerCustomData& asContainerCustomData() const override;
|
2020-10-13 17:46:32 +02:00
|
|
|
|
|
|
|
friend class Container;
|
|
|
|
};
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
class Container : public MWWorld::Class
|
|
|
|
{
|
2020-12-07 19:04:32 +01:00
|
|
|
bool mHarvestEnabled;
|
|
|
|
|
2012-01-27 14:55:58 +01:00
|
|
|
void ensureCustomData (const MWWorld::Ptr& ptr) const;
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
MWWorld::Ptr copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const override;
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2020-12-07 19:04:32 +01:00
|
|
|
bool canBeHarvested(const MWWorld::ConstPtr& ptr) const;
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
public:
|
2020-12-07 19:04:32 +01:00
|
|
|
Container();
|
2010-08-03 15:24:44 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const override;
|
2010-08-14 10:02:54 +02:00
|
|
|
///< Add reference into a cell for rendering
|
|
|
|
|
2021-09-30 22:58:16 +02:00
|
|
|
void insertObject(const MWWorld::Ptr& ptr, const std::string& model, const osg::Quat& rotation, MWPhysics::PhysicsSystem& physics) const override;
|
|
|
|
void insertObjectPhysics(const MWWorld::Ptr& ptr, const std::string& model, const osg::Quat& rotation, MWPhysics::PhysicsSystem& physics) const override;
|
2011-11-11 23:01:12 -05:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
std::string getName (const MWWorld::ConstPtr& ptr) const override;
|
2019-09-11 00:06:50 +03:00
|
|
|
///< \return name or ID; can return an empty string.
|
2010-08-03 15:24:44 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
std::shared_ptr<MWWorld::Action> activate (const MWWorld::Ptr& ptr,
|
|
|
|
const MWWorld::Ptr& actor) const override;
|
2012-02-27 16:37:05 +02:00
|
|
|
///< Generate action for activation
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
bool hasToolTip (const MWWorld::ConstPtr& ptr) const override;
|
2019-09-10 21:56:10 +03:00
|
|
|
///< @return true if this object has a tooltip when focused (default implementation: true)
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
MWGui::ToolTipInfo getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const override;
|
2012-04-16 22:58:16 +02:00
|
|
|
///< @return the content of the tool tip to be displayed. raises exception if the object has no tooltip.
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
MWWorld::ContainerStore& getContainerStore (const MWWorld::Ptr& ptr) const override;
|
2010-08-04 14:37:23 +02:00
|
|
|
///< Return container store
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
std::string getScript (const MWWorld::ConstPtr& ptr) const override;
|
2010-08-05 15:40:03 +02:00
|
|
|
///< Return name of the script attached to ptr
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
float getCapacity (const MWWorld::Ptr& ptr) const override;
|
2012-05-15 21:34:00 +02:00
|
|
|
///< Return total weight that fits into the object. Throws an exception, if the object can't
|
|
|
|
/// hold other objects.
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
float getEncumbrance (const MWWorld::Ptr& ptr) const override;
|
2012-05-15 21:34:00 +02:00
|
|
|
///< Returns total weight of objects inside this object (including modifications from magic
|
2012-05-15 21:17:00 +02:00
|
|
|
/// effects). Throws an exception, if the object can't hold other objects.
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
bool canLock(const MWWorld::ConstPtr &ptr) const override;
|
2015-08-04 17:33:34 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void readAdditionalState (const MWWorld::Ptr& ptr, const ESM::ObjectState& state)
|
|
|
|
const override;
|
2014-01-31 13:25:32 +01:00
|
|
|
///< Read additional state from \a state into \a ptr.
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void writeAdditionalState (const MWWorld::ConstPtr& ptr, ESM::ObjectState& state) const override;
|
2014-01-31 13:25:32 +01:00
|
|
|
///< Write additional state from \a ptr into \a state.
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
static void registerSelf();
|
2012-07-24 20:22:11 +04:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void respawn (const MWWorld::Ptr& ptr) const override;
|
2014-05-17 09:05:41 +02:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
std::string getModel(const MWWorld::ConstPtr &ptr) const override;
|
2017-02-20 19:04:02 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
bool useAnim() const override;
|
2020-10-20 09:22:43 +00:00
|
|
|
|
|
|
|
void modifyBaseInventory(const std::string& containerId, const std::string& itemId, int amount) const override;
|
2010-08-03 15:24:44 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|