forked from llSourcell/neuroevolution-for-flappy-birds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflappyBird2.py
244 lines (148 loc) · 5.38 KB
/
flappyBird2.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
from itertools import cycle
from numpy.random import randint,choice
import sys
import pygame
from pygame.locals import *
FPS = 30
SCREENWIDTH = 288
SCREENHEIGHT = 512
# amount by which base can maximum shift to left
PIPEGAPSIZE = 160 # gap between upper and lower part of pipe
BASEY = SCREENHEIGHT * 0.79
SCORE = 0
BACKGROUND = pygame.image.load('/home/roshan/Documents/FlappyBird/background.png')
class Bird(pygame.sprite.Sprite):
def __init__(self,displayScreen):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.image.load('/home/roshan/Documents/FlappyBird/redbird.png')
self.x = int(SCREENWIDTH * 0.2)
self.y = SCREENHEIGHT*0.5
self.rect = self.image.get_rect()
self.height = self.rect.height
self.screen = displayScreen
self.playerVelY = -9
self.playerMaxVelY = 10
self.playerMinVelY = -8
self.playerAccY = 1
self.playerFlapAcc = -9
self.playerFlapped = False
self.display(self.x, self.y)
def display(self,x,y):
self.screen.blit(self.image, (x,y))
self.rect.x, self.rect.y = x,y
def move(self,input):
if input != None:
self.playerVelY = self.playerFlapAcc
self.playerFlapped = True
if self.playerVelY < self.playerMaxVelY and not self.playerFlapped:
self.playerVelY += self.playerAccY
if self.playerFlapped:
self.playerFlapped = False
self.y += min(self.playerVelY, SCREENHEIGHT - self.y - self.height)
self.y = max(self.y,0)
self.display(self.x,self.y)
class PipeBlock(pygame.sprite.Sprite):
def __init__(self,image,upper):
pygame.sprite.Sprite.__init__(self)
if upper == False:
self.image = pygame.image.load(image)
else:
self.image = pygame.transform.rotate(pygame.image.load(image),180)
self.rect = self.image.get_rect()
class Pipe(pygame.sprite.Sprite):
def __init__(self,screen,x):
pygame.sprite.Sprite.__init__(self)
self.screen = screen
self.lowerBlock = PipeBlock('/home/roshan/Documents/FlappyBird/pipe-red.png',False)
self.upperBlock = PipeBlock('/home/roshan/Documents/FlappyBird/pipe-red.png',True)
self.pipeWidth = self.upperBlock.rect.width
self.x = x
heights = self.getHeight()
self.upperY, self.lowerY = heights[0], heights[1]
self.behindBird = 0
self.display()
def getHeight(self):
# randVal = randint(1,10)
randVal = choice([1,2,3,4,5,6,7,8,9], p =[0.04,0.04*2,0.04*3,0.04*4,0.04*5,0.04*4,0.04*3,0.04*2,0.04] )
midYPos = 106 + 30*randVal
upperPos = midYPos - (PIPEGAPSIZE/2)
lowerPos = midYPos + (PIPEGAPSIZE/2)
# print(upperPos)
# print(lowerPos)
# print('-------')
return([upperPos,lowerPos])
def display(self):
self.screen.blit(self.lowerBlock.image, (self.x, self.lowerY))
self.screen.blit(self.upperBlock.image, (self.x, self.upperY - self.upperBlock.rect.height))
self.upperBlock.rect.x, self.upperBlock.rect.y = self.x, (self.upperY - self.upperBlock.rect.height)
self.lowerBlock.rect.x, self.lowerBlock.rect.y = self.x, self.lowerY
def move(self):
self.x -= 3
if self.x <= 0:
self.x = SCREENWIDTH
heights = self.getHeight()
self.upperY, self.lowerY = heights[0], heights[1]
self.behindBird = 0
self.display()
return([self.x+(self.pipeWidth/2), self.upperY, self.lowerY])
def game():
pygame.init()
FPSCLOCK = pygame.time.Clock()
DISPLAY = pygame.display.set_mode((SCREENWIDTH, SCREENHEIGHT))
pygame.display.set_caption('Flappy Bird')
global SCORE
bird = Bird(DISPLAY)
pipe1 = Pipe(DISPLAY, SCREENWIDTH+100)
pipe2 = Pipe(DISPLAY, SCREENWIDTH+100+(SCREENWIDTH/2))
pipeGroup = pygame.sprite.Group()
pipeGroup.add(pipe1.upperBlock)
pipeGroup.add(pipe2.upperBlock)
pipeGroup.add(pipe1.lowerBlock)
pipeGroup.add(pipe2.lowerBlock)
# birdGroup = pygame.sprite.Group()
# birdGroup.add(bird1)
moved = False
pause =0
while True:
DISPLAY.blit(BACKGROUND,(0,0))
# if (pipe1.x < pipe2.x and pipe1.behindBird==0) or (pipe2.x < pipe1.x and pipe2.behindBird==1):
# input = (bird.y,pipe1.x, pipe1.upperY, pipe1.lowerY)
# centerY = (pipe1.upperY + pipe1.lowerY)/2
# elif (pipe1.x < pipe2.x and pipe1.behindBird==1) or (pipe2.x < pipe1.x and pipe2.behindBird==0):
# input = (bird.y,pipe2.x, pipe2.upperY, pipe2.lowerY)
# centerY = (pipe2.upperY + pipe2.lowerY)/2
# print(input)
t = pygame.sprite.spritecollideany(bird,pipeGroup)
if t!=None or (bird.y== 512 - bird.height) or (bird.y == 0):
print("GAME OVER")
print("FINAL SCORE IS %d"%SCORE)
return(SCORE)
for event in pygame.event.get():
if event.type == QUIT or (event.type == KEYDOWN and (event.key == K_ESCAPE )):
pygame.quit()
sys.exit()
if event.type == KEYDOWN and (event.key == K_SPACE or event.key == K_RETURN):
bird.move("UP")
moved = True
if event.type == KEYDOWN and event.key == K_m :
pause=1
if moved == False:
bird.move(None)
else:
moved = False
pipe1Pos = pipe1.move()
if pipe1Pos[0] <= int(SCREENWIDTH * 0.2) - int(bird.rect.width/2):
if pipe1.behindBird == 0:
pipe1.behindBird = 1
SCORE += 1
print("SCORE IS %d"%SCORE)
pipe2Pos = pipe2.move()
if pipe2Pos[0] <= int(SCREENWIDTH * 0.2) - int(bird.rect.width/2):
if pipe2.behindBird == 0:
pipe2.behindBird = 1
SCORE += 1
print("SCORE IS %d"%SCORE)
if pause==0:
pygame.display.update()
FPSCLOCK.tick(FPS)
game()