summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authornielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-09 17:08:20 +0200
committernielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-05-09 17:08:20 +0200
commit7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596 (patch)
treeb24977175801647b03ab07636bdd329e4e6878c7 /source
parentfunction SpawnItemPickups is now exported to Lua. Lua is able to create a Items object. (diff)
downloadcuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar.gz
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar.bz2
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar.lz
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar.xz
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.tar.zst
cuberite-7dc9b2ce8dd1bd73b391ea73f062a7ac64d70596.zip
Diffstat (limited to 'source')
-rw-r--r--source/Bindings.cpp54
1 files changed, 41 insertions, 13 deletions
diff --git a/source/Bindings.cpp b/source/Bindings.cpp
index a07ec6b95..3bcc6dc8c 100644
--- a/source/Bindings.cpp
+++ b/source/Bindings.cpp
@@ -1,10 +1,6 @@
/*
** Lua binding: AllToLua
-<<<<<<< .mine
-** Generated automatically by tolua++-1.0.92 on 05/09/13 14:14:47.
-=======
-** Generated automatically by tolua++-1.0.92 on 05/08/13 11:35:08.
->>>>>>> .r1462
+** Generated automatically by tolua++-1.0.92 on 05/09/13 16:34:30.
*/
#ifndef __cplusplus
@@ -89,17 +85,9 @@ static int tolua_collect_cPickup (lua_State* tolua_S)
return 0;
}
-<<<<<<< .mine
static int tolua_collect_cItems (lua_State* tolua_S)
-=======
-static int tolua_collect_cChestEntity (lua_State* tolua_S)
->>>>>>> .r1462
{
-<<<<<<< .mine
cItems* self = (cItems*) tolua_tousertype(tolua_S,1,0);
-=======
- cChestEntity* self = (cChestEntity*) tolua_tousertype(tolua_S,1,0);
->>>>>>> .r1462
Mtolua_delete(self);
return 0;
}
@@ -11606,6 +11594,45 @@ static int tolua_AllToLua_cWorld_GetSpawnZ00(lua_State* tolua_S)
}
#endif //#ifndef TOLUA_DISABLE
+/* method: DoExplosiontAt of class cWorld */
+#ifndef TOLUA_DISABLE_tolua_AllToLua_cWorld_DoExplosiontAt00
+static int tolua_AllToLua_cWorld_DoExplosiontAt00(lua_State* tolua_S)
+{
+#ifndef TOLUA_RELEASE
+ tolua_Error tolua_err;
+ if (
+ !tolua_isusertype(tolua_S,1,"cWorld",0,&tolua_err) ||
+ !tolua_isnumber(tolua_S,2,0,&tolua_err) ||
+ !tolua_isnumber(tolua_S,3,0,&tolua_err) ||
+ !tolua_isnumber(tolua_S,4,0,&tolua_err) ||
+ !tolua_isnumber(tolua_S,5,0,&tolua_err) ||
+ !tolua_isnoobj(tolua_S,6,&tolua_err)
+ )
+ goto tolua_lerror;
+ else
+#endif
+ {
+ cWorld* self = (cWorld*) tolua_tousertype(tolua_S,1,0);
+ float a_ExplosionSzie = ((float) tolua_tonumber(tolua_S,2,0));
+ int a_BlockX = ((int) tolua_tonumber(tolua_S,3,0));
+ int a_BlockY = ((int) tolua_tonumber(tolua_S,4,0));
+ int a_BlockZ = ((int) tolua_tonumber(tolua_S,5,0));
+#ifndef TOLUA_RELEASE
+ if (!self) tolua_error(tolua_S,"invalid 'self' in function 'DoExplosiontAt'", NULL);
+#endif
+ {
+ self->DoExplosiontAt(a_ExplosionSzie,a_BlockX,a_BlockY,a_BlockZ);
+ }
+ }
+ return 0;
+#ifndef TOLUA_RELEASE
+ tolua_lerror:
+ tolua_error(tolua_S,"#ferror in function 'DoExplosiontAt'.",&tolua_err);
+ return 0;
+#endif
+}
+#endif //#ifndef TOLUA_DISABLE
+
/* method: GetSignLines of class cWorld */
#ifndef TOLUA_DISABLE_tolua_AllToLua_cWorld_GetSignLines00
static int tolua_AllToLua_cWorld_GetSignLines00(lua_State* tolua_S)
@@ -25015,6 +25042,7 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S)
tolua_function(tolua_S,"GetSpawnX",tolua_AllToLua_cWorld_GetSpawnX00);
tolua_function(tolua_S,"GetSpawnY",tolua_AllToLua_cWorld_GetSpawnY00);
tolua_function(tolua_S,"GetSpawnZ",tolua_AllToLua_cWorld_GetSpawnZ00);
+ tolua_function(tolua_S,"DoExplosiontAt",tolua_AllToLua_cWorld_DoExplosiontAt00);
tolua_function(tolua_S,"GetSignLines",tolua_AllToLua_cWorld_GetSignLines00);
tolua_function(tolua_S,"GrowTree",tolua_AllToLua_cWorld_GrowTree00);
tolua_function(tolua_S,"GrowTreeFromSapling",tolua_AllToLua_cWorld_GrowTreeFromSapling00);