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"
|
2010-07-20 14:34:25 +08:00
|
|
|
#include "cocoa/NSObject.h"
|
|
|
|
#include "cocoa/NSSet.h"
|
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
|
|
|
*/
|
|
|
|
class CCTouchHandler : public NSObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~CCTouchHandler(void);
|
|
|
|
|
|
|
|
// delegate
|
|
|
|
CCTouchDelegate* getDelegate();
|
|
|
|
void setDelegate(CCTouchDelegate *pDelegate);
|
|
|
|
|
|
|
|
// priority
|
2010-08-02 10:58:00 +08:00
|
|
|
int getPriority(void);
|
|
|
|
void setPriority(int nPriority);
|
2010-07-16 11:39:21 +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
|
|
|
|
|
|
|
// initializes a TouchHandler with a delegate and a priority
|
2010-08-02 10:58:00 +08:00
|
|
|
virtual CCTouchHandler* initWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
// 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-08-02 10:58:00 +08:00
|
|
|
virtual CCTouchHandler* initWithDelegate(CCTouchDelegate *pDelegate, int nPriority);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
2010-08-02 10:58:00 +08:00
|
|
|
static CCStandardTouchHandler* handlerWithDelegate(CCStandardTouchDelegate *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);
|
|
|
|
|
|
|
|
// whether or not the touches are swallowed
|
|
|
|
bool isSwallowsTouches(void);
|
|
|
|
void setSwallowsTouches(bool bSwallowsTouches);
|
|
|
|
|
|
|
|
// MutableSet that contains the claimed touches
|
|
|
|
NSMutableSet* getClaimedTouches(void);
|
|
|
|
|
2010-08-02 10:58:00 +08:00
|
|
|
CCTouchHandler* initWithDelegate(CCTouchDelegate *pDelegate, int nPriority, bool bSwallow);
|
2010-07-16 11:39:21 +08:00
|
|
|
|
|
|
|
public:
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __TOUCH_DISPATCHER_CCTOUCH_HANDLER_H__
|