From 487f9a2aa9b5497495cef1ac3b9c7a603e69f862 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Tue, 21 Apr 2020 22:19:22 +0200 Subject: Vector3 in Handlers (#4680) Refactored all cBlockHandler and cItemHandler descendants to use Vector3. --- src/ChunkDef.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/ChunkDef.h') diff --git a/src/ChunkDef.h b/src/ChunkDef.h index f93fed249..8f46c5f8f 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -555,8 +555,17 @@ struct sSetBlock /** Returns the absolute Z coord of the stored block. */ int GetZ(void) const { return m_RelZ + cChunkDef::Width * m_ChunkZ; } - /** Returns the absolute position of the stored block. */ - Vector3i GetPos(void) const { return Vector3i(GetX(), GetY(), GetZ()); } + /** Returns the absolute coords of the stored block. */ + Vector3i GetAbsolutePos() const + { + return Vector3i(GetX(), GetY(), GetZ()); + } + + /** Returns the relative position of the stored block within its chunk. */ + Vector3i GetRelativePos() const + { + return Vector3i(m_RelX, m_RelY, m_RelZ); + } }; typedef std::list sSetBlockList; -- cgit v1.2.3