/**************************************************************************** Copyright (c) 2010 cocos2d-x.org Copyright (c) 2013-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. 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 "base/CCIMEDispatcher.h" #include NS_CC_BEGIN ////////////////////////////////////////////////////////////////////////// // add/remove delegate in IMEDelegate Cons/Destructor ////////////////////////////////////////////////////////////////////////// IMEDelegate::IMEDelegate() { IMEDispatcher::sharedDispatcher()->addDelegate(this); } IMEDelegate::~IMEDelegate() { IMEDispatcher::sharedDispatcher()->removeDelegate(this); } bool IMEDelegate::attachWithIME() { return IMEDispatcher::sharedDispatcher()->attachDelegateWithIME(this); } bool IMEDelegate::detachWithIME() { return IMEDispatcher::sharedDispatcher()->detachDelegateWithIME(this); } ////////////////////////////////////////////////////////////////////////// typedef std::list< IMEDelegate * > DelegateList; typedef std::list< IMEDelegate * >::iterator DelegateIter; ////////////////////////////////////////////////////////////////////////// // Delegate List manage class ////////////////////////////////////////////////////////////////////////// class IMEDispatcher::Impl { public: Impl() { } ~Impl() { } void init() { _delegateWithIme = 0; } DelegateIter findDelegate(IMEDelegate* delegate) { DelegateIter end = _delegateList.end(); for (DelegateIter iter = _delegateList.begin(); iter != end; ++iter) { if (delegate == *iter) { return iter; } } return end; } DelegateList _delegateList; IMEDelegate* _delegateWithIme; }; ////////////////////////////////////////////////////////////////////////// // Cons/Destructor ////////////////////////////////////////////////////////////////////////// IMEDispatcher::IMEDispatcher() : _impl(new IMEDispatcher::Impl) { _impl->init(); } IMEDispatcher::~IMEDispatcher() { CC_SAFE_DELETE(_impl); } ////////////////////////////////////////////////////////////////////////// // Add/Attach/Remove IMEDelegate ////////////////////////////////////////////////////////////////////////// void IMEDispatcher::addDelegate(IMEDelegate* delegate) { if (! delegate || ! _impl) { return; } if (_impl->_delegateList.end() != _impl->findDelegate(delegate)) { // pDelegate already in list return; } _impl->_delegateList.push_front(delegate); } bool IMEDispatcher::attachDelegateWithIME(IMEDelegate * delegate) { bool ret = false; do { CC_BREAK_IF(! _impl || ! delegate); DelegateIter end = _impl->_delegateList.end(); DelegateIter iter = _impl->findDelegate(delegate); // if pDelegate is not in delegate list, return CC_BREAK_IF(end == iter); if (_impl->_delegateWithIme) { if (_impl->_delegateWithIme != delegate) { // if old delegate canDetachWithIME return false // or pDelegate canAttachWithIME return false, // do nothing. CC_BREAK_IF(!_impl->_delegateWithIme->canDetachWithIME() || !delegate->canAttachWithIME()); // detach first IMEDelegate * oldDelegate = _impl->_delegateWithIme; _impl->_delegateWithIme = 0; oldDelegate->didDetachWithIME(); _impl->_delegateWithIme = *iter; delegate->didAttachWithIME(); } ret = true; break; } // delegate hasn't attached to IME yet CC_BREAK_IF(! delegate->canAttachWithIME()); _impl->_delegateWithIme = *iter; delegate->didAttachWithIME(); ret = true; } while (0); return ret; } bool IMEDispatcher::detachDelegateWithIME(IMEDelegate * delegate) { bool ret = false; do { CC_BREAK_IF(! _impl || ! delegate); // if pDelegate is not the current delegate attached to IME, return CC_BREAK_IF(_impl->_delegateWithIme != delegate); CC_BREAK_IF(! delegate->canDetachWithIME()); _impl->_delegateWithIme = 0; delegate->didDetachWithIME(); ret = true; } while (0); return ret; } void IMEDispatcher::removeDelegate(IMEDelegate* delegate) { do { CC_BREAK_IF(! delegate || ! _impl); DelegateIter iter = _impl->findDelegate(delegate); DelegateIter end = _impl->_delegateList.end(); CC_BREAK_IF(end == iter); if (_impl->_delegateWithIme) if (*iter == _impl->_delegateWithIme) { _impl->_delegateWithIme = 0; } _impl->_delegateList.erase(iter); } while (0); } ////////////////////////////////////////////////////////////////////////// // dispatch text message ////////////////////////////////////////////////////////////////////////// void IMEDispatcher::dispatchInsertText(const char * text, size_t len) { do { CC_BREAK_IF(! _impl || ! text || len <= 0); // there is no delegate attached to IME CC_BREAK_IF(! _impl->_delegateWithIme); _impl->_delegateWithIme->insertText(text, len); } while (0); } void IMEDispatcher::dispatchDeleteBackward() { do { CC_BREAK_IF(! _impl); // there is no delegate attached to IME CC_BREAK_IF(! _impl->_delegateWithIme); _impl->_delegateWithIme->deleteBackward(); } while (0); } void IMEDispatcher::dispatchControlKey(EventKeyboard::KeyCode keyCode) { do { CC_BREAK_IF(!_impl); // there is no delegate attached to IME CC_BREAK_IF(!_impl->_delegateWithIme); _impl->_delegateWithIme->controlKey(keyCode); } while (0); } const std::string& IMEDispatcher::getContentText() { if (_impl && _impl->_delegateWithIme) { return _impl->_delegateWithIme->getContentText(); } return STD_STRING_EMPTY; } ////////////////////////////////////////////////////////////////////////// // dispatch keyboard message ////////////////////////////////////////////////////////////////////////// void IMEDispatcher::dispatchKeyboardWillShow(IMEKeyboardNotificationInfo& info) { if (_impl) { IMEDelegate * delegate = nullptr; DelegateIter last = _impl->_delegateList.end(); for (DelegateIter first = _impl->_delegateList.begin(); first != last; ++first) { delegate = *(first); if (delegate) { delegate->keyboardWillShow(info); } } } } void IMEDispatcher::dispatchKeyboardDidShow(IMEKeyboardNotificationInfo& info) { if (_impl) { IMEDelegate * delegate = nullptr; DelegateIter last = _impl->_delegateList.end(); for (DelegateIter first = _impl->_delegateList.begin(); first != last; ++first) { delegate = *(first); if (delegate) { delegate->keyboardDidShow(info); } } } } void IMEDispatcher::dispatchKeyboardWillHide(IMEKeyboardNotificationInfo& info) { if (_impl) { IMEDelegate * delegate = nullptr; DelegateIter last = _impl->_delegateList.end(); for (DelegateIter first = _impl->_delegateList.begin(); first != last; ++first) { delegate = *(first); if (delegate) { delegate->keyboardWillHide(info); } } } } void IMEDispatcher::dispatchKeyboardDidHide(IMEKeyboardNotificationInfo& info) { if (_impl) { IMEDelegate * delegate = nullptr; DelegateIter last = _impl->_delegateList.end(); for (DelegateIter first = _impl->_delegateList.begin(); first != last; ++first) { delegate = *(first); if (delegate) { delegate->keyboardDidHide(info); } } } } ////////////////////////////////////////////////////////////////////////// // protected member function ////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////// // static member function ////////////////////////////////////////////////////////////////////////// IMEDispatcher* IMEDispatcher::sharedDispatcher() { static IMEDispatcher s_instance; return &s_instance; } NS_CC_END