C++调用lua函数

C++ 调用Lua全局变量(普通)

	lua_getglobal(lua, "width");int width = lua_tointeger(lua,-1);lua_pop(lua,1);std::cout << width << std::endl;lua_close(lua);

这几行代码要放到lua_pcall(lua, 0,0,0);之后才可以.

C++给lua传递变量

	lua_pushstring(lua, "Hello");lua_setglobal(lua, "test");

这几行要放到lua_pcall(lua, 0,0,0);之前,要不lua调不到test这个变量的值.

C++ 调用Lua全局变量表

	lua_getglobal(lua,"conf");lua_getfield(lua, -1, "titlename");std::cout << lua_tostring(lua,-1) << std::endl;lua_pop(lua, 1);lua_getfield(lua,-1,"height");std::cout << lua_tointeger(lua, -1) << std::endl;lua_pop(lua, 1);

C++给lua传递表

	/*C++给lua传入普通表*/lua_newtable(lua);lua_pushstring(lua,"name");lua_pushstring(lua,"xiaoming");lua_settable(lua,-3);lua_pushstring(lua,"age");lua_pushinteger(lua,20);lua_settable(lua, -3);lua_setglobal(lua, "person");

C++ 调用lua函数

	/*C++ 调用 Lua函数 */lua_getglobal(lua, "event");/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/lua_pcall(lua, 0, 0, 0); 

lua

function event()print("C++ call lua")
end

优化:

	/*C++ 调用 Lua函数 */std::cout << "top is = " << lua_gettop(lua) << std::endl; //检查堆栈是否有泄露lua_getglobal(lua, "event");/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/if (lua_pcall(lua, 0, 0, 0) != 0){	std::cout << "call event failed" << lua_tostring(lua, -1) << std::endl;lua_pop(lua,1);}std::cout << "top is = " << lua_gettop(lua) << std::endl;

C++ 调用lua函数,传递参数并接收返回值

	/*C++ 调用 Lua函数 */std::cout << "top is = " << lua_gettop(lua) << std::endl;lua_getglobal(lua, "event");lua_pushstring(lua,"key"); // 传入参数/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/if (lua_pcall(lua, 1, 1, 0) != 0){	std::cout << "call event failed" << lua_tostring(lua, -1) << std::endl;lua_pop(lua,1);}else{std::cout << "lua return = " << lua_tostring(lua, -1) << std::endl;lua_pop(lua, 1);}std::cout << "top is = " << lua_gettop(lua) << std::endl;

lua 

function event(str)print("C++ call lua")print("str = " .. str)return "1234"
end

添加lua错误处理

	/*C++ 调用 Lua函数 */std::cout << "top is = " << lua_gettop(lua) << std::endl;int errfun = lua_gettop(lua);lua_getglobal(lua, "ferror");errfun++;lua_getglobal(lua, "event");lua_pushstring(lua,"key"); // 传入参数	/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/if (lua_pcall(lua, 1, 1, errfun) != 0){	std::cout << "call event failed" << lua_tostring(lua, -1) << std::endl;lua_pop(lua,1);}else{std::cout << "lua return = " << lua_tostring(lua, -1) << std::endl;lua_pop(lua, 1);}lua_pop(lua, 1);std::cout << "top is = " << lua_gettop(lua) << std::endl;

Lua

function ferror(e)print("ferror = " .. e)return "lua change error"
endfunction event1(str)print("C++ call lua")print("str = " .. str)return "1234"
end

结果:

 

C++给lua传表参数,C++接收表参数

	/*lua给C++传入表*/lua_getglobal(lua,"conf");lua_getfield(lua, -1, "titlename");std::cout << lua_tostring(lua,-1) << std::endl;lua_pop(lua, 1);lua_getfield(lua,-1,"height");std::cout << lua_tointeger(lua, -1) << std::endl;lua_pop(lua, 1);/*C++ 调用 Lua函数 */std::cout << "top is = " << lua_gettop(lua) << std::endl;int errfun = lua_gettop(lua);lua_getglobal(lua, "ferror");errfun++;lua_getglobal(lua, "event");lua_pushstring(lua,"key"); // 传入参数	lua_newtable(lua);lua_pushstring(lua,"name");lua_pushfstring(lua,"xiaoming");lua_settable(lua, -3);/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/if (lua_pcall(lua, 2, 1, errfun) != 0){	std::cout << "call event failed" << lua_tostring(lua, -1) << std::endl;lua_pop(lua,1);}else{lua_getfield(lua, -1,"id");std::cout << "lua return tab= " << lua_tointeger(lua, -1) << std::endl;lua_pop(lua, 1);}lua_pop(lua, 2);std::cout << "top is = " << lua_gettop(lua) << std::endl;

lua

function event(str,tab)print("C++ call lua")print("str = " .. str)print("tab = " .. tab.name)local re = {id=123}return re
end

全部代码:

lua

--CTest()--CTestToString("lua string",123456,true)
--local arr = {"A001","A002","A003"};
--CTestArr(arr)
--local tab = {name="xiaoming",age="22",id="007"};
--CTestTable(tab)--local re = TestRe()
--print("re = " .. re)--local retab = TestReTable()
--print("name = " .. retab["name"])
--print("name = " .. retab["age"])width = 1920
print(test)conf = 
{titlename = "first lua",height = 1080
}print("person is name = " .. person["name"])
print("person is age = " .. person.age)function ferror(e)print("ferror = " .. e)return "lua change error"
endfunction event(str,tab)print("C++ call lua")print("str = " .. str)print("tab = " .. tab.name)local re = {id=123}return re
end

C++ 

#include <iostream>
extern "C"
{
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
}
#include <vector>
#include <string>
#include <map>int CTest(lua_State* L) // 返回值是固定的int类型,返回0表示没有返回参数,返回1表示有一个返回参数
{std::cout << "int CTest" << std::endl;return 0;
}int CTestToString(lua_State* L)
{const char* luaStr = lua_tostring(L,1);std::cout << luaStr << std::endl;int num = lua_tointeger(L,2);std::cout << num << std::endl;bool is = lua_toboolean(L, 3);std::cout << is << std::endl;return 0;
}int CTestArr(lua_State* L)
{std::vector<std::string> vStr;std::cout << "int CTestArr" << std::endl;int arraySize = luaL_len(L, 1); //获取表的大小for (int i = 1; i <= arraySize; ++i){lua_pushnumber(L,i);	//往栈中压入一个数字,表示从数组中取那个下标的值,lua都是从1开始的所以i从1开始lua_gettable(L, 1);		//把上一行索引的位置出栈,再把i压入 栈vStr.push_back(lua_tostring(L,-1));lua_pop(L,1);}for (auto& value : vStr){std::cout << value << std::endl;}return 0;
}int CTestTable(lua_State* L)
{std::cout << "int CTestTable" << std::endl;/*   读取全部的表的内容 */std::map<std::string, std::string> mStr;lua_pushnil(L);while (lua_next(L, 1) != 0){mStr[lua_tostring(L, -2)] = lua_tostring(L,-1);lua_pop(L,1);}for (auto& value : mStr){std::cout << value.first << " = " << value.second << std::endl;}/* 只取一个lua_getfield(L,1,"name");std::cout << lua_tostring(L,-1) << std::endl;*/return 0;
}int TestRe(lua_State* L)
{lua_pushstring(L,"return value");return 1;
}int TestReTable(lua_State* L)
{lua_newtable(L);  // 创建一个表格,放在栈顶lua_pushstring(L,"name"); // 压入keylua_pushstring(L,"ccname");//压入valuelua_settable(L,-3); //弹出key value,并设置到表,表在栈顶了作为返回值lua_pushstring(L, "age"); // 压入keylua_pushinteger(L, 21);//压入valuelua_settable(L, -3); //弹出key value,并设置到表,表在栈顶了作为返回值return 1;
}int main()
{lua_State *lua = luaL_newstate();luaopen_base(lua);luaopen_string(lua);lua_register(lua,"CTest",CTest); //第一个参数是lua状态指针,第二个参数是函数名称,第三个参数是lua函数指针,第二个参数和第三个参数可以用不同的名字,但第三个必须使用正确的函数指针lua_register(lua, "CTestToString", CTestToString);lua_register(lua, "CTestArr", CTestArr);lua_register(lua, "CTestTable", CTestTable);lua_register(lua, "TestRe", TestRe);lua_register(lua, "TestReTable", TestReTable);/*C++给lua传入普通值*/lua_pushstring(lua, "Hello");lua_setglobal(lua, "test");/*C++给lua传入普通表*/lua_newtable(lua);lua_pushstring(lua,"name");lua_pushstring(lua,"xiaoming");lua_settable(lua,-3);lua_pushstring(lua,"age");lua_pushinteger(lua,20);lua_settable(lua, -3);lua_setglobal(lua, "person");luaL_loadfile(lua, "D:\\code\\MyCode\\C++\\Lua\\CPPAddLua\\testLua\\x64\\Debug\\main.lua");lua_pcall(lua, 0,0,0);/*lua给C++传入普通值*/lua_getglobal(lua, "width");int width = lua_tointeger(lua,-1);lua_pop(lua,1);std::cout << width << std::endl;/*lua给C++传入表*/lua_getglobal(lua,"conf");lua_getfield(lua, -1, "titlename");std::cout << lua_tostring(lua,-1) << std::endl;lua_pop(lua, 1);lua_getfield(lua,-1,"height");std::cout << lua_tointeger(lua, -1) << std::endl;lua_pop(lua, 1);/*C++ 调用 Lua函数 */std::cout << "top is = " << lua_gettop(lua) << std::endl;int errfun = lua_gettop(lua);lua_getglobal(lua, "ferror");errfun++;lua_getglobal(lua, "event");lua_pushstring(lua,"key"); // 传入参数	lua_newtable(lua);lua_pushstring(lua,"name");lua_pushfstring(lua,"xiaoming");lua_settable(lua, -3);/*//第一个参数lua的状态,第二个参数是传递给 Lua 函数的参数数量,第三个参数 Lua 函数中返回的结果数量,第四个参数这是错误处理函数在堆栈中的索引。如果在调用 Lua 函数时发生了错误,Lua 将调用此错误处理函数。如果不需要错误处理函数,可以将其设置为 0。*/if (lua_pcall(lua, 2, 1, errfun) != 0){	std::cout << "call event failed" << lua_tostring(lua, -1) << std::endl;lua_pop(lua,1);}else{lua_getfield(lua, -1,"id");std::cout << "lua return tab= " << lua_tointeger(lua, -1) << std::endl;lua_pop(lua, 1);}lua_pop(lua, 2);std::cout << "top is = " << lua_gettop(lua) << std::endl;lua_close(lua);getchar();return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/717822.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python 操作 Excel,如何又快又好?

➤数据处理是 Python 的一大应用场景&#xff0c;而 Excel 则是最流行的数据处理软件。因此用 Python 进行数据相关的工作时&#xff0c;难免要和 Excel 打交道。Python处理Excel 常用的系列库有&#xff1a;xlrd、xlwt、xlutils、openpyxl ◈xlrd &#xff0d; 用于读取 Exce…

Rocky 9 安装 R-CytoTRACE

官网给出的详细指南&#xff0c;只是可能大家打不开或者懒得去看E文。 第一步&#xff0c;下载CytoTRACE安装包。 wget https://cytotrace.stanford.edu/CytoTRACE_0.3.3.tar.gz 第二步&#xff0c;打开R或者Rstudio-server # 安装依赖包 if (!requireNamespace("Bioc…

视频云平台——搭建SRS5平台支持GB28181视频流的推送

&#x1f4e2;欢迎点赞 &#xff1a;&#x1f44d; 收藏 ⭐留言 &#x1f4dd; 如有错误敬请指正&#xff0c;赐人玫瑰&#xff0c;手留余香&#xff01;&#x1f4e2;本文作者&#xff1a;由webmote 原创&#x1f4e2;作者格言&#xff1a;新的征程&#xff0c;我们面对的不仅…

谨用ArrayList中的subList方法

谨用ArrayList中的subList方法 规范一&#xff1a; ArrayList 的 subList 结果不可强转成 ArrayList&#xff0c;否则会抛出 ClassCastException 异常&#xff1a; public static void test7() {List<Integer> list new ArrayList<>();list.add(1);list.add(2);…

JavaWeb—— SpringBootWeb综合案例(登录功能、登录校验、异常处理)

案例-登录认证 目录 案例-登录认证1. 登录功能1.1 需求1.2 接口文档1.3 思路分析1.4 功能开发1.5 测试 2. 登录校验2.1 问题分析2.2 会话技术2.2.1 会话技术介绍2.2.2 会话跟踪方案2.2.2.1 方案一 - Cookie2.2.2.2 方案二 - Session2.2.2.3 方案三 - 令牌技术 2.3 JWT令牌2.3.1…

程序员眼中的“祖传代码”

引言 在IT界&#xff0c;特别是在Java项目中&#xff0c;“祖传代码”通常指的是那些经过长时间积累、由多位开发者共同维护、且蕴含深厚技术沉淀的代码片段或模块。这些代码可能存在于项目的核心模块&#xff0c;也可能是一些辅助性的工具类。它们承载着项目的历史&#xff0…

Matlab 多项式插值(曲线拟合)

文章目录 一、简介二、实现代码三、实现效果参考资料一、简介 由于对曲线拟合有些兴趣,这里就找了一些资料从最基本的方法来看一下曲线拟合的效果: 二、实现代码 % **********

python科学计算库之Numpy库的使用的简单习题

Numpy库 Numpy&#xff08;Numerical Python的缩写&#xff09;是一个开源的Python库&#xff0c;用于进行科学计算。它提供了一个高性能的多维数组对象&#xff08;ndarray&#xff09;及用于处理这些数组的各种工具和函数。由于其高效和灵活的数据结构以及丰富的功能&#x…

Google 地图 API 教程--干货(1/2)

Google Maps API 教程 在本教程中我们将学习如何使用谷歌地图API V3创建交互式地图。 什么是 API? API = 应用程序编程接口(Application programming interface)。 API(Application Programming Interface,应用编程接口)其实就是操作系统留给应用程序的一个调用接口,…

案例介绍:汽车售后服务网络构建与信息抽取技术应用(开源)

一、引言 在当今竞争激烈的汽车行业中&#xff0c;售后服务的质量已成为品牌成功的关键因素之一。作为一位经验丰富的项目经理&#xff0c;我曾参与构建一个全面的汽车售后服务网络&#xff0c;旨在为客户提供无缝的维修、保养和配件更换服务。这个项目的核心目标是通过高效的…

状态机实现双击、短按、长按等按键识别检测算法

1、按键识别算法的作用 按键识别算法在不同的技术和应用背景下有不同的作用&#xff0c;但其核心目标都是准确、可靠地检测和区分用户通过物理或虚拟按键所执行的操作。按键识别算法在各类电子设备及系统中起到至关重要的作用&#xff0c;它确保了人机交互的有效性和准确性&…

Vue前端+快速入门【详解】

目录 1.Vue概述 2. 快速入门 3. Vue指令 4.表格信息案例 5. 生命周期 1.Vue概述 1.MVVM思想 原始HTMLCSSJavaScript开发存在的问题&#xff1a;操作麻烦&#xff0c;耦合性强 为了实现html标签与数据的解耦&#xff0c;前端开发中提供了MVVM思想&#xff1a;即Model-Vi…

Mysql-主从架构篇(一主多从,半同步案例搭建)

主从架构 主从架构有什么用&#xff1f; 通过搭建MySQL主从集群&#xff0c;可以缓解MySQL的数据存储以及访问的压力。 数据安全&#xff08;主备&#xff09;&#xff1a;给主服务增加一个数据备份。基于这个目的&#xff0c;可以搭建主从架构&#xff0c;或者也可以基于主…

redis进阶(一)

文章目录 前言一、Redis中的对象的结构体如下&#xff1a;二、压缩链表三、跳跃表 前言 Redis是一种key/value型数据库&#xff0c;其中&#xff0c;每个key和value都是使用对象表示的。 一、Redis中的对象的结构体如下&#xff1a; /** Redis 对象*/ typedef struct redisO…

c# .net8 香橙派orangepi + hc-04蓝牙 实例

这些使用c# .net8开发&#xff0c;硬件 香橙派 orangepi 3lts和 hc-04蓝牙 使用场景&#xff1a;可以通过这个功能&#xff0c;手机连接orangepi进行wifi等参数配置 硬件&#xff1a; 1、带USB口的linux开发板orangepi 2、USB 转TTL 中转接蓝牙&#xff08;HC-04) 某宝上买…

Flink:Temporal Table Function(时态表函数)和 Temporal Join

博主历时三年精心创作的《大数据平台架构与原型实现&#xff1a;数据中台建设实战》一书现已由知名IT图书品牌电子工业出版社博文视点出版发行&#xff0c;点击《重磅推荐&#xff1a;建大数据平台太难了&#xff01;给我发个工程原型吧&#xff01;》了解图书详情&#xff0c;…

设计模式(十五)状态模式

请直接看原文:设计模式系列 ------------------------------------------------------------------------------------------------------------------------------- 前言 建议在阅读本文前先阅读设计模式&#xff08;十一&#xff09;策略模式这篇文章&#xff0c;虽说状态…

【MATLAB】MVMD_ MFE_SVM_LSTM 神经网络时序预测算法

有意向获取代码&#xff0c;请转文末观看代码获取方式~也可转原文链接获取~ 1 基本定义 MVMD_MFE_SVM_LSTM神经网络时序预测算法结合了多变量多尺度分解&#xff08;MVMD&#xff09;、多尺度特征提取&#xff08;MFE&#xff09;、支持向量机&#xff08;SVM&#xff09;和长…

小米消息队列的选型与实践

之前写了一篇关于消息队列的文章&#xff1a;《消息队列介绍与对比》&#xff0c;本文主要介绍消息队列在实际工作中的使用情况&#xff08;截止到2023年&#xff0c;因为我2023年离职了&#xff0c;后续的情况不了解了&#xff0c;哈哈&#xff09;。 市面上的多种消息队列都有…

node问题: command not found: nodemon

如何安装并使用 nodemon npm i -g nodemon 问题与解决方案&#xff1a; 问题&#xff1a;zsh: command not found: nodemon 解决方案&#xff1a; 在你的 package.json 中加入&#xff1a; "scripts": {"auto": "npx nodemon server.js" }…