• 记一次C++与lua连接


    今晚,花了两个多钟折腾lua和c++的互连,终于成功了,觉得有必要记录下来。说实话,搜索引擎真是有利有弊,利在你有地方搜答案,弊则在于你半天都找不到正确的答案甚至找到误导你的答案,今晚更加加深了我的体会,不过总算折腾出点成果了。

    前期准备:装好LuaForWindows(LFW),装好Visual Studio 2013(其实用6.0就已经足够了)。

    接下来,打开VS,新建一个解决方案,在解决方案下新添加一个工程,作为我的第一个例子,就新建了一个win32控制台程序。然后,右键工程设置它的属性:

    配置属性->VC++目录->可执行文件目录,设置LFW目录,例:E:Programlua5.1

    配置属性->VC++目录->包含目录,设置include文件夹,例:E:Programlua5.1include

    配置属性->VC++目录->库目录-设置lib目录,例:E:Programlua5.1lib

    链接器->输入->附加依赖项,添加“lua5.1.lib;lua51.lib”

    接下来,送上C++代码了,在网上东拼西凑,再加点自己代码的混合体:

     1 // Test.cpp : 定义控制台应用程序的入口点。
     2 //
     3 // Lua和C通过一堆栈struct lua_State交换数据,栈底为1,栈顶为-1,默认大小20
     4 // lua_checkstack : 修改栈大小
     5 // lua_gettop : 获得栈元素数目
     6 // lua_getglobal : 获取某全局变量,void lua_getglobal(lua_State*L, constchar*name)
     7 // lua_isnumber/ lua_istable : 判断类型
     8 // lua_tonumber/ lua_tostring : 类型转换
     9 // lua_pushstring : 压入栈顶,如lua_pushstring(L, "i")
    10 // lua_pushnil : 压入一空值
    11 // lua_remove : 从栈移除元素
    12 // lua_gettable :
    13 // lua_next : 遍历数组(key从1开始的table),如while(lua_next(L, -2)!=0){}
    14 // 
    15 // lua_newtable(L) - 新建table放在栈顶
    16 // lua_pushstring(L,"mydata") - 压入key
    17 // lua_pushnumber(L,66) - 压入value
    18 // lua_settable(L, -3)
    19 // lua_rawseti(L, -2, 0)
    20 // ...
    21 //
    22 // 调用Lua函数可以这样理解吧,压入函数->压入参数->call->返回值已经在栈顶。不知道对不对
    23 //
    24 #include "stdafx.h"
    25 #include "stdlib.h"
    26 extern "C"{
    27     #include "lua.h"
    28     #include "lualib.h"
    29     #include "lauxlib.h"
    30 };
    31 
    32 lua_State *L;
    33 int luaAdd(int x, int y)
    34 {
    35     int sum;
    36     lua_getglobal(L, "add");  //Lua函数也是变量(指针),可入栈
    37     lua_pushnumber(L, x);  //参数入栈
    38     lua_pushnumber(L, y);  //参数入栈
    39     lua_call(L, 2, 1);
    40     sum = (int)lua_tonumber(L, -1);
    41     lua_pop(L, 1);
    42     return sum;
    43 }
    44 
    45 int _tmain(int argc, _TCHAR* argv[])
    46 {
    47     int sum = 0;
    48     L = lua_open();  //创建Lua接口指针
    49     luaopen_base(L);  //加载Lua基本库
    50     luaL_openlibs(L);  //加载Lua通用扩展库
    51     luaL_loadfile(L, "add.lua");  //加载脚本
    52     lua_pcall(L, 0, LUA_MULTRET, 0);  //调用Lua函数,pcall函数会自动清除入栈变量(虚拟机指针,,,)
    53     sum = luaAdd(10, 15);
    54     printf("The sum is %d
    ", sum);
    55     lua_close(L);
    56     system("PAUSE");
    57     return 0;
    58 }

    还有add.lua脚本:

    --简单的例子,只做整数加法
    function add(x, y)
        return x + y
    end

    脚本保存在工程目录下,和cpp文件住在一起。

    总算看到控制台的显示“The sum is 25”了,虽说,整个过程写出来好像很简单的样子,但折腾一下就知道探索的过程有多辛苦了!

  • 相关阅读:
    LeetCode1049. 最后一块石头的重量 II
    LeetCode416. 分割等和子集
    LeetCode96. 不同的二叉搜索树
    LeetCode343. 整数拆分
    python笔记---内置容器
    Numpy学习笔记(一)
    tensorflow入门代码分析
    神经网络
    回归算法
    机器学习入门笔记
  • 原文地址:https://www.cnblogs.com/xzhang/p/3911563.html
Copyright © 2020-2023  润新知