您的位置:首页 > 编程语言 > Lua

传Lua对象到Cpp

2016-07-19 16:04 453 查看
传Lua对象到Cpp

(金庆的专栏)

摘自:http://raycast.net/lua-intf

以下代码演示了Lua函数和表传入Cpp进行处理:

std::string acceptStuff(LuaRef luaObj,
const std::vector<std::string>& stringVector,
std::map<std::string, int>& dict)
{
// Assume that this function expects Lua object (table) as first argument
auto func = luaObj.get<std::function<std::string(int)>>("func");
auto stringField = luaObj.get<std::string>("str");
std::ostringstream s;
s << "func() result: " << func(10) << ", string field value: " << stringField << "\n";
s << "Vector size: " << stringVector.size() << ", first element: " << stringVector[0] << "\n";
s << "Dictionary size: " << dict.size() << ", first element: (" <<
dict.begin()->first << ", " << dict.begin()->second << ")";
return s.str();
}

LuaBinding(lua).beginModule("test")
.addFunction("acceptStuff", &acceptStuff)
.endModule();


// Lua
local obj = {
func = function(i)
return "You passed number " .. i
end,
str = "Hello, world"
}
local v = { 1, 2, 3 }
local dict = { first = 1, second = 2 }
print(test.acceptStuff(obj, v, dict))


// Output
func() result: You passed number 10, string field value: Hello, world
Vector size: 3, first element: 1
Dictionary size: 2, first element: (first, 1)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: