summaryrefslogblamecommitdiffstats
path: root/src/Items/ItemItemFrame.h
blob: 0f7a4ee8c5a90b970b1f43845f8973ac5fc91822 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                        
                                  





                               
                            

                           

                                   
       
 


                                              

         

 

 
                               





                                                          
                  
         

                                                                                                                                              



                                     





                                                                                               
                                                                                       
                                                                                              

                                                              
                 

                                     
 

                                                                                                                      




                                                                              
 


                                                                         
                 

                            





         

#pragma once

#include "ItemHandler.h"
#include "../Entities/ItemFrame.h"
#include "../Entities/Player.h"





class cItemItemFrameHandler:
	public cItemHandler
{
	using Super = cItemHandler;

public:

	cItemItemFrameHandler(int a_ItemType):
		Super(a_ItemType)
	{
	}





	virtual bool OnItemUse(
		cWorld * a_World,
		cPlayer * a_Player,
		cBlockPluginInterface & a_PluginInterface,
		const cItem & a_HeldItem,
		const Vector3i a_ClickedBlockPos,
		eBlockFace a_ClickedBlockFace
	) override
	{
		// Can only place on a side face:
		if ((a_ClickedBlockFace == BLOCK_FACE_NONE) || (a_ClickedBlockFace == BLOCK_FACE_YP) || (a_ClickedBlockFace == BLOCK_FACE_YM))
		{
			return false;
		}

		// Make sure the support block is a valid block to place an item frame on:
		if (!cHangingEntity::IsValidSupportBlock(a_World->GetBlock(a_ClickedBlockPos)))
		{
			return false;
		}

		// Make sure block that will be occupied by the item frame is free now:
		const auto PlacePos = AddFaceDirection(a_ClickedBlockPos, a_ClickedBlockFace);
		BLOCKTYPE Block = a_World->GetBlock(PlacePos);
		if (Block != E_BLOCK_AIR)
		{
			return false;
		}

		// An item frame, centred so pickups spawn nicely.
		auto ItemFrame = std::make_unique<cItemFrame>(a_ClickedBlockFace, Vector3d(0.5, 0.5, 0.5) + PlacePos);
		auto ItemFramePtr = ItemFrame.get();
		if (!ItemFramePtr->Initialize(std::move(ItemFrame), *a_World))
		{
			return false;
		}

		if (!a_Player->IsGameModeCreative())
		{
			a_Player->GetInventory().RemoveOneEquippedItem();
		}

		return true;
	}
};