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


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

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

    然后,我们照着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++

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

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

        scripts basically run the following command:

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

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

        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());

    最后运行看看:

  • 相关阅读:
    js与设计模式访问者模式
    js与设计模式外观模式
    由一个小Bug推及ie及ff的dom元素差异
    构建一个前端库做一个富客户端的基类
    [原创]LINQ 学习系列教程文章索引
    Sublime Text 2 性感无比的代码编辑器!程序员必备神器!跨平台支持Win/Mac/Linux
    Ubuntu分区
    非常不错的WCF入门文章,来自Artech
    助记:MIME类型
    F#学习存疑求解答:关于使用Cotinuation仍然堆栈溢出的问题
  • 原文地址:https://www.cnblogs.com/yu-chao/p/4458179.html
Copyright © 2020-2023  润新知