-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
302 lines (252 loc) · 8.34 KB
/
main.lua
File metadata and controls
302 lines (252 loc) · 8.34 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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
-- main.lua
require "ball"
require "player"
-- State machines
State = 0
GameStates = {
Menu = 0,
Game = 1,
Credits = 2
}
MenuState = 0
MenuStates = {
Play = 0,
Credits = 1
}
-- Game Over
GameOver = false
Goals = 5
VictoriousPlayer = "No one"
function love.load()
-- Sets the random seed
math.randomseed( os.time() )
end
function love.draw()
if (State == GameStates.Menu) then
drawMenu()
elseif (State == GameStates.Game) then
drawGame()
elseif (State == GameStates.Credits) then
drawCredits()
end
end
function love.update(dt)
if (State == GameStates.Menu) then
menuUpdate()
elseif (State == GameStates.Game) then
gameUpdate( dt )
elseif (State == GameStates.Credits) then
-- creditsUpdate(dt) -- Unnecessary
end
end
function checkBallWallCollision( )
local x, y = ball:getPosition()
local speed_x, speed_y = ball:getSpeed()
if ball.y < 0 then -- Upper wall collision
y = 0
speed_y = -speed_y
elseif ball.y + ball.size > love.graphics.getHeight() then -- Lower wall collision
y = love.graphics.getHeight() - ball.size
speed_y = -speed_y
end
if ball.x < 0 then -- Left wall collision (Player 1 field)
x = 0
speed_x = -speed_x
player2.score = player2.score + 1
ball = nil
next_player_1 = true
elseif ball.x + ball.size > love.graphics.getWidth() then -- Right wall collision (Player 2 field)
x = love.graphics.getWidth() - ball.size
speed_x = -speed_x
player1.score = player1.score + 1
ball = nil
next_player_1 = false
end
if (ball) then
ball:setPosition(x, y)
ball:setSpeed(speed_x, speed_y)
end
end
function drawScores( )
love.graphics.setColor(Colors.White)
love.graphics.print( player1.score, 310, 0, 0, 5 )
love.graphics.print( player2.score, 450, 0, 0, 5 )
end
function drawField()
local rect_sizex = 10
local rect_sizey = 40
local space = 10
local repeats = love.graphics.getHeight()/rect_sizey
love.graphics.setColor(Colors.White)
for i = 0, repeats do
love.graphics.rectangle( 'fill', love.graphics.getWidth()/2 - rect_sizex/2,
i*(space + rect_sizey) + 5, rect_sizex, rect_sizey)
end
end
function setBallInGame( )
ball = Ball:new()
ball:setPosition( love.graphics.getWidth()/2 - ball.size/2, love.graphics.getHeight()/2 - ball.size/2 )
if next_player_1 then
local _, y = player1:getPosition()
local _, height = player1:getDimensions()
y = y + height/2
ball:setPosition( love.graphics.getWidth()/2 - ball.size/2, y - ball.size/2)
ball:setSpeed( ball.speed_starting*math.random(0.9, 1.4), ball.speed_starting*math.random(0.9, 1.4) )
else
local _, y = player2:getPosition()
local _, height = player2:getDimensions()
y = y + height/2
ball:setPosition( love.graphics.getWidth()/2 + ball.size/2, y - ball.size/2)
ball:setSpeed( -ball.speed_starting*math.random(0.9, 1.4), ball.speed_starting*math.random(0.9, 1.4) )
end
end
function menuUpdate( )
if(MenuState == MenuStates.Play) then
if love.keyboard.isDown("down") then
MenuState = MenuStates.Credits
elseif love.keyboard.isDown("return") then
unloadMenu()
loadGame()
end
elseif(MenuState == MenuStates.Credits) then
if love.keyboard.isDown("up") then
MenuState = MenuStates.Play
elseif love.keyboard.isDown("return") then
unloadMenu()
loadCredits()
end
end
end
function drawMenu( )
local starting_y_pos = 80
love.graphics.setColor(Colors.White)
love.graphics.printf({Colors.Green, "R", Colors.Yellow, "E", Colors.Red, "P", Colors.Gray, "A",
Colors.Purple, "I", Colors.Orange, "R", Colors.White, " Pong"}, 110, starting_y_pos, 200, "center", 0, 3)
local color = {}
if(MenuState == MenuStates.Play) then
color = Colors.Orange
else
color = Colors.SmokyGray
end
love.graphics.printf({color, "Play"}, 200, starting_y_pos + 80, 200, "center", 0, 2)
if(MenuState == MenuStates.Credits) then
color = Colors.Orange
else
color = Colors.SmokyGray
end
love.graphics.printf({color, "Credits"}, 200, starting_y_pos + 120, 200, "center", 0, 2)
love.graphics.printf("How to play:", 300, 300, 200, "center")
love.graphics.print("Player 1\n\nMove up - W\nMove down - S\nRepair paddle - X", 40, 330, 0, 1)
love.graphics.print("Player 2\n\nMove up - I\nMove down - K\nRepair paddle - M", 650, 330, 0, 1)
love.graphics.print("New ball - Spacebar", 40, 430, 0, 1)
end
function drawGame( )
drawScores()
drawField()
player1:draw()
player2:draw()
if (ball) then
ball:draw()
end
if (GameOver) then
drawVictorious()
end
end
function drawVictorious()
local color = {}
if VictoriousPlayer == "Player 1" then
color = player1:getColor()
else
color = player2:getColor()
end
love.graphics.setColor( Colors.Purple )
local rect_w, rect_h = 240, 60
love.graphics.rectangle( "fill", love.graphics.getWidth()/2 - rect_w/2,
love.graphics.getHeight()/2 - rect_h/2, rect_w, rect_h )
love.graphics.setColor( Colors.White )
love.graphics.printf( {color, VictoriousPlayer, Colors.White, " is victorious!"},
love.graphics.getWidth()/2 - rect_w/2 + 15, love.graphics.getHeight()/2 - rect_h/2 + 20, 200, "center" )
end
function gameUpdate( dt )
local gameover = checkVictoryCondition( )
if not gameover then
player1:update( dt )
player2:update( dt )
if (ball) then
ball:update( dt )
ball:checkPlayerCollision( player1 )
ball:checkPlayerCollision( player2 )
checkBallWallCollision( )
else
if love.keyboard.isDown("space") then
setBallInGame()
end
end
else
-- Just don't get any input
end
end
function checkVictoryCondition( )
local player1_dead = (player1:getHealth() <= 0) or (player2:getScore() == Goals)
local player2_dead = (player2:getHealth() <= 0) or (player1:getScore() == Goals)
GameOver = player1_dead or player2_dead
if GameOver then
if player1_dead then
VictoriousPlayer = "Player 2"
else
VictoriousPlayer = "Player 1"
end
end
return GameOver
end
function unloadMenu( )
MenuState = MenuStates.Play
end
function loadGame( )
State = GameStates.Game
GameOver = false
player1 = Player:new()
player2 = Player:new()
ball = nil
next_player_1 = true
local width
local height
width, height = player1:getDimensions()
y = love.graphics.getHeight()/2 - height/2
player1:setPosition( 20, y )
player2:setPosition( love.graphics.getWidth() - width - 20 , y )
player2:setUpKey( "i" )
player2:setDownKey( "k" )
player2:setRepairKey( "m" )
end
function unloadGame( )
State = GameStates.Menu
end
function love.keyreleased(key)
if key == "escape" then
if (State == GameStates.Menu) then
love.event.quit()
elseif (State == GameStates.Game) then
unloadGame()
elseif (State == GameStates.Credits) then
unloadCredits()
end
end
end
function loadCredits( )
State = GameStates.Credits
end
function unloadCredits( )
State = GameStates.Menu
end
function drawCredits( )
love.graphics.setColor(Colors.White)
love.graphics.print("Repair Pong", 0, 0, 0, 1)
love.graphics.print("Global Game Jam 2020 - PUC-Rio - Rio de Janeiro, Brazil", 0, 30, 0, 1)
love.graphics.print({Colors.White, "Programmer and game designer:\n", Colors.Green, "Bruno Baère", Colors.White,
" (", Colors.Blue, "https://killerasus.github.io", Colors.White, ")"}, 0, 60, 0, 1)
love.graphics.print("Thanks:\nTo all participants of the GGJ 2020 PUC-Rio jam site. It was an awesome experience!", 0, 100, 0, 1)
love.graphics.print({Colors.White, "Repair Pong icon is a derivative work of ", Colors.Green, "Freepik", Colors.White, " (",
Colors.Blue, "https://www.flaticon.com/authors/freepik", Colors.White, ") from ", Colors.Green,
"Flaticon", Colors.White, " (", Colors.Blue, "https://www.flaticon.com/", Colors.White, ")"}, 0, 180, 0, 1)
end