summaryrefslogblamecommitdiffstats
path: root/src/Items/ItemBigFlower.h
blob: f7171f2bc8de05eec665486e47c638a106c3ac9f (plain) (tree)




























                                                                                  
                                      

                                                                                   

                                                            


                                                   
                                                                                                          


                                     
 
                                                                                                                                 

                                                     
                                                                                                                                                      
                 
                            





         

// ItemBigFlower.h

// Declares the cItemBigFlower class representing the cItemHandler for big flowers





#pragma once

#include "ItemHandler.h"





class cItemBigFlowerHandler:
	public cItemHandler
{
	typedef cItemHandler super;

public:
	cItemBigFlowerHandler(void):
		super(E_BLOCK_BIG_FLOWER)
	{
	}


	virtual bool GetBlocksToPlace(
		cWorld & a_World, cPlayer & a_Player, const cItem & a_EquippedItem,
		int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
		int a_CursorX, int a_CursorY, int a_CursorZ,
		sSetBlockVector & a_BlocksToSet
	) override
	{
		// Can only be placed on the floor:
		if ((a_BlockY < 0) || (a_World.GetBlock(a_BlockX, a_BlockY - 1, a_BlockZ) == E_BLOCK_AIR))
		{
			return false;
		}

		a_BlocksToSet.emplace_back(a_BlockX, a_BlockY, a_BlockZ, E_BLOCK_BIG_FLOWER, a_EquippedItem.m_ItemDamage & 0x07);
		if (a_BlockY < cChunkDef::Height - 1)
		{
			a_BlocksToSet.emplace_back(a_BlockX, a_BlockY + 1, a_BlockZ, E_BLOCK_BIG_FLOWER, (a_EquippedItem.m_ItemDamage & 0x07) | 0x08);
		}
		return true;
	}
};