axmol/core/base/EventController.h

116 lines
3.7 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2014 cocos2d-x.org
Copyright (c) 2014-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-12-25 10:04:45 +08:00
https://axmol.dev/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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:
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
Release 2.1.5 (#2076) * Fix unexpected libpng used * Fix string format incorrect for tests * Fix #1751, use coroutine control AutoTest flow * Update CHANGELOG.md * Added OpenType font (.otf) to the noCompress list. (#2077) * Update 1k & copyright notice in some sources * Move doctest to axmol 3rdparty * Fix ci * Update 1kdist to v90 * Update 1kiss.ps1 * DrawNodeV2 0.95.1 (#2079) * Rename remaining legacy engine related spells and improve code style * Update 3rdparty README.md * Fix checkReallySupportsASTC does not work on ios device reported by @BIGCATDOG in https://github.com/axmolengine/axmol/issues/2078 * Fix ci * FastRNG: add missing include for AXASSERT (#2081) * Delete unused files * Improve FileUtils - Rename FileUtils::createDirectory to FileUtils::createDirectories - Use splitpath_cb to optimize FileUtils::createDirectories - Rename FileUtils::getFileShortName to FileUtils::getPathBaseName - Rename FileUtils::getFileExtension to FileUtils::getPathExtension - Add FileUtils::getPathDirName - Add FileUtils::getPathBaseNameNoExtension - Mark all renamed FileUtils stubs old name deprecated - Mark all FileUtils offthread APIs deprecated * Update box2d to v2.4.2 * Disable /sdl checks explicitly for winuwp For axmol deprecated policy, we need disable /sdl checks explicitly to avoid compiler traits invoking deprecated functions as error * Update cppwinrt to 2.0.240405.15 * Update simdjson to 3.10.0 * Fix box2d testbed compile error * Improve file path to url * Fix FileUtils::createDirectories unix logic * axmol-cmdline: remove arch suffix for host build output directory * Update CHANGELOG.md * Update lua bindings --------- Co-authored-by: Dani Alias <danielgutierrezalias@gmail.com> Co-authored-by: aismann <icesoft@freenet.de> Co-authored-by: smilediver <smilediver@outlook.com>
2024-08-11 21:11:35 +08:00
#ifndef _AX_EVENTCONTROLLER_H_
#define _AX_EVENTCONTROLLER_H_
2019-11-23 20:27:39 +08:00
#include "platform/PlatformMacros.h"
#include "base/Event.h"
2019-11-23 20:27:39 +08:00
/**
* @addtogroup base
* @{
*/
namespace ax
{
2019-11-23 20:27:39 +08:00
/// @cond EventController
class Controller;
class EventListenerController;
/** @class EventController
* @brief Controller event.
*/
2022-07-16 10:43:05 +08:00
class AX_DLL EventController : public Event
2019-11-23 20:27:39 +08:00
{
public:
/** ControllerEventType Controller event type.*/
enum class ControllerEventType
{
CONNECTION,
BUTTON_STATUS_CHANGED,
AXIS_STATUS_CHANGED,
};
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/** Create a EventController with controller event type, controller and key code.
*
* @param type A given controller event type.
* @param controller A given controller pointer.
* @param keyCode A given key code.
* @return An autoreleased EventController object.
*/
2021-12-25 10:04:45 +08:00
EventController(ControllerEventType type, Controller* controller, int keyCode);
2019-11-23 20:27:39 +08:00
/** Create a EventController with controller event type, controller and whether or not is connected.
*
* @param type A given controller event type.
* @param controller A given controller pointer.
* @param isConnected True if it is connected.
* @return An autoreleased EventController object.
*/
EventController(ControllerEventType type, Controller* controller, bool isConnected);
/** Gets the event type of the controller.
*
* @return The event type of the controller.
*/
ControllerEventType getControllerEventType() const { return _controllerEventType; }
Controller* getController() const { return _controller; }
/** Gets the key code of the controller.
*
* @return The key code of the controller.
*/
2021-12-25 10:04:45 +08:00
int getKeyCode() const { return _keyCode; }
void setKeyCode(int keyCode) { _keyCode = keyCode; }
2019-11-23 20:27:39 +08:00
/** Sets the connect status.
*
* @param True if it's connected.
*/
2021-12-25 10:04:45 +08:00
void setConnectStatus(bool isConnected) { _isConnected = isConnected; }
2019-11-23 20:27:39 +08:00
/** Gets the connect status.
*
* @return True if it's connected.
*/
bool isConnected() const { return _isConnected; }
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
protected:
ControllerEventType _controllerEventType;
Controller* _controller;
int _keyCode;
bool _isConnected;
friend class EventListenerController;
};
/// @endcond EventController
}
2019-11-23 20:27:39 +08:00
// end of base group
/// @}
Release 2.1.5 (#2076) * Fix unexpected libpng used * Fix string format incorrect for tests * Fix #1751, use coroutine control AutoTest flow * Update CHANGELOG.md * Added OpenType font (.otf) to the noCompress list. (#2077) * Update 1k & copyright notice in some sources * Move doctest to axmol 3rdparty * Fix ci * Update 1kdist to v90 * Update 1kiss.ps1 * DrawNodeV2 0.95.1 (#2079) * Rename remaining legacy engine related spells and improve code style * Update 3rdparty README.md * Fix checkReallySupportsASTC does not work on ios device reported by @BIGCATDOG in https://github.com/axmolengine/axmol/issues/2078 * Fix ci * FastRNG: add missing include for AXASSERT (#2081) * Delete unused files * Improve FileUtils - Rename FileUtils::createDirectory to FileUtils::createDirectories - Use splitpath_cb to optimize FileUtils::createDirectories - Rename FileUtils::getFileShortName to FileUtils::getPathBaseName - Rename FileUtils::getFileExtension to FileUtils::getPathExtension - Add FileUtils::getPathDirName - Add FileUtils::getPathBaseNameNoExtension - Mark all renamed FileUtils stubs old name deprecated - Mark all FileUtils offthread APIs deprecated * Update box2d to v2.4.2 * Disable /sdl checks explicitly for winuwp For axmol deprecated policy, we need disable /sdl checks explicitly to avoid compiler traits invoking deprecated functions as error * Update cppwinrt to 2.0.240405.15 * Update simdjson to 3.10.0 * Fix box2d testbed compile error * Improve file path to url * Fix FileUtils::createDirectories unix logic * axmol-cmdline: remove arch suffix for host build output directory * Update CHANGELOG.md * Update lua bindings --------- Co-authored-by: Dani Alias <danielgutierrezalias@gmail.com> Co-authored-by: aismann <icesoft@freenet.de> Co-authored-by: smilediver <smilediver@outlook.com>
2024-08-11 21:11:35 +08:00
#endif /* defined(_AX_EVENTCONTROLLER_H_) */