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
|
#pragma once
#include "BlockHandler.h"
#include "Mixins.h"
class cBlockObserverHandler final :
public cClearMetaOnDrop<cDisplacementYawRotator<cBlockHandler>>
{
using Super = cClearMetaOnDrop<cDisplacementYawRotator<cBlockHandler>>;
public:
using Super::Super;
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 };
}
}
}
};
|