summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockFurnace.h
blob: a7a807957f9c72ce79bafb50fc4cc2d223c12914 (plain) (tree)
1
2
3
4
5
6
7





                        
                        




                            
                                                                              

       
                                                    
                                                                                              










                                                                                          
                                                                       
                                                                                  






                                                                         
                                                                                      







                            

#pragma once

#include "BlockEntity.h"
#include "../World.h"
#include "../Piston.h"
#include "MetaRotator.h"




class cBlockFurnaceHandler :
	public cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>
{
public:
	cBlockFurnaceHandler(BLOCKTYPE a_BlockType) 
		: cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>(a_BlockType)
	{
	}


	virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
	{
		a_Pickups.push_back(cItem(E_BLOCK_FURNACE, 1, 0));
	}

	
	virtual bool GetPlacementBlockTypeMeta(
		cChunkInterface & a_ChunkInterface, cPlayer * a_Player,
		int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, 
		int a_CursorX, int a_CursorY, int a_CursorZ,
		BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
	) override
	{
		a_BlockType = m_BlockType;
		
		// FIXME: Do not use cPiston class for furnace placement!
		a_BlockMeta = cPiston::RotationPitchToMetaData(a_Player->GetYaw(), 0);
		
		return true;
	}
} ;