-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
49 lines (40 loc) · 1.21 KB
/
main.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
from turtle import Screen
from paddle import Paddle
from ball import Ball
from scoreboard import Scoreboard
import time
screen = Screen()
screen.bgcolor("black")
screen.setup(width=800, height=600)
screen.title("Pong Game")
screen.tracer(0)
right_paddle = Paddle(350, 0)
left_paddle = Paddle(-350, 0)
ball = Ball()
scoreboard = Scoreboard()
screen.listen()
screen.onkey(right_paddle.go_up, "Up")
screen.onkey(right_paddle.go_down, "Down")
screen.onkey(left_paddle.go_up, "w")
screen.onkey(left_paddle.go_down, "s")
is_game_on = True
while is_game_on:
time.sleep(ball.move_speed)
screen.update()
ball.move()
# Detect collision with the walls
if ball.ycor() > 280 or ball.ycor() < -280:
ball.bounce_y()
# Detect collision with paddles
if (ball.distance(right_paddle) < 50 and ball.xcor() > 320) or \
(ball.distance(left_paddle) < 50 and ball.xcor() < -320):
ball.bounce_x()
# Detect R paddle misses
if ball.xcor() > 380:
ball.reset_position()
scoreboard.l_point()
# Detect L paddle misses
if ball.xcor() < -380:
ball.reset_position()
scoreboard.r_point()
screen.exitonclick()