summaryrefslogtreecommitdiffstats
path: root/source/TNTEntity.cpp
blob: 22f343e881c0c50efc3b5ed934bd56dddbee23ff (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include "Globals.h"

#include "TNTEntity.h"
#include "World.h"
#include "ClientHandle.h"





cTNTEntity::cTNTEntity(double a_X, double a_Y, double a_Z, float a_FuseTimeInSec) :
	super(etTNT, a_X, a_Y, a_Z, 0.98, 0.98),
	m_Counter(0),
	m_MaxFuseTime(a_FuseTimeInSec)
{
}





cTNTEntity::cTNTEntity(const Vector3d & a_Pos, float a_FuseTimeInSec) :
	super(etTNT, a_Pos.x, a_Pos.y, a_Pos.z, 0.98, 0.98),
	m_Counter(0),
	m_MaxFuseTime(a_FuseTimeInSec)
{
}




void cTNTEntity::Initialize(cWorld * a_World)
{
	super::Initialize(a_World);
	a_World->BroadcastSpawnEntity(*this);
}





void cTNTEntity::SpawnOn(cClientHandle & a_ClientHandle)
{
	a_ClientHandle.SendSpawnObject(*this, 50, 1, 0, 0);  // 50 means TNT
	m_bDirtyPosition = false;
	m_bDirtySpeed = false;
	m_bDirtyOrientation = false;
	m_bDirtyHead = false;
}





void cTNTEntity::Tick(float a_Dt, cChunk & a_Chunk)
{
	super::Tick(a_Dt, a_Chunk);
	BroadcastMovementUpdate();
	float delta_time = a_Dt / 1000;  // Convert miliseconds to seconds
	m_Counter += delta_time;
	if (m_Counter > m_MaxFuseTime)  // Check if we go KABOOOM
	{
		Destroy(true);
		LOGD("BOOM at {%f,%f,%f}", GetPosX(), GetPosY(), GetPosZ());
		m_World->DoExplosiontAt(4.0, (int)floor(GetPosX()), (int)floor(GetPosY()), (int)floor(GetPosZ()));
		return;
	}
}