Debugging embedded Lua - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T17:25:52Zhttp://stackoverflow.com/feeds/question/780448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780448/debugging-embedded-lua4Debugging embedded LuaCaspin2009-04-23T05:56:20Z2009-11-09T20:58:45Z
<p>How do you debug lua code embedded in a c++ application?</p>
<p>From what I gather, either I need to buy a special IDE and link in their special lua runtime (ugh). Or in need to build a debug console in to the game engine, using the <a href="http://www.lua.org/manual/5.1/manual.html#3.8" rel="nofollow">lua debug API</a> calls.</p>
<p>I am leaning toward writing my own debug console, but it seems like a lot of work. Time that I could better spend polishing the other portions of the game.</p>
http://stackoverflow.com/questions/780448/debugging-embedded-lua/780518#7805181Answer by Preet Sangha for Debugging embedded LuaPreet Sangha2009-04-23T06:34:30Z2009-04-23T06:34:30Z<p>If you are using windows and VS - Can you use the trick we use?</p>
<p>Copy the lua code in a file. Then in the lua code make a call to the Debugger api (in C++ this is <code>DebuggerBreak()</code> I think - see <a href="http://msdn2.microsoft.com/en-us/library/system.diagnostics.debugger.break.aspx" rel="nofollow">here</a>). then when the lua code executes the debugger will fire up and you should be able to specify the file. Then debug as normal?</p>
http://stackoverflow.com/questions/780448/debugging-embedded-lua/781238#7812382Answer by Adam Smith for Debugging embedded LuaAdam Smith2009-04-23T11:02:59Z2009-04-23T11:02:59Z<p>I don't see how calling DebuggerBreak should work, since that is .NET specific. I would assume that only works with the forked Lua targeting the CLR.</p>
<p>If you are using standard Lua you have some rudementary debugging facilities through the lua function call debug.debug(). That will throw Lua into your console, so if you are running lua from a console, you should be able issue lua commands interactively to inspect your current state. debug.debug() wont put you into the current stack frame, so you have to use debug.getlocal() to read the values of your variables.</p>
<p>I haven't tried it myself yet, but I actually don't think making your own workable debug console is that much work. Remember Lua is not as complicated language as C++, so doing this is a lot easier than making a real C++ debugger like say gdb.</p>
<p>I think there are a lot of people who have done similar things already, whos code you could look at. <a href="http://luaforge.net/projects/clidebugger/" rel="nofollow">Here</a> is CLI debugger written in only lua. Just one lua file. Shouldn't be to hard use and modify for your needs.</p>
http://stackoverflow.com/questions/780448/debugging-embedded-lua/784814#7848142Answer by RBerteig for Debugging embedded LuaRBerteig2009-04-24T07:13:59Z2009-04-24T07:13:59Z<p>There are several tools floating around that can do at least parts of what you want. I have seen references to a VS plugin, there is a SciTE debugger extension in Lua for Windows, and there is the Kepler project's <a href="http://www.keplerproject.org/remdebug/index.html" rel="nofollow">RemDebug</a>, as well as their <a href="http://luaeclipse.luaforge.net/" rel="nofollow">LuaEclipse</a>. </p>
<p>RemDebug may be on the track of what you need, as it was built to allow for debugging CGI scripts written in Lua. It does require access to the LuaSocket module to provide a communications channel between the target script and a controller as well as a couple of other modules.</p>
<p>A bigger issue might be the ability to load arbitrary modules from within whatever sandbox the game engine has put around your scripts. If you have some control over the engine, then that won't be as big an issue. </p>
<p>This isn't currently possible for developers of Adobe Lightroom plugins, for example, because Lightroom does not expose <code>require</code> inside the plugin's sandbox.</p>
<p>A surprise to me has been how rarely I have felt a need for a debugger when working with Lua. I've built several small applications in it for various projects and have been surprised at how well a combination of complete stack backtraces and the occasional <code>print</code> call works to locate the bugs that <code>require "strict"</code> didn't prevent in the first place.</p>
http://stackoverflow.com/questions/780448/debugging-embedded-lua/1703776#17037761Answer by Joe for Debugging embedded LuaJoe2009-11-09T20:58:45Z2009-11-09T20:58:45Z<p>How about <a href="http://www.unknownworlds.com/decoda" rel="nofollow">Decoda</a>?? there is a video that explains how to use it, and it works pretty darn well for embedded lua source. (i am a happy customer). and it's pretty cheap.</p>