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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.5 KiB
C++
Raw Normal View History

2010-08-03 15:24:44 +02:00
#ifndef GAME_MWCLASS_CREATURELEVLIST_H
#define GAME_MWCLASS_CREATURELEVLIST_H
2022-04-04 02:44:53 +02:00
#include "../mwworld/registeredclass.hpp"
2010-08-03 15:24:44 +02:00
namespace MWClass
{
2022-04-04 02:44:53 +02:00
class CreatureLevList : public MWWorld::RegisteredClass<CreatureLevList>
2010-08-03 15:24:44 +02:00
{
2022-04-04 02:44:53 +02:00
friend MWWorld::RegisteredClass<CreatureLevList>;
CreatureLevList();
void ensureCustomData(const MWWorld::Ptr& ptr) const;
2010-08-03 15:24:44 +02:00
public:
2022-08-16 21:15:03 +02:00
std::string_view getName(const MWWorld::ConstPtr& ptr) const override;
///< \return name or ID; can return an empty string.
2010-08-03 15:24:44 +02:00
2022-08-16 21:15:03 +02:00
bool hasToolTip(const MWWorld::ConstPtr& ptr) const override;
///< @return true if this object has a tooltip when focused (default implementation: true)
2010-08-03 15:24:44 +02:00
void insertObjectRendering(const MWWorld::Ptr& ptr, const std::string& model,
MWRender::RenderingInterface& renderingInterface) const override;
2016-02-09 03:06:00 +01:00
///< Add reference into a cell for rendering
void readAdditionalState(const MWWorld::Ptr& ptr, const ESM::ObjectState& state) const override;
///< Read additional state from \a state into \a ptr.
void writeAdditionalState(const MWWorld::ConstPtr& ptr, ESM::ObjectState& state) const override;
///< Write additional state from \a ptr into \a state.
void respawn(const MWWorld::Ptr& ptr) const override;
MWWorld::Ptr copyToCellImpl(const MWWorld::ConstPtr& ptr, MWWorld::CellStore& cell) const override;
void adjustPosition(const MWWorld::Ptr& ptr, bool force) const override;
2010-08-03 15:24:44 +02:00
};
}
#endif