1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#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 };
}
}
}
};
|