#pragma once #include #include "../Component.h" #include "GameObject.h" namespace crepe { class ScriptSystem; class ComponentManager; class Script; /** * \brief Script component * * This class acts as a (component) wrapper around an instance of (a class derivatived from) \c * Script. \c BehaviorScript is the only ECS component that stores member function * implementations as data. */ class BehaviorScript : public Component { protected: /** * \param id Parent \c GameObject id * \param component_manager Reference to component manager (passed through to \c Script * instance) * * \note Calls to this constructor (should) always pass through \c GameObject::add_component, * which has an exception for this specific component type. This was done so the user does * not have to pass references used within \c Script to each \c BehaviorScript instance. */ BehaviorScript(game_object_id_t id, ComponentManager & component_manager); //! Only ComponentManager is allowed to instantiate BehaviorScript friend class ComponentManager; public: /** * \brief Set the concrete script of this component * * \tparam T Concrete script type (derived from \c crepe::Script) * * \returns Reference to BehaviorScript component (`*this`) */ template BehaviorScript & set_script(); protected: //! Script instance std::unique_ptr