• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Tomasu/LuaGlue: C++11 Lua 5.2 Binding Library

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

Tomasu/LuaGlue

开源软件地址(OpenSource Url):

https://github.com/Tomasu/LuaGlue

开源编程语言(OpenSource Language):

C++ 58.5%

开源软件介绍(OpenSource Introduction):

LuaGlue

Coverity Status Coverity Status

LuaGlue is a C++11 template based binding library.

It is contained entirely in headers, with no code to link to.

License: Zlib

example

Lua Code:

local test = Foo.new(333);
test:abc(1,2,3);

print("ONE: "..Foo.ONE);
print("TWO: "..Foo.TWO);
print("THREE: "..Foo.THREE);

C++ Code

#include <LuaGlue/LuaGlue.h>

class Foo
{
	public:
		Foo(int i) { printf("ctor! %i\n", i); }
		~Foo();
		
		int abc(int a, int b, int c) { printf("%i:%i:%i\n", a,b,c); return 143; }
		static void aaa() { printf("aaa!\n"); }
};

int main(int, char **)
{
	LuaGlue state;
	
	state.
		Class<Foo>("Foo").
			ctor<int>("new").
			method("abc", &Foo::abc).
			method("aaa", &Foo::aaa).
			constants( { { "ONE", 1 }, { "TWO", 2.0 }, { "THREE", "three" } } ).
		end().open().glue();
	
	if(!state.doFile("foo.lua"))
	{
		printf("failed to dofile: foo.lua\n");
		printf("err: %s\n", state.lastError().c_str());
	}
		
	return 0;
}

CHANGES

Aug 20 2014

Large refactor finished. A large amount of internal structure and code changed. Repo forks may break or fail to merge.

Passing Lua Values like tables, functions and basic types is supported through a new LuaGlueLuaValue type. For those times when you want a table or just don't care what type is passed to a C/C++ function from lua.

FUTURE

  • Pending name change, and large API break to add namespaces.

LICENSE

Copyright (c) 2013 Thomas Fjellstrom

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.

  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.

  3. This notice may not be removed or altered from any source distribution.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
cloudflare/raven-lua: A Lua interface to Sentry发布时间:2022-08-16
下一篇:
pohka/Lua-Beginners-Guide: Lua Beginners Guide发布时间:2022-08-16
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap