cocos2dx-3.x 导出自定义类到 lua 过程详解
转载请注明出处:http://www.cnblogs.com/Ray1024
一、简介
最近正在学习cocos2d中的lua游戏开发,因为lua开发的热更新特性,大家开发游戏好像都会优先选择lua作为开发语言。
但是遇到一个问题,用lua写一些简单的程序没什么问题,但是一旦需要一个复杂的类,在lua中直接写就感觉有些吃力。所以想到,可以把游戏开发中比较复杂的模块使用c++完成,然后导出到lua,让lua可以轻松调用。
我从头到尾完整地完成了cocos2dx-3.x中自定义类的导出过程,在网上查了好多资料,也碰到了很多错误,然而网上关于这块的文章比较零散,如果有初学者使用的话得费半天劲才能找全。所以我在这篇文章中详细地介绍整个过程,并将过程中容易出现的问题和解决方法列举出来,供大家参考。
二、过程详解
2.1 环境配置(windows环境下)
2.2 写C++类
我测试用的是cocos2d-x-3.3\tests\lua-empt-test\project\Classes\HelloWorldScene.cpp。
2.3 写一个导出的python脚本
1)进入目录cocos2d-x-3.3\tools\tolua,复制一份genbindings.py,命名为genbindings_myclass.py
2)把生成目录制定到咱工程里去,打开genbindings_myclass.py把
- output_dir = '%s/cocos/scripting/lua-bindings/auto' % project_root
改成
- output_dir = '%s/tests/lua-empty-test/project/Classes/auto' % project_root
3)修改命令参数,把
- cmd_args = {'cocos2dx.ini' : ('cocos2d-x', 'lua_cocos2dx_auto'), \
- 'cocos2dx_extension.ini' : ('cocos2dx_extension', 'lua_cocos2dx_extension_auto'), \
- 'cocos2dx_ui.ini' : ('cocos2dx_ui', 'lua_cocos2dx_ui_auto'), \
- 'cocos2dx_studio.ini' : ('cocos2dx_studio', 'lua_cocos2dx_studio_auto'), \
- 'cocos2dx_spine.ini' : ('cocos2dx_spine', 'lua_cocos2dx_spine_auto'), \
- 'cocos2dx_physics.ini' : ('cocos2dx_physics', 'lua_cocos2dx_physics_auto'), \
- }
改成
- cmd_args = {'myclass.ini' : ('myclass', 'lua_myclass_auto') }
2.4 写myclass.ini文件
我们接下来写myclass.ini文件,拷贝一份cocos2dx_spine.ini改名,修改成如下内容:
- [myclass]
- # the prefix to be added to the generated functions. You might or might not use this in your own
- # templates
- prefix = myclass
- # create a target namespace (in javascript, this would create some code like the equiv. to `ns = ns || {}`)
- # all classes will be embedded in that namespace
- target_namespace =
- android_headers = -I%(androidndkdir)s/platforms/android-14/arch-arm/usr/include -I%(androidndkdir)s/sources/cxx-stl/gnu-libstdc++/4.7/libs/armeabi-v7a/include -I%(androidndkdir)s/sources/cxx-stl/gnu-libstdc++/4.7/include
- android_flags = -D_SIZE_T_DEFINED_
- clang_headers = -I%(clangllvmdir)s/lib/clang/3.3/include
- clang_flags = -nostdinc -x c++ -std=c++11
- cocos_headers = -I%(cocosdir)s/cocos -I%(cocosdir)s/cocos/2d -I%(cocosdir)s/cocos/base -I%(cocosdir)s/cocos/ui -I%(cocosdir)s/cocos/physics -I%(cocosdir)s/cocos/2d/platform -I%(cocosdir)s/cocos/2d/platform/android -I%(cocosdir)s/cocos/math/kazmath -I%(cocosdir)s/extensions -I%(cocosdir)s/external -I%(cocosdir)s/cocos/editor-support -I%(cocosdir)s
- cocos_flags = -DANDROID -DCOCOS2D_JAVASCRIPT
- cxxgenerator_headers =
- # extra arguments for clang
- extra_arguments = %(android_headers)s %(clang_headers)s %(cxxgenerator_headers)s %(cocos_headers)s %(android_flags)s %(clang_flags)s %(cocos_flags)s %(extra_flags)s
- # what headers to parse
- headers = %(cocosdir)s/tests/lua-empty-test/project/Classes/HelloWorldScene.h
- # what classes to produce code for. You can use regular expressions here. When testing the regular
- # expression, it will be enclosed in "^$", like this: "^Menu*$".
- classes = HelloWorld
- # what should we skip? in the format ClassName::[function function]
- # ClassName is a regular expression, but will be used like this: "^ClassName$" functions are also
- # regular expressions, they will not be surrounded by "^$". If you want to skip a whole class, just
- # add a single "*" as functions. See bellow for several examples. A special class name is "*", which
- # will apply to all class names. This is a convenience wildcard to be able to skip similar named
- # functions from all classes.
- skip =
- rename_functions =
- rename_classes =
- # for all class names, should we remove something when registering in the target VM?
- remove_prefix =
- # classes for which there will be no "parent" lookup
- classes_have_no_parents =
- # base classes which will be skipped when their sub-classes found them.
- base_classes_to_skip = Ref ProcessBase
- # classes that create no constructor
- # Set is special and we will use a hand-written constructor
- abstract_classes =
- # Determining whether to use script object(js object) to control the lifecycle of native(cpp) object or the other way around. Supported values are 'yes' or 'no'.
- script_control_cpp = no
改的时候要注意这些行:
- [myclass]
- prefix = myclass
- target_namespace =
- headers = %(cocosdir)s/tests/lua-empty-test/project/Classes/HelloWorldScene.h
- classes = HelloWorld
- skip =
- abstract_classes =
2.5 运行python脚本
下面要自动生成代码了,打开命令行工具,cd到cocos2d-x-3.3\tools\tolua下,敲入
- python genbindings_myclass.py
回车运行。如果前面没问题的话你会在cocos2d-x-3.3\tests\lua-empty-test\project\Classes多了一个文件夹auto。
如果生成成功,那么恭喜你已经越过了难度最大、陷阱最多的地方。如果出现错误,那么很可能是你第一部分的环境配置有问题。
注意:如果出现错误“dos2unix 既不是内部或外部命令,也不是可运行的程序”这样的错误,我的解决方法是,把自己从网上下载的dos2unix.exe文件放在C:\Windows\System32这个文件夹底下,再重新运行脚本,就发现错误没有了。如果还不行,可以配置环境变量里的path,使之指向C:\Windows\System32目录。dos2unix.exe的下载目录:http://pan.baidu.com/s/1kTghHzD。
2.6 把自定义类的module加入lua
然后把里面生成lua_myclass_auto.cpp和lua_myclass_auto.hpp加入工程中。
把我们生成的个module在脚本引擎初始化的时候加入lua。编辑AppDelegate.cpp,包含lua_myclass_auto.hpp头文件,在
- LuaEngine* engine = LuaEngine::getInstance();
后面加入
- register_all_myclass(engine->getLuaStack()->getLuaState());
2.7 编译运行
编译运行。这样HelloWorld这个类就被导出到lua了。
2.8 导出成功,在lua中使用
这样整个导出过程就完成了,我们就可以在lua中使用自定义类了。
这样我们就大功告成了!
cocos2dx-3.x 导出自定义类到 lua 过程详解的更多相关文章
- 第8.8节 Python使用__new__方法和构造方法__init__完成类实例化的过程详解
第8.8节 Python使用__new__方法和构造方法__init__完成类实例化的过程详解 前面章节介绍了Python类中的__new__方法和构造方法__init__,并通过实例分析了二者之间关 ...
- cocos2dx3.0rc导出自定义类到lua的方法
以前要导出c++类到lua,就得手动维护pkg文件,那简直就是噩梦,3.0以后就会感觉生活很轻松了. 转载请注明出处http://www.cnblogs.com/mrblue/p/3637910.ht ...
- cocos2dx3.0导出自定义类到lua的方法详细步骤
我写了一个用3.0的工具导出类到lua,自动生成代码的方法. 以前要导出c++类到lua,就得手动维护pkg文件,那简直就是噩梦,3.0以后就会感觉生活很轻松了. 下面我就在说下具体做法.1.安装必要 ...
- win7系统cocos2dx 3.4 绑定自定义类到Lua
Cocos2d-x 3.0开始使用bindings-generator来生成c++类的lua绑定.bindings-generator基于tolua++,通过配置tools/tolua中的ini文件以 ...
- cocos2d-x-lua如何导出自定义类到lua脚本环境
这篇教程是基于你的工程是cocos2d-x-lua的项目,我假设你已经完全驾驭cocos-x/samples/Lua/HelloLua工程,基本明白lua和c++互调的一些原理. 我们的目的是要在 ...
- Python的Django框架中forms表单类的使用方法详解
用户表单是Web端的一项基本功能,大而全的Django框架中自然带有现成的基础form对象,本文就Python的Django框架中forms表单类的使用方法详解. Form表单的功能 自动生成HTML ...
- Java基础-DButils工具类(QueryRunner)详解
Java基础-DButils工具类(QueryRunner)详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 如果只使用JDBC进行开发,我们会发现冗余代码过多,为了简化JDBC ...
- .NET Core使用NPOI导出复杂,美观的Excel详解
前言: 这段时间一直专注于数据报表的开发,当然涉及到相关报表的开发数据导出肯定是一个不可避免的问题啦.客户要求要导出优雅,美观的Excel文档格式的来展示数据,当时的第一想法就是使用NPOI开源库来做 ...
- Delphi中TStringList类常用属性方法详解
TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的. 常规的用法大家都知道,现在来讨论它的一些高级的用法. 先把要讨论的几个属性列出来: 1.CommaText 2.Delim ...
随机推荐
- 从WEB SERVICE 上返回大数据量的DATASET
前段时间在做一个项目的时候,遇到了要通过WEB SERVICE从服务器上返回数据量比较大的DATASET,当然,除了显示在页面上以外,有可能还要用这些数据在客户端进行其它操作.查遍了网站的文章,问了一 ...
- 设置Tomcat编码
设置Tomcat编码 <Connector port="8080" maxThreads="150" mi ...
- Android——GridView(网格视图)相关知识总结贴
Android API中文文档GridView http://www.apkbus.com/android-14131-1-1.html Android API 中文 (15) —— GridVi ...
- Socket原理与编程基础(转)
一.Socket简介 Socket是进程通讯的一种方式,即调用这个网络库的一些API函数实现分布在不同主机的相关进程之间的数据交换. 几个定义: (1)IP地址:即依照TCP/IP协议分配给本地主机的 ...
- 在github上写博客
在github上混了几个月,收获颇多.作为一个开源的坚定信仰者,深深觉得每一个码农都应该参与到开源社区中,github提供了一个平台,让你为开源项目提交代码变得异常简单和直接.以前由于工作异常繁忙和繁 ...
- Pinterest 架构:两年内月 PV 从零到百亿【翻译】
原文地址 这篇文章,采用 Markdown 方式,写的还是比较实在的,要是有架构图就好了. Pinterest 是图片版的 Twitter,用户把自己感兴趣的东西用图钉(Pins)钉在钉板(PinBo ...
- vim 光标按行移动
记录一下: [ H/M/L ] 注意:这几个命令是大写的. 使用H/M/L这三个键,可以让光标跳到当前窗口的顶部.中间.和底部,停留在第一个非空字符上.H命令和L命令前也可以加一个数字,但数字的含义不 ...
- ASP.NET 4.0 potentially dangerous Request.Form value was detected
A few days ago, while working on an ASP.NET 4.0 Web project, I got an issue. The issue was, when use ...
- MySQL中导入 导出CSV
来自:http://blog.csdn.net/sara_yhl/article/details/6850107 导出 select * from test_info into outfile '/t ...
- SQL Server 几种锁的区别
NOLOCK(不加锁) 此选项被选中时,SQL Server 在读取或修改数据时不加任何锁. 在这种情况下,用户有可能读取到未完成事务(Uncommited Transaction)或回 ...