1
0
cuberite-2a/source/Items/ItemSpawnEgg.h
madmaxoft@gmail.com 84da8a2353 Added basic spawn eggs (patch contributed by Luksor)
git-svn-id: http://mc-server.googlecode.com/svn/trunk@973 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-10-18 09:36:30 +00:00

70 lines
1.2 KiB
C++

#pragma once
#include "ItemHandler.h"
#include "../World.h"
#include "../Player.h"
// Mobs:
#include "../Mobs/Chicken.h"
#include "../Mobs/Spider.h"
#include "../Mobs/Cow.h"
#include "../Mobs/Squid.h"
#include "../Mobs/Wolf.h"
#include "../Mobs/Slime.h"
#include "../Mobs/Skeleton.h"
#include "../Mobs/Silverfish.h"
#include "../Mobs/Pig.h"
#include "../Mobs/Sheep.h"
#include "../Mobs/Zombie.h"
#include "../Mobs/Enderman.h"
#include "../Mobs/Creeper.h"
#include "../Mobs/Cavespider.h"
#include "../Mobs/Ghast.h"
#include "../Mobs/Zombiepigman.h"
class cItemSpawnEggHandler : public cItemHandler
{
public:
cItemSpawnEggHandler(int a_ItemID) :
cItemHandler(a_ItemID)
{
}
virtual bool OnItemUse(cWorld * a_World, cPlayer * a_Player, cItem * a_Item, int a_X, int a_Y, int a_Z, char a_Dir) override
{
if (a_Dir < 0)
{
return false;
}
AddDirection(a_X, a_Y, a_Z, a_Dir);
if (a_Dir == BLOCK_FACE_BOTTOM)
{
a_Y--;
}
cMonster * Monster = NULL;
Monster = new cZombie();
Monster->Initialize(a_World);
Monster->TeleportTo(a_X + 0.5, a_Y, a_Z + 0.5);
a_World->BroadcastSpawn(*Monster);
a_Player->UseEquippedItem();
return true;
}
} ;