-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflappy.py
214 lines (162 loc) · 6.32 KB
/
flappy.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
import random
from itertools import cycle
import numpy as np
import pygame
import sys
if not sys.warnoptions:
import warnings
warnings.simplefilter("default")
import settings
birds = []
bestbird = None
def main():
settings.init()
while True:
# select random background sprites
randBg = random.randint(0, len(settings.BACKGROUNDS_LIST) - 1)
settings.IMAGES['background'] = pygame.image.load(settings.BACKGROUNDS_LIST[randBg]).convert()
crashInfo = mainGame()
def mainGame():
from bird import bird
global birds
#Initial Population
birds = [0] * settings.POPULATION
for i in range(settings.POPULATION):
birds[i] = bird()
birds[i].initialize()
while True:
# get 2 new pipes to add to upperPipes lowerPipes list
newPipe1 = getRandomPipe()
newPipe2 = getRandomPipe()
# list of upper pipes
upperPipes = [
{'x': settings.SCREENWIDTH + 200, 'y': newPipe1[0]['y']},
{'x': settings.SCREENWIDTH + 200 + (settings.SCREENWIDTH / 2), 'y': newPipe2[0]['y']},
]
# list of lowerpipe
lowerPipes = [
{'x': settings.SCREENWIDTH + 200, 'y': newPipe1[1]['y']},
{'x': settings.SCREENWIDTH + 200 + (settings.SCREENWIDTH / 2), 'y': newPipe2[1]['y']},
]
pipeVelX = -4
num_crashed_birds = 0
refresh = False
while True and not refresh:
# move pipes to left
for uPipe, lPipe in zip(upperPipes, lowerPipes):
uPipe['x'] += pipeVelX
lPipe['x'] += pipeVelX
# add new pipe when first pipe is about to touch left of screen
if 0 < upperPipes[0]['x'] < 5:
newPipe = getRandomPipe()
upperPipes.append(newPipe[0])
lowerPipes.append(newPipe[1])
# remove first pipe if its out of the screen
if upperPipes[0]['x'] < -settings.pipeW:
upperPipes.pop(0)
lowerPipes.pop(0)
# draw sprites
settings.SCREEN.blit(settings.IMAGES['background'], (0, 0))
for uPipe, lPipe in zip(upperPipes, lowerPipes):
rand_pipe_int = random.randint(0,len(settings.PIPES_LIST)-1)
settings.SCREEN.blit(settings.IMAGES['pipe'][rand_pipe_int][0], (uPipe['x'], uPipe['y']))
settings.SCREEN.blit(settings.IMAGES['pipe'][rand_pipe_int][1], (lPipe['x'], lPipe['y']))
for bird_instance in birds:
if not bird_instance.crashed and num_crashed_birds<len(birds):
# check for crash here
crashTest = bird_instance.checkcrash(upperpipes=upperPipes,lowerpipes=lowerPipes)
if crashTest[0]:
bird_instance.crashed = True
num_crashed_birds += 1
bird_instance.update_score(upperPipes)
bird_instance.think(upperPipes,lowerPipes)
settings.SCREEN.blit(settings.IMAGES['base'], (bird_instance.basex, settings.BASEY))
# print score so player overlaps the score
showScore(bird_instance.score)
bird_instance.update_surface()
settings.SCREEN.blit(bird_instance.playerSurface, (bird_instance.playerx, bird_instance.playery))
if num_crashed_birds == len(birds):
num_crashed_birds = 0
birds = nextGeneration()
refresh = True
break
pygame.display.update()
settings.FPSCLOCK.tick(settings.FPS)
def playerShm(playerShm):
"""oscillates the value of playerShm['val'] between 8 and -8"""
if abs(playerShm['val']) == 8:
playerShm['dir'] *= -1
if playerShm['dir'] == 1:
playerShm['val'] += 1
else:
playerShm['val'] -= 1
def getRandomPipe():
"""returns a randomly generated pipe"""
# y of gap between upper and lower pipe
gapY = random.randrange(0, int(settings.BASEY * 0.6 - settings.PIPEGAPSIZE))
gapY += int(settings.BASEY * 0.2)
pipeHeight = settings.IMAGES['pipe'][0][0].get_height()
pipeX = settings.SCREENWIDTH + 10
return [
{'x': pipeX, 'y': gapY - pipeHeight}, # upper pipe
{'x': pipeX, 'y': gapY + settings.PIPEGAPSIZE}, # lower pipe
]
def showScore(score):
"""displays score in center of screen"""
scoreDigits = [int(x) for x in list(str(score))]
totalWidth = 0 # total width of all numbers to be printed
for digit in scoreDigits:
totalWidth += settings.IMAGES['numbers'][digit].get_width()
Xoffset = (settings.SCREENWIDTH - totalWidth) / 2
for digit in scoreDigits:
settings.SCREEN.blit(settings.IMAGES['numbers'][digit], (Xoffset, settings.SCREENHEIGHT * 0.1))
Xoffset += settings.IMAGES['numbers'][digit].get_width()
#### Genetic ALgorithm helper functions implementation
def calculatefitness():
global birds
sum = 0
for bird_inst in birds:
# print("Check 2")
sum += bird_inst.score
for bird_inst in birds:
if sum != 0:
bird_inst.fitness = bird_inst.score
else:
bird_inst.fitness = 0
# print(sum)
return sum!=0
def pickOne():
global birds
index = 0
fitness_vals = np.array([birds[index].fitness for index in range(len(birds))])
index2 = np.argmax(fitness_vals)
print(fitness_vals[index2])
r = random.random()
while(r>0 and index<len(birds)):
r = r-birds[index].fitness
index+=1
index-=1
return index2
def nextGeneration():
global birds
from bird import bird
if(calculatefitness()):
birds_next = [None]*settings.POPULATION
birds_next[0] = bird()
args = {}
index = pickOne()
args['nn'] = birds[index].nn.copy()
birds_next[0].initialize(args)
for i in range(1,settings.POPULATION):
birds_next[i] = bird()
args = {}
args['nn'] = birds[index].nn.mutate(0.01)
birds_next[i].initialize(args)
else:
birds_next = [None]*settings.POPULATION
for i in range(settings.POPULATION):
birds_next[i] = bird()
birds_next[i].initialize()
return birds_next
if __name__ == '__main__':
main()