/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2024-05-16 * Changed: 2024-09-11 * * */ #ifndef LS_STD_EVENT_LISTENER_HPP #define LS_STD_EVENT_LISTENER_HPP #include "Event.hpp" #include "EventParameter.hpp" #include #include #include /* * @doc: class(name: 'EventListener', package: 'event') * @doc: event.EventListener.description('An instance of this class can listen to any event. Usually, this class is used as base class of any class that must listen to an event.') * */ namespace ls::std::event { class LS_STD_DYNAMIC_GOAL EventListener : public ::std::enable_shared_from_this, public ls::std::core::Class { public: explicit EventListener(); ~EventListener() noexcept override; [[nodiscard]] ls::std::event::type::listener_id getId() const; void setId(ls::std::event::type::listener_id _id); void setParameter(const ls::std::event::EventParameter &_parameter); [[maybe_unused]] bool subscribe(const ls::std::event::Event &_event, const ls::std::event::type::event_action &_action); [[maybe_unused]] bool unsubscribe(const ls::std::event::Event &_event); protected: ls::std::event::EventParameter parameter{}; private: ls::std::event::type::listener_id id{}; void _requestListenerId(const ::std::shared_ptr &_manager); [[nodiscard]] bool _subscribe(const ls::std::event::Event &_event, const ls::std::event::type::event_action &_action); [[nodiscard]] bool _unsubscribe(const ls::std::event::Event &_event); }; } #endif