c/c++中调用lua

本人最近学了lua,做点记录。。

要在c/c++中使用lua,当时首先是需要个lua的解析器啦。。。  从( http://www.lua.org/ ) 这个网站可以下到。本人是在这里下载的 lua5.3 的源码, 可以从 这个git库clone一份  本人的vs2013工程 ( https://git.oschina.net/liLinux/lua-5.3.git )。。已经做好了设置,可以编译成静态库或者动态库都行。

c中调用lua,很基础很简单。所以直接上代码

//callLua.lua  被c调用的lua中的内容

Width = 100;
Height = 100;

function f(x,y)
	return (x^2 * math.sin(y)) / (1 - x);
end

//.c文件

#include "stdafx.h"
#include <string.h>
#include <lua.hpp>
#include <stdlib.h>

#ifndef _DEBUG
#ifndef _UNICODE
#pragma comment(lib,"Static.lib")
#else
#pragma comment(lib,"Static_u.lib")
#endif // !_UNICODE

#else
#ifndef _UNICODE
#pragma comment(lib,"Static_d.lib")
#else
#pragma comment(lib,"Static_ud.lib")
#endif // !_UNICODE

#endif // !_DEBUG

//===========
double f(double x, double y)
{
	double dReturn = 0.0;

	lua_State* L = luaL_newstate();
	luaopen_base(L);   // 加载Lua基本库
	luaL_openlibs(L);  // 加载Lua通用扩展库

//加载lua文件
	if (0 != luaL_loadfile(L, ".\\callLua.lua"))
		error(L, "load file failed: %s", lua_tostring(L, -1));
	if (0 != lua_pcall(L, 0, 0, 0))
		error(L, "cannot run configuration file: %s", lua_tostring(L, -1));

//获取lua中的全局变量
	lua_getglobal(L, "Width");
	if (!lua_isnumber(L, -1))
		error(L, "`Width' should be a number\n");
	printf("width: %lf, ", lua_tonumber(L, -1));
	lua_pop(L,1);

	lua_getglobal(L, "Height");
	if (!lua_isnumber(L,-1))
		error(L, "`Height' should be a number\n");
	printf("height %.lf\n", lua_tonumber(L, -1));
	lua_pop(L,1);

//调用lua中的函数
	/*push functions and arguments*/
	lua_getglobal(L, "f");  //函数要先入栈
	lua_pushnumber(L, x);   //参数正序入栈
	lua_pushnumber(L, y);

	/*do the call (2 arguments, 1 result*/
	if (0 != lua_pcall(L, 2, 1, 0))  //执行后会自动将函数和使用的参数弹出栈,并将返回值压入栈
		error(L, "Error runing function 'f':%s", lua_tostring(L, -1));

         /*retrieve result*/
	if (!lua_isnumber(L, -1))
		error(L, "functiogn 'f' must return a number");

	dReturn = lua_tonumber(L, -1);
	lua_pop(L, 1);

	lua_close(L);
	return dReturn;
}
void Test()
{
	printf("value: %lf\n", f(10, 12));
}

int _tmain(int argc, _TCHAR* argv[])
{
	Test();

	system("pause");
	return 0;
}
时间: 2024-11-05 19:43:25

c/c++中调用lua的相关文章

C中调用Lua函数

我们先来看一个简单的例子: lua_State* L = NULL; // 内部调用lua函数 double f(double x, double y) { double z; lua_getglobal(L, "f"); // 获取lua函数f lua_pushnumber(L, x); // 压入参数x和y lua_pushnumber(L, y); if(lua_pcall(L, 2, 1, 0) != 0) error(L, "error running functi

C语言中调用Lua

C语言和Lua天生有两大隔阂: 一.C语言是静态数据类型,Lua是动态数据类型 二.C语言需要程序员管理内存,Lua自动管理内存 为了跨越世俗走到一起,肯定需要解决方案. 解决第一点看上去比较容易,C语言中有union. 可是第二点呢?万一C语言正引用着Lua的一个值,Lua自动释放了怎么办? 所以就有了一种比union更好的解决方案:栈. 这是一个虚拟的栈,是沟通两者的桥梁,两者的数据交换全都通过这个栈进行,这样只要不pop,Lua就不会自动释放,而什么时候pop由C语言说了算. 下面是一段喜

vs如何在C++中调用Lua

最近Cocos2dx的学习卡壳了,一般的照抄代码我不想写上来,但想示例也想得我头晕...为了放松大脑调整状态于是开始学习Lua.Lua的语法学习还是比较简单的,学过javascript或者vbscript的应该很容易就能上手,那些Lua独有的特性也是比较有趣,例如不定数目的多参数函数和随意的参数返回值等. 这里想要吐槽一下最近用来学习Lua的书籍<XX开发实践指南>(虽然没有写全名不过搜索过Lua学习资料的童鞋应该都懂是哪本书),不知道是作者问题还是译者问题,有些地方的解释说明有点糟糕,要么不

在C\C++中调用Lua

1.C\C++程序中调用Lua函数 方法一: #include "stdafx.h" #include <stdio.h> #include <string.h> #include <stdlib.h> #include "lua.hpp" const char* lua_function_code = "function dealStr(str) \   return string.gsub(str,\"Wo

vs2013如何在C++中调用Lua(二)

Lua学习笔记 vs2013如何在C++中调用Lua (此为转载教程) 本人试过完全可行 一.准备工作 1.下载Lua源码,地址:http://www.lua.org/download.html(我用的是目前最新版5.2.3) 2.将源码放在合适的盘(我的在D盘,路径D:/Lua-5.2.3/src) 3.打开vs2013新建一个win32控制台应用程序(Win32 console project ),我将他取名为LuaLib 4.确定后,会弹出应用程序向导的提示框,点击下一步.应用程序类型选择

c/c++中调用lua第一个例子

首先下载lua源码包,然后分别是make,make linux,make install 注意如果没有make install,那么在#include<lua.h>时,会报找不到lua.h文件的错误. 网上找到一段源码: func.lua --变量定义width=1 ;height=2 ;--lua函数定义,实现加法function sum(a,b)    return a+b ;end--lua函数定义,实现字符串相加function mystrcat(a,b)    return a..b

cocos2d-x 3.0 在C++中调用lua函数(2)

个人觉得3.0里面, 在C++下面调用lua函数很不方便, 所以就扩展了一个类, 继承自LuaStack, 代码和使用方式如下: #ifndef __CC_LUA_STACKEX_H_ #define __CC_LUA_STACKEX_H_ #include "CCLuaStack.h" NS_CC_BEGIN class LuaStackEx : public LuaStack { public: void call_script_fun(const char* fun) { exe

cocos2d-x 3.0 在C++中调用lua函数

代码用的是<cocos2d-x 3.0 在lua中调用自定义类>中的代码. 在上篇的基础上进行扩充. 写lua函数 local function process_packet(user_data) if user_data then user_data = tolua.cast(user_data, "user_data"); print (user_data:uid()); print (user_data:uname()); end end local ghall =

在C中调用Lua代码

这个程序从终端读入内容,而后按照lua块执行. #include <stdio.h> #include <string.h> #include "lua.h" #include "lauxlib.h" #include "lualib.h" int main(){ char buff[1024]; int error; memset(buff, 0, sizeof(buff)); lua_State *L = luaL_n