-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnemy.cpp
131 lines (101 loc) · 2.48 KB
/
Enemy.cpp
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
122
123
124
125
126
127
128
129
130
131
#include "Enemy.h"
std::vector<std::vector<Vector2>> Enemy::sPaths;
void Enemy::CreatePaths()
{
int screenMidPoint = Graphics::Instance()->SCREEN_WIDTH * 0.4f;
int currentPath = 0;
BezierPath* path = new BezierPath();
path->AddCurve({ Vector2(screenMidPoint + 50.0f, -10.0f),
Vector2(screenMidPoint + 50.0f, -20.0f),
Vector2(screenMidPoint + 50.0f, 30.0f),
Vector2(screenMidPoint + 50.0f, 20.0f) }, 1);
path->AddCurve({ Vector2(screenMidPoint + 50.0f, 20.0f),
Vector2(screenMidPoint + 50.0f, 100.0f),
Vector2(75.0f, 325.0f),
Vector2(75.0f, 425.0f) }, 25);
path->AddCurve({ Vector2(75.0f, 425.0f),
Vector2(75.0f, 650.0f),
Vector2(350.0f, 650.0f),
Vector2(350.0f, 425.0f) }, 25);
sPaths.push_back(std::vector<Vector2>());
path->Sample(&sPaths[currentPath]);
delete path;
}
Enemy::Enemy(int path)
{
mTimer = Timer::Instance();
mCurrentPath = path;
mCurrentState = STATES::flying;
mCurrentWaypoint = 0;
Pos(sPaths[mCurrentPath][mCurrentWaypoint]);
mTexture = new Texture("butterfly.png");
mTexture->Parent(this);
mTexture->Pos(VEC2_ZERO);
mSpeed = 400.0f;
}
Enemy::~Enemy()
{
mTimer = NULL;
delete mTexture;
mTexture = NULL;
}
void Enemy::HandleFlyInState()
{
if ((sPaths[mCurrentPath][mCurrentWaypoint] - Pos()).MagnitudeSqr() < EPSILON)
{
++mCurrentWaypoint;
}
if (mCurrentWaypoint < sPaths[mCurrentPath].size())
{
Vector2 dist = sPaths[mCurrentPath][mCurrentWaypoint] - Pos();
Translate(dist.Normalized() * mTimer->DeltaTime() * mSpeed, world);
Rotation(((atan2(dist.y, dist.x) * RAD_TO_DEG) + 90.0f));
} else {
mCurrentState = STATES::formation;
}
}
void Enemy::HandleFormationState()
{
}
void Enemy::HandleDiveState()
{
}
void Enemy::HandleDeadState()
{
}
void Enemy::HandleStates()
{
switch (mCurrentState)
{
case STATES::flying:
HandleFlyInState();
break;
case STATES::formation:
HandleFormationState();
break;
case STATES::dive:
HandleDiveState();
break;
case STATES::dead:
HandleDeadState();
break;
}
}
void Enemy::Update()
{
if (Active())
{
HandleStates();
}
}
void Enemy::Render()
{
if (Active())
{
mTexture->Render();
for (int i = 0; i < sPaths[mCurrentPath].size() - 1; ++i)
{
Graphics::Instance()->DrawLine(sPaths[mCurrentPath][i].x, sPaths[mCurrentPath][i].y, sPaths[mCurrentPath][i + 1].x, sPaths[mCurrentPath][i + 1].y);
}
}
}