mirror of https://github.com/axmolengine/axmol.git
177 lines
4.4 KiB
C++
177 lines
4.4 KiB
C++
/****************************************************************************
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#include "CCKeypadDispatcher.h"
|
|
#include "support/data_support/ccCArray.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// KeypadDispatcher
|
|
//
|
|
//------------------------------------------------------------------
|
|
KeypadDispatcher::KeypadDispatcher()
|
|
: _locked(false)
|
|
, _toAdd(false)
|
|
, _toRemove(false)
|
|
{
|
|
_delegates = Array::create();
|
|
_delegates->retain();
|
|
|
|
_handlersToAdd = ccCArrayNew(8);
|
|
_handlersToRemove = ccCArrayNew(8);
|
|
}
|
|
|
|
KeypadDispatcher::~KeypadDispatcher()
|
|
{
|
|
CC_SAFE_RELEASE(_delegates);
|
|
if (_handlersToAdd)
|
|
{
|
|
ccCArrayFree(_handlersToAdd);
|
|
}
|
|
|
|
if (_handlersToRemove)
|
|
{
|
|
ccCArrayFree(_handlersToRemove);
|
|
}
|
|
}
|
|
|
|
void KeypadDispatcher::removeDelegate(KeypadDelegate* pDelegate)
|
|
{
|
|
if (!pDelegate)
|
|
{
|
|
return;
|
|
}
|
|
if (! _locked)
|
|
{
|
|
forceRemoveDelegate(pDelegate);
|
|
}
|
|
else
|
|
{
|
|
ccCArrayAppendValue(_handlersToRemove, pDelegate);
|
|
_toRemove = true;
|
|
}
|
|
}
|
|
|
|
void KeypadDispatcher::addDelegate(KeypadDelegate* pDelegate)
|
|
{
|
|
if (!pDelegate)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (! _locked)
|
|
{
|
|
forceAddDelegate(pDelegate);
|
|
}
|
|
else
|
|
{
|
|
ccCArrayAppendValue(_handlersToAdd, pDelegate);
|
|
_toAdd = true;
|
|
}
|
|
}
|
|
|
|
void KeypadDispatcher::forceAddDelegate(KeypadDelegate* pDelegate)
|
|
{
|
|
KeypadHandler* pHandler = KeypadHandler::handlerWithDelegate(pDelegate);
|
|
|
|
if (pHandler)
|
|
{
|
|
_delegates->addObject(pHandler);
|
|
}
|
|
}
|
|
|
|
void KeypadDispatcher::forceRemoveDelegate(KeypadDelegate* pDelegate)
|
|
{
|
|
KeypadHandler* pHandler = NULL;
|
|
Object* pObj = NULL;
|
|
CCARRAY_FOREACH(_delegates, pObj)
|
|
{
|
|
pHandler = static_cast<KeypadHandler*>(pObj);
|
|
if (pHandler && pHandler->getDelegate() == pDelegate)
|
|
{
|
|
_delegates->removeObject(pHandler);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool KeypadDispatcher::dispatchKeypadMSG(ccKeypadMSGType nMsgType)
|
|
{
|
|
KeypadHandler* pHandler = NULL;
|
|
KeypadDelegate* pDelegate = NULL;
|
|
|
|
_locked = true;
|
|
|
|
if (_delegates->count() > 0)
|
|
{
|
|
Object* pObj = NULL;
|
|
CCARRAY_FOREACH(_delegates, pObj)
|
|
{
|
|
CC_BREAK_IF(!pObj);
|
|
|
|
pHandler = static_cast<KeypadHandler*>(pObj);
|
|
pDelegate = pHandler->getDelegate();
|
|
|
|
switch (nMsgType)
|
|
{
|
|
case kTypeBackClicked:
|
|
pDelegate->keyBackClicked();
|
|
break;
|
|
case kTypeMenuClicked:
|
|
pDelegate->keyMenuClicked();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
_locked = false;
|
|
if (_toRemove)
|
|
{
|
|
_toRemove = false;
|
|
for (int i = 0; i < _handlersToRemove->num; ++i)
|
|
{
|
|
forceRemoveDelegate((KeypadDelegate*)_handlersToRemove->arr[i]);
|
|
}
|
|
ccCArrayRemoveAllValues(_handlersToRemove);
|
|
}
|
|
|
|
if (_toAdd)
|
|
{
|
|
_toAdd = false;
|
|
for (int i = 0; i < _handlersToAdd->num; ++i)
|
|
{
|
|
forceAddDelegate((KeypadDelegate*)_handlersToAdd->arr[i]);
|
|
}
|
|
ccCArrayRemoveAllValues(_handlersToAdd);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
NS_CC_END
|