2010-07-16 11:39:21 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __TOUCH_DISPATCHER_CCTOUCH_HANDLER_H__
|
|
|
|
#define __TOUCH_DISPATCHER_CCTOUCH_HANDLER_H__
|
|
|
|
|
|
|
|
#include "CCTouchDelegateProtocol.h"
|
|
|
|
#include "CCTouchDispatcher.h"
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCObject.h"
|
|
|
|
#include "CCSet.h"
|
2010-08-04 15:46:12 +08:00
|
|
|
namespace cocos2d {
|
2010-07-16 11:39:21 +08:00
|
|
|
|
2010-08-02 10:58:00 +08:00
|
|
|
/**
|
|
|
|
CCTouchHandler
|
|
|
|
Object than contains the delegate and priority of the event handler.
|
2010-07-16 11:39:21 +08:00
|
|
|
*/
|
2011-03-07 17:11:57 +08:00
|
|
|
class CCTouchHandler : public CCObject
|
2010-07-16 11:39:21 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~CCTouchHandler(void);
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** delegate */
|
2010-07-16 11:39:21 +08:00
|
|
|
CCTouchDelegate* getDelegate();
|
|
|
|
void setDelegate(CCTouchDelegate *pDelegate);
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** priority */
|
2010-08-02 10:58:00 +08:00
|
|
|
int getPriority(void);
|
|
|
|
void setPriority(int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** enabled selectors */
|
2010-08-02 10:58:00 +08:00
|
|
|
int getEnabledSelectors(void);
|
|
|
|
void setEnalbedSelectors(int nValue);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** initializes a TouchHandler with a delegate and a priority */
|
2010-09-03 09:32:13 +08:00
|
|
|
virtual bool initWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
2010-09-28 16:18:05 +08:00
|
|
|
/** allocates a TouchHandler with a delegate and a priority */
|
2010-08-02 10:58:00 +08:00
|
|
|
static CCTouchHandler* handlerWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CCTouchDelegate *m_pDelegate;
|
2010-08-02 10:58:00 +08:00
|
|
|
int m_nPriority;
|
|
|
|
int m_nEnabledSelectors;
|
2010-07-16 11:39:21 +08:00
|
|
|
};
|
|
|
|
|
2010-08-02 10:58:00 +08:00
|
|
|
/** CCStandardTouchHandler
|
|
|
|
It forwardes each event to the delegate.
|
2010-07-16 11:39:21 +08:00
|
|
|
*/
|
|
|
|
class CCStandardTouchHandler : public CCTouchHandler
|
|
|
|
{
|
|
|
|
public:
|
2010-09-28 16:18:05 +08:00
|
|
|
/** initializes a TouchHandler with a delegate and a priority */
|
2010-09-03 09:32:13 +08:00
|
|
|
virtual bool initWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
2010-09-28 16:18:05 +08:00
|
|
|
/** allocates a TouchHandler with a delegate and a priority */
|
2010-09-03 09:32:13 +08:00
|
|
|
static CCStandardTouchHandler* handlerWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
};
|
|
|
|
|
2010-08-02 10:58:00 +08:00
|
|
|
/**
|
|
|
|
CCTargetedTouchHandler
|
|
|
|
Object than contains the claimed touches and if it swallos touches.
|
|
|
|
Used internally by TouchDispatcher
|
2010-07-16 11:39:21 +08:00
|
|
|
*/
|
|
|
|
class CCTargetedTouchHandler : public CCTouchHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~CCTargetedTouchHandler(void);
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** whether or not the touches are swallowed */
|
2010-07-16 11:39:21 +08:00
|
|
|
bool isSwallowsTouches(void);
|
|
|
|
void setSwallowsTouches(bool bSwallowsTouches);
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** MutableSet that contains the claimed touches */
|
2010-07-16 11:39:21 +08:00
|
|
|
NSMutableSet* getClaimedTouches(void);
|
|
|
|
|
2010-09-28 16:18:05 +08:00
|
|
|
/** initializes a TargetedTouchHandler with a delegate, a priority and whether or not it swallows touches or not */
|
2010-09-03 09:32:13 +08:00
|
|
|
bool initWithDelegate(CCTouchDelegate *pDelegate, int nPriority, bool bSwallow);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
2010-09-28 16:18:05 +08:00
|
|
|
/** allocates a TargetedTouchHandler with a delegate, a priority and whether or not it swallows touches or not */
|
2010-08-02 10:58:00 +08:00
|
|
|
static CCTargetedTouchHandler* handlerWithDelegate(CCTouchDelegate *pDelegate, int nPriority, bool bSwallow);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_bSwallowsTouches;
|
|
|
|
NSMutableSet *m_pClaimedTouches;
|
|
|
|
};
|
2010-08-04 15:46:12 +08:00
|
|
|
}//namespace cocos2d
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
#endif // __TOUCH_DISPATCHER_CCTOUCH_HANDLER_H__
|