-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCAlien.cpp
More file actions
executable file
·70 lines (58 loc) · 965 Bytes
/
CAlien.cpp
File metadata and controls
executable file
·70 lines (58 loc) · 965 Bytes
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
#include "CAlien.h"
int CAlien::mRallyPointX;
CAlien::CAlien() :CAnimate()
{
mAbsVelocity = 0;
}
void CAlien::SetVelocity(int v)
{
mAbsVelocity = abs(v);
CAnimate::SetVelocity(v);
}
void CAlien::Move()
{
if (mActive)
{
if (mState == 1)
{
if (mXPos<=mRallyPointX && mVelocity<0)
{
SetVelocity(mAbsVelocity);
Start(2, true);
}
else if (mXPos>=mRallyPointX && mVelocity>0)
{
Start(1, true);
SetVelocity(-1 * mAbsVelocity);
}
CAnimate::Move();
}
}
}
void CAlien::Transition()
{
if (mState == 0)
{
SetMoverState(true);
mState = 1;
mActive = true;
if (mXPos<mRallyPointX && mVelocity>0)
{
SetVelocity(-1 * mAbsVelocity);
Start(1, true);
}
else if (mXPos>mRallyPointX && mVelocity<0)
{
Start(2, true);
SetVelocity(mAbsVelocity);
}
}
else if (mState == 1)
{
}
else if (mState == 2)
{
Reset();
MoveOffScreen();
}
}