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