summaryrefslogtreecommitdiffstats
path: root/source/Entity.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-13 23:02:10 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-04-13 23:02:10 +0200
commita49c004278b0e300521e9cedf44a46ac843a958b (patch)
treecc268ccbd5b938be93923d9aced847572364e263 /source/Entity.h
parentFixed a bit of coding style and function names in cItem (diff)
downloadcuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar.gz
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar.bz2
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar.lz
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar.xz
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.tar.zst
cuberite-a49c004278b0e300521e9cedf44a46ac843a958b.zip
Diffstat (limited to 'source/Entity.h')
-rw-r--r--source/Entity.h36
1 files changed, 15 insertions, 21 deletions
diff --git a/source/Entity.h b/source/Entity.h
index 80c399a92..3d4d1244e 100644
--- a/source/Entity.h
+++ b/source/Entity.h
@@ -38,7 +38,7 @@ class cWorld;
class cReferenceManager;
class cClientHandle;
class cPlayer;
-class MTRand;
+class cChunk;
@@ -120,9 +120,8 @@ public:
double GetSpeedY (void) const { return m_Speed.y; }
double GetSpeedZ (void) const { return m_Speed.z; }
- int GetChunkX(void) const {return m_ChunkX; }
- int GetChunkY(void) const {return m_ChunkY; }
- int GetChunkZ(void) const {return m_ChunkZ; }
+ int GetChunkX(void) const {return FAST_FLOOR_DIV(((int)m_Pos.x), cChunkDef::Width); }
+ int GetChunkZ(void) const {return FAST_FLOOR_DIV(((int)m_Pos.z), cChunkDef::Width); }
void SetHeadYaw (double a_HeadYaw);
void SetPosX (double a_PosX);
@@ -135,7 +134,7 @@ public:
void SetPitch (double a_Pitch);
void SetRoll (double a_Roll);
void SetSpeed (double a_SpeedX, double a_SpeedY, double a_SpeedZ);
- void SetSpeed (const Vector3d & a_Speed) { SetSpeed(a_Speed.x,a_Speed.y,a_Speed.z); }
+ void SetSpeed (const Vector3d & a_Speed) { SetSpeed(a_Speed.x, a_Speed.y, a_Speed.z); }
void SetSpeedX (double a_SpeedX);
void SetSpeedY (double a_SpeedY);
void SetSpeedZ (double a_SpeedZ);
@@ -151,16 +150,15 @@ public:
void AddSpeedY (double a_AddSpeedY);
void AddSpeedZ (double a_AddSpeedZ);
- // tolua_end
+ inline int GetUniqueID(void) const { return m_UniqueID; }
+ inline bool IsDestroyed(void) const { return !m_IsInitialized; }
- inline int GetUniqueID(void) const { return m_UniqueID; } // tolua_export
- inline bool IsDestroyed(void) const { return m_bDestroyed; } // tolua_export
+ void Destroy(void);
- void Destroy(); // tolua_export
- void RemoveFromChunk(void); // for internal use in cChunk
+ // tolua_end
- virtual void Tick(float a_Dt, MTRand & a_TickRandom);
- virtual void HandlePhysics(float a_Dt) {}
+ virtual void Tick(float a_Dt, cChunk & a_Chunk);
+ virtual void HandlePhysics(float a_Dt, cChunk & a_Chunk) {}
/** Descendants override this function to send a command to the specified client to spawn the entity on the client.
To spawn on all eligible clients, use cChunkMap::BroadcastSpawnEntity()
@@ -215,22 +213,19 @@ protected:
cReferenceManager* m_Referencers;
cReferenceManager* m_References;
- int m_ChunkX, m_ChunkY, m_ChunkZ;
-
- //Flags that signal that we haven't updated the clients with the latest.
+ // Flags that signal that we haven't updated the clients with the latest.
bool m_bDirtyHead;
bool m_bDirtyOrientation;
bool m_bDirtyPosition;
bool m_bDirtySpeed;
- //Last Position.
+ // Last Position.
double m_LastPosX, m_LastPosY, m_LastPosZ;
- //This variables keep track of the last time a packet was sent
+ // This variables keep track of the last time a packet was sent
Int64 m_TimeLastTeleportPacket,m_TimeLastMoveReltPacket,m_TimeLastSpeedPacket; // In ticks
- bool m_bDestroyed;
- bool m_bRemovedFromChunk;
+ bool m_IsInitialized; // Is set to true when it's initialized, until it's destroyed (Initialize() till Destroy() )
eEntityType m_EntityType;
@@ -242,8 +237,7 @@ protected:
virtual void Destroyed(void) {} // Called after the entity has been destroyed
void SetWorld(cWorld * a_World) { m_World = a_World; }
- void MoveToCorrectChunk(bool a_bIgnoreOldChunk = false);
-
+
friend class cReferenceManager;
void AddReference( cEntity*& a_EntityPtr );
void ReferencedBy( cEntity*& a_EntityPtr );