-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPong.py
More file actions
179 lines (115 loc) · 5.02 KB
/
Pong.py
File metadata and controls
179 lines (115 loc) · 5.02 KB
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
# Implementation of the classic arcade game Pong in python
# ----------------------------------------------------------------
import simplegui
import random
# ----------------------------------------------------------------
# initialize global variable
WIDTH = 600
HEIGHT = 400
BALL_RADIUS = 20
PAD_WIDTH = 10
PAD_HEIGHT = 80
LEFT = False
RIGHT = True
canvas_color = "Green"
ball_pos = [0, 0]
ball_vel = [0, 0]
paddle1_pos = 0
paddle2_pos = 0
paddle1_vel = 0
paddle2_vel = 0
score1 = 0
score2 = 0
# ----------------------------------------------------------------
# re-initializing ball_pos and ball_vel for new ball in middle of table
def spawn_ball(direction):
global ball_pos, ball_vel # these are vectors stored as lists
ball_pos = [WIDTH // 2, HEIGHT // 2]
vx = random.randrange(120, 240) // 60
vy = -random.randrange(60, 180) // 60
if direction == LEFT:
vx = -vx
ball_vel = [vx, vy]
# ----------------------------------------------------------------
def new_game():
global paddle1_pos, paddle2_pos, paddle1_vel, paddle2_vel #real values
global score1, score2 #int values
# initialize these global variables to their default values
score1 = score2 = 0
paddle1_pos = HEIGHT // 2 - 10
paddle2_pos = HEIGHT // 2 - 10
paddle1_vel = 0
paddle2_vel = 0
spawn_ball(bool(random.randrange(0,2)))
# ----------------------------------------------------------------
def draw(canvas):
global score1, score2, paddle1_pos, paddle2_pos, ball_pos, ball_vel, paddle1_vel, paddle2_vel
canvas.draw_line([WIDTH / 2, 0],[WIDTH / 2, HEIGHT], 3, "White") # mid line
canvas.draw_line([PAD_WIDTH, 0],[PAD_WIDTH, HEIGHT], 1, "red") # gutters
canvas.draw_line([WIDTH - PAD_WIDTH, 0],[WIDTH - PAD_WIDTH, HEIGHT], 1, "LIME")
frame.set_canvas_background(canvas_color)
canvas.draw_circle([WIDTH / 2, HEIGHT / 2], 85, 4, "White")
# updating ball
ball_pos[0] = ball_pos[0] + ball_vel[0]
ball_pos[1] = ball_pos[1] + ball_vel[1]
# collision with top or bottom wall (just inverse the vertical velocity]
if (ball_pos[1] - BALL_RADIUS <= 0) or (ball_pos[1] + BALL_RADIUS >= HEIGHT):
ball_vel[1] = -ball_vel[1]
# draw ball
canvas.draw_circle(ball_pos, BALL_RADIUS, 7, "White","White")
# update paddle's vertical position, keep paddle on the screen
if not (((paddle1_pos + ball_vel[1]) <= 0) or ((paddle1_pos + ball_vel[1] + PAD_HEIGHT) >= HEIGHT)):
paddle1_pos = paddle1_pos + ball_vel[1]
if not (((paddle2_pos + paddle2_vel) <= 0) or ((paddle2_pos + paddle2_vel + PAD_HEIGHT) >= HEIGHT)):
paddle2_pos = paddle2_pos + paddle2_vel
# draw paddles
canvas.draw_line([0, paddle1_pos],[0, paddle1_pos + PAD_HEIGHT], PAD_WIDTH, "white")
canvas.draw_line([WIDTH, paddle2_pos],[WIDTH, paddle2_pos + PAD_HEIGHT], PAD_WIDTH, "white")
# check if paddle and ball collide
if (ball_pos[0] - BALL_RADIUS) <= PAD_WIDTH:
# Ball hit paddle1
if ((ball_pos[1] >= paddle1_pos) and (ball_pos[1] <= (paddle1_pos + PAD_HEIGHT))):
ball_vel[0] = -ball_vel[0]
ball_vel[0] += (ball_vel[0] // 10)
ball_vel[1] += (ball_vel[1] // 10)
else:
score2 += 1
spawn_ball(True)
elif (ball_pos[0] + BALL_RADIUS) >= (WIDTH - PAD_WIDTH):
# Ball hit paddle2
if ((ball_pos[1]+BALL_RADIUS >= paddle2_pos) and (ball_pos[1]-BALL_RADIUS <= (paddle2_pos + PAD_HEIGHT))):
ball_vel[0] = -ball_vel[0]
ball_vel[0] += (ball_vel[0] // 10)
ball_vel[1] += (ball_vel[1] // 10)
else:
score1 += 1
spawn_ball(False)
# draw score
canvas.draw_text(str(score1), [180, 50], 55, "Red") # computer score
canvas.draw_text(str(score2), [420, 50], 55, "Lime") # right player score
# ----------------------------------------------------------------
def keydown(key):
global paddle1_vel, paddle2_vel
# updating the velocities of paddles
paddle1_vel=ball_vel[1]
if key == simplegui.KEY_MAP["up"]:
paddle2_vel -= 4
elif key == simplegui.KEY_MAP["down"]:
paddle2_vel += 4
# ----------------------------------------------------------------
def keyup(key):
global paddle1_vel, paddle2_vel
# making a paddle motionless
if (key == simplegui.KEY_MAP["up"]) or (key == simplegui.KEY_MAP["down"]):
paddle2_vel = 0
# ----------------------------------------------------------------
# create frame
frame = simplegui.create_frame("Pong", WIDTH, HEIGHT)
frame.set_draw_handler(draw)
frame.set_keydown_handler(keydown)
frame.set_keyup_handler(keyup)
frame.add_button("New Game!", new_game, 200)
# ----------------------------------------------------------------
# start frame
new_game()
frame.start()