1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 03:40:14 +00:00
OpenMW/apps/openmw/mwclass/activator.hpp

56 lines
2.2 KiB
C++
Raw Normal View History

#ifndef GAME_MWCLASS_ACTIVATOR_H
#define GAME_MWCLASS_ACTIVATOR_H
2022-04-04 02:44:53 +02:00
#include "../mwworld/registeredclass.hpp"
namespace MWClass
{
2022-04-04 02:44:53 +02:00
class Activator final : public MWWorld::RegisteredClass<Activator>
{
2022-09-22 21:26:05 +03:00
friend MWWorld::RegisteredClass<Activator>;
2022-04-04 02:44:53 +02:00
2022-09-22 21:26:05 +03:00
Activator();
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
static int getSndGenTypeFromName(std::string_view name);
2018-10-14 20:37:40 +03:00
2022-09-22 21:26:05 +03:00
public:
void insertObjectRendering(const MWWorld::Ptr& ptr, const std::string& model,
MWRender::RenderingInterface& renderingInterface) const override;
///< Add reference into a cell for rendering
2022-09-22 21:26:05 +03:00
void insertObject(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
2022-09-22 21:26:05 +03:00
void insertObjectPhysics(const MWWorld::Ptr& ptr, const std::string& model, const osg::Quat& rotation,
MWPhysics::PhysicsSystem& physics) const override;
2022-09-22 21:26:05 +03:00
std::string_view getName(const MWWorld::ConstPtr& ptr) const override;
///< \return name or ID; can return an empty string.
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)
2022-09-22 21:26:05 +03:00
MWGui::ToolTipInfo getToolTipInfo(const MWWorld::ConstPtr& ptr, int count) const override;
///< @return the content of the tool tip to be displayed. raises exception if the object has no tooltip.
ESM::RefId getScript(const MWWorld::ConstPtr& ptr) const override;
2022-09-22 21:26:05 +03:00
///< Return name of the script attached to ptr
2022-09-22 21:26:05 +03:00
std::unique_ptr<MWWorld::Action> activate(const MWWorld::Ptr& ptr, const MWWorld::Ptr& actor) const override;
///< Generate action for activation
2013-08-28 11:36:22 -07:00
std::string_view getModel(const MWWorld::ConstPtr& ptr) const override;
2022-09-22 21:26:05 +03:00
bool useAnim() const override;
///< Whether or not to use animated variant of model (default false)
2022-09-22 21:26:05 +03:00
bool isActivator() const override;
ESM::RefId getSoundIdFromSndGen(const MWWorld::Ptr& ptr, std::string_view name) const override;
};
}
#endif