summaryrefslogtreecommitdiffstats
path: root/source/ManualBindings.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Moved source to srcAlexander Harkness2013-11-241-2215/+0
* cPluginManager:BindCommand() and :BindConsoleComman() now report full Lua stacktrace on failure.madmaxoft2013-11-131-2/+6
* Removed cStringMap.madmaxoft2013-11-091-1/+0
* Fixed bindings for cHopperEntity:GetOutputBlockPos().madmaxoft2013-10-231-0/+44
* Re-added the cWorld:GetSignLines() to the API.madmaxoft2013-10-131-0/+1
* Fixed and exported cWorld:QueueTask().madmaxoft2013-10-121-0/+65
* Improved error message in cPlugin:AddWebTab() API.madmaxoft2013-09-181-4/+6
* cPluginManager:BindConsoleCommand can be called with the dot operator, too.madmaxoft2013-09-181-15/+20
* cPluginManager:BindCommand can be called with the dot operator, too.madmaxoft2013-09-181-12/+19
* Fixed previous commit.madmaxoft2013-09-151-1/+1
* Fixed API bindings of cWorld:GetSignLines(), exported cWorld:UseBlockEntity().madmaxoft2013-09-151-2/+55
* Fixed cWorld bindings for GetBlockInfo() and GetBlockTypeMeta().madmaxoft2013-09-151-0/+110
* Added StringSplitAndTrim() to Lua APImadmaxoft2013-09-111-6/+22
* Implemented basic physics for projectiles.madmaxoft2013-08-271-2/+4
* cPluginManager.AddHook old-style API usage prints the stack trace.madmaxoft2013-08-211-0/+1
* Added a deprecation warning to the old style API.madmaxoft2013-08-211-0/+1
* Hook adding uses the new API.madmaxoft2013-08-211-0/+152
* Moved entities into the Entities subfolder.madmaxoft2013-08-191-1/+1
* Finished renaming cPlugin_NewLua to cPluginLua.madmaxoft2013-08-191-17/+17
* Renamed Plugin_NewLua to PluginLua.madmaxoft2013-08-101-2/+1
* LuaState refactoring: using templates for hook function calls.madmaxoft2013-08-081-15/+15
* Added cLineBlockTracer to the APImadmaxoft2013-08-071-4/+176
* Fixed compilation in ManualBindingsmadmaxoft2013-08-061-1/+1
* cLuaState is used for pushing splits in ManualBindingsmadmaxoft2013-08-061-23/+8
* Merge branch 'master' into BlockTracingmadmaxoft2013-08-051-211/+349
|\
| * Exported the cWorld:TryGetHeight() functionmadmaxoft2013-08-051-0/+47
| * Exported cWorld:DoWithEntityByID() to Lua APImadmaxoft2013-08-051-202/+293
| * Alpha-sorted the manual bindings' functions.madmaxoft2013-08-051-13/+13
* | LuaState refactoring: initial part.madmaxoft2013-08-041-9/+10
|/
* WebAdmin templates can use LuaFakeTruth2013-07-291-0/+61
* Added cWorld::SetSignLines(), re-exported to Lua manually to avoid ghost return valuesmadmaxoft@gmail.com2013-06-121-0/+55
* Added LOGWARNING() function to Lua API, as a synonym to LOGWARN()madmaxoft@gmail.com2013-06-051-2/+2
* ToLuaDoxy: initial importmadmaxoft@gmail.com2013-06-041-2/+2
* Added cLuaWindow:SetOnSlotChanged(); the callback is called only for non-inventory slotsmadmaxoft@gmail.com2013-05-311-7/+12
* Added the OnClosing callback to cLuaWindow APImadmaxoft@gmail.com2013-05-301-0/+39
* LuaWindow: Initial code, the window can be opened, but not much manipulatedmadmaxoft@gmail.com2013-05-301-7/+73
* Moved BlockEntities to a separate foldermadmaxoft@gmail.com2013-05-281-4/+4
* Implemented droppersmadmaxoft@gmail.com2013-05-261-2/+6
* Fixed the cWorld:DoWithChestAt(), DoWithDispenserAt() and DoWithFurnaceAt() callbacks binding.madmaxoft@gmail.com2013-05-251-5/+21
* Slight cleanup in the cInventory / cItemGrid APImadmaxoft@gmail.com2013-05-241-1/+1
* Fixed gcc buildmadmaxoft@gmail.com2013-04-101-10/+12
* Added cItemGrid to represent an XY grid of items; converted chests to use cItemGrid.madmaxoft@gmail.com2013-04-101-0/+42
* Plugins can now bind console commandsmadmaxoft@gmail.com2013-02-151-86/+159
* Fixed ASSERT / VERIFY mismatch in ManualBindings' error handlingmadmaxoft@gmail.com2013-02-101-4/+4
* Added a GetClassStatic function to all entities, as well as cFurnaceEntity, cChestEntity and cWorldfaketruth2013-02-031-377/+392
* Fixed GCC error in ManualBindingsmadmaxoft@gmail.com2013-02-021-1/+1
* Moved command API into cPluginManager.madmaxoft@gmail.com2013-02-011-16/+126
* Added the HOOK_BLOCK_TO_PICKUPS hook that fires when a block is dug up and should be converted to pickups.madmaxoft@gmail.com2013-01-271-1/+1
* Merged branch "branches/hooks" into "trunk".madmaxoft@gmail.com2013-01-121-13/+4
* Fixed manual bindings' ForEachXXX mapping not checking the object instance for validity.madmaxoft@gmail.com2012-10-211-0/+5
* Completely removed support for old style Lua plugins (can use both Plugin and NewPlugin in settings.ini for now)faketruth2012-10-141-6/+16
* Got rid of "self" in plugins, which is deprecated anywayfaketruth2012-10-111-1/+1
* Can now send usertypes (cPlayer, cEntity, cCuboid) along with a plugin:Call()faketruth2012-10-111-2/+25
* Added functionality so one plugin can call functions on another plugin :Dfaketruth2012-10-101-0/+85
* Source files cleanup: The rest of the files renamed.madmaxoft@gmail.com2012-09-241-10/+10
* Exported cWorld::DoWithChestAt to Luafaketruth2012-09-021-0/+93
* Added plugin name to deprecation messagesmadmaxoft@gmail.com2012-08-231-1/+4
* Added a RateCompareString function to StringUtilsfaketruth2012-08-231-82/+94
* WebAdmin should not cause crashes anymorefaketruth2012-08-221-8/+19
* Added the cWorld::DoWithPlayer() function and exported it in the Lua API. Removed the obsolete cWorld::GetPlayer() function.madmaxoft@gmail.com2012-07-021-0/+92
* Removed the deprecated GetBlockEntity(), added several enumerators to replace it.madmaxoft@gmail.com2012-06-171-6/+10
* Macro-ized the ForEachSomethingInChunk Lua glue code (will soon be used for block entities, too)madmaxoft@gmail.com2012-06-171-92/+95
* Exported cWorld::ForEachEntity and cWorld::ForEachEntityInChunk; no idea if they actually workmadmaxoft@gmail.com2012-06-161-28/+132
* Rewritten ForEach using #define-s, new ones can be added as a simple one-linermadmaxoft@gmail.com2012-06-151-166/+86
* Attempt to bring sanity to newlines across systems.cedeel@gmail.com2012-06-141-614/+614
* Added Lua function cRoot:ForEachWorld(), removed the obsolete cRoot:GetWorld() method (both C++ and Lua)madmaxoft@gmail.com2012-06-021-3/+94
* Moved the commands /coords /viewdistance and /regeneratechunks from cServer.cpp to the Core pluginfaketruth2012-04-111-0/+6
* git-svn-id: http://mc-server.googlecode.com/svn/trunk@281 0a769ca7-a7f5-676a-18bf-c427514a06d6faketruth2012-02-161-1/+1
* Can now pass any argument to cWorld:ForEachPlayer in Lua! But I'm not even using it.. lolfaketruth2012-02-151-18/+46
* Got rid of cWorld::GetAllPlayers() and implemented ForEachPlayer() more or less in Luafaketruth2012-02-141-5/+61
* Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()!madmaxoft@gmail.com2012-02-011-2/+76
* Changed how Lua handles the (Post)Params in the HTTPRequest of a WebPluginfaketruth2012-01-311-0/+59
* Added a WebAdmin interface to view users their groups, and the permissions of groups.faketruth2012-01-301-0/+22
* VC2008 / VC2010: Enabled precompiled header through Globals.h; the header included in every module in the project. Compilation optimization.madmaxoft@gmail.com2012-01-291-1/+3
* Converted entire Core plugin including WebAdmin interface to new plugin method/system/thingy and sexyfied it.faketruth2012-01-281-0/+47
* MCServer c++ source filesfaketruth2011-10-031-0/+229