summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaState.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cCreeper is no longer available in API.madmaxoft2014-01-131-12/+0
| | | | Has been replaced by cMonster.
* Lua errors display stack trace.madmaxoft2014-01-111-3/+25
| | | | Fixes #418.
* Removed internal methods from public cLuaState interface.madmaxoft2014-01-111-9/+17
| | | | | | | PushFunction(), CallFunction() and GetReturn() are not to be called independently, but rather only by using the Call() templated overrides. Push() needs to be left in the public part, it is used for pushing results in the ManualBindings. Preparation for #418.
* LuaState can push strings with embedded NULs.madmaxoft2014-01-071-1/+1
| | | | This also marginally improves performance, since a strlen() isn't called (inside lua_pushstring()), the string length is stored in the AString object directly.
* implemented the recommendations Xoft gave.STRWarrior2013-12-311-0/+12
|
* Made cmake compilation possible on Windows.madmaxoft2013-12-271-2/+2
|
* Fixed tolua++ compilation.madmaxoft2013-12-081-1/+1
| | | | Duplicate files, wrong includes, const-incorrect code...
* Moved bindings-related to a Bindings subfolder.madmaxoft2013-12-081-0/+1024
Ref.: #407