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

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-09-22 21:26:05 +03:00
friend MWWorld::RegisteredClass<CreatureLevList>;
2022-04-04 02:44:53 +02:00
2022-09-22 21:26:05 +03:00
CreatureLevList();
2022-04-04 02:44:53 +02:00
2022-09-22 21:26:05 +03:00
void ensureCustomData(const MWWorld::Ptr& ptr) const;
2022-09-22 21:26:05 +03:00
public:
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-09-22 21:26:05 +03: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
2022-09-22 21:26:05 +03:00
void insertObjectRendering(const MWWorld::Ptr& ptr, const std::string& model,
MWRender::RenderingInterface& renderingInterface) const override;
///< Add reference into a cell for rendering
2016-02-09 03:06:00 +01:00
2022-09-22 21:26:05 +03:00
void readAdditionalState(const MWWorld::Ptr& ptr, const ESM::ObjectState& state) const override;
///< Read additional state from \a state into \a ptr.
2022-09-22 21:26:05 +03:00
void writeAdditionalState(const MWWorld::ConstPtr& ptr, ESM::ObjectState& state) const override;
///< Write additional state from \a ptr into \a state.
2022-09-22 21:26:05 +03:00
void respawn(const MWWorld::Ptr& ptr) const override;
2022-09-22 21:26:05 +03:00
MWWorld::Ptr copyToCellImpl(const MWWorld::ConstPtr& ptr, MWWorld::CellStore& cell) const override;
2022-09-22 21:26:05 +03:00
void adjustPosition(const MWWorld::Ptr& ptr, bool force) const override;
2010-08-03 15:24:44 +02:00
};
}
#endif