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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "BehaviorAttackerSuicideBomber.h"
#include "../Monster.h"
#include "../../Entities/Pawn.h"
#include "../../Entities/Player.h"
#include "../../BlockID.h"
cBehaviorAttackerSuicideBomber::cBehaviorAttackerSuicideBomber() :
m_bIsBlowing(false),
m_bIsCharged(false),
m_BurnedWithFlintAndSteel(false),
m_ExplodingTimer(0)
{
}
bool cBehaviorAttackerSuicideBomber::StrikeTarget(int a_StrikeTickCnt)
{
UNUSED(a_StrikeTickCnt);
ASSERT(GetTarget() != nullptr);// mobTodo guaranteed ?
if ((!TargetIsInStrikeRadius()) && (!m_BurnedWithFlintAndSteel))
{
if (m_bIsBlowing)
{
m_bIsBlowing = false;
m_Parent->GetWorld()->BroadcastEntityMetadata(*m_Parent);
}
}
// phase 1: start blowing up
if (a_StrikeTickCnt == 1)
{
ASSERT(!m_bIsBlowing);
m_Parent->GetWorld()->BroadcastSoundEffect("entity.creeper.primed", m_Parent->GetPosX(), m_Parent->GetPosY(), m_Parent->GetPosZ(), 1.f, (0.75f + (static_cast<float>((m_Parent->GetUniqueID() * 23) % 32)) / 64));
m_bIsBlowing = true;
m_Parent->GetWorld()->BroadcastEntityMetadata(*m_Parent);
return false;
}
return false;
if (a_StrikeTickCnt == 30)
{
// mobTodo && (m_Parent->GetHealth() > 0.0) guaranteed ?
m_Parent->GetWorld()->DoExplosionAt((m_bIsCharged ? 5 : 3), m_Parent->GetPosX(), m_Parent->GetPosY(), m_Parent->GetPosZ(), false, esMonster, this);
m_Parent->Destroy(); // Just in case we aren't killed by the explosion
}
}
void cBehaviorAttackerSuicideBomber::OnRightClicked(cPlayer & a_Player)
{
if ((a_Player.GetEquippedItem().m_ItemType == E_ITEM_FLINT_AND_STEEL))
{
if (!a_Player.IsGameModeCreative())
{
a_Player.UseEquippedItem();
}
if (!m_BurnedWithFlintAndSteel)
{
m_Parent->GetWorld()->BroadcastSoundEffect("entity.creeper.primed", m_Parent->GetPosX(), m_Parent->GetPosY(), m_Parent->GetPosZ(), 1.f, (0.75f + (static_cast<float>((m_Parent->GetUniqueID() * 23) % 32)) / 64));
m_bIsBlowing = true;
m_Parent->GetWorld()->BroadcastEntityMetadata(*m_Parent);
m_BurnedWithFlintAndSteel = true;
m_Parent->PinBehavior(this);
}
}
}
bool cBehaviorAttackerSuicideBomber::IsBlowing(void) const
{
return m_bIsBlowing;
}
bool cBehaviorAttackerSuicideBomber::IsCharged(void) const
{
return m_bIsCharged;
}
bool cBehaviorAttackerSuicideBomber::IsBurnedWithFlintAndSteel(void) const
{
return m_BurnedWithFlintAndSteel;
}
void cBehaviorAttackerSuicideBomber::DoTakeDamage(TakeDamageInfo & a_TDI)
{
if (a_TDI.DamageType == dtLightning)
{
m_bIsCharged = true;
m_Parent->GetWorld()->BroadcastEntityMetadata(*m_Parent);
}
cBehaviorAttacker::DoTakeDamage(a_TDI);
}
|