2012-02-01 16:55:46 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2011 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2012-02-02 15:58:10 +08:00
|
|
|
|
|
|
|
#ifndef __CC_LUA_ENGINE_H__
|
|
|
|
#define __CC_LUA_ENGINE_H__
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "lua.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "ccTypes.h"
|
|
|
|
#include "CCObject.h"
|
|
|
|
#include "CCTouch.h"
|
|
|
|
#include "CCSet.h"
|
|
|
|
#include "CCNode.h"
|
2012-02-09 14:07:11 +08:00
|
|
|
#include "CCScriptSupport.h"
|
2012-02-01 16:55:46 +08:00
|
|
|
|
2012-02-09 14:07:11 +08:00
|
|
|
NS_CC_BEGIN
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
// Lua support for cocos2d-x
|
2012-02-09 14:07:11 +08:00
|
|
|
class CCLuaEngine : public CCScriptEngineProtocol
|
2012-02-01 16:55:46 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
~CCLuaEngine();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Method used to get a pointer to the lua_State that the script module is attached to.
|
|
|
|
@return A pointer to the lua_State that the script module is attached to.
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual lua_State* getLuaState(void) {
|
2012-02-01 16:55:46 +08:00
|
|
|
return m_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Remove CCObject from lua state
|
|
|
|
@param object to remove
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual void removeCCObjectByID(int nLuaID);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Remove Lua function reference
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual void removeLuaHandler(int nHandler);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Add a path to find lua files in
|
|
|
|
@param path to be added to the Lua path
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual void addSearchPath(const char* path);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
2012-02-02 19:00:43 +08:00
|
|
|
/**
|
|
|
|
@brief Execute script code contained in the given string.
|
|
|
|
@param codes holding the valid script code that should be executed.
|
|
|
|
@return 0 if the string is excuted correctly.
|
|
|
|
@return other if the string is excuted wrongly.
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeString(const char* codes);
|
2012-02-02 19:00:43 +08:00
|
|
|
|
2012-02-01 16:55:46 +08:00
|
|
|
/**
|
|
|
|
@brief Execute a script file.
|
|
|
|
@param filename String object holding the filename of the script file that is to be executed
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeScriptFile(const char* filename);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Execute a scripted global function.
|
|
|
|
@brief The function should not take any parameters and should return an integer.
|
2012-02-09 14:07:11 +08:00
|
|
|
@param functionName String object holding the name of the function, in the global script environment, that is to be executed.
|
2012-02-01 16:55:46 +08:00
|
|
|
@return The integer value returned from the script function.
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeGlobalFunction(const char* functionName);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Execute a function by ref id
|
|
|
|
@param The function ref id
|
|
|
|
@param Number of parameters
|
|
|
|
@return The integer value returned from the script function.
|
|
|
|
*/
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeFunctionByRefID(int nHandler, int numArgs = 0);
|
|
|
|
virtual int executeFunctionWithIntegerData(int nHandler, int data);
|
|
|
|
virtual int executeFunctionWithFloatData(int nHandler, float data);
|
|
|
|
virtual int executeFunctionWithBooleanData(int nHandler, bool data);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
// functions for excute touch event
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeTouchEvent(int nHandler, int eventType, cocos2d::CCTouch *pTouch);
|
|
|
|
virtual int executeTouchesEvent(int nHandler, int eventType, cocos2d::CCSet *pTouches);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
// execute a schedule function
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual int executeSchedule(int nHandler, cocos2d::ccTime dt);
|
2012-02-07 11:43:29 +08:00
|
|
|
|
|
|
|
// Add lua loader, now it is used on android
|
2012-02-09 14:07:11 +08:00
|
|
|
virtual void addLuaLoader(lua_CFunction func);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
2012-02-09 14:07:11 +08:00
|
|
|
static CCLuaEngine* engine();
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
private:
|
2012-02-09 14:07:11 +08:00
|
|
|
CCLuaEngine(void)
|
|
|
|
: m_state(NULL)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool init(void);
|
2012-02-01 16:55:46 +08:00
|
|
|
|
|
|
|
lua_State* m_state;
|
|
|
|
};
|
|
|
|
|
2012-02-09 14:07:11 +08:00
|
|
|
NS_CC_END
|
2012-02-01 16:55:46 +08:00
|
|
|
|
2012-02-02 15:58:10 +08:00
|
|
|
#endif // __CC_LUA_ENGINE_H__
|