2014-03-10 14:04:58 +08:00
|
|
|
/****************************************************************************
|
2017-02-14 14:36:57 +08:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2014-03-10 14:04:58 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __LUA_OPENGL_H__
|
|
|
|
#define __LUA_OPENGL_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include "tolua++.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "2d/CCNode.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "renderer/CCCustomCommand.h"
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2015-03-26 22:07:44 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup lua
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2015-03-20 14:39:33 +08:00
|
|
|
/**
|
|
|
|
* The GLNode is wrapped to call the callback function about draw in the Lua.
|
|
|
|
*/
|
2014-03-10 14:04:58 +08:00
|
|
|
class GLNode:public cocos2d::Node
|
|
|
|
{
|
2014-04-03 17:02:14 +08:00
|
|
|
public:
|
2015-03-20 14:39:33 +08:00
|
|
|
/**
|
2015-11-03 03:31:17 +08:00
|
|
|
* Destructor.
|
2015-03-20 14:39:33 +08:00
|
|
|
*
|
|
|
|
* @lua NA
|
2015-03-26 22:07:44 +08:00
|
|
|
* @js NA
|
2015-03-20 14:39:33 +08:00
|
|
|
*/
|
2014-04-03 17:02:14 +08:00
|
|
|
virtual ~GLNode(){}
|
2015-03-20 14:39:33 +08:00
|
|
|
|
2015-03-26 22:07:44 +08:00
|
|
|
// @cond
|
2014-06-05 00:26:39 +08:00
|
|
|
virtual void draw(cocos2d::Renderer *renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
2015-03-26 22:07:44 +08:00
|
|
|
// @endcond
|
2014-04-03 17:02:14 +08:00
|
|
|
protected:
|
|
|
|
cocos2d::CustomCommand _renderCmd;
|
2014-05-31 07:42:05 +08:00
|
|
|
void onDraw(const cocos2d::Mat4 &transform, uint32_t flags);
|
2014-03-10 14:04:58 +08:00
|
|
|
};
|
|
|
|
|
2015-03-20 14:39:33 +08:00
|
|
|
/// @cond
|
2014-03-10 14:04:58 +08:00
|
|
|
TOLUA_API int tolua_opengl_open(lua_State* tolua_S);
|
|
|
|
TOLUA_API int register_glnode_manual(lua_State* tolua_S);
|
2015-03-20 14:39:33 +08:00
|
|
|
/// @endcond
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2015-03-26 22:07:44 +08:00
|
|
|
// end group
|
|
|
|
/// @}
|
2014-03-10 14:04:58 +08:00
|
|
|
#endif //__LUA_OPENGL_H__
|