Cuberite
A lightweight, fast and extensible game server for Minecraft
BlockWallSign.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include "BlockHandler.h"
5 #include "../Chunk.h"
6 
7 
8 
9 
10 
11 class cBlockWallSignHandler final :
12  public cBlockHandler
13 {
15 
16 public:
17 
18  using Super::Super;
19 
20 private:
21 
22  virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override
23  {
24  return cItem(E_ITEM_SIGN, 1, 0);
25  }
26 
27 
28 
29 
30 
31  virtual bool CanBeAt(const cChunk & a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override
32  {
33  auto NeighborPos = a_Position + GetOffsetBehindTheSign(a_Meta);
34  BLOCKTYPE NeighborType;
35  if (!a_Chunk.UnboundedRelGetBlockType(NeighborPos, NeighborType))
36  {
37  // The neighbor is not accessible (unloaded chunk), bail out without changing this
38  return true;
39  }
40  return (NeighborType == E_BLOCK_WALLSIGN) || (NeighborType == E_BLOCK_SIGN_POST) || cBlockInfo::IsSolid(NeighborType);
41  }
42 
43 
44 
45 
46 
50  {
51  switch (a_BlockMeta)
52  {
53  case 2: return Vector3i( 0, 0, 1);
54  case 3: return Vector3i( 0, 0, -1);
55  case 4: return Vector3i( 1, 0, 0);
56  case 5: return Vector3i(-1, 0, 0);
57  }
58  ASSERT(!"Invalid wallsign block meta");
59  return Vector3i();
60  }
61 
62 
63 
64 
65 
66  virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
67  {
68  UNUSED(a_Meta);
69  return 13;
70  }
71 } ;
72 
73 
74 
75 
@ E_BLOCK_SIGN_POST
Definition: BlockType.h:76
@ E_BLOCK_WALLSIGN
Definition: BlockType.h:82
@ E_ITEM_SIGN
Definition: BlockType.h:367
unsigned char NIBBLETYPE
The datatype used by nibbledata (meta, light, skylight)
Definition: ChunkDef.h:44
unsigned char BLOCKTYPE
The datatype used by blockdata.
Definition: ChunkDef.h:41
Byte ColourID
Definition: Globals.h:162
#define ASSERT(x)
Definition: Globals.h:276
#define UNUSED
Definition: Globals.h:72
Vector3< int > Vector3i
Definition: Vector3.h:487
static bool IsSolid(BLOCKTYPE Block)
Is this block solid (player cannot walk through)?
Definition: BlockInfo.cpp:892
constexpr cBlockHandler(BLOCKTYPE a_BlockType)
Definition: BlockHandler.h:29
virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem *const a_Tool) const override
Returns the pickups that would result if the block was mined by a_Digger using a_Tool.
Definition: BlockWallSign.h:22
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
Returns the base colour ID of the block, as will be represented on a map, as per documentation: https...
Definition: BlockWallSign.h:66
static Vector3i GetOffsetBehindTheSign(NIBBLETYPE a_BlockMeta)
Returns the offset from the sign coords to the block to which the wallsign is attached,...
Definition: BlockWallSign.h:49
virtual bool CanBeAt(const cChunk &a_Chunk, const Vector3i a_Position, const NIBBLETYPE a_Meta) const override
Checks if the block can stay at the specified relative coords in the chunk.
Definition: BlockWallSign.h:31
Definition: Chunk.h:36
bool UnboundedRelGetBlockType(Vector3i a_RelCoords, BLOCKTYPE &a_BlockType) const
Same as GetBlockType(), but relative coords needn't be in this chunk (uses m_Neighbor-s or m_ChunkMap...
Definition: Chunk.cpp:1029
Definition: Item.h:37
This class bridges a vector of cItem for safe access via Lua.
Definition: Item.h:215