cocos2dx中使用tolua++使lua调用c++函数

一直想学学cocos2dx中如何使用tolua++工具使得lua脚本调用C++函数,今天就来搞一下,顺便记录下来:windows

首先,咱们打开cocos2dx-2.2.4中projects下的test的VS工程,能够看到这个例子里面已经有一个HelloWorld的类,咱们就用它来讲明一下。ide

而后,咱们照着HelloWorld类的定义来写pkg文件:函数

//MyClass.pkg

class HelloWorld : public cocos2d::CCLayer

{

      virtual bool init();

      static cocos2d::CCScene* scene();

      void menuCloseCallback(CCObject* pSender);

      static HelloWorld* create();

};

 

咱们打开README文件能够看看书写pkg文件的语法:工具

1. Generating the lua<-->C bindings with tolua++ui

    Build scripts for windows (build.bat) and unix (build.sh) are providedlua

    to generate the relevant files after modifying the .pkg files.  Thesespa

    scripts basically run the following command:unix

        tolua++.exe -L basic.lua -o LuaCocos2d.cpp Cocos2d.pkgcode

    This will generate the bindings file and patch it with come cocos2dxblog

    specific modifications.

    On POSIX systems you can also just run "make" to build the bindings

    if/when you change .pkg files.

2. Writing .pkg files

    1) enum keeps the same

    2) remove CC_DLL for the class defines, pay attention to multi inherites

    3) remove inline keyword for declaration and implementation

    4) remove public protect and private

    5) remove the decalration of class member variable

    6) keep static keyword

7) remove memeber functions that declared as private or protected

有一点还须要注意的是static cocos2d::CCScene* scene(); 这句话最好写成static CCScene* scene();否则的话会出现下面这种错误:

error in function 'runWithScene'.

argument #2 is 'cocos2d::CCScene'; 'CCScene' expected.

缘由我也不太清楚,按照错误提示替换掉就好了。

 

接着,咱们把写好的pkg文件放在tolua++目录下,在cocos2d.pkg文件末尾添加$pfile "MyClass.pkg",点击运行build.bat,这个文件主要是将cocos2d.pkg内包含的pkg文件整合生成LuaCocos2d.cpp,看下内部语法就知道了:

tolua++ -L basic.lua -o "../../scripting/lua/cocos2dx_support/LuaCocos2d.cpp" Cocos2d.pkg

而后,咱们在LuaCocos2d.h中引入咱们的HelloWorld的头文件,在将lualib工程添加到该工程来,在该工程添加lua头文件的引用,在连接其中添加lua51.lib和lualib.lib。

 

接下来咱们添加一个lua脚本HelloWorld.lua,内容以下:

print("begin ...... ")

local director = CCDirector:sharedDirector()

local scene = HelloWorld:scene()

director:runWithScene(scene)

print("end ........ ")

 

在AppDelegate.cpp引入CCLuaEngine.h头文件,代码稍做以下修改:

//CCScene *pScene = HelloWorld::scene();

//pDirector->runWithScene(pScene);

CCScriptEngineProtocol* pEngine = CCLuaEngine::defaultEngine();

CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);

string fullpath = CCFileUtils::sharedFileUtils()->fullPathForFilename("HelloWorld.lua");

CCLuaEngine::defaultEngine()->executeScriptFile(fullpath.c_str());

 

最后运行看看:

相关文章
相关标签/搜索