2014-03-10 14:04:58 +08:00
|
|
|
/****************************************************************************
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-07-16 11:04:38 +08:00
|
|
|
Copyright (c) 2021 Bytedance Inc.
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +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:
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_GENERATED_LUA_COCOS2DX_MANUAL_H
|
|
|
|
#define COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_GENERATED_LUA_COCOS2DX_MANUAL_H
|
|
|
|
|
|
|
|
#include "tolua++.h"
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2022-07-12 21:31:54 +08:00
|
|
|
#include "scripting/lua-bindings/manual/base/LuaScriptHandlerMgr.h"
|
2016-04-18 15:09:21 +08:00
|
|
|
#include "base/CCEventListenerAcceleration.h"
|
|
|
|
#include "base/CCEventListenerCustom.h"
|
2019-06-27 17:44:07 +08:00
|
|
|
#include "2d/CCNode.h"
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2014-03-10 14:04:58 +08:00
|
|
|
class LuaEventListenerCustom
|
|
|
|
{
|
|
|
|
public:
|
2021-12-26 23:26:34 +08:00
|
|
|
static EventListenerCustom* create(std::string_view eventName);
|
2014-03-10 14:04:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LuaEventListenerAcceleration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static EventListenerAcceleration* create();
|
|
|
|
};
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
USING_NS_AX;
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_manual(lua_State* tolua_S);
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_module_manual(lua_State* tolua_S);
|
2014-07-04 16:24:00 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_math_manual(lua_State* tolua_S);
|
2014-10-10 09:49:25 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_shaders_manual(lua_State *tolua_S);
|
2019-05-05 15:26:34 +08:00
|
|
|
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_bytearray_manual(lua_State *tulua_S);
|
2019-05-05 15:26:34 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
struct LuaEventAccelerationData
|
|
|
|
{
|
|
|
|
void* acc;
|
|
|
|
Event* event;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
LuaEventAccelerationData(void* inAcc,Event* inEvent)
|
|
|
|
:acc(inAcc),event(inEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LuaEventKeyboarData
|
|
|
|
{
|
|
|
|
int keyCode;
|
|
|
|
Event* event;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
LuaEventKeyboarData(int inKeyCode,Event* inEvent)
|
|
|
|
:keyCode(inKeyCode),event(inEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LuaEventTouchData
|
|
|
|
{
|
|
|
|
Touch* touch;
|
|
|
|
Event* event;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
LuaEventTouchData(Touch* inTouch, Event* inEvent)
|
|
|
|
:touch(inTouch),
|
|
|
|
event(inEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LuaEventTouchesData
|
|
|
|
{
|
|
|
|
std::vector<Touch*> touches;
|
|
|
|
Event* event;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2021-07-16 11:04:38 +08:00
|
|
|
LuaEventTouchesData(const std::vector<Touch*>& inTouches, Event* inEvent)
|
2014-03-10 14:04:58 +08:00
|
|
|
:touches(inTouches),
|
|
|
|
event(inEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LuaEventMouseData
|
|
|
|
{
|
|
|
|
Event* event;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
LuaEventMouseData(Event* inEvent)
|
|
|
|
:event(inEvent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
class LuaNode :public ax::Node
|
2019-06-27 17:44:07 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~LuaNode() {}
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
virtual void draw(ax::Renderer *renderer, const ax::Mat4& transform, uint32_t flags) override;
|
2019-06-27 17:44:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
TOLUA_API int tolua_luanode_open(lua_State* tolua_S);
|
|
|
|
TOLUA_API int register_luanode_manual(lua_State* tolua_S);
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
#endif // #ifndef COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_GENERATED_LUA_COCOS2DX_MANUAL_H
|