| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- //
- // Copyright (c) 2008-2015 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "../Container/LinkedList.h"
- #include "../Core/Variant.h"
- namespace Urho3D
- {
- class Context;
- class EventHandler;
- /// Type info.
- class URHO3D_API TypeInfo
- {
- public:
- /// Construct.
- TypeInfo(const char* typeName, const TypeInfo* baseTypeInfo);
- /// Destruct.
- ~TypeInfo();
- /// Check current type is type of specified type.
- bool IsTypeOf(StringHash type) const;
- /// Check current type is type of specified type.
- bool IsTypeOf(const TypeInfo* typeInfo) const;
- /// Check current type is type of specified class type.
- template<typename T> bool IsTypeOf() const { return IsTypeOf(T::GetTypeInfoStatic()); }
-
- /// Return type.
- StringHash GetType() const { return type_; }
- /// Return type name.
- const String& GetTypeName() const { return typeName_;}
- /// Return base type info.
- const TypeInfo* GetBaseTypeInfo() const { return baseTypeInfo_; }
- private:
- /// Type.
- StringHash type_;
- /// Type name.
- String typeName_;
- /// Base class type info.
- const TypeInfo* baseTypeInfo_;
- };
- #define URHO3D_OBJECT(typeName, baseTypeName) \
- public: \
- typedef typeName ClassName; \
- typedef baseTypeName BaseClassName; \
- virtual Urho3D::StringHash GetType() const { return GetTypeInfoStatic()->GetType(); } \
- virtual const Urho3D::String& GetTypeName() const { return GetTypeInfoStatic()->GetTypeName(); } \
- virtual const Urho3D::TypeInfo* GetTypeInfo() const { return GetTypeInfoStatic(); } \
- static Urho3D::StringHash GetTypeStatic() { return GetTypeInfoStatic()->GetType(); } \
- static const Urho3D::String& GetTypeNameStatic() { return GetTypeInfoStatic()->GetTypeName(); } \
- static const Urho3D::TypeInfo* GetTypeInfoStatic() { static const Urho3D::TypeInfo typeInfoStatic(#typeName, BaseClassName::GetTypeInfoStatic()); return &typeInfoStatic; } \
- /// Base class for objects with type identification, subsystem access and event sending/receiving capability.
- class URHO3D_API Object : public RefCounted
- {
- friend class Context;
- public:
- /// Construct.
- Object(Context* context);
- /// Destruct. Clean up self from event sender & receiver structures.
- virtual ~Object();
- /// Return type hash.
- virtual StringHash GetType() const = 0;
- /// Return type name.
- virtual const String& GetTypeName() const = 0;
- /// Return type info.
- virtual const TypeInfo* GetTypeInfo() const = 0;
- /// Handle event.
- virtual void OnEvent(Object* sender, StringHash eventType, VariantMap& eventData);
- /// Return type info static.
- static const TypeInfo* GetTypeInfoStatic() { return 0; }
- /// Check current type is type of specified type.
- static bool IsTypeOf(StringHash type);
- /// Check current type is type of specified type.
- static bool IsTypeOf(const TypeInfo* typeInfo);
- /// Check current type is type of specified class.
- template<typename T> static bool IsTypeOf() { return IsTypeOf(T::GetTypeInfoStatic()); }
- /// Check current instance is type of specified type.
- bool IsInstanceOf(StringHash type) const;
- /// Check current instance is type of specified type.
- bool IsInstanceOf(const TypeInfo* typeInfo) const;
- /// Check current instance is type of specified class.
- template<typename T> bool IsInstanceOf() const { return IsInstanceOf(T::GetTypeInfoStatic()); }
- /// Subscribe to an event that can be sent by any sender.
- void SubscribeToEvent(StringHash eventType, EventHandler* handler);
- /// Subscribe to a specific sender's event.
- void SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler);
- /// Unsubscribe from an event.
- void UnsubscribeFromEvent(StringHash eventType);
- /// Unsubscribe from a specific sender's event.
- void UnsubscribeFromEvent(Object* sender, StringHash eventType);
- /// Unsubscribe from a specific sender's events.
- void UnsubscribeFromEvents(Object* sender);
- /// Unsubscribe from all events.
- void UnsubscribeFromAllEvents();
- /// Unsubscribe from all events except those listed, and optionally only those with userdata (script registered events.)
- void UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData);
- /// Send event to all subscribers.
- void SendEvent(StringHash eventType);
- /// Send event with parameters to all subscribers.
- void SendEvent(StringHash eventType, VariantMap& eventData);
- /// Return a preallocated map for event data. Used for optimization to avoid constant re-allocation of event data maps.
- VariantMap& GetEventDataMap() const;
- /// Return execution context.
- Context* GetContext() const { return context_; }
- /// Return subsystem by type.
- Object* GetSubsystem(StringHash type) const;
- /// Return active event sender. Null outside event handling.
- Object* GetEventSender() const;
- /// Return active event handler. Null outside event handling.
- EventHandler* GetEventHandler() const;
- /// Return whether has subscribed to an event without specific sender.
- bool HasSubscribedToEvent(StringHash eventType) const;
- /// Return whether has subscribed to a specific sender's event.
- bool HasSubscribedToEvent(Object* sender, StringHash eventType) const;
- /// Return whether has subscribed to any event.
- bool HasEventHandlers() const { return !eventHandlers_.Empty(); }
- /// Template version of returning a subsystem.
- template <class T> T* GetSubsystem() const;
- /// Return object category. Categories are (optionally) registered along with the object factory. Return an empty string if the object category is not registered.
- const String& GetCategory() const;
- protected:
- /// Execution context.
- Context* context_;
- private:
- /// Find the first event handler with no specific sender.
- EventHandler* FindEventHandler(StringHash eventType, EventHandler** previous = 0) const;
- /// Find the first event handler with specific sender.
- EventHandler* FindSpecificEventHandler(Object* sender, EventHandler** previous = 0) const;
- /// Find the first event handler with specific sender and event type.
- EventHandler* FindSpecificEventHandler(Object* sender, StringHash eventType, EventHandler** previous = 0) const;
- /// Remove event handlers related to a specific sender.
- void RemoveEventSender(Object* sender);
- /// Event handlers. Sender is null for non-specific handlers.
- LinkedList<EventHandler> eventHandlers_;
- };
- template <class T> T* Object::GetSubsystem() const { return static_cast<T*>(GetSubsystem(T::GetTypeStatic())); }
- /// Base class for object factories.
- class URHO3D_API ObjectFactory : public RefCounted
- {
- public:
- /// Construct.
- ObjectFactory(Context* context) :
- context_(context)
- {
- assert(context_);
- }
- /// Create an object. Implemented in templated subclasses.
- virtual SharedPtr<Object> CreateObject() = 0;
- /// Return execution context.
- Context* GetContext() const { return context_; }
- /// Return type info of objects created by this factory.
- const TypeInfo* GetTypeInfo() const { return typeInfo_; }
- /// Return type hash of objects created by this factory.
- StringHash GetType() const { return typeInfo_->GetType(); }
- /// Return type name of objects created by this factory.
- const String& GetTypeName() const { return typeInfo_->GetTypeName(); }
- protected:
- /// Execution context.
- Context* context_;
- /// Type info.
- const TypeInfo* typeInfo_;
- };
- /// Template implementation of the object factory.
- template <class T> class ObjectFactoryImpl : public ObjectFactory
- {
- public:
- /// Construct.
- ObjectFactoryImpl(Context* context) :
- ObjectFactory(context)
- {
- typeInfo_ = T::GetTypeInfoStatic();
- }
- /// Create an object of the specific type.
- virtual SharedPtr<Object> CreateObject() { return SharedPtr<Object>(new T(context_)); }
- };
- /// Internal helper class for invoking event handler functions.
- class URHO3D_API EventHandler : public LinkedListNode
- {
- public:
- /// Construct with specified receiver.
- EventHandler(Object* receiver) :
- receiver_(receiver),
- sender_(0),
- userData_(0)
- {
- assert(receiver_);
- }
- /// Construct with specified receiver and userdata.
- EventHandler(Object* receiver, void* userData) :
- receiver_(receiver),
- sender_(0),
- userData_(userData)
- {
- assert(receiver_);
- }
- /// Destruct.
- virtual ~EventHandler() { }
- /// Set sender and event type.
- void SetSenderAndEventType(Object* sender, StringHash eventType)
- {
- sender_ = sender;
- eventType_ = eventType;
- }
- /// Invoke event handler function.
- virtual void Invoke(VariantMap& eventData) = 0;
- /// Return a unique copy of the event handler.
- virtual EventHandler* Clone() const = 0;
- /// Return event receiver.
- Object* GetReceiver() const { return receiver_; }
- /// Return event sender. Null if the handler is non-specific.
- Object* GetSender() const { return sender_; }
- /// Return event type.
- const StringHash& GetEventType() const { return eventType_; }
- /// Return userdata.
- void* GetUserData() const { return userData_; }
- protected:
- /// Event receiver.
- Object* receiver_;
- /// Event sender.
- Object* sender_;
- /// Event type.
- StringHash eventType_;
- /// Userdata.
- void* userData_;
- };
- /// Template implementation of the event handler invoke helper (stores a function pointer of specific class.)
- template <class T> class EventHandlerImpl : public EventHandler
- {
- public:
- typedef void (T::*HandlerFunctionPtr)(StringHash, VariantMap&);
- /// Construct with receiver and function pointers.
- EventHandlerImpl(T* receiver, HandlerFunctionPtr function) :
- EventHandler(receiver),
- function_(function)
- {
- assert(function_);
- }
- /// Construct with receiver and function pointers and userdata.
- EventHandlerImpl(T* receiver, HandlerFunctionPtr function, void* userData) :
- EventHandler(receiver, userData),
- function_(function)
- {
- assert(function_);
- }
- /// Invoke event handler function.
- virtual void Invoke(VariantMap& eventData)
- {
- T* receiver = static_cast<T*>(receiver_);
- (receiver->*function_)(eventType_, eventData);
- }
- /// Return a unique copy of the event handler.
- virtual EventHandler* Clone() const
- {
- return new EventHandlerImpl(static_cast<T*>(receiver_), function_, userData_);
- }
- private:
- /// Class-specific pointer to handler function.
- HandlerFunctionPtr function_;
- };
- /// Describe an event's hash ID and begin a namespace in which to define its parameters.
- #define URHO3D_EVENT(eventID, eventName) static const Urho3D::StringHash eventID(#eventName); namespace eventName
- /// Describe an event's parameter hash ID. Should be used inside an event namespace.
- #define URHO3D_PARAM(paramID, paramName) static const Urho3D::StringHash paramID(#paramName)
- /// Convenience macro to construct an EventHandler that points to a receiver object and its member function.
- #define URHO3D_HANDLER(className, function) (new Urho3D::EventHandlerImpl<className>(this, &className::function))
- /// Convenience macro to construct an EventHandler that points to a receiver object and its member function, and also defines a userdata pointer.
- #define URHO3D_HANDLER_USERDATA(className, function, userData) (new Urho3D::EventHandlerImpl<className>(this, &className::function, userData))
- }
|