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
|
|
|
|
2012-07-31 17:41:53 +08:00
|
|
|
****************************************************************************/
|
|
|
|
|
2013-09-21 14:40:54 +08:00
|
|
|
#include "CCEventListenerKeyboard.h"
|
|
|
|
#include "CCEventKeyboard.h"
|
2013-09-03 18:22:03 +08:00
|
|
|
#include "ccMacros.h"
|
2012-07-31 17:41:53 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-10-12 11:25:28 +08:00
|
|
|
bool EventListenerKeyboard::checkAvailable()
|
2013-09-03 18:22:03 +08:00
|
|
|
{
|
|
|
|
CCASSERT(onKeyPressed && onKeyReleased, "");
|
|
|
|
|
|
|
|
return true;
|
2012-07-31 17:41:53 +08:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:19:31 +08:00
|
|
|
EventListenerKeyboard* EventListenerKeyboard::create()
|
2013-09-03 18:22:03 +08:00
|
|
|
{
|
2013-09-20 19:19:31 +08:00
|
|
|
auto ret = new EventListenerKeyboard();
|
2013-09-13 18:00:56 +08:00
|
|
|
if (ret && ret->init())
|
|
|
|
{
|
|
|
|
ret->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(ret);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-09-20 19:19:31 +08:00
|
|
|
EventListenerKeyboard* EventListenerKeyboard::clone()
|
2013-09-13 18:00:56 +08:00
|
|
|
{
|
2013-09-20 19:19:31 +08:00
|
|
|
auto ret = new EventListenerKeyboard();
|
2013-09-13 18:00:56 +08:00
|
|
|
if (ret && ret->init())
|
|
|
|
{
|
|
|
|
ret->autorelease();
|
|
|
|
ret->onKeyPressed = onKeyPressed;
|
|
|
|
ret->onKeyReleased = onKeyReleased;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(ret);
|
|
|
|
}
|
2013-09-03 18:22:03 +08:00
|
|
|
return ret;
|
2013-03-04 20:08:19 +08:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:19:31 +08:00
|
|
|
EventListenerKeyboard::EventListenerKeyboard()
|
2013-09-13 18:00:56 +08:00
|
|
|
: onKeyPressed(nullptr)
|
2013-09-03 18:22:03 +08:00
|
|
|
, onKeyReleased(nullptr)
|
|
|
|
{
|
2013-09-13 18:00:56 +08:00
|
|
|
}
|
|
|
|
|
2013-09-20 19:19:31 +08:00
|
|
|
bool EventListenerKeyboard::init()
|
2013-09-13 18:00:56 +08:00
|
|
|
{
|
|
|
|
auto listener = [this](Event* event){
|
2013-09-20 19:19:31 +08:00
|
|
|
auto keyboardEvent = static_cast<EventKeyboard*>(event);
|
2013-09-03 18:22:03 +08:00
|
|
|
if (keyboardEvent->_isPressed)
|
|
|
|
{
|
2013-09-13 18:00:56 +08:00
|
|
|
if (onKeyPressed != nullptr)
|
|
|
|
onKeyPressed(keyboardEvent->_keyCode, event);
|
2013-09-03 18:22:03 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-13 18:00:56 +08:00
|
|
|
if (onKeyReleased != nullptr)
|
|
|
|
onKeyReleased(keyboardEvent->_keyCode, event);
|
2013-09-03 18:22:03 +08:00
|
|
|
}
|
|
|
|
};
|
2013-09-13 18:00:56 +08:00
|
|
|
|
2013-10-28 16:00:01 +08:00
|
|
|
if (EventListener::init(Type::KEYBOARD, static_cast<ListenerID>(Type::KEYBOARD), listener))
|
2013-09-13 18:00:56 +08:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2012-07-31 17:41:53 +08:00
|
|
|
}
|
|
|
|
|
2013-09-03 18:22:03 +08:00
|
|
|
NS_CC_END
|