summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockObserver.h
blob: 78a4c05b27930bc6f03c8f38115e9fe9ef3a08b0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                
                                                                        


       
                                                                         


         






















                                                                                                       
  

#pragma once

#include "BlockHandler.h"
#include "Mixins.h"


class cBlockObserverHandler:
	public cClearMetaOnDrop<cPitchYawRotator<cBlockHandler>>
{
	using Super = cClearMetaOnDrop<cPitchYawRotator<cBlockHandler>>;

public:

	cBlockObserverHandler(BLOCKTYPE a_BlockType) : Super(a_BlockType)
	{
	}

	inline static Vector3i GetObservingFaceOffset(NIBBLETYPE a_Meta)
	{
		return -GetSignalOutputOffset(a_Meta);
	}

	inline static Vector3i GetSignalOutputOffset(NIBBLETYPE a_Meta)
	{
		switch (a_Meta & 0x7)
		{
			case 0x00: return { 0, 1, 0 };
			case 0x01: return { 0, -1, 0 };
			case 0x02: return { 0, 0, 1 };
			case 0x03: return { 0, 0, -1 };
			case 0x04: return { 1, 0, 0 };
			case 0x05: return { -1, 0, 0 };
			default:
			{
				LOGWARNING("%s: Unknown metadata: %d", __FUNCTION__, a_Meta);
				ASSERT(!"Unknown metadata while determining orientation of observer!");
				return { 0, 0, 0 };
			}
		}
	}
};