gpt4 book ai didi

C++ - 调用的 Lua 函数总是返回 0

转载 作者:行者123 更新时间:2023-11-30 03:54:09 31 4
gpt4 key购买 nike

我正在研究 C++ 和 Lua。我想要实现的是 C++ 调用一个 Lua 函数,传递 2 个参数并检索 1 个结果。该函数调用一个 C++ 函数,该函数返回 2 个参数(整数)相加的结果。但结果我总是得到 0。

Lua 脚本:

function f (x, y)
return AddC(x, y)
end

C++代码:

#include "C:\Program Files (x86)\lua\5.3\include\lua.hpp"
#include <iostream>

class LuaState {
public:
LuaState() : L(luaL_newstate()) {}
~LuaState() { lua_close(L); }

inline operator lua_State*() { return L; }
private:
lua_State* L;
};

int Addition(lua_State* L) {
int amount = lua_gettop(L);
std::cerr << "number of arguments: " << amount << std::endl;

int first_number = lua_tointeger(L, 1);
int second_number = lua_tointeger(L, 2);
int result = first_number + second_number;

std::cerr << "Addition: " << first_number << " + " << second_number << " = " << result << std::endl;

return result;
}

void InitializeLua(lua_State* L) {

luaL_openlibs(L);
luaopen_io(L);
luaopen_base(L);
luaopen_math(L);

lua_register(L, "AddC", Addition);
}

int main(int argc, char* argv[])
{

int first_number {0};
int second_number {0};
int result {0};
LuaState L;

InitializeLua(L);

std::cout << "First number: ";
std::cin >> first_number;

std::cout << "Second number: ";
std::cin >> second_number;

int status = luaL_loadfile(L, "script.lua");
luaL_dofile(L, "script.lua");
lua_getglobal(L, "f");

lua_pushnumber(L, first_number);
lua_pushnumber(L, second_number);

lua_pcall(L, 2, 1, 0);
result = lua_tointeger(L, -1);

std::cout << first_number << " + " << second_number << " = " << result << std::endl;
lua_pop(L, 1);

return 0;
}

为了尽可能简短,我删除了这段代码中的错误检查。

我使用这两个网站/教程作为引用:
https://csl.name/post/lua-and-cpp/
http://cc.byexamples.com/2008/07/15/calling-lua-function-from-c/

最佳答案

您应该将结果压入堆栈。 C 中的返回值告诉您实际返回了多少个值。

int Addition(lua_State* L) {
// ...

lua_pushnumber(L, result);
return 1;
}

关于C++ - 调用的 Lua 函数总是返回 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29729514/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com