-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBreakOut.py
144 lines (104 loc) · 4.39 KB
/
BreakOut.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
# I - IMPORT AND INITIALIZE
import pygame, BOsprites
pygame.init()
def main():
'''This function defines the 'mainline logic' for our pyPong game.'''
# D - DISPLAY
screen = pygame.display.set_mode((640, 480))
pygame.display.set_caption("BreakOut")
# E - ENTITIES
background= pygame.image.load("background.png").convert()
bordertop = pygame.Surface((screen.get_width(), 38))
bordertop = bordertop.convert()
bordertop.fill((0,0,0))
screen.blit(background, (0, 0))
screen.blit(bordertop, (0, 0))
pygame.mixer.music.load("pirate.ogg")
pygame.mixer.music.set_volume(0.6)
pygame.mixer.music.play(-1)
boing=pygame.mixer.Sound("shotgun.wav")
boing.set_volume(0.8)
canon=pygame.mixer.Sound("canon.wav")
canon.set_volume(1.0)
gun=pygame.mixer.Sound("gun.wav")
gun.set_volume(1.0)
myFont = pygame.font.Font("walt.ttf", 60)
label1= myFont.render("GAME OVER!", True, (0, 0, 0))
label2= myFont.render("ALL DONE!", True, (0, 0, 0))
# Initialize Brick objects.
bricks = []
value=1
for row in range(1,7):
for brickNumber in range(1,19):
location=(36*brickNumber-int((35/2)),230-20*row)
bricks.append(BOsprites.Brick(screen,value,location))
value+=1
# Sprites for: ScoreKeeper label, End Zones, Ball, Players, Bricks
Lives = BOsprites.Lives()
Score = BOsprites.ScoreKeeper()
ball = BOsprites.Ball(screen)
player1 = BOsprites.Player(screen,screen.get_width()/2,screen.get_height()-10)
SecondPaddle=BOsprites.Player(screen,1000,1000)
player1Endzone = BOsprites.EndZone(screen,0)
brickGroup=pygame.sprite.OrderedUpdates(bricks)
allSprites = pygame.sprite.OrderedUpdates(Lives, player1Endzone, ball, player1, Score, bricks,SecondPaddle)
#bricks=BOsprites.EndZone(screen)
# A - ACTION
# A - ASSIGN
clock = pygame.time.Clock()
keepGoing = True
# Hide the mouse pointer
pygame.mouse.set_visible(False)
# L - LOOP
while keepGoing:
# TIME
clock.tick(30)
# E - EVENT HANDLING: Player 1 uses arrow keys
for event in pygame.event.get():
if event.type == pygame.QUIT:
keepGoing = False
elif event.type == pygame.KEYDOWN:
if event.key==pygame.K_LEFT:
player1.changeDirection((-1,0))
SecondPaddle.changeDirection((1,0))
elif event.key==pygame.K_RIGHT:
player1.changeDirection((1,0))
SecondPaddle.changeDirection((-1,0))
# If so, change direction.
if ball.rect.colliderect(player1.rect):
canon.play()
ball.changeDirection()
# If the ball hits a brick, the brick should be deleted and score should be added.
if pygame.sprite.spritecollide(ball, brickGroup, True):
for Bricks in bricks:
if ball.rect.colliderect(Bricks.rect):
Score.player1(Bricks.getScore())
boing.play()
ball.changeDirection()
if len(brickGroup) == 54 :
gun.play()
SecondPaddle.setPosition(screen.get_width()/2,screen.get_height()-10)
# Check if ball hits player's endzone
if ball.rect.colliderect(player1Endzone):
boing.play()
Lives.player1Lose()
ball.changeDirection()
# Check for game over (if a player loses 3 lives)
if Lives.loser():
screen.blit(label1,(30,255))
keepGoing = False
if len(brickGroup)==0:
screen.blit(label2,(30,255))
keepGoing = False
# R - REFRESH SCREEN
allSprites.clear(screen, background)
allSprites.update()
allSprites.draw(screen)
pygame.display.flip()
# Unhide the mouse pointer
pygame.mouse.set_visible(True)
# Close the game window
pygame.time.delay(3000)
pygame.quit()
# Call the main function
main()