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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Design;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content;
using static Class_War.Constants;
namespace Class_War
{
enum Direction
{
Left,
Right,
Up,
Down
}
class Enemy : Sprite
{
bool OutOfBounds
{
get
{
// OutOfBounds is where
/*
* -> The TopLeft X is beyond the screen's RIGHT edge, or ...
* -> The TopRight X is beyond the screen's LEFT edge, or ...
* -> The Bottom Y is beyond the screen's TOPMOST edge, or ...
* -> The Top Y is beyond the screen's BOTTOMMOST edge
*/
if (position.X > RightMostEdge+12) return true; //
else if (Vector2.Add(position, sizeOfString).X < 0) return true;
else if (Vector2.Add(position, sizeOfString).Y < 0) return true;
else if (position.Y > BottomMostEdge+12) return true; //
else return false;
}
}
public List<Vector2> Borders
{
get
{
Vector2 bottomright = new Vector2();
bottomright.X = (position.X + sizeOfString.X);
bottomright.Y = (position.Y + sizeOfString.Y);
return new List<Vector2>() { position, bottomright };
}
}
ContentManager Content;
int hp;
string keyword;
public Vector2 position;
SpriteFont font;
public int points;
Color color;
Vector2 sizeOfString;
float speed;
public Direction direction;
bool isDestroyed = false;
public bool IsDestroyed { get => isDestroyed; set => isDestroyed = value; }
Random random = new Random();
DateTime timeOfLastBullet = DateTime.Now;
public Enemy
(ContentManager Content, int hp, string keyword,
string font, Color color, double speed, int level,
bool isException, Vector2 position, Direction direction)
{
this.Content = Content;
this.hp = hp * (isException ? 2 : 1);
this.keyword = keyword;
this.font = Content.Load<SpriteFont>(font);
this.color = color;
this.sizeOfString = this.font.MeasureString(keyword);
this.points = Convert.ToInt32(Convert.ToDouble(level) * speed);
this.speed = (float)speed;
this.direction = direction;
this.position = position;
}
public void Update(ref List<Bullet> bullets)
// containingList is the list containing this object, to allow for it to destroy itself when out of bounds.
{
Move();
if (OutOfBounds)
IsDestroyed = true;
// Create bullets
if (DateTime.Now - timeOfLastBullet > TimeSpan.FromSeconds(
(((15*random.NextDouble()) - (0.4*speed) + 1) > 0.1) ? ((15*random.NextDouble()) - (0.4 * speed) + 1) : 0.05))
{
timeOfLastBullet = DateTime.Now;
bullets.Add(new Bullet(Content, position,
((direction == Direction.Left || direction == Direction.Right) ? Direction.Down : new List<Direction>() { Direction.Left, Direction.Right }[random.Next(0,1)])
, 5, false));
}
}
public void Move()
{
if (direction == Direction.Left)
{
this.position.X -= speed;
}
if (direction == Direction.Right)
{
this.position.X += speed;
}
if (direction == Direction.Up)
{
this.position.Y -= speed;
}
if (direction == Direction.Down)
{
this.position.Y += speed;
}
}
public void Draw(SpriteBatch sb)
{
sb.DrawString(font, keyword, position, color);
}
}
class Bullet
{
bool OutOfBounds
{
get
{
// OutOfBounds is where
/*
* -> The TopLeft X is beyond the screen's RIGHT edge, or ...
* -> The TopRight X is beyond the screen's LEFT edge, or ...
* -> The Bottom Y is beyond the screen's TOPMOST edge, or ...
* -> The Top Y is beyond the screen's BOTTOMMOST edge
*/
if (position.X > GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width) return true;
else if ((position).X < 0) return true;
else if ((position).Y < 0) return true;
else if (position.Y > GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height) return true;
else return false;
}
}
public Vector2 position;
public bool isPlayersBullet;
Direction direction;
int speed;
Texture2D image;
bool isDestroyed = false;
public bool IsDestroyed { get => isDestroyed ; set => isDestroyed = value; }
public void Move(bool autoUpdate = true)
{
if (direction == Direction.Left)
{
this.position.X -= speed;
}
if (direction == Direction.Right)
{
this.position.X += speed;
}
if (direction == Direction.Up)
{
this.position.Y -= speed;
}
if (direction == Direction.Down)
{
this.position.Y += speed;
}
if (autoUpdate)
Update();
}
public void Update()
{
if (OutOfBounds)
IsDestroyed = true;
}
public void Draw(SpriteBatch sb)
{
sb.Draw(image, position, Color.White);
}
public Bullet(ContentManager Content, Vector2 position, Direction direction, int speed, bool isPlayersBullet)
{
this.position = position;
this.direction = direction;
this.speed = speed;
this.isPlayersBullet = isPlayersBullet;
this.image = Content.Load<Texture2D>("bullet");
}
} // End of Class Bracket
}
|