Added skeleton code for projectile spawning.
This commit is contained in:
parent
16e3242456
commit
73afb1507d
@ -1159,6 +1159,10 @@
|
|||||||
RelativePath="..\source\Entities\Player.h"
|
RelativePath="..\source\Entities\Player.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\source\Entities\ProjectileEntity.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\source\Entities\ProjectileEntity.h"
|
RelativePath="..\source\Entities\ProjectileEntity.h"
|
||||||
>
|
>
|
||||||
|
@ -27,6 +27,8 @@ $cfile "ClientHandle.h"
|
|||||||
$cfile "Entities/Entity.h"
|
$cfile "Entities/Entity.h"
|
||||||
$cfile "Entities/Pawn.h"
|
$cfile "Entities/Pawn.h"
|
||||||
$cfile "Entities/Player.h"
|
$cfile "Entities/Player.h"
|
||||||
|
$cfile "Entities/Pickup.h"
|
||||||
|
$cfile "Entities/ProjectileEntity.h"
|
||||||
$cfile "PluginManager.h"
|
$cfile "PluginManager.h"
|
||||||
$cfile "Plugin.h"
|
$cfile "Plugin.h"
|
||||||
$cfile "PluginLua.h"
|
$cfile "PluginLua.h"
|
||||||
@ -45,7 +47,6 @@ $cfile "BlockEntities/DropperEntity.h"
|
|||||||
$cfile "BlockEntities/FurnaceEntity.h"
|
$cfile "BlockEntities/FurnaceEntity.h"
|
||||||
$cfile "WebAdmin.h"
|
$cfile "WebAdmin.h"
|
||||||
$cfile "WebPlugin.h"
|
$cfile "WebPlugin.h"
|
||||||
$cfile "Entities/Pickup.h"
|
|
||||||
$cfile "Root.h"
|
$cfile "Root.h"
|
||||||
$cfile "Vector3f.h"
|
$cfile "Vector3f.h"
|
||||||
$cfile "Vector3d.h"
|
$cfile "Vector3d.h"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
** Lua binding: AllToLua
|
** Lua binding: AllToLua
|
||||||
** Generated automatically by tolua++-1.0.92 on 08/21/13 19:38:47.
|
** Generated automatically by tolua++-1.0.92 on 08/22/13 08:53:27.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __cplusplus
|
#ifndef __cplusplus
|
||||||
@ -27,6 +27,8 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S);
|
|||||||
#include "Entities/Entity.h"
|
#include "Entities/Entity.h"
|
||||||
#include "Entities/Pawn.h"
|
#include "Entities/Pawn.h"
|
||||||
#include "Entities/Player.h"
|
#include "Entities/Player.h"
|
||||||
|
#include "Entities/Pickup.h"
|
||||||
|
#include "Entities/ProjectileEntity.h"
|
||||||
#include "PluginManager.h"
|
#include "PluginManager.h"
|
||||||
#include "Plugin.h"
|
#include "Plugin.h"
|
||||||
#include "PluginLua.h"
|
#include "PluginLua.h"
|
||||||
@ -45,7 +47,6 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S);
|
|||||||
#include "BlockEntities/FurnaceEntity.h"
|
#include "BlockEntities/FurnaceEntity.h"
|
||||||
#include "WebAdmin.h"
|
#include "WebAdmin.h"
|
||||||
#include "WebPlugin.h"
|
#include "WebPlugin.h"
|
||||||
#include "Entities/Pickup.h"
|
|
||||||
#include "Root.h"
|
#include "Root.h"
|
||||||
#include "Vector3f.h"
|
#include "Vector3f.h"
|
||||||
#include "Vector3d.h"
|
#include "Vector3d.h"
|
||||||
@ -203,47 +204,49 @@ static int tolua_collect_Vector3d (lua_State* tolua_S)
|
|||||||
static void tolua_reg_types (lua_State* tolua_S)
|
static void tolua_reg_types (lua_State* tolua_S)
|
||||||
{
|
{
|
||||||
tolua_usertype(tolua_S,"TakeDamageInfo");
|
tolua_usertype(tolua_S,"TakeDamageInfo");
|
||||||
|
tolua_usertype(tolua_S,"cServer");
|
||||||
tolua_usertype(tolua_S,"cCraftingRecipe");
|
tolua_usertype(tolua_S,"cCraftingRecipe");
|
||||||
tolua_usertype(tolua_S,"cPlugin");
|
tolua_usertype(tolua_S,"cPlugin");
|
||||||
|
tolua_usertype(tolua_S,"cMonster");
|
||||||
tolua_usertype(tolua_S,"cStringMap");
|
tolua_usertype(tolua_S,"cStringMap");
|
||||||
tolua_usertype(tolua_S,"cItemGrid");
|
tolua_usertype(tolua_S,"cItemGrid");
|
||||||
tolua_usertype(tolua_S,"cBlockArea");
|
tolua_usertype(tolua_S,"cBlockArea");
|
||||||
tolua_usertype(tolua_S,"cEnchantments");
|
tolua_usertype(tolua_S,"cEnchantments");
|
||||||
tolua_usertype(tolua_S,"cLuaWindow");
|
tolua_usertype(tolua_S,"cLuaWindow");
|
||||||
tolua_usertype(tolua_S,"cServer");
|
tolua_usertype(tolua_S,"cInventory");
|
||||||
tolua_usertype(tolua_S,"cRoot");
|
tolua_usertype(tolua_S,"cRoot");
|
||||||
tolua_usertype(tolua_S,"cDropperEntity");
|
tolua_usertype(tolua_S,"cWindow");
|
||||||
tolua_usertype(tolua_S,"std::vector<cIniFile::key>");
|
tolua_usertype(tolua_S,"std::vector<cIniFile::key>");
|
||||||
tolua_usertype(tolua_S,"cMonster");
|
tolua_usertype(tolua_S,"cCraftingGrid");
|
||||||
tolua_usertype(tolua_S,"cPickup");
|
tolua_usertype(tolua_S,"cPickup");
|
||||||
tolua_usertype(tolua_S,"std::vector<std::string>");
|
tolua_usertype(tolua_S,"std::vector<std::string>");
|
||||||
tolua_usertype(tolua_S,"cWindow");
|
tolua_usertype(tolua_S,"cGroup");
|
||||||
tolua_usertype(tolua_S,"cClientHandle");
|
tolua_usertype(tolua_S,"cClientHandle");
|
||||||
tolua_usertype(tolua_S,"cChunkDesc");
|
tolua_usertype(tolua_S,"cChunkDesc");
|
||||||
tolua_usertype(tolua_S,"cFurnaceRecipe");
|
tolua_usertype(tolua_S,"cFurnaceRecipe");
|
||||||
tolua_usertype(tolua_S,"cCraftingGrid");
|
|
||||||
tolua_usertype(tolua_S,"cChatColor");
|
|
||||||
tolua_usertype(tolua_S,"cGroup");
|
|
||||||
tolua_usertype(tolua_S,"cTracer");
|
tolua_usertype(tolua_S,"cTracer");
|
||||||
|
tolua_usertype(tolua_S,"cChatColor");
|
||||||
tolua_usertype(tolua_S,"cCuboid");
|
tolua_usertype(tolua_S,"cCuboid");
|
||||||
tolua_usertype(tolua_S,"Vector3i");
|
tolua_usertype(tolua_S,"Vector3i");
|
||||||
tolua_usertype(tolua_S,"cInventory");
|
tolua_usertype(tolua_S,"cWorld");
|
||||||
|
tolua_usertype(tolua_S,"cEntity");
|
||||||
|
tolua_usertype(tolua_S,"cCraftingRecipes");
|
||||||
tolua_usertype(tolua_S,"cItem");
|
tolua_usertype(tolua_S,"cItem");
|
||||||
tolua_usertype(tolua_S,"Vector3f");
|
tolua_usertype(tolua_S,"Vector3f");
|
||||||
tolua_usertype(tolua_S,"cCraftingRecipes");
|
tolua_usertype(tolua_S,"cArrowEntity");
|
||||||
tolua_usertype(tolua_S,"cDropSpenserEntity");
|
tolua_usertype(tolua_S,"cDropSpenserEntity");
|
||||||
tolua_usertype(tolua_S,"cWorld");
|
|
||||||
tolua_usertype(tolua_S,"cWebPlugin");
|
tolua_usertype(tolua_S,"cWebPlugin");
|
||||||
|
tolua_usertype(tolua_S,"cWebAdmin");
|
||||||
tolua_usertype(tolua_S,"cChestEntity");
|
tolua_usertype(tolua_S,"cChestEntity");
|
||||||
tolua_usertype(tolua_S,"cDispenserEntity");
|
tolua_usertype(tolua_S,"cDispenserEntity");
|
||||||
tolua_usertype(tolua_S,"cWebAdmin");
|
|
||||||
tolua_usertype(tolua_S,"cBlockEntity");
|
|
||||||
tolua_usertype(tolua_S,"cCriticalSection");
|
|
||||||
tolua_usertype(tolua_S,"HTTPTemplateRequest");
|
|
||||||
tolua_usertype(tolua_S,"sWebAdminPage");
|
tolua_usertype(tolua_S,"sWebAdminPage");
|
||||||
|
tolua_usertype(tolua_S,"cBlockEntity");
|
||||||
|
tolua_usertype(tolua_S,"cItemGrid::cListener");
|
||||||
|
tolua_usertype(tolua_S,"HTTPTemplateRequest");
|
||||||
tolua_usertype(tolua_S,"HTTPRequest");
|
tolua_usertype(tolua_S,"HTTPRequest");
|
||||||
tolua_usertype(tolua_S,"HTTPFormData");
|
tolua_usertype(tolua_S,"HTTPFormData");
|
||||||
tolua_usertype(tolua_S,"cFurnaceEntity");
|
tolua_usertype(tolua_S,"cFurnaceEntity");
|
||||||
|
tolua_usertype(tolua_S,"cDropperEntity");
|
||||||
tolua_usertype(tolua_S,"cLineBlockTracer");
|
tolua_usertype(tolua_S,"cLineBlockTracer");
|
||||||
tolua_usertype(tolua_S,"cPluginManager");
|
tolua_usertype(tolua_S,"cPluginManager");
|
||||||
tolua_usertype(tolua_S,"cIniFile");
|
tolua_usertype(tolua_S,"cIniFile");
|
||||||
@ -253,8 +256,8 @@ static void tolua_reg_types (lua_State* tolua_S)
|
|||||||
tolua_usertype(tolua_S,"cPlayer");
|
tolua_usertype(tolua_S,"cPlayer");
|
||||||
tolua_usertype(tolua_S,"cGroupManager");
|
tolua_usertype(tolua_S,"cGroupManager");
|
||||||
tolua_usertype(tolua_S,"cBlockEntityWindowOwner");
|
tolua_usertype(tolua_S,"cBlockEntityWindowOwner");
|
||||||
tolua_usertype(tolua_S,"cEntity");
|
tolua_usertype(tolua_S,"cCriticalSection");
|
||||||
tolua_usertype(tolua_S,"cItemGrid::cListener");
|
tolua_usertype(tolua_S,"cProjectileEntity");
|
||||||
tolua_usertype(tolua_S,"cPluginLua");
|
tolua_usertype(tolua_S,"cPluginLua");
|
||||||
tolua_usertype(tolua_S,"cItems");
|
tolua_usertype(tolua_S,"cItems");
|
||||||
tolua_usertype(tolua_S,"Vector3d");
|
tolua_usertype(tolua_S,"Vector3d");
|
||||||
@ -9182,6 +9185,253 @@ static int tolua_AllToLua_cPlayer_IsSubmerged00(lua_State* tolua_S)
|
|||||||
}
|
}
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: new of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_new00
|
||||||
|
static int tolua_AllToLua_cPickup_new00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertable(tolua_S,1,"cPickup",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_isvaluenil(tolua_S,5,&tolua_err) || !tolua_isusertype(tolua_S,5,"const cItem",0,&tolua_err)) ||
|
||||||
|
!tolua_isnumber(tolua_S,6,1,&tolua_err) ||
|
||||||
|
!tolua_isnumber(tolua_S,7,1,&tolua_err) ||
|
||||||
|
!tolua_isnumber(tolua_S,8,1,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,9,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
int a_MicroPosX = ((int) tolua_tonumber(tolua_S,2,0));
|
||||||
|
int a_MicroPosY = ((int) tolua_tonumber(tolua_S,3,0));
|
||||||
|
int a_MicroPosZ = ((int) tolua_tonumber(tolua_S,4,0));
|
||||||
|
const cItem* a_Item = ((const cItem*) tolua_tousertype(tolua_S,5,0));
|
||||||
|
float a_SpeedX = ((float) tolua_tonumber(tolua_S,6,0.f));
|
||||||
|
float a_SpeedY = ((float) tolua_tonumber(tolua_S,7,0.f));
|
||||||
|
float a_SpeedZ = ((float) tolua_tonumber(tolua_S,8,0.f));
|
||||||
|
{
|
||||||
|
cPickup* tolua_ret = (cPickup*) Mtolua_new((cPickup)(a_MicroPosX,a_MicroPosY,a_MicroPosZ,*a_Item,a_SpeedX,a_SpeedY,a_SpeedZ));
|
||||||
|
tolua_pushusertype(tolua_S,(void*)tolua_ret,"cPickup");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'new'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: new_local of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_new00_local
|
||||||
|
static int tolua_AllToLua_cPickup_new00_local(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertable(tolua_S,1,"cPickup",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_isvaluenil(tolua_S,5,&tolua_err) || !tolua_isusertype(tolua_S,5,"const cItem",0,&tolua_err)) ||
|
||||||
|
!tolua_isnumber(tolua_S,6,1,&tolua_err) ||
|
||||||
|
!tolua_isnumber(tolua_S,7,1,&tolua_err) ||
|
||||||
|
!tolua_isnumber(tolua_S,8,1,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,9,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
int a_MicroPosX = ((int) tolua_tonumber(tolua_S,2,0));
|
||||||
|
int a_MicroPosY = ((int) tolua_tonumber(tolua_S,3,0));
|
||||||
|
int a_MicroPosZ = ((int) tolua_tonumber(tolua_S,4,0));
|
||||||
|
const cItem* a_Item = ((const cItem*) tolua_tousertype(tolua_S,5,0));
|
||||||
|
float a_SpeedX = ((float) tolua_tonumber(tolua_S,6,0.f));
|
||||||
|
float a_SpeedY = ((float) tolua_tonumber(tolua_S,7,0.f));
|
||||||
|
float a_SpeedZ = ((float) tolua_tonumber(tolua_S,8,0.f));
|
||||||
|
{
|
||||||
|
cPickup* tolua_ret = (cPickup*) Mtolua_new((cPickup)(a_MicroPosX,a_MicroPosY,a_MicroPosZ,*a_Item,a_SpeedX,a_SpeedY,a_SpeedZ));
|
||||||
|
tolua_pushusertype(tolua_S,(void*)tolua_ret,"cPickup");
|
||||||
|
tolua_register_gc(tolua_S,lua_gettop(tolua_S));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'new'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: GetItem of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_GetItem00
|
||||||
|
static int tolua_AllToLua_cPickup_GetItem00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertype(tolua_S,1,"cPickup",0,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cPickup* self = (cPickup*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'GetItem'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cItem& tolua_ret = (cItem&) self->GetItem();
|
||||||
|
tolua_pushusertype(tolua_S,(void*)&tolua_ret,"cItem");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'GetItem'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: CollectedBy of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_CollectedBy00
|
||||||
|
static int tolua_AllToLua_cPickup_CollectedBy00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertype(tolua_S,1,"cPickup",0,&tolua_err) ||
|
||||||
|
!tolua_isusertype(tolua_S,2,"cPlayer",0,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,3,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cPickup* self = (cPickup*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
cPlayer* a_Dest = ((cPlayer*) tolua_tousertype(tolua_S,2,0));
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'CollectedBy'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
bool tolua_ret = (bool) self->CollectedBy(a_Dest);
|
||||||
|
tolua_pushboolean(tolua_S,(bool)tolua_ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'CollectedBy'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: GetAge of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_GetAge00
|
||||||
|
static int tolua_AllToLua_cPickup_GetAge00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertype(tolua_S,1,"const cPickup",0,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
const cPickup* self = (const cPickup*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'GetAge'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
int tolua_ret = (int) self->GetAge();
|
||||||
|
tolua_pushnumber(tolua_S,(lua_Number)tolua_ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'GetAge'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: IsCollected of class cPickup */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_IsCollected00
|
||||||
|
static int tolua_AllToLua_cPickup_IsCollected00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertype(tolua_S,1,"const cPickup",0,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
const cPickup* self = (const cPickup*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'IsCollected'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
bool tolua_ret = (bool) self->IsCollected();
|
||||||
|
tolua_pushboolean(tolua_S,(bool)tolua_ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'IsCollected'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: GetCreator of class cProjectileEntity */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cProjectileEntity_GetCreator00
|
||||||
|
static int tolua_AllToLua_cProjectileEntity_GetCreator00(lua_State* tolua_S)
|
||||||
|
{
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_Error tolua_err;
|
||||||
|
if (
|
||||||
|
!tolua_isusertype(tolua_S,1,"cProjectileEntity",0,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cProjectileEntity* self = (cProjectileEntity*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'GetCreator'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cEntity* tolua_ret = (cEntity*) self->GetCreator();
|
||||||
|
tolua_pushusertype(tolua_S,(void*)tolua_ret,"cEntity");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'GetCreator'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
/* method: Get of class cPluginManager */
|
/* method: Get of class cPluginManager */
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPluginManager_Get00
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPluginManager_Get00
|
||||||
static int tolua_AllToLua_cPluginManager_Get00(lua_State* tolua_S)
|
static int tolua_AllToLua_cPluginManager_Get00(lua_State* tolua_S)
|
||||||
@ -12552,6 +12802,50 @@ static int tolua_AllToLua_cWorld_SpawnMob00(lua_State* tolua_S)
|
|||||||
}
|
}
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
|
/* method: CreateProjectile of class cWorld */
|
||||||
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cWorld_CreateProjectile00
|
||||||
|
static int tolua_AllToLua_cWorld_CreateProjectile00(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_isusertype(tolua_S,6,"cEntity",0,&tolua_err) ||
|
||||||
|
!tolua_isusertype(tolua_S,7,"const Vector3d",1,&tolua_err) ||
|
||||||
|
!tolua_isnoobj(tolua_S,8,&tolua_err)
|
||||||
|
)
|
||||||
|
goto tolua_lerror;
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
cWorld* self = (cWorld*) tolua_tousertype(tolua_S,1,0);
|
||||||
|
double a_PosX = ((double) tolua_tonumber(tolua_S,2,0));
|
||||||
|
double a_PosY = ((double) tolua_tonumber(tolua_S,3,0));
|
||||||
|
double a_PosZ = ((double) tolua_tonumber(tolua_S,4,0));
|
||||||
|
cProjectileEntity::eKind a_Kind = ((cProjectileEntity::eKind) (int) tolua_tonumber(tolua_S,5,0));
|
||||||
|
cEntity* a_Creator = ((cEntity*) tolua_tousertype(tolua_S,6,0));
|
||||||
|
const Vector3d* a_Speed = ((const Vector3d*) tolua_tousertype(tolua_S,7,NULL));
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'CreateProjectile'", NULL);
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
int tolua_ret = (int) self->CreateProjectile(a_PosX,a_PosY,a_PosZ,a_Kind,a_Creator,a_Speed);
|
||||||
|
tolua_pushnumber(tolua_S,(lua_Number)tolua_ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
#ifndef TOLUA_RELEASE
|
||||||
|
tolua_lerror:
|
||||||
|
tolua_error(tolua_S,"#ferror in function 'CreateProjectile'.",&tolua_err);
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
/* method: Clear of class cInventory */
|
/* method: Clear of class cInventory */
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cInventory_Clear00
|
#ifndef TOLUA_DISABLE_tolua_AllToLua_cInventory_Clear00
|
||||||
static int tolua_AllToLua_cInventory_Clear00(lua_State* tolua_S)
|
static int tolua_AllToLua_cInventory_Clear00(lua_State* tolua_S)
|
||||||
@ -17889,221 +18183,6 @@ static int tolua_AllToLua_cWebPlugin_SafeString00(lua_State* tolua_S)
|
|||||||
}
|
}
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
#endif //#ifndef TOLUA_DISABLE
|
||||||
|
|
||||||
/* method: new of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_new00
|
|
||||||
static int tolua_AllToLua_cPickup_new00(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertable(tolua_S,1,"cPickup",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_isvaluenil(tolua_S,5,&tolua_err) || !tolua_isusertype(tolua_S,5,"const cItem",0,&tolua_err)) ||
|
|
||||||
!tolua_isnumber(tolua_S,6,1,&tolua_err) ||
|
|
||||||
!tolua_isnumber(tolua_S,7,1,&tolua_err) ||
|
|
||||||
!tolua_isnumber(tolua_S,8,1,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,9,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
int a_MicroPosX = ((int) tolua_tonumber(tolua_S,2,0));
|
|
||||||
int a_MicroPosY = ((int) tolua_tonumber(tolua_S,3,0));
|
|
||||||
int a_MicroPosZ = ((int) tolua_tonumber(tolua_S,4,0));
|
|
||||||
const cItem* a_Item = ((const cItem*) tolua_tousertype(tolua_S,5,0));
|
|
||||||
float a_SpeedX = ((float) tolua_tonumber(tolua_S,6,0.f));
|
|
||||||
float a_SpeedY = ((float) tolua_tonumber(tolua_S,7,0.f));
|
|
||||||
float a_SpeedZ = ((float) tolua_tonumber(tolua_S,8,0.f));
|
|
||||||
{
|
|
||||||
cPickup* tolua_ret = (cPickup*) Mtolua_new((cPickup)(a_MicroPosX,a_MicroPosY,a_MicroPosZ,*a_Item,a_SpeedX,a_SpeedY,a_SpeedZ));
|
|
||||||
tolua_pushusertype(tolua_S,(void*)tolua_ret,"cPickup");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'new'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* method: new_local of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_new00_local
|
|
||||||
static int tolua_AllToLua_cPickup_new00_local(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertable(tolua_S,1,"cPickup",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_isvaluenil(tolua_S,5,&tolua_err) || !tolua_isusertype(tolua_S,5,"const cItem",0,&tolua_err)) ||
|
|
||||||
!tolua_isnumber(tolua_S,6,1,&tolua_err) ||
|
|
||||||
!tolua_isnumber(tolua_S,7,1,&tolua_err) ||
|
|
||||||
!tolua_isnumber(tolua_S,8,1,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,9,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
int a_MicroPosX = ((int) tolua_tonumber(tolua_S,2,0));
|
|
||||||
int a_MicroPosY = ((int) tolua_tonumber(tolua_S,3,0));
|
|
||||||
int a_MicroPosZ = ((int) tolua_tonumber(tolua_S,4,0));
|
|
||||||
const cItem* a_Item = ((const cItem*) tolua_tousertype(tolua_S,5,0));
|
|
||||||
float a_SpeedX = ((float) tolua_tonumber(tolua_S,6,0.f));
|
|
||||||
float a_SpeedY = ((float) tolua_tonumber(tolua_S,7,0.f));
|
|
||||||
float a_SpeedZ = ((float) tolua_tonumber(tolua_S,8,0.f));
|
|
||||||
{
|
|
||||||
cPickup* tolua_ret = (cPickup*) Mtolua_new((cPickup)(a_MicroPosX,a_MicroPosY,a_MicroPosZ,*a_Item,a_SpeedX,a_SpeedY,a_SpeedZ));
|
|
||||||
tolua_pushusertype(tolua_S,(void*)tolua_ret,"cPickup");
|
|
||||||
tolua_register_gc(tolua_S,lua_gettop(tolua_S));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'new'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* method: GetItem of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_GetItem00
|
|
||||||
static int tolua_AllToLua_cPickup_GetItem00(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertype(tolua_S,1,"cPickup",0,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
cPickup* self = (cPickup*) tolua_tousertype(tolua_S,1,0);
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'GetItem'", NULL);
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
cItem& tolua_ret = (cItem&) self->GetItem();
|
|
||||||
tolua_pushusertype(tolua_S,(void*)&tolua_ret,"cItem");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'GetItem'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* method: CollectedBy of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_CollectedBy00
|
|
||||||
static int tolua_AllToLua_cPickup_CollectedBy00(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertype(tolua_S,1,"cPickup",0,&tolua_err) ||
|
|
||||||
!tolua_isusertype(tolua_S,2,"cPlayer",0,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,3,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
cPickup* self = (cPickup*) tolua_tousertype(tolua_S,1,0);
|
|
||||||
cPlayer* a_Dest = ((cPlayer*) tolua_tousertype(tolua_S,2,0));
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'CollectedBy'", NULL);
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
bool tolua_ret = (bool) self->CollectedBy(a_Dest);
|
|
||||||
tolua_pushboolean(tolua_S,(bool)tolua_ret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'CollectedBy'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* method: GetAge of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_GetAge00
|
|
||||||
static int tolua_AllToLua_cPickup_GetAge00(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertype(tolua_S,1,"const cPickup",0,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
const cPickup* self = (const cPickup*) tolua_tousertype(tolua_S,1,0);
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'GetAge'", NULL);
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
int tolua_ret = (int) self->GetAge();
|
|
||||||
tolua_pushnumber(tolua_S,(lua_Number)tolua_ret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'GetAge'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* method: IsCollected of class cPickup */
|
|
||||||
#ifndef TOLUA_DISABLE_tolua_AllToLua_cPickup_IsCollected00
|
|
||||||
static int tolua_AllToLua_cPickup_IsCollected00(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
if (
|
|
||||||
!tolua_isusertype(tolua_S,1,"const cPickup",0,&tolua_err) ||
|
|
||||||
!tolua_isnoobj(tolua_S,2,&tolua_err)
|
|
||||||
)
|
|
||||||
goto tolua_lerror;
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
const cPickup* self = (const cPickup*) tolua_tousertype(tolua_S,1,0);
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
if (!self) tolua_error(tolua_S,"invalid 'self' in function 'IsCollected'", NULL);
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
bool tolua_ret = (bool) self->IsCollected();
|
|
||||||
tolua_pushboolean(tolua_S,(bool)tolua_ret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
#ifndef TOLUA_RELEASE
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'IsCollected'.",&tolua_err);
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#endif //#ifndef TOLUA_DISABLE
|
|
||||||
|
|
||||||
/* get function: m_PrimaryServerVersion of class cRoot */
|
/* get function: m_PrimaryServerVersion of class cRoot */
|
||||||
#ifndef TOLUA_DISABLE_tolua_get_cRoot_m_PrimaryServerVersion
|
#ifndef TOLUA_DISABLE_tolua_get_cRoot_m_PrimaryServerVersion
|
||||||
static int tolua_get_cRoot_m_PrimaryServerVersion(lua_State* tolua_S)
|
static int tolua_get_cRoot_m_PrimaryServerVersion(lua_State* tolua_S)
|
||||||
@ -27821,10 +27900,11 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S)
|
|||||||
tolua_constant(tolua_S,"etPlayer",cEntity::etPlayer);
|
tolua_constant(tolua_S,"etPlayer",cEntity::etPlayer);
|
||||||
tolua_constant(tolua_S,"etPickup",cEntity::etPickup);
|
tolua_constant(tolua_S,"etPickup",cEntity::etPickup);
|
||||||
tolua_constant(tolua_S,"etMonster",cEntity::etMonster);
|
tolua_constant(tolua_S,"etMonster",cEntity::etMonster);
|
||||||
tolua_constant(tolua_S,"etMob",cEntity::etMob);
|
|
||||||
tolua_constant(tolua_S,"etFallingBlock",cEntity::etFallingBlock);
|
tolua_constant(tolua_S,"etFallingBlock",cEntity::etFallingBlock);
|
||||||
tolua_constant(tolua_S,"etMinecart",cEntity::etMinecart);
|
tolua_constant(tolua_S,"etMinecart",cEntity::etMinecart);
|
||||||
tolua_constant(tolua_S,"etTNT",cEntity::etTNT);
|
tolua_constant(tolua_S,"etTNT",cEntity::etTNT);
|
||||||
|
tolua_constant(tolua_S,"etProjectile",cEntity::etProjectile);
|
||||||
|
tolua_constant(tolua_S,"etMob",cEntity::etMob);
|
||||||
tolua_constant(tolua_S,"eEntityType_Entity",cEntity::eEntityType_Entity);
|
tolua_constant(tolua_S,"eEntityType_Entity",cEntity::eEntityType_Entity);
|
||||||
tolua_constant(tolua_S,"eEntityType_Player",cEntity::eEntityType_Player);
|
tolua_constant(tolua_S,"eEntityType_Player",cEntity::eEntityType_Player);
|
||||||
tolua_constant(tolua_S,"eEntityType_Pickup",cEntity::eEntityType_Pickup);
|
tolua_constant(tolua_S,"eEntityType_Pickup",cEntity::eEntityType_Pickup);
|
||||||
@ -27986,6 +28066,37 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S)
|
|||||||
tolua_function(tolua_S,"IsSwimming",tolua_AllToLua_cPlayer_IsSwimming00);
|
tolua_function(tolua_S,"IsSwimming",tolua_AllToLua_cPlayer_IsSwimming00);
|
||||||
tolua_function(tolua_S,"IsSubmerged",tolua_AllToLua_cPlayer_IsSubmerged00);
|
tolua_function(tolua_S,"IsSubmerged",tolua_AllToLua_cPlayer_IsSubmerged00);
|
||||||
tolua_endmodule(tolua_S);
|
tolua_endmodule(tolua_S);
|
||||||
|
#ifdef __cplusplus
|
||||||
|
tolua_cclass(tolua_S,"cPickup","cPickup","cEntity",tolua_collect_cPickup);
|
||||||
|
#else
|
||||||
|
tolua_cclass(tolua_S,"cPickup","cPickup","cEntity",NULL);
|
||||||
|
#endif
|
||||||
|
tolua_beginmodule(tolua_S,"cPickup");
|
||||||
|
tolua_function(tolua_S,"new",tolua_AllToLua_cPickup_new00);
|
||||||
|
tolua_function(tolua_S,"new_local",tolua_AllToLua_cPickup_new00_local);
|
||||||
|
tolua_function(tolua_S,".call",tolua_AllToLua_cPickup_new00_local);
|
||||||
|
tolua_function(tolua_S,"GetItem",tolua_AllToLua_cPickup_GetItem00);
|
||||||
|
tolua_function(tolua_S,"CollectedBy",tolua_AllToLua_cPickup_CollectedBy00);
|
||||||
|
tolua_function(tolua_S,"GetAge",tolua_AllToLua_cPickup_GetAge00);
|
||||||
|
tolua_function(tolua_S,"IsCollected",tolua_AllToLua_cPickup_IsCollected00);
|
||||||
|
tolua_endmodule(tolua_S);
|
||||||
|
tolua_cclass(tolua_S,"cProjectileEntity","cProjectileEntity","cEntity",NULL);
|
||||||
|
tolua_beginmodule(tolua_S,"cProjectileEntity");
|
||||||
|
tolua_constant(tolua_S,"pkArrow",cProjectileEntity::pkArrow);
|
||||||
|
tolua_constant(tolua_S,"pkSnowball",cProjectileEntity::pkSnowball);
|
||||||
|
tolua_constant(tolua_S,"pkEgg",cProjectileEntity::pkEgg);
|
||||||
|
tolua_constant(tolua_S,"pkGhastFireball",cProjectileEntity::pkGhastFireball);
|
||||||
|
tolua_constant(tolua_S,"pkFireCharge",cProjectileEntity::pkFireCharge);
|
||||||
|
tolua_constant(tolua_S,"pkEnderPearl",cProjectileEntity::pkEnderPearl);
|
||||||
|
tolua_constant(tolua_S,"pkExpBottle",cProjectileEntity::pkExpBottle);
|
||||||
|
tolua_constant(tolua_S,"pkSplashPotion",cProjectileEntity::pkSplashPotion);
|
||||||
|
tolua_constant(tolua_S,"pkWitherSkull",cProjectileEntity::pkWitherSkull);
|
||||||
|
tolua_constant(tolua_S,"pkFishingFloat",cProjectileEntity::pkFishingFloat);
|
||||||
|
tolua_function(tolua_S,"GetCreator",tolua_AllToLua_cProjectileEntity_GetCreator00);
|
||||||
|
tolua_endmodule(tolua_S);
|
||||||
|
tolua_cclass(tolua_S,"cArrowEntity","cArrowEntity","cProjectileEntity",NULL);
|
||||||
|
tolua_beginmodule(tolua_S,"cArrowEntity");
|
||||||
|
tolua_endmodule(tolua_S);
|
||||||
tolua_cclass(tolua_S,"cPluginManager","cPluginManager","",NULL);
|
tolua_cclass(tolua_S,"cPluginManager","cPluginManager","",NULL);
|
||||||
tolua_beginmodule(tolua_S,"cPluginManager");
|
tolua_beginmodule(tolua_S,"cPluginManager");
|
||||||
tolua_constant(tolua_S,"HOOK_BLOCK_TO_PICKUPS",cPluginManager::HOOK_BLOCK_TO_PICKUPS);
|
tolua_constant(tolua_S,"HOOK_BLOCK_TO_PICKUPS",cPluginManager::HOOK_BLOCK_TO_PICKUPS);
|
||||||
@ -28148,6 +28259,7 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S)
|
|||||||
tolua_function(tolua_S,"GetMaxCactusHeight",tolua_AllToLua_cWorld_GetMaxCactusHeight00);
|
tolua_function(tolua_S,"GetMaxCactusHeight",tolua_AllToLua_cWorld_GetMaxCactusHeight00);
|
||||||
tolua_function(tolua_S,"IsBlockDirectlyWatered",tolua_AllToLua_cWorld_IsBlockDirectlyWatered00);
|
tolua_function(tolua_S,"IsBlockDirectlyWatered",tolua_AllToLua_cWorld_IsBlockDirectlyWatered00);
|
||||||
tolua_function(tolua_S,"SpawnMob",tolua_AllToLua_cWorld_SpawnMob00);
|
tolua_function(tolua_S,"SpawnMob",tolua_AllToLua_cWorld_SpawnMob00);
|
||||||
|
tolua_function(tolua_S,"CreateProjectile",tolua_AllToLua_cWorld_CreateProjectile00);
|
||||||
tolua_endmodule(tolua_S);
|
tolua_endmodule(tolua_S);
|
||||||
tolua_cclass(tolua_S,"cInventory","cInventory","cItemGrid::cListener",NULL);
|
tolua_cclass(tolua_S,"cInventory","cInventory","cItemGrid::cListener",NULL);
|
||||||
tolua_beginmodule(tolua_S,"cInventory");
|
tolua_beginmodule(tolua_S,"cInventory");
|
||||||
@ -28451,20 +28563,6 @@ TOLUA_API int tolua_AllToLua_open (lua_State* tolua_S)
|
|||||||
tolua_function(tolua_S,"HandleWebRequest",tolua_AllToLua_cWebPlugin_HandleWebRequest00);
|
tolua_function(tolua_S,"HandleWebRequest",tolua_AllToLua_cWebPlugin_HandleWebRequest00);
|
||||||
tolua_function(tolua_S,"SafeString",tolua_AllToLua_cWebPlugin_SafeString00);
|
tolua_function(tolua_S,"SafeString",tolua_AllToLua_cWebPlugin_SafeString00);
|
||||||
tolua_endmodule(tolua_S);
|
tolua_endmodule(tolua_S);
|
||||||
#ifdef __cplusplus
|
|
||||||
tolua_cclass(tolua_S,"cPickup","cPickup","cEntity",tolua_collect_cPickup);
|
|
||||||
#else
|
|
||||||
tolua_cclass(tolua_S,"cPickup","cPickup","cEntity",NULL);
|
|
||||||
#endif
|
|
||||||
tolua_beginmodule(tolua_S,"cPickup");
|
|
||||||
tolua_function(tolua_S,"new",tolua_AllToLua_cPickup_new00);
|
|
||||||
tolua_function(tolua_S,"new_local",tolua_AllToLua_cPickup_new00_local);
|
|
||||||
tolua_function(tolua_S,".call",tolua_AllToLua_cPickup_new00_local);
|
|
||||||
tolua_function(tolua_S,"GetItem",tolua_AllToLua_cPickup_GetItem00);
|
|
||||||
tolua_function(tolua_S,"CollectedBy",tolua_AllToLua_cPickup_CollectedBy00);
|
|
||||||
tolua_function(tolua_S,"GetAge",tolua_AllToLua_cPickup_GetAge00);
|
|
||||||
tolua_function(tolua_S,"IsCollected",tolua_AllToLua_cPickup_IsCollected00);
|
|
||||||
tolua_endmodule(tolua_S);
|
|
||||||
tolua_cclass(tolua_S,"cRoot","cRoot","",NULL);
|
tolua_cclass(tolua_S,"cRoot","cRoot","",NULL);
|
||||||
tolua_beginmodule(tolua_S,"cRoot");
|
tolua_beginmodule(tolua_S,"cRoot");
|
||||||
tolua_variable(tolua_S,"m_PrimaryServerVersion",tolua_get_cRoot_m_PrimaryServerVersion,tolua_set_cRoot_m_PrimaryServerVersion);
|
tolua_variable(tolua_S,"m_PrimaryServerVersion",tolua_get_cRoot_m_PrimaryServerVersion,tolua_set_cRoot_m_PrimaryServerVersion);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
** Lua binding: AllToLua
|
** Lua binding: AllToLua
|
||||||
** Generated automatically by tolua++-1.0.92 on 08/21/13 19:38:48.
|
** Generated automatically by tolua++-1.0.92 on 08/22/13 08:53:27.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Exported function */
|
/* Exported function */
|
||||||
|
@ -90,12 +90,13 @@ public:
|
|||||||
etPlayer,
|
etPlayer,
|
||||||
etPickup,
|
etPickup,
|
||||||
etMonster,
|
etMonster,
|
||||||
etMob = etMonster, // DEPRECATED, use etMonster instead!
|
|
||||||
etFallingBlock,
|
etFallingBlock,
|
||||||
etMinecart,
|
etMinecart,
|
||||||
etTNT,
|
etTNT,
|
||||||
|
etProjectile,
|
||||||
|
|
||||||
// DEPRECATED older constants, left over for compatibility reasons (plugins)
|
// DEPRECATED older constants, left over for compatibility reasons (plugins)
|
||||||
|
etMob = etMonster, // DEPRECATED, use etMonster instead!
|
||||||
eEntityType_Entity = etEntity,
|
eEntityType_Entity = etEntity,
|
||||||
eEntityType_Player = etPlayer,
|
eEntityType_Player = etPlayer,
|
||||||
eEntityType_Pickup = etPickup,
|
eEntityType_Pickup = etPickup,
|
||||||
@ -276,9 +277,8 @@ public:
|
|||||||
|
|
||||||
/** Descendants override this function to send a command to the specified client to spawn the entity on the client.
|
/** Descendants override this function to send a command to the specified client to spawn the entity on the client.
|
||||||
To spawn on all eligible clients, use cChunkMap::BroadcastSpawnEntity()
|
To spawn on all eligible clients, use cChunkMap::BroadcastSpawnEntity()
|
||||||
Needs to have a default implementation due to Lua bindings.
|
|
||||||
*/
|
*/
|
||||||
virtual void SpawnOn(cClientHandle & a_Client) {ASSERT(!"SpawnOn() unimplemented!"); }
|
virtual void SpawnOn(cClientHandle & a_Client) = 0;
|
||||||
|
|
||||||
// tolua_begin
|
// tolua_begin
|
||||||
|
|
||||||
|
79
source/Entities/ProjectileEntity.cpp
Normal file
79
source/Entities/ProjectileEntity.cpp
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
|
||||||
|
// ProjectileEntity.cpp
|
||||||
|
|
||||||
|
// Implements the cProjectileEntity class representing the common base class for projectiles, as well as individual projectile types
|
||||||
|
|
||||||
|
#include "Globals.h"
|
||||||
|
#include "ProjectileEntity.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// cProjectileEntity:
|
||||||
|
|
||||||
|
cProjectileEntity::cProjectileEntity(eKind a_Kind, cEntity * a_Creator, double a_X, double a_Y, double a_Z, double a_Width, double a_Height) :
|
||||||
|
super(etProjectile, a_X, a_Y, a_Z, a_Width, a_Height),
|
||||||
|
m_Creator(a_Creator)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
cProjectileEntity::cProjectileEntity(eKind a_Kind, cEntity * a_Creator, const Vector3d & a_Pos, const Vector3d & a_Speed, double a_Width, double a_Height) :
|
||||||
|
super(etProjectile, a_Pos.x, a_Pos.y, a_Pos.z, a_Width, a_Height),
|
||||||
|
m_Creator(a_Creator)
|
||||||
|
{
|
||||||
|
SetSpeed(a_Speed);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
cProjectileEntity * cProjectileEntity::Create(eKind a_Kind, cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d * a_Speed)
|
||||||
|
{
|
||||||
|
Vector3d Speed;
|
||||||
|
if (a_Speed != NULL)
|
||||||
|
{
|
||||||
|
Speed = *a_Speed;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (a_Kind)
|
||||||
|
{
|
||||||
|
case pkArrow: return new cArrowEntity(a_Creator, a_X, a_Y, a_Z, Speed);
|
||||||
|
// TODO: the rest
|
||||||
|
}
|
||||||
|
|
||||||
|
LOGWARNING("%s: Unknown kind: %d", __FUNCTION__, a_Kind);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// cArrowEntity:
|
||||||
|
|
||||||
|
cArrowEntity::cArrowEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d a_Speed) :
|
||||||
|
super(pkArrow, a_Creator, a_X, a_Y, a_Z, 0.5, 0.5)
|
||||||
|
{
|
||||||
|
SetSpeed(a_Speed);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void cArrowEntity::SpawnOn(cClientHandle & a_Client)
|
||||||
|
{
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
// ProjectileEntity.h
|
// ProjectileEntity.h
|
||||||
|
|
||||||
// Declares the cProjectileEntity class representing the common base class for projectiles
|
// Declares the cProjectileEntity class representing the common base class for projectiles, as well as individual projectile types
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -38,12 +38,21 @@ public:
|
|||||||
pkFishingFloat = 90,
|
pkFishingFloat = 90,
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
|
// tolua_end
|
||||||
|
|
||||||
cProjectileEntity(eKind a_Kind, cEntity * a_Creator, double a_X, double a_Y, double a_Z, double a_Width, double a_Height);
|
cProjectileEntity(eKind a_Kind, cEntity * a_Creator, double a_X, double a_Y, double a_Z, double a_Width, double a_Height);
|
||||||
cProjectileEntity(eKind a_Kind, cEntity * a_Creator, const Vector3d & a_Pos, const Vector3d & a_Speed, double a_Width, double a_Height);
|
cProjectileEntity(eKind a_Kind, cEntity * a_Creator, const Vector3d & a_Pos, const Vector3d & a_Speed, double a_Width, double a_Height);
|
||||||
|
|
||||||
|
static cProjectileEntity * Create(eKind a_Kind, cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d * a_Speed = NULL);
|
||||||
|
|
||||||
/// Called by the physics blocktracer when the entity hits a solid block, the coords and the face hit is given
|
/// Called by the physics blocktracer when the entity hits a solid block, the coords and the face hit is given
|
||||||
virtual void OnHitSolidBlock(double a_BlockX, double a_BlockY, double a_BlockZ, char a_BlockFace) {};
|
virtual void OnHitSolidBlock(double a_BlockX, double a_BlockY, double a_BlockZ, char a_BlockFace) {};
|
||||||
|
|
||||||
|
// tolua_begin
|
||||||
|
|
||||||
|
/// Returns the entity who created this projectile; may be NULL
|
||||||
|
cEntity * GetCreator(void) { return m_Creator; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
eKind m_Kind;
|
eKind m_Kind;
|
||||||
|
|
||||||
@ -58,9 +67,20 @@ protected:
|
|||||||
class cArrowEntity :
|
class cArrowEntity :
|
||||||
public cProjectileEntity
|
public cProjectileEntity
|
||||||
{
|
{
|
||||||
|
typedef cProjectileEntity super;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
cArrowEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, double a_Width, double a_Height);
|
|
||||||
cArrowEntity(cEntity * a_Creator, const Vector3d & a_Pos, const Vector3d & a_Speed, double a_Width, double a_Height);
|
// tolua_end
|
||||||
|
|
||||||
|
cArrowEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d a_Speed);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
|
||||||
|
// cEntity overrides:
|
||||||
|
virtual void SpawnOn(cClientHandle & a_Client) override;
|
||||||
|
|
||||||
|
// tolua_begin
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
// tolua_end
|
// tolua_end
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
#include "World.h"
|
#include "World.h"
|
||||||
#include "ChunkDef.h"
|
#include "ChunkDef.h"
|
||||||
#include "ClientHandle.h"
|
#include "ClientHandle.h"
|
||||||
#include "Entities/Pickup.h"
|
|
||||||
#include "Entities/Player.h"
|
|
||||||
#include "Server.h"
|
#include "Server.h"
|
||||||
#include "Item.h"
|
#include "Item.h"
|
||||||
#include "Root.h"
|
#include "Root.h"
|
||||||
@ -14,6 +12,11 @@
|
|||||||
#include "ChunkMap.h"
|
#include "ChunkMap.h"
|
||||||
#include "OSSupport/Timer.h"
|
#include "OSSupport/Timer.h"
|
||||||
|
|
||||||
|
// Entities (except mobs):
|
||||||
|
#include "Entities/Pickup.h"
|
||||||
|
#include "Entities/Player.h"
|
||||||
|
#include "Entities/TNTEntity.h"
|
||||||
|
|
||||||
// Simulators:
|
// Simulators:
|
||||||
#include "Simulator/SimulatorManager.h"
|
#include "Simulator/SimulatorManager.h"
|
||||||
#include "Simulator/FloodyFluidSimulator.h"
|
#include "Simulator/FloodyFluidSimulator.h"
|
||||||
@ -55,7 +58,6 @@
|
|||||||
#include "PluginManager.h"
|
#include "PluginManager.h"
|
||||||
#include "Blocks/BlockHandler.h"
|
#include "Blocks/BlockHandler.h"
|
||||||
#include "Vector3d.h"
|
#include "Vector3d.h"
|
||||||
#include "Entities/TNTEntity.h"
|
|
||||||
|
|
||||||
#include "Tracer.h"
|
#include "Tracer.h"
|
||||||
#include "tolua++.h"
|
#include "tolua++.h"
|
||||||
@ -2650,6 +2652,26 @@ int cWorld::SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eTyp
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int cWorld::CreateProjectile(double a_PosX, double a_PosY, double a_PosZ, cProjectileEntity::eKind a_Kind, cEntity * a_Creator, const Vector3d * a_Speed)
|
||||||
|
{
|
||||||
|
cProjectileEntity * Projectile = cProjectileEntity::Create(a_Kind, a_Creator, a_PosX, a_PosY, a_PosZ, a_Speed);
|
||||||
|
if (Projectile == NULL)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (!Projectile->Initialize(this))
|
||||||
|
{
|
||||||
|
delete Projectile;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
BroadcastSpawnEntity(*Projectile);
|
||||||
|
return Projectile->GetUniqueID();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void cWorld::TabCompleteUserName(const AString & a_Text, AStringVector & a_Results)
|
void cWorld::TabCompleteUserName(const AString & a_Text, AStringVector & a_Results)
|
||||||
{
|
{
|
||||||
cCSLock Lock(m_CSPlayers);
|
cCSLock Lock(m_CSPlayers);
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include "LightingThread.h"
|
#include "LightingThread.h"
|
||||||
#include "Item.h"
|
#include "Item.h"
|
||||||
#include "Mobs/Monster.h"
|
#include "Mobs/Monster.h"
|
||||||
|
#include "Entities/ProjectileEntity.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -573,6 +574,9 @@ public:
|
|||||||
/// Spawns a mob of the specified type. Returns the mob's EntityID if recognized and spawned, <0 otherwise
|
/// Spawns a mob of the specified type. Returns the mob's EntityID if recognized and spawned, <0 otherwise
|
||||||
int SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eType a_MonsterType); // tolua_export
|
int SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eType a_MonsterType); // tolua_export
|
||||||
|
|
||||||
|
/// Creates a projectile of the specified type. Returns the projectile's EntityID if successful, <0 otherwise
|
||||||
|
int CreateProjectile(double a_PosX, double a_PosY, double a_PosZ, cProjectileEntity::eKind a_Kind, cEntity * a_Creator, const Vector3d * a_Speed = NULL); // tolua_export
|
||||||
|
|
||||||
/// Returns a random number from the m_TickRand in range [0 .. a_Range]. To be used only in the tick thread!
|
/// Returns a random number from the m_TickRand in range [0 .. a_Range]. To be used only in the tick thread!
|
||||||
int GetTickRandomNumber(unsigned a_Range) { return (int)(m_TickRand.randInt(a_Range)); }
|
int GetTickRandomNumber(unsigned a_Range) { return (int)(m_TickRand.randInt(a_Range)); }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user