创建C++自定义类让Lua脚本调用
作者:网络转载 发布时间:[ 2014/11/12 14:05:40 ] 推荐标签:软件开发 C++ 脚本
这里将介绍使用tolua++将自定义的C++类嵌入,让lua脚本使用
一般过程:
自定义类 -> 使用tolua++工具编译到LuaCoco2d.cpp中 -> lua调用
步骤一:自定义一个C++类,我定义一个类名为:MySprite
MySprite.h
MySprite.cpp
步骤二:根据自定义类创建一个.pkg文件,我们把自定义的MySprite类定义到.pkg文件中
注意:1>,只要根据自定类.h中的内容,至于.cpp的实现,binding后lua会自动调用类的函数
2>,书写.pkg文件时要注意几条规则,我们到tolua++文件夹中找到README文件
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
这里有.pkg文件详细的书写规则
我们这里直接写一个MySprite.pkg文件,内容如下:
class MySprite : public CCSprite{
static MySprite * createMS(const char * fileName);
}
书写好我们的.pkg文件之后,将文件放入tolua++文件夹下可以了
步骤三:配置tolua++工具,用tolua++编译我们写的.pkg文件,将自定义类嵌入到LuaCocos2d.cpp中
我们在tolua++文件夹下找到tolua++.Mac.zip文件,并解压它得到一个tolua++的工具,如图:
解压出工具后,我们在配置tolua++的路径,用Xcode打开build.sh文件,更改俩个地方:
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11