-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.py
265 lines (205 loc) · 9.66 KB
/
game.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
from sys import exit
from numpy.random import randint, choice
import numpy as np
from evolution import Evolution
from player import Player
from variables import global_variables
import pygame
def display_score():
score = int((pygame.time.get_ticks() - start_time) / 100)
score_surf = game_font.render(f"Score: {score}", False, (64, 64, 64))
score_rect = score_surf.get_rect(center=(520, 50))
screen.blit(score_surf, score_rect)
return score
def display_best_score():
score_surf = game_font.render(f"BScore: {best_score}", False, (64, 64, 64))
score_rect = score_surf.get_rect(center=(520, 100))
screen.blit(score_surf, score_rect)
def display_generation():
score_surf = small_game_font.render(f"Generation: {generation}", False, (64, 64, 64))
score_rect = score_surf.get_rect(topleft=(8, 50))
screen.blit(score_surf, score_rect)
class Obstacle(pygame.sprite.Sprite):
def __init__(self, obstacle_type, position=None):
super().__init__()
if obstacle_type == "snail":
snail_1 = pygame.image.load('Graphics/Snail/snail1.png').convert_alpha()
snail_2 = pygame.image.load('Graphics/Snail/snail2.png').convert_alpha()
# rotating -90 degree and scaling by factor of 0.5
snail_1 = pygame.transform.rotozoom(snail_1, -90, 0.5)
snail_2 = pygame.transform.rotozoom(snail_2, -90, 0.5)
if position == "left":
# flipping vertically
snail_1 = pygame.transform.flip(snail_1, flip_x=False, flip_y=True)
snail_2 = pygame.transform.flip(snail_2, flip_x=False, flip_y=True)
else:
# flipping vertically and horizontally
snail_1 = pygame.transform.flip(snail_1, flip_x=True, flip_y=True)
snail_2 = pygame.transform.flip(snail_2, flip_x=True, flip_y=True)
self.frames = [snail_1, snail_2]
self.animation_index = 0
self.image = self.frames[self.animation_index]
if position == "left":
self.rect = self.image.get_rect(midleft=(177, randint(-100, -50)))
else:
self.rect = self.image.get_rect(midright=(430, randint(-100, -50)))
else:
fly_1 = pygame.image.load('Graphics/Fly/Fly1.png').convert_alpha()
fly_2 = pygame.image.load('Graphics/Fly/Fly2.png').convert_alpha()
fly_1 = pygame.transform.rotozoom(fly_1, 0, 0.5)
fly_2 = pygame.transform.rotozoom(fly_2, 0, 0.5)
self.frames = [fly_1, fly_2]
self.animation_index = 0
self.image = self.frames[self.animation_index]
self.rect = self.image.get_rect(center=(randint(250, 350), randint(-100, -50)))
def animation_state(self):
self.animation_index += 0.1
if self.animation_index >= len(self.frames):
self.animation_index = 0
self.image = self.frames[int(self.animation_index)]
def update(self):
self.animation_state()
self.rect.y += 6
self.destroy_if_necessary()
def destroy_if_necessary(self):
if self.rect.top > 800:
self.kill()
def collision_sprite():
for obstacle in obstacle_group:
pygame.sprite.spritecollide(obstacle, players, dokill=True)
return len(players) == 0
def draw_intro_text(text, height, width=global_variables['screen_width'] // 2, color=(111, 196, 169)):
message = game_font.render(text, False, color)
message_rect = message.get_rect(center=(width, height))
screen.blit(message, message_rect)
def draw_btn(btn, btn_rect):
pygame.draw.rect(screen, '#E8F3F1', btn_rect)
pygame.draw.rect(screen, '#E8F3F1', btn_rect, 10)
screen.blit(btn, btn_rect)
def create_players(mode, player_list=None):
global players
players = pygame.sprite.Group()
if mode == "Manual":
players.add(Player(mode))
else:
for player in player_list:
players.add(player)
def update_fitness():
for player in players:
player.fitness = current_score
def reset_timer_and_seed():
np.random.seed(35)
pygame.time.set_timer(snail_timer, 500)
pygame.time.set_timer(fly_timer, 4750)
if __name__ == '__main__':
pygame.init()
screen = pygame.display.set_mode((global_variables['screen_width'], global_variables['screen_height']))
pygame.display.set_caption(global_variables['title'])
clock = pygame.time.Clock()
game_font = pygame.font.Font('Font/PixelType.ttf', 40)
small_game_font = pygame.font.Font('Font/PixelType.ttf', 30)
title_font = pygame.font.Font('Font/PixelType.ttf', 80)
game_active = False
evolution = Evolution()
generation = 1
game_mode = None
start_time = 0
best_score = 0
num_players = 120
background_surface = pygame.image.load('Graphics/Background.jpg').convert()
# Players
players = None
prev_players = []
current_players = []
# Obstacles
obstacle_group = pygame.sprite.Group()
global_variables['obstacle_groups'] = obstacle_group
# Intro screen
player_stand = pygame.image.load('Graphics/Player/player_stand.png').convert_alpha()
player_stand = pygame.transform.rotozoom(player_stand, 0, 3)
player_stand_rect = player_stand.get_rect(center=(global_variables['screen_width'] // 2, 250))
game_name = title_font.render('Snail Jumper', False, (111, 196, 169))
game_name_rectangle = game_name.get_rect(center=(global_variables['screen_width'] // 2, 80))
start_game_btn = game_font.render("Start Game", False, (111, 196, 169))
start_game_btn_rect = start_game_btn.get_rect(center=(global_variables['screen_width'] // 2, 440))
start_evolutionary_btn = game_font.render("Start With Neuroevolution", False, (111, 196, 169))
start_evolutionary_btn_rect = start_evolutionary_btn.get_rect(center=(global_variables['screen_width'] // 2, 490))
exit_btn = game_font.render("Exit", False, (111, 196, 169))
exit_btn_rect = exit_btn.get_rect(center=(global_variables['screen_width'] // 2, 540))
# Timer
snail_timer = pygame.USEREVENT + 1
# pygame.time.set_timer(snail_timer, 500)
fly_timer = pygame.USEREVENT + 2
# pygame.time.set_timer(fly_timer, 4750)
while True:
global_variables['events'] = pygame.event.get()
for event in global_variables['events']:
if event.type == pygame.QUIT:
pygame.quit()
exit()
if game_active:
if event.type == snail_timer:
obstacle_group.add(Obstacle('snail', choice(['left', 'right'])))
if event.type == fly_timer:
obstacle_group.add(Obstacle('fly'))
else:
if event.type == pygame.MOUSEBUTTONDOWN:
clicked_start_btn = start_game_btn_rect.collidepoint(pygame.mouse.get_pos())
clicked_start_evolutionary_btn = start_evolutionary_btn_rect.collidepoint(pygame.mouse.get_pos())
clicked_exit_btn = exit_btn_rect.collidepoint(pygame.mouse.get_pos())
if clicked_start_btn or clicked_start_evolutionary_btn:
game_active = True
reset_timer_and_seed()
start_time = pygame.time.get_ticks()
if clicked_start_btn:
game_mode = "Manual"
create_players(mode=game_mode)
else:
game_mode = "Neuroevolution"
current_players = evolution.generate_new_population(num_players)
prev_players = []
create_players(mode=game_mode, player_list=current_players)
if clicked_exit_btn:
pygame.quit()
exit()
if game_active:
screen.blit(background_surface, (0, 0))
# Player
players.draw(screen)
players.update()
# Obstacle Group
obstacle_group.draw(screen)
obstacle_group.update()
# collision
no_players_left = collision_sprite()
if no_players_left:
obstacle_group.empty()
if game_mode == "Manual":
game_active = False
else:
prev_players = evolution.next_population_selection(prev_players + current_players, num_players)
current_players = evolution.generate_new_population(num_players, prev_players)
reset_timer_and_seed()
create_players(game_mode, player_list=prev_players + current_players)
generation += 1
start_time = pygame.time.get_ticks()
current_score = display_score()
if game_mode == "Neuroevolution":
display_generation()
update_fitness()
if current_score > best_score:
best_score = current_score
display_best_score()
else:
screen.fill("#2F4858")
screen.blit(player_stand, player_stand_rect)
screen.blit(game_name, game_name_rectangle)
draw_btn(start_game_btn, start_game_btn_rect)
draw_btn(start_evolutionary_btn, start_evolutionary_btn_rect)
draw_btn(exit_btn, exit_btn_rect)
if best_score > 0:
draw_intro_text(f"Best score: {best_score}", height=400)
draw_intro_text("Computational Intelligence Assignment", height=600, color='#D5ED8B')
draw_intro_text("Amirkabir University of Technology", height=650, color='#AB8CD5')
pygame.display.update()
clock.tick(60)