2012-07-31 17:41:53 +08:00
|
|
|
/****************************************************************************
|
2013-09-03 18:22:03 +08:00
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
2012-07-31 17:41:53 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
#ifndef cocos2d_libs_EventListener_h
|
|
|
|
#define cocos2d_libs_EventListener_h
|
2012-07-31 17:41:53 +08:00
|
|
|
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCPlatformMacros.h"
|
|
|
|
#include "CCObject.h"
|
2013-03-04 20:08:19 +08:00
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
2013-10-23 11:27:24 +08:00
|
|
|
#include <set>
|
2012-07-31 17:41:53 +08:00
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
NS_CC_BEGIN
|
2012-07-31 17:41:53 +08:00
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
class Event;
|
2013-10-23 11:27:24 +08:00
|
|
|
class Node;
|
2013-09-03 18:22:03 +08:00
|
|
|
|
2013-09-16 14:43:57 +08:00
|
|
|
/**
|
|
|
|
* The base class of event listener.
|
|
|
|
* If you need custom listener which with different callback, you need to inherit this class.
|
2013-10-21 17:22:42 +08:00
|
|
|
* For instance, you could refer to EventListenerAcceleration, EventListenerKeyboard, EventListenerTouchOneByOne, EventListenerCustom.
|
2013-09-16 14:43:57 +08:00
|
|
|
*/
|
2013-09-13 18:00:56 +08:00
|
|
|
class EventListener : public Object
|
2013-10-25 10:35:48 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum EventListenerType
|
|
|
|
{
|
|
|
|
TYPE_TOUCH_ONE_BY_ONE = 1,
|
|
|
|
TYPE_TOUCH_ALL_AT_ONCE,
|
|
|
|
TYPE_KEYBOARD,
|
|
|
|
TYPE_ACCELERATION,
|
|
|
|
TYPE_CUSTOM
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef int Type;
|
2013-09-03 18:22:03 +08:00
|
|
|
protected:
|
2013-09-16 14:43:57 +08:00
|
|
|
/** Constructor */
|
2013-09-13 18:00:56 +08:00
|
|
|
EventListener();
|
2013-09-16 14:43:57 +08:00
|
|
|
|
|
|
|
/** Initializes event with type and callback function */
|
2013-10-25 10:35:48 +08:00
|
|
|
bool init(Type t, std::function<void(Event*)>callback);
|
2013-09-03 18:22:03 +08:00
|
|
|
public:
|
2013-09-16 14:43:57 +08:00
|
|
|
/** Destructor */
|
2013-09-03 18:22:03 +08:00
|
|
|
virtual ~EventListener();
|
2013-09-16 14:43:57 +08:00
|
|
|
|
|
|
|
/** Checks whether the listener is available. */
|
2013-10-12 11:25:28 +08:00
|
|
|
virtual bool checkAvailable() = 0;
|
2013-09-16 14:43:57 +08:00
|
|
|
|
|
|
|
/** Clones the listener, its subclasses have to override this method. */
|
2013-09-19 09:14:51 +08:00
|
|
|
virtual EventListener* clone() = 0;
|
2013-10-23 11:27:24 +08:00
|
|
|
|
|
|
|
inline bool isPaused() const { return _paused; };
|
2013-10-24 11:17:29 +08:00
|
|
|
inline bool isRegistered() const { return _isRegistered; };
|
2013-10-23 11:27:24 +08:00
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
protected:
|
2013-09-19 09:14:51 +08:00
|
|
|
std::function<void(Event*)> _onEvent; /// Event callback function
|
2013-10-25 10:35:48 +08:00
|
|
|
Type _type; /// Event type
|
2013-09-16 14:43:57 +08:00
|
|
|
bool _isRegistered; /// Whether the listener has been added to dispatcher.
|
2013-09-03 18:22:03 +08:00
|
|
|
|
2013-10-23 11:27:24 +08:00
|
|
|
// The priority of event listener
|
|
|
|
int _fixedPriority; // The higher the number, the higher the priority, 0 is for scene graph base priority.
|
|
|
|
Node* _node; // scene graph based priority
|
|
|
|
bool _paused;
|
|
|
|
|
|
|
|
private:
|
2013-09-03 18:22:03 +08:00
|
|
|
friend class EventDispatcher;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif
|