gpt4 book ai didi

c++ - 卢阿/卢 git : pause current Lua thread

转载 作者:搜寻专家 更新时间:2023-10-31 02:11:46 24 4
gpt4 key购买 nike

我目前正在将 Luajit 与 Lua 5.1 一起使用,并且正在尝试在 Lua C API 中注册一个名为“Wait”的函数。该函数的主要目的是暂停当前线程。

示例用法:

print("Working");
Wait()
print("A");

但是该功能没有按预期工作。这是我的 C++ 代码。

#include <iostream>
#include <Windows.h>

extern "C" {
#include "Luajit/luajit.h"
#include <Luajit/lua.h>
#include <Luajit/lualib.h>
#include <Luajit/lauxlib.h>
}


static int wait(lua_State* lua) {
return lua_yield(lua, 0);
}

int main() {
lua_State* lua = luaL_newstate();

if (!lua) {
std::cout << "Failed to create Lua state" << std::endl;
system("PAUSE");
return -1;
}

luaL_openlibs(lua);
lua_register(lua, "Wait", wait);

lua_State* thread = lua_newthread(lua);

if (!thread) {
std::cout << "Failed to create Lua thread" << std::endl;
system("PAUSE");
return -1;
}

int status = luaL_loadfile(thread, "Z:/Projects/Visual Studio/Examples/Lua/Debug/Main.lua");

if (status == LUA_ERRFILE) {
std::cout << "Failed to load file" << std::endl;
system("PAUSE");
return -1;
}

int error = lua_pcall(thread, 0, 0, 0);

if (error) {
std::cout << "Error: " << lua_tostring(thread, 1) << std::endl;
}

system("PAUSE");
return 0;
}

当我加载上面发布的 Lua 脚本时,我得到以下输出:

Working
Error: attempt to yield across C-call boundary
Press any key to continue . . .

我用 Lua 编程已经 4 年多了。我最近才开始使用 C API,之前从未见过 C 调用边界错误。我做了一些谷歌搜索并询问了 friend ,但似乎没有人能够帮助我。知道我的代码有什么问题吗?

在C++中调用lua_yield(lua, 0)函数时出现错误

我尝试了以下问题的答案,但似乎没有任何效果。

http://stackoverflow.com/questions/8459459/lua-coroutine-error-tempt-to-yield-across-metamethod-c-call-boundary

最佳答案

lua_pcall 不会启动可让出协程。启动协程的正确函数是 lua_resume .

关于c++ - 卢阿/卢 git : pause current Lua thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43105000/

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