-
Notifications
You must be signed in to change notification settings - Fork 0
/
battle.py
415 lines (355 loc) · 13.1 KB
/
battle.py
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
import pygame
from pygame import mixer
import random
import button
pygame.mixer.pre_init(44100, -16, 2, 5)
mixer.init()
pygame.init()
clock = pygame.time.Clock()
fps = 60
# game window
bottom_panel = 150
screen_width = 800
screen_height = 400 + bottom_panel
screen = pygame.display.set_mode((screen_width, screen_height))
pygame.display.set_caption('Epic Battle')
# load sounds
explosion_fx = pygame.mixer.Sound("img/notgonnagiveyouup.wav")
explosion_fx.set_volume(0.35)
explosion_fx.play()
# define game variables
current_fighter = 1
total_fighters = 3
action_cooldown = 0
action_wait_time = 95
attack = False
potion = False
potion_effect = 35
clicked = False
game_over = 0
# define fonts
font = pygame.font.SysFont('Poppins', 26)
# define colours
red = (255, 0, 0)
green = (0, 255, 0)
aqua = (0, 255, 255)
purple = (128, 0, 128)
# load images
# background images
background_img = pygame.image.load(
'img/Background/background1.jpg').convert_alpha()
# panel image
panel_img = pygame.image.load('img/Icons/panel.png').convert_alpha()
# button image
potion_img = pygame.image.load('img/Icons/potion.png').convert_alpha()
restart_img = pygame.image.load('img/Icons/restart.png').convert_alpha()
# load victory and defeat images
victory_img = pygame.image.load('img/Icons/victory.png').convert_alpha()
defeat_img = pygame.image.load('img/Icons/defeat.png').convert_alpha()
# sword image
sword_img = pygame.image.load('img/Icons/sword.png').convert_alpha()
# create function for drawing text
def draw_text(text, font, text_col, x, y):
img = font.render(text, True, text_col)
screen.blit(img, (x, y))
# function for drawing background
def draw_bg():
screen.blit(background_img, (0, 0))
# function for drawing panel
def draw_panel():
# draw panel rectangle
screen.blit(panel_img, (0, screen_height - bottom_panel))
# show knight stats
draw_text(f'{knight.name} HP: {knight.hp}', font,
red, 100, screen_height - bottom_panel + 10)
for count, i in enumerate(bandit_list):
# show name and health
draw_text(f'{i.name} HP: {i.hp}', font, red, 550,
(screen_height - bottom_panel + 10) + count * 60)
# fighter class
class Fighter():
def __init__(self, x, y, name, max_hp, strength, potions):
self.name = name
self.max_hp = max_hp
self.hp = max_hp
self.strength = strength
self.start_potions = potions
self.potions = potions
self.alive = True
self.animation_list = []
self.frame_index = 0
self.action = 0 # 0:idle, 1:attack, 2:hurt 3:death
self.update_time = pygame.time.get_ticks()
# load Idle images
temp_list = []
for i in range(8):
img = pygame.image.load(f'img/{self.name}/Idle/{i}.png')
img = pygame.transform.scale(
img, (img.get_width() * 3, img.get_height() * 3))
temp_list.append(img)
self.animation_list.append(temp_list) # my master list for animations
# load attack images
temp_list = []
for i in range(8):
img = pygame.image.load(f'img/{self.name}/Attack/{i}.png')
img = pygame.transform.scale(
img, (img.get_width() * 3, img.get_height() * 3))
temp_list.append(img)
self.animation_list.append(temp_list) # my master list for animations
# load hurt images
temp_list = []
for i in range(3):
img = pygame.image.load(f'img/{self.name}/Hurt/{i}.png')
img = pygame.transform.scale(
img, (img.get_width() * 3, img.get_height() * 3))
temp_list.append(img)
self.animation_list.append(temp_list) # my master list for animations
# load death images
temp_list = []
for i in range(10):
img = pygame.image.load(f'img/{self.name}/Death/{i}.png')
img = pygame.transform.scale(
img, (img.get_width() * 3, img.get_height() * 3))
temp_list.append(img)
self.animation_list.append(temp_list) # my master list for animations
self.image = self.animation_list[self.action][self.frame_index]
self.rect = self.image.get_rect()
self.rect.center = (x, y)
def update(self):
animation_cooldown = 100
# handle animations
# update image
self.image = self.animation_list[self.action][self.frame_index]
# Check if enough time has pass since last update
if pygame.time.get_ticks() - self.update_time > animation_cooldown:
self.update_time = pygame.time.get_ticks()
self.frame_index += 1
# if the animation has run out then restart by 0
if self.frame_index >= len(self.animation_list[self.action]):
if self.action == 3:
self.frame_index = len(self.animation_list[self.action]) - 1
else:
self.idle()
def idle(self):
self.action = 0
self.frame_index = 0
self.update_time = pygame.time.get_ticks()
def attack(self, target):
# deal damage to enemy
rand = random.randint(-20, 5)
damage = self.strength + rand
target.hp -= damage
message = print("attack as been made")
#!run enemy hurt animation!
target.hurt()
# check if target died
if target.hp < 1:
target.hp = 0
target.alive = False
target.death()
damage_text = DamageText(
target.rect.centerx, target.rect.y, str(damage), red)
damage_text_group.add(damage_text)
# set varaibles to attack animation
self.action = 1
self.frame_index = 0
self.update_time = pygame.time.get_ticks()
def hurt(self):
#!set variables to hurt animation!
self.action = 2
self.frame_index = 0
self.update_time = pygame.time.get_ticks()
def death(self):
#!set variables to death animation!
self.action = 3
self.frame_index = 0
self.update_time = pygame.time.get_ticks()
def reset(self):
self.alive = True
self.potions = self.start_potions
self.hp = self.max_hp
self.frame_index = 0
self.action = 0
self.update_time = pygame.time.get_ticks()
def draw(self):
screen.blit(self.image, self.rect)
# healthbar
class HealthBar():
def __init__(self, x, y, hp, max_hp):
self.x = x
self.y = y
self.hp = hp
self.max_hp = max_hp
def draw(self, hp):
# update to new health
self.hp = hp
# calculate health ratio
ratio = self.hp / self.max_hp
pygame.draw.rect(screen, red, (self.x, self.y, 150, 20))
pygame.draw.rect(screen, green, (self.x, self.y, 150 * ratio, 20))
class DamageText(pygame.sprite.Sprite):
def __init__(self, x, y, damage, colour):
pygame.sprite.Sprite.__init__(self)
self.image = font.render(damage, True, colour)
self.rect = self.image.get_rect()
self.rect.center = (x, y)
self.counter = 0
def update(self):
# damage text up
self.rect.y -= 1
# delete damage text after few secs
self.counter += 1
if self.counter > 30:
self.kill()
damage_text_group = pygame.sprite.Group()
knight = Fighter(200, 260, 'Knight', 450, 100, 3)
bandit1 = Fighter(550, 270, 'Bandit', 200, 60, 1)
bandit2 = Fighter(700, 270, 'Bandit', 190, 70, 1)
bandit_list = []
bandit_list.append(bandit1)
bandit_list.append(bandit2)
knight_health_bar = HealthBar(
100, screen_height - bottom_panel + 40, knight.hp, knight.max_hp)
bandit1_health_bar = HealthBar(
550, screen_height - bottom_panel + 40, bandit1.hp, bandit1.max_hp)
bandit2_health_bar = HealthBar(
550, screen_height - bottom_panel + 100, bandit2.hp, bandit2.max_hp)
# create buttons
potion_button = button.Button(
screen, 100, screen_height - bottom_panel + 70, potion_img, 64, 64)
restart_button = button.Button(screen, 330, 120, restart_img, 120, 30)
run = True
while run:
clock.tick(fps)
# draw background
draw_bg()
# draw panel
draw_panel()
# draw fighter class
knight_health_bar.draw(knight.hp)
bandit1_health_bar.draw(bandit1.hp)
bandit2_health_bar.draw(bandit2.hp)
# draw fighters
knight.update()
knight.draw()
for bandit in bandit_list:
bandit.update()
bandit.draw()
# drawing damage text
damage_text_group.update()
damage_text_group.draw(screen)
# contol player actions
# reset action variables
attack = False
potion = False
target = None
# make sure mouse is visible
pygame.mouse.set_visible(True)
pos = pygame.mouse.get_pos()
for count, bandit in enumerate(bandit_list):
if bandit.rect.collidepoint(pos):
# hide mouse
pygame.mouse.set_visible(False)
# show sword in place of mouse cursor
screen.blit(sword_img, pos)
if clicked == True and bandit.alive == True:
attack = True
target = bandit_list[count]
if potion_button.draw():
potion = True
# show number of potions
draw_text(str(knight.potions), font, red, 152,
screen_height - bottom_panel + 70)
if game_over == 0:
# player action
if knight.alive == True:
if current_fighter == 1:
action_cooldown += 1
if action_cooldown >= action_wait_time:
# look for player action
# attack
if attack == True and target != None:
knight.attack(target)
current_fighter += 1
action_cooldown = 0
# potion
if potion == True:
if knight.potions > 0:
# check if potion will heal beyond max hp
if knight.max_hp - knight.hp > potion_effect:
heal_amount = potion_effect
else:
heal_amount = knight.max_hp - knight.hp
knight.hp += heal_amount
knight.potions -= 1
message = print("Knight Healed")
damage_text = DamageText(
knight.rect.centerx, knight.rect.y, str(heal_amount), green)
damage_text_group.add(damage_text)
current_fighter += 1
action_cooldown = 0
else:
game_over = -1
# enemy action
for count, bandit in enumerate(bandit_list):
if current_fighter == 2 + count:
if bandit.alive == True:
action_cooldown += 1
if action_cooldown >= action_wait_time:
# check if bandit needs to heal first
if (bandit.hp / bandit.max_hp) < 0.5 and bandit.potions > 0:
# check if potion will heal bandit beyond max hp
if bandit.max_hp - bandit.hp > potion_effect:
heal_amount = potion_effect
message = print("Bandit Healed")
else:
heal_amount = bandit.max_hp - bandit.hp
bandit.hp += heal_amount
bandit.potions -= 1
damage_text = DamageText(
bandit.rect.centerx, bandit.rect.y, str(heal_amount), green)
damage_text_group.add(damage_text)
current_fighter += 1
action_cooldown = 0
# attack
else:
bandit.attack(knight)
current_fighter += 1
action_cooldown = 0
message = print("attack as been made")
else:
current_fighter += 1
# if all fighters have had a turn then reset
if current_fighter > total_fighters:
current_fighter = 1
# check if all bandits are dead
alive_bandits = 0
for bandit in bandit_list:
if bandit.alive == True:
alive_bandits += 1
if alive_bandits == 0:
game_over = 1
# check if game is over
if game_over != 0:
if game_over == 1:
screen.blit(victory_img, (260, 50))
if game_over == -1:
screen.blit(defeat_img, (290, 50))
if restart_button.draw():
knight.reset()
for bandit in bandit_list:
bandit.reset()
explosion_fx.stop()
explosion_fx.play()
current_fighter = 1
action_cooldown
game_over = 0
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
if event.type == pygame.MOUSEBUTTONDOWN:
clicked = True
else:
clicked = False
pygame.display.update()
pygame.quit()