-
Notifications
You must be signed in to change notification settings - Fork 0
/
PongGame.py
198 lines (151 loc) · 5.91 KB
/
PongGame.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
import pygame
# Initialize program
pygame.init()
WIDTH, HEIGHT = 700, 500
WIN = pygame.display.set_mode(( WIDTH,HEIGHT))
#window
pygame.display.set_caption("Pong") # Title
FPS = 60
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
PADDLE_WIDTH, PADDLE_HEIGHT = 20, 100
BALL_RADIUS = 7
SCORE_FONT = pygame.font.SysFont("comicsans", 50)
WINNING_SCORE = 10
class Paddle:
COLOR = WHITE
VEL = 4
def __init__(self,x, y, width, height):
self.x = self.original_x = x
self.y = self.original_y = y
self.width = width
self.height = height
def draw(self,win):
pygame.draw.rect(win,self.COLOR,(self.x,self.y,self.width,self.height))
def move(self,up = True):
if up:
self.y -= self.VEL
else:
self.y += self.VEL
def reset(self):
self.x = self.original_x
self.y = self.original_y
class Ball:
MAX_VEL = 5
COLOR = WHITE
def __init__(self,x ,y, radius):
self.x = self.original_x = x
self.y = self.original_y = y
self.radius = radius
self.x_vel = self.MAX_VEL
self.y_vel = 0
def draw(self,win):
pygame.draw.circle(win,self.COLOR,(self.x,self.y),self.radius)
def move(self):
self.x += self.x_vel
self.y += self.y_vel
def reset(self):
self.x = self.original_x
self.y = self.original_y
self.y_vel = 0
self.x_vel *= -1
# DRAW FUNCTION
def draw(win,paddles,ball,left_score,right_score):
win.fill(BLACK)
left_score_text = SCORE_FONT.render(f'{left_score}',1,WHITE)
right_score_text = SCORE_FONT.render(f'{right_score}',1,WHITE)
win.blit(left_score_text, (WIDTH //4 - left_score_text.get_width()//2, 20))
win.blit(right_score_text, (WIDTH * (3 / 4) - right_score_text.get_width()//2, 20))
for paddle in paddles:
paddle.draw(win)
for i in range(10,HEIGHT,HEIGHT//20):
if i % 2 == 1:
continue
pygame.draw.rect(win,WHITE,(WIDTH//2 - 5, i, 10, HEIGHT//20))
ball.draw(win)
pygame.display.update()
def handle_collision(ball, left_paddle, right_paddle):
if ball.y + ball.radius >= HEIGHT:
ball.y_vel *= -1
elif ball.y - ball.radius <= 0:
ball.y_vel *= -1
if ball.x_vel < 0:
if ball.y >= left_paddle.y and ball.y <= left_paddle.y + left_paddle.height:
if ball.x - ball.radius <= left_paddle.x + left_paddle.width:
ball.x_vel *= -1
middle_y = left_paddle.y + left_paddle.height / 2
difference_in_y = middle_y - ball.y
reduction_factor = (left_paddle.height / 2) / ball.MAX_VEL
y_vel = difference_in_y / reduction_factor
ball.y_vel = -1 * y_vel
else:
# right paddle
if ball.y >= right_paddle.y and ball.y <= right_paddle.y + right_paddle.height:
if ball.x + ball.radius >= right_paddle.x:
ball.x_vel *= -1
middle_y = right_paddle.y + right_paddle.height / 2
difference_in_y = middle_y - ball.y
reduction_factor = (right_paddle.height / 2) / ball.MAX_VEL
y_vel = difference_in_y / reduction_factor
ball.y_vel = -1 * y_vel
def handle_paddle_movement(keys,left_paddle,right_paddle):
if keys[pygame.K_w] and left_paddle.y - left_paddle.VEL >= 0:
left_paddle.move(up = True)
if keys[pygame.K_s] and left_paddle.y + left_paddle.VEL + left_paddle.height <= HEIGHT:
left_paddle.move(up = False)
if keys[pygame.K_UP] and right_paddle.y - right_paddle.VEL >= 0:
right_paddle.move(up = True)
if keys[pygame.K_DOWN] and right_paddle.y + right_paddle.VEL + right_paddle.height <= HEIGHT:
right_paddle.move(up = False)
# Main loop of the pogram
def main():
run = True
clock = pygame.time.Clock()
left_paddle = Paddle(10, HEIGHT //2 - PADDLE_HEIGHT //2, PADDLE_WIDTH,PADDLE_HEIGHT)
right_paddle = Paddle(WIDTH - 10 - PADDLE_WIDTH, HEIGHT//2 - PADDLE_HEIGHT//2, PADDLE_WIDTH,PADDLE_HEIGHT)
ball = Ball(WIDTH // 2, HEIGHT // 2, BALL_RADIUS )
left_score = 0
right_score = 0
while run:
clock.tick(FPS)
draw(WIN,[left_paddle, right_paddle], ball,left_score,right_score)
#pygame.event.get() # all the events, mouse keyboard etc
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
break
keys = pygame.key.get_pressed()
handle_paddle_movement(keys,left_paddle,right_paddle)
ball.move()
handle_collision(ball,left_paddle,right_paddle)
won = False
if ball.x < 0:
right_score += 1
ball.reset()
right_paddle.reset()
left_paddle.reset()
elif ball.x > WIDTH:
left_score += 1
ball.reset()
right_paddle.reset()
left_paddle.reset()
won = False
if left_score >= WINNING_SCORE:
won = True
win_text = 'Left Player Won!'
elif right_score >= WINNING_SCORE:
won = True
wint_text = 'Right Player Won!'
if won:
text = SCORE_FONT.render(win_text,1,WHITE)
WIN.blit(text,(WIDTH//2 - text.get_width()//2, HEIGHT//2 - text.get_height()//2))
pygame.display.update()
pygame.time.delay(5000)
ball.reset()
left_paddle.reset()
right_paddle.reset()
left_score = 0
right_score = 0
pygame.quit()
if __name__ == '__main__':
main()