Im attempting to make a simple debugger for my game engine to allow to to step line by line through a lua script loaded from disk. All done via the c api.
I can setup a hook to trigger every line, or every x instructions etc. I can also create thread/coroutines to allow yielding which can return control flow back to c.
The issue comes when trying to combine these. The lua script should not have to invoke anything special for this. is calling lua_yield
not allowed from a hook function?
Here I create a new lua state, a new lua thread, set a hook and run script.lua
using pcallk
lua_State* L = luaL_newstate();
luaL_openlibs(L);
lua_State* T = lua_newthread(L);
lua_sethook(T, &hookfunc, LUA_HOOKLINE, 1); // Run a hook to trigger every line
luaL_loadfile(T, "script.lua");
int nres; // throwaway, unused
int status = lua_resume(T, 0, 0, &nres); // Run the script so that it can yield
The hook function simply calls yield.
lua_yield(L, 0);
This doesn't work as expected, is this legal? did I miss something in documentation.
I've looked at:
- PIL 4th edition.
- The lua.org documentation
- This sandbox page
- And an old email thread i cannot find the link to
I will reiterate this is to be done in the c api, the lua script itself doesn't invoke anything
You say it doesn't work, but you don't specify what you're trying to achieve. Yielding from debug hook is not going to work (you'll get "attempt to yield across a C-call boundary" error message) because there is nothing to yield to; you haven't resumed any code to allow yield to be executed. What you can do from the debug hook is to resume some other code; this is the way some of Lua debuggers work (for example, MobDebug and RemDebug).
You may check this SO question, as it appears to describe a similar goal and one of the answers suggests an extension (yieldhook) that may be relevant to your question.