Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-09-28 | Added LuaState tracker and memory stats logging. | Mattes D | 1 | -0/+72 | |
2015-09-28 | Made Lua API check strings strictly. | Mattes D | 1 | -1/+4 | |
Previously nil was accepted as a string in cLuaState::CheckParamString(), now it's reported as an error. | |||||
2015-09-26 | Extended and fixed the cFile API. | Mattes D | 1 | -0/+12 | |
2015-09-25 | Maked it compileable for clang-3.7 | Lukas Pioch | 1 | -3/+3 | |
2015-08-20 | Use container-based infrastructure for Travis | Tiger Wang | 1 | -1/+1 | |
2015-07-29 | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 1 | -12/+24 | |
2015-06-20 | Added basic support for loading village prefabs from files. | Mattes D | 1 | -1/+5 | |
2015-06-17 | LuaState: Added support for config-style usage. | Mattes D | 1 | -10/+73 | |
Globals and table values can be queried from the Lua state easily. Use perfect forwarding. | |||||
2015-05-19 | Added LuaState support for all integral types | tycho | 1 | -32/+19 | |
All so added error handling for out of range values | |||||
2015-05-16 | Lua: Break into ZBS debugger on API errors. | Mattes D | 1 | -0/+26 | |
2015-05-13 | Moved cWorld manual bindings out into a separate file. | Mattes D | 1 | -1/+1 | |
2015-05-12 | ToLua now generates cLuaState::Push() and GetStackValue() | Mattes D | 1 | -371/+6 | |
For classes exported through ToLua it generates the cLuaState::Push() and cLuaState::GetStackValue() functions, as well as the supporting forward declarations and typedefs. Renamed virtual_method_hooks.lua to BindingsProcessor.lua since it no longer provides virtual method hooks and instead does additional processing when generating the bindings. | |||||
2015-05-10 | OnExecuteCommand hook can override the command result (crXXX). | Mattes D | 1 | -0/+12 | |
2015-05-09 | More style checking. | Mattes D | 1 | -2/+2 | |
Spaces around some operators are checked. | |||||
2015-05-09 | Fixed some Visual Studio warnings | Tiger Wang | 1 | -3/+15 | |
2015-05-07 | Fixed inter-plugin calls. | Mattes D | 1 | -9/+4 | |
When an inter-plugin call failed due to function not found, the server would maul the LuaState and "yield". Fixes #1959. | |||||
2015-05-07 | Added support for additional data in the ParticleEffect Packet | tycho | 1 | -0/+41 | |
Also started refactoring how broadcasts are handled | |||||
2015-04-29 | Added cBlockArea:GetNonAirCropRelCoords() API function. | Mattes D | 1 | -1/+31 | |
Fixes #1915. | |||||
2015-04-23 | Refactored ManualBindings' callbacks using templates. | Mattes D | 1 | -0/+18 | |
This is a bit easier to read, has better error reporting and fixes a few subtle bugs. Fixes #1889. | |||||
2015-04-23 | Implemented cPluginManager:DoWithPlugin(), fixed ForEachPlugin(). | Mattes D | 1 | -19/+89 | |
Both functions are exported as static. | |||||
2015-02-20 | cNetwork: Added UDP API. | Mattes D | 1 | -0/+12 | |
2015-02-12 | LuaAPI: Added client TLS support for TCP links. | Mattes D | 1 | -0/+12 | |
2015-02-04 | Exported cServerHandle and cNetwork:Listen to Lua. | Mattes D | 1 | -0/+33 | |
Also added an example to the NetworkTest plugin. | |||||
2015-02-04 | cNetwork: Exported the Connect() method and cTCPLink class to Lua. | Mattes D | 1 | -0/+12 | |
2015-01-18 | Fixed type-conversion warnings. | Mattes D | 1 | -1/+1 | |
2015-01-11 | Initial convertion of a_Dt to std::chrono | Tycho | 1 | -0/+7 | |
also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay | |||||
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -27/+27 | |
2014-10-22 | LuaState: Projectiles are pushed using their full class. | Mattes D | 1 | -1/+1 | |
2014-10-21 | cLuaState: cEntity is pushed with specific type. | Mattes D | 1 | -7/+48 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -27/+27 | |
2014-10-20 | Fixed a potential crash in cEntity bindings. | Mattes D | 1 | -2/+6 | |
2014-10-19 | cLuaState: cMonster descendants don't push their specific type. | Mattes D | 1 | -1/+10 | |
The individual mob types aren't exported to Lua, so pushing them would crash the server. | |||||
2014-10-19 | cLuaState: cBlockEntity descendants are pushed with proper class type. | Mattes D | 1 | -1/+1 | |
2014-10-19 | LuaState: Pushing a cEntity pushes the correct class name. | Mattes D | 1 | -1/+3 | |
This makes Lua scripts easier, as they don't need to cast values from cEntity to the specific descendant. | |||||
2014-10-06 | Fixed crash in ForEachEntityInBox API. | madmaxoft | 1 | -3/+11 | |
Fixes #1511. | |||||
2014-09-03 | LuaState: Fixed class value-getting off the stack. | madmaxoft | 1 | -4/+4 | |
2014-09-03 | Added cWorld::ForEachEntityInBox() | madmaxoft | 1 | -0/+26 | |
2014-08-22 | cLuaState: Fixed Vector3<> names pushed to Lua. | Mattes D | 1 | -5/+41 | |
2014-07-19 | Fixed style: spaces after commas. | madmaxoft | 1 | -2/+1 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -2/+2 | |
This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | |||||
2014-07-03 | Changed OnWeatherChanging hook to always read the returned weather. | madmaxoft | 1 | -0/+12 | |
Ref.: http://forum.mc-server.org/showthread.php?tid=1512 | |||||
2014-06-03 | Fixed OnProjectileHitBlock bindings. | madmaxoft | 1 | -61/+86 | |
Also sorted the various cLuaState::Push() functions. | |||||
2014-03-29 | Fixed error when the hook gets called. | STRWarrior | 1 | -0/+12 | |
2014-03-25 | More fixes to get it to compile for me on Mac 10.9. Mostly just newline additions, but some of the unused variables were causing errors, so I wrapped them in #ifndef __APPLE__ calls, since I didn't know if they were going to be used in the future. | Samuel Barney | 1 | -0/+1 | |
Also had to undefine TOLUA_TEMPLATE_BIND a couple of times. | |||||
2014-03-20 | Made pushing plain pointer to Lua a valid operation, with a warning. | madmaxoft | 1 | -2/+3 | |
This is used for exotic explosions, and the NORETURNDEBUG macro caused MSVC warnings across the entire cLuaState class (MSVC marked ALL Push() function overloads as non-returning) | |||||
2014-03-19 | Errors in Lua don't include the error handler in the stack trace. | madmaxoft | 1 | -5/+5 | |
Fixes #817. | |||||
2014-03-12 | Fixed Lua string return values. | madmaxoft | 1 | -4/+0 | |
Fixes #773. | |||||
2014-03-12 | Moved Lua API registering into a separate function. | madmaxoft | 1 | -1/+9 | |
This will allow us to use Lua as lite-config files as well, should we want to. | |||||
2014-03-11 | Fixed a load of format string errors | Tycho | 1 | -1/+3 | |
2014-03-07 | Fixed warnings | Tycho | 1 | -0/+1 | |
2014-03-04 | cLuaState: Made public the GetStackValue() functions. | madmaxoft | 1 | -6/+12 | |
2014-03-02 | Manually exported g_Block tables | andrew | 1 | -0/+2 | |
2014-02-26 | Attempted fix for several GCC warnings. | madmaxoft | 1 | -0/+7 | |
2014-02-17 | Add Lua plugin path to package.path and .cpath. | madmaxoft | 1 | -0/+26 | |
Fixes #693. | |||||
2014-02-11 | Added cLuaState::CheckParamFunctionOrNil(). | madmaxoft | 1 | -2/+34 | |
Also fixed error reporting for the two function-checking functions. | |||||
2014-02-11 | Fixed nested plugin function calls. | madmaxoft | 1 | -6/+9 | |
2014-02-10 | cLuaState: Stack traces don't include ghost 0-th element. | madmaxoft | 1 | -1/+1 | |
2014-02-09 | cLuaState::cRef can be unbound and re-bound. | madmaxoft | 1 | -7/+45 | |
This will allow us to store Lua references as member variables in classes and initialize those later than in the constructor. | |||||
2014-02-04 | Removed a useless check in cLuaState. | madmaxoft | 1 | -3/+1 | |
2014-02-04 | Fixed calling plugins with userdata params. | madmaxoft | 1 | -0/+1 | |
2014-02-04 | Removed a leftover debug message. | madmaxoft | 1 | -1/+0 | |
2014-02-04 | Fixed error handling in cPluginManager:CallPlugin() API. | madmaxoft | 1 | -2/+5 | |
Fixed: When the called function malfunctioned, the entire plugin's call was aborted. | |||||
2014-02-04 | Improved error resistance in cPluginManager:CallPlugin(). | madmaxoft | 1 | -0/+8 | |
Fixed: If the call failed, all the next plugin calls would fail as well. | |||||
2014-01-29 | Lua: Fixed an error in table-functions callbacks. | madmaxoft | 1 | -1/+5 | |
2014-01-21 | Implemented cPluginManager:CallPlugin() API. | madmaxoft | 1 | -16/+183 | |
This function supersedes cPlugin:Call(), is safer to use in regards to multithreading and once again removes the need for the cPlugin class being exported at all. | |||||
2014-01-19 | cLuaState can now check function params. | madmaxoft | 1 | -0/+34 | |
2014-01-13 | cCreeper is no longer available in API. | madmaxoft | 1 | -12/+0 | |
Has been replaced by cMonster. | |||||
2014-01-11 | Lua errors display stack trace. | madmaxoft | 1 | -3/+25 | |
Fixes #418. | |||||
2014-01-11 | Removed internal methods from public cLuaState interface. | madmaxoft | 1 | -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. | |||||
2014-01-07 | LuaState can push strings with embedded NULs. | madmaxoft | 1 | -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. | |||||
2013-12-31 | implemented the recommendations Xoft gave. | STRWarrior | 1 | -0/+12 | |
2013-12-27 | Made cmake compilation possible on Windows. | madmaxoft | 1 | -2/+2 | |
2013-12-08 | Fixed tolua++ compilation. | madmaxoft | 1 | -1/+1 | |
Duplicate files, wrong includes, const-incorrect code... | |||||
2013-12-08 | Moved bindings-related to a Bindings subfolder. | madmaxoft | 1 | -0/+0 | |
Ref.: #407 | |||||
2013-11-26 | Fixed loads more of them. | Alexander Harkness | 1 | -1/+1 | |
2013-11-24 | Attempt to fix compilation | Tiger Wang | 1 | -1/+1 | |
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-11-22 | Added cFile:GetFolderContents(). | madmaxoft | 1 | -0/+33 | |
Fix 162. | |||||
2013-11-22 | Fixed cRoot:GetFurnaceRecipe() Lua binding. | madmaxoft | 1 | -0/+33 | |
2013-08-21 | cLuaState: Added LogStackTrace() and GetTypeText() utility functions | madmaxoft | 1 | -0/+43 | |
2013-08-19 | Finished renaming cPlugin_NewLua to cPluginLua. | madmaxoft | 1 | -2/+2 | |
2013-08-18 | Fixed assert failures in cLuaState when using it for pushing a StringVector. | madmaxoft | 1 | -31/+0 | |
2013-08-15 | Attempting to fix CentOS / gcc 4.4.7 compilation problem. | madmaxoft | 1 | -1/+1 | |
Reported by ThijsD in the forum http://forum.mc-server.org/showthread.php?tid=1220 | |||||
2013-08-11 | Added the OnHopperPullingItem and OnHopperPushingItem hooks. | madmaxoft | 1 | -0/+26 | |
Requested in FS 412, slightly modified the params. | |||||
2013-08-09 | Added OnExploding() and OnExploded() hooks. | madmaxoft | 1 | -0/+64 | |
As requested in FS 413, with extra parameters: World, BlockX, BlockY, BlockZ, Size, CanCauseFire, Source, SourceData OnExploding() can return 3 values: StopHook, CanCauseFire, ExplosionSize | |||||
2013-08-08 | Removed LuaScript. | madmaxoft | 1 | -0/+26 | |
The WebAdmin now uses LuaState directly to call the one function it needs. | |||||
2013-08-08 | cPlugin_NewLua is now completely rewritten to use templated LuaState calls. | madmaxoft | 1 | -6/+60 | |
2013-08-08 | LuaState refactoring: using templates for hook function calls. | madmaxoft | 1 | -13/+130 | |
This simplifies calling Lua functions considerably, it's almost like calling a C++ function, only with an extra argument to delimit args from returned values. | |||||
2013-08-08 | Addeed OnSpawningEntity, OnSpawnedEntity, OnSpawningMonster, OnSpawnedMonster hooks. | madmaxoft | 1 | -0/+13 | |
As requested in FS 418. | |||||
2013-08-07 | cLuaState has reference management, param checking and a fixed destructor. | madmaxoft | 1 | -1/+186 | |
References are now managed as RAII objects, cLuaState::cRef. Destructor now calls correct function, either Close() or Detach(), based on the owned-ness of the lua_State *. | |||||
2013-08-06 | cLuaScript now uses cLuaState | madmaxoft | 1 | -1/+1 | |
2013-08-06 | cLuaState now tracks the function name and number of args | madmaxoft | 1 | -6/+182 | |
2013-08-06 | cLuaState can now contain a detached LuaState, too. | madmaxoft | 1 | -0/+67 | |
This will be useful for cases when we get a lua_State * from the outside and are asked to perform operations on it. | |||||
2013-08-04 | LuaState refactoring: initial part. | madmaxoft | 1 | -0/+218 | |
The cLuaState class is a wrapper for the lua_State * and for the common functions on it. The cPlugin_NewLua has been rewritten to use it instead of the raw pointer. Part of #33 |