Cuberite
A lightweight, fast and extensible game server for Minecraft
LineBlockTracer.h
Go to the documentation of this file.
1 
2 // LineBlockTracer.h
3 
4 // Declares the cLineBlockTracer class representing a cBlockTracer that traces along a straight line between two points
5 
6 
7 
8 
9 
10 #pragma once
11 
12 #include "BlockTracer.h"
13 
14 
15 
16 
17 
18 // fwd: Chunk.h
19 class cChunk;
20 
21 
22 
23 
24 
26  public cBlockTracer
27 {
28  using Super = cBlockTracer;
29 
30 public:
31 
33  {
34  // Bit flags used for LineOfSightTrace's Sight parameter:
35  losAir = 1, // Can see through air
36  losWater = 2, // Can see through water
37  losLava = 4, // Can see through lava
38 
39  // Common combinations:
42  };
43 
44 
45  cLineBlockTracer(cWorld & a_World, cCallbacks & a_Callbacks);
46 
48  bool Trace(Vector3d a_Start, Vector3d a_End);
49 
50 
51  // Utility functions for simple one-line usage:
52 
54  static bool Trace(cWorld & a_World, cCallbacks & a_Callbacks, const Vector3d a_Start, const Vector3d a_End);
55 
58  static bool LineOfSightTrace(cWorld & a_World, const Vector3d & a_Start, const Vector3d & a_End, int a_Sight);
59 
66  static bool FirstSolidHitTrace(
67  cWorld & a_World,
68  const Vector3d & a_Start, const Vector3d & a_End,
69  Vector3d & a_HitCoords,
70  Vector3i & a_HitBlockCoords,
71  eBlockFace & a_HitBlockFace
72  );
73 
74 protected:
77 
80 
83 
86 
89 
92 
93 
95  void FixStartAboveWorld(void);
96 
98  void FixStartBelowWorld(void);
99 
101  void CalcXZIntersection(double a_Y, double & a_IntersectX, double & a_IntersectZ);
102 
104  bool MoveToNextBlock(void);
105 
106  bool ChunkCallback(cChunk * a_Chunk);
107 } ;
108 
109 
110 
eBlockFace
Block face constants, used in PlayerDigging and PlayerBlockPlacement packets and bbox collision calc.
Definition: Defines.h:38
Definition: Chunk.h:36
cBlockTracer Super
void FixStartBelowWorld(void)
Adjusts the start point below the world to just at the world's bottom.
void CalcXZIntersection(double a_Y, double &a_IntersectX, double &a_IntersectZ)
Calculates the XZ coords of an intersection with the specified Yconst plane; assumes that such an int...
Vector3i m_Dir
The increment at which the block coords are going from Start to End; either +1 or -1.
static bool LineOfSightTrace(cWorld &a_World, const Vector3d &a_Start, const Vector3d &a_End, int a_Sight)
Returns true if the two positions are within line of sight (not obscured by blocks).
Vector3d m_Diff
The difference in coords, End - Start.
bool Trace(Vector3d a_Start, Vector3d a_End)
Traces one line between Start and End; returns true if the entire line was traced (until OnNoMoreHits...
bool ChunkCallback(cChunk *a_Chunk)
Vector3d m_End
The end point of the trace.
Vector3d m_Start
The start point of the trace.
bool MoveToNextBlock(void)
Moves m_Current to the next block on the line; returns false if no move is possible (reached the end)
static bool FirstSolidHitTrace(cWorld &a_World, const Vector3d &a_Start, const Vector3d &a_End, Vector3d &a_HitCoords, Vector3i &a_HitBlockCoords, eBlockFace &a_HitBlockFace)
Traces until the first solid block is hit (or until end, whichever comes first.
Vector3i m_Current
The current block.
eBlockFace m_CurrentFace
The face through which the current block has been entered.
void FixStartAboveWorld(void)
Adjusts the start point above the world to just at the world's top.
cLineBlockTracer(cWorld &a_World, cCallbacks &a_Callbacks)
Definition: World.h:53