// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "scene/SceneComponent.hpp" namespace Dawn { class SceneItem; class SceneItemComponents { protected: std::vector> components; /** * Shorthand way of allowing this class to retreive itself as a SceneItem. * * @return This as a shared pointer to a SceneItem. */ virtual std::shared_ptr sceneItemComponentsSelf() = 0; public: SceneItemComponents(); /** * Removes a component from this item. * * @param component Component to remove. */ void removeComponent(const std::shared_ptr component); /** * Adds a component to this item. You are given a shared pointer back but * you are not intended to take responsibility for the component. * * @return Shared pointer to the created component. */ template std::shared_ptr addComponent() { //Create the component and add it. std::shared_ptr component = std::make_shared(); this->components.push_back( static_pointer_cast(component) ); // Init compoonent and return component->init(sceneItemComponentsSelf()); return component; } virtual ~SceneItemComponents(); }; }