forked from gaberomualdo/python-pong-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpong_two_player.py
230 lines (174 loc) · 7.79 KB
/
pong_two_player.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
# this program is written for Python2
# imports
import tkinter
import time
import random
import sys
from copy import copy
# create game window
window = tkinter.Tk()
# create window size and set no-resize option
window_dimensions = [800, 625]
window.geometry(str(window_dimensions[0]) + "x" + str(window_dimensions[1]))
window.resizable(0, 0)
# set window title
window.title("Pong Game")
# close window when OS close button is clicked
window.protocol("WM_DELETE_WINDOW", sys.exit)
# choose fps for game
frames_per_second = 30
# create game canvas
game_canvas = tkinter.Canvas(window, width=window_dimensions[0], height=window_dimensions[1], bd=0, highlightthickness=0)
game_canvas.pack()
# create game variables
# paddle sizes
paddle_size = [15, 125]
# initial centered Y position for both paddles
initial_y_position = (window_dimensions[1] - paddle_size[1]) / 2
# player variables
player_y_position = initial_y_position
player_y_velocity = 0
# player2 variables
player2_y_position = initial_y_position
player2_y_velocity = 0
# ball variables
ball_diameter = 15
initial_ball_position = [(window_dimensions[0] - 35 - paddle_size[0]) - (int(window_dimensions[1] / 2)), ((window_dimensions[1] - ball_diameter) / 2) - (int(window_dimensions[1] / 2))]
initial_ball_velocity = [12, 12]
ball_position = copy(initial_ball_position)
ball_velocity = copy(initial_ball_velocity)
# score variable and widget
score = [0, 0]
# delete useless global variables
del initial_y_position
# display instructions variable
display_instructions = True
# gameloop
def gameloop():
# declare use of global variables
global frames_per_second
global game_canvas
global window_dimensions
global player_y_position
global paddle_size
global player2_y_position
global ball_diameter
global ball_position
global ball_velocity
global player_y_velocity
global player2_y_velocity
global display_instructions
# call gameloop again in 100 milleseconds (gameloops is called every 100 MS)
window.after(int(1000 / frames_per_second), gameloop)
# clear canvas
game_canvas.delete("all")
# create dark gray background
game_canvas.create_rectangle(0, 0, window_dimensions[0], window_dimensions[1], fill="#222222", outline="#222222")
# display player paddle (35 pixels from left)
game_canvas.create_rectangle(35, player_y_position, 35 + paddle_size[0], player_y_position + paddle_size[1], fill="#ffffff", outline="#ffffff")
# display player2 paddle (35 pixels from right)
game_canvas.create_rectangle(window_dimensions[0] - 35, player2_y_position, (window_dimensions[0] - 35) - paddle_size[0], player2_y_position + paddle_size[1], fill="#ffffff", outline="#ffffff")
# display ball
game_canvas.create_rectangle(ball_position[0], ball_position[1], ball_position[0] + ball_diameter, ball_position[1] + ball_diameter, fill="#ffffff", outline="#ffffff")
# display score (centered)
game_canvas.create_text(window_dimensions[0] / 2, 35, anchor="center", font="Monaco 28 bold", fill="#ffffff", text=str(score[0]) + " " + str(score[1]))
# display center separator line
game_canvas.create_line((window_dimensions[0] / 2) , 0, (window_dimensions[0] / 2), window_dimensions[1], fill="#ffffff", dash=(6, 10), width=3)
# display instructions
if(display_instructions):
game_canvas.create_text((window_dimensions[0] / 2) - 30, window_dimensions[1] - 40, anchor="ne", font="Monaco 16 bold", fill="#ffffff", text="Move w/WASD")
game_canvas.create_text((window_dimensions[0] / 2) + 30, window_dimensions[1] - 40, anchor="nw", font="Monaco 16 bold", fill="#ffffff", text="Move w/Arrows")
# update player Y position and movement
player_y_position += player_y_velocity
# update player2 Y position and movement
player2_y_position += player2_y_velocity
# set window boundaries for max and min position for paddles
# player paddle
if(player_y_position + paddle_size[1] > window_dimensions[1]):
player_y_position = window_dimensions[1] - paddle_size[1]
elif(player_y_position < 0):
player_y_position = 0
# player2 paddle
if(player2_y_position + paddle_size[1] > window_dimensions[1]):
player2_y_position = window_dimensions[1] - paddle_size[1]
elif(player2_y_position < 0):
player2_y_position = 0
# update ball position
ball_position[0] += ball_velocity[0]
ball_position[1] += ball_velocity[1]
# set window boundaries for ball
# top and bottom of screen
if(ball_position[1] >= window_dimensions[1] - ball_diameter or ball_position[1] <= 0):
ball_velocity[1] = -ball_velocity[1]
# left side and right side of screen --> update score accordingly and reset ball vars
if(ball_position[0] <= 0):
# point for player2
score[1] += 1
# reset ball vars
ball_position = copy(initial_ball_position)
ball_velocity = copy(initial_ball_velocity)
if(ball_position[0] >= window_dimensions[0] - ball_diameter):
# point for player
score[0] += 1
# reset ball vars
ball_position = copy(initial_ball_position)
ball_velocity = copy(initial_ball_velocity)
# paddle collision (also possibly one of the longest if statements you've seen in your life)
if(((ball_position[0] >= 35 and ball_position[0] <= 35 + paddle_size[0]) and (ball_position[1] + ball_diameter >= player_y_position and ball_position[1] <= player_y_position + paddle_size[1])) or ((ball_position[0] + ball_diameter <= window_dimensions[0] - 35 and ball_position[0] + ball_diameter >= (window_dimensions[0] - 35) - paddle_size[0]) and (ball_position[1] + ball_diameter >= player2_y_position and ball_position[1] <= player2_y_position + paddle_size[1]))):
ball_velocity[0] = -ball_velocity[0]
# switch Y velocity if collision was on top or bottom sides of paddle
# player paddle
if(ball_velocity[0] >= 0):
if((ball_position[1] + ball_diameter <= player_y_position + paddle_size[0] and ball_velocity[1] >= 0) or (ball_position[1] >= player_y_position + paddle_size[1] - paddle_size[0] and ball_velocity[1] <= 0)):
ball_velocity[1] = -ball_velocity[1]
# player2 paddle
if(ball_velocity[0] <= 0):
if((ball_position[1] + ball_diameter <= player2_y_position + paddle_size[0] and ball_velocity[1] >= 0) or (ball_position[1] >= player2_y_position + paddle_size[1] - paddle_size[0] and ball_velocity[1] <= 0)):
ball_velocity[1] = -ball_velocity[1]
# handle arrow keys keydown events
def onKeyDown(e):
# declare use of global variable(s)
global player_y_velocity
global player2_y_velocity
global display_instructions
# record current player velocities
player_y_velocity_current = player_y_velocity
player2_y_velocity_current = player2_y_velocity
# bind arrow keys to player velocity changes
if(e.keysym == "w"):
# start movement up when up arrow is pressed down
player_y_velocity = -15
elif(e.keysym == "s"):
# start movement down when down arrow is pressed down
player_y_velocity = 15
# bind WASD arrow keys to player2 velocity changes
if(e.keysym == "Up"):
# start movement up when w key is pressed down
player2_y_velocity = -15
elif(e.keysym == "Down"):
# start movement down when s key is pressed down
player2_y_velocity = 15
# turn off instructions if either paddle has moved
if(player_y_velocity_current != player_y_velocity or player2_y_velocity_current != player2_y_velocity):
display_instructions = False
# handle arrow keys keyup events
def onKeyUp(e):
# declare use of global variable(s)
global player_y_velocity
global player2_y_velocity
# bind arrow keys to player velocity change
if(e.keysym == "w" or e.keysym == "s"):
# stop movement when either arrow key is released
player_y_velocity = 0
# bind WASD arrow keys to player2 velocity changes
if(e.keysym == "Up" or e.keysym == "Down"):
# stop movement when either w or s key is pressed down
player2_y_velocity = 0
# connect keydown event to function
window.bind("<KeyPress>", onKeyDown)
# connect keyup event to function
window.bind("<KeyRelease>", onKeyUp)
# call gameloop
gameloop()
# display window and mainloop
window.mainloop()