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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
-- `Player`
-- Entity controlled by a player. It has a physical body and a sprite. Can play animations and interact with other instances of the same class.
-- Collision category: [2]
-- WHOLE CODE HAS FLAG OF "need a cleanup"
-- Metatable of `Player`
-- nils initialized in constructor
Player = {
-- General and physics
name = "empty",
body = nil,
shape = nil,
fixture = nil,
sprite = nil,
rotate = 0, -- "angle" would sound better
facing = 1,
max_velocity = 105,
world = nil, -- game world
-- Combat
combo = 0,
lives = 3,
spawntimer = 2,
alive = true,
punchcd = 0,
punchinitial = 0.25,
punchdir = 0, -- a really bad thing
-- Animation
animations = require "animations",
current = nil,
frame = 1,
delay = 0.10,
-- Movement
inAir = true,
salto = false,
jumpactive = false,
jumpdouble = true,
jumptimer = 0.16,
jumpnumber = 2,
-- Keys
controlset = nil,
-- HUD
portrait_sprite = nil,
portrait_frame = nil,
portrait_sheet = require "nautsicons",
portrait_box = love.graphics.newQuad( 0, 15, 32,32, 80,130),
-- Sounds
sfx = require "sounds"
}
-- Constructor of `Player`
function Player:new (game, world, x, y, name)
-- Meta
local o = {}
setmetatable(o, self)
self.__index = self
-- Physics
local group = -1-#game.Nauts
o.body = love.physics.newBody(world, x, y, "dynamic")
o.shape = love.physics.newRectangleShape(10, 16)
o.fixture = love.physics.newFixture(o.body, o.shape, 8)
o.fixture:setUserData(o)
o.fixture:setCategory(2)
o.fixture:setMask(2)
o.fixture:setGroupIndex(group)
o.body:setFixedRotation(true)
-- Misc
o.name = name or "empty"
o.sprite = newImage("assets/nauts/"..o.name..".png")
o.world = game
-- Animation
o.current = o.animations.idle
o:createEffect("respawn")
--[[ New punch mechanics
local fixture = love.physics.newFixture(o.body, love.physics.newPolygonShape(-6,-6, -20,-6, -20,6, -6,6), 0) -- LEFT
fixture:setSensor(true)
fixture:setCategory(3)
fixture:setMask(1,3)
fixture:setGroupIndex(group)
local fixture = love.physics.newFixture(o.body, love.physics.newPolygonShape(6,-6, 20,-6, 20,6, 6,6), 0) -- RIGHT
fixture:setSensor(true)
fixture:setCategory(3)
fixture:setMask(1,3)
fixture:setGroupIndex(group)
o.punch_right = fixture
local fixture = love.physics.newFixture(o.body, love.physics.newPolygonShape(-8,-7, -8,-20, 8,-20, 8,-7), 0) -- UP
fixture:setSensor(true)
fixture:setCategory(3)
fixture:setMask(1,3)
fixture:setGroupIndex(group)
local fixture = love.physics.newFixture(o.body, love.physics.newPolygonShape(-8,7, -8,20, 8,20, 8,7), 0) -- DOWN
fixture:setSensor(true)
fixture:setCategory(3)
fixture:setMask(1,3)
fixture:setGroupIndex(group)]]
-- Portrait load for first object created
if self.portrait_sprite == nil then
self.portrait_sprite = love.graphics.newImage("assets/portraits.png")
self.portrait_frame = love.graphics.newImage("assets/menu.png")
end
return o
end
-- Destructor of `Player`
function Player:delete()
-- body deletion is handled by world deletion
self.sprite = nil
end
-- Control set managment
function Player:assignControlSet(set)
self.controlset = set
end
function Player:getControlSet()
return self.controlset
end
-- Update callback of `Player`
function Player:update(dt)
-- hotfix? for destroyed bodies
if self.body:isDestroyed() then return end
-- locals
local x, y = self.body:getLinearVelocity()
local isDown = Controller.isDown
local controlset = self:getControlSet()
-- # VERTICAL MOVEMENT
-- Jumping
if self.jumpactive and self.jumptimer > 0 then
self.body:setLinearVelocity(x,-160)
self.jumptimer = self.jumptimer - dt
end
-- Salto
if self.salto and (self.current == self.animations.walk or self.current == self.animations.idle) then
self.rotate = (self.rotate + 17 * dt * self.facing) % 360
elseif self.rotate ~= 0 then
self.rotate = 0
end
-- # HORIZONTAL MOVEMENT
-- Walking
if isDown(controlset, "left") then
self.facing = -1
self.body:applyForce(-250, 0)
-- Controlled speed limit
if x < -self.max_velocity then
self.body:applyForce(250, 0)
end
end
if isDown(controlset, "right") then
self.facing = 1
self.body:applyForce(250, 0)
-- Controlled speed limit
if x > self.max_velocity then
self.body:applyForce(-250, 0)
end
end
-- Custom linear damping
if not isDown(controlset, "left") and
not isDown(controlset, "right")
then
local face = nil
if x < -12 then
face = 1
elseif x > 12 then
face = -1
else
face = 0
end
self.body:applyForce(40*face,0)
if not self.inAir then
self.body:applyForce(80*face,0)
end
end
-- # ANIMATIONS
-- Animation
self.delay = self.delay - dt
if self.delay < 0 then
self.delay = self.delay + Player.delay -- INITIAL from metatable
-- Thank you De Morgan!
if self.current.repeated or not (self.frame == self.current.frames) then
self.frame = (self.frame % self.current.frames) + 1
elseif isDown(controlset, "right") or isDown(controlset, "left") then
-- If nonrepeatable animation is finished and player is walking
self:changeAnimation("walk")
elseif self.current == self.animations.damage then
self:changeAnimation("idle")
end
end
-- # DEATH
-- We all die in the end.
local m = self.world.map
if (self.body:getX() < m.center_x - m.width*1.5 or self.body:getX() > m.center_x + m.width*1.5 or
self.body:getY() < m.center_y - m.height*1.5 or self.body:getY() > m.center_y + m.height*1.5) and
self.alive
then
self:die()
end
-- respawn
if self.spawntimer > 0 then
self.spawntimer = self.spawntimer - dt
end
if self.spawntimer <= 0 and not self.alive and self.lives >= 0 then
self:respawn()
end
-- # PUNCH
-- Cooldown
self.punchcd = self.punchcd - dt
if not self.body:isDestroyed() then -- This is weird
for _,fixture in pairs(self.body:getFixtureList()) do
if fixture:getUserData() ~= self then
fixture:setUserData({fixture:getUserData()[1] - dt, fixture:getUserData()[2]})
if fixture:getUserData()[1] < 0 then
fixture:destroy()
end
end
end
end
-- Stop vertical
local c,a = self.current, self.animations
if (c == a.attack_up or c == a.attack_down or c == a.attack) and self.frame < c.frames then
if self.punchdir == 0 then
self.body:setLinearVelocity(0,0)
else
self.body:setLinearVelocity(38*self.facing,0)
end
end
if self.punchcd <= 0 and self.punchdir == 1 then
self.punchdir = 0
end
end
-- Controller callbacks
function Player:controlpressed(set, action, key)
if set ~= self:getControlSet() then return end
local isDown = Controller.isDown
local controlset = self:getControlSet()
-- Jumping
if action == "jump" then
if self.jumpnumber > 0 then
-- General jump logics
self.jumpactive = true
-- Spawn proper effect
if not self.inAir then
self:createEffect("jump")
else
self:createEffect("doublejump")
end
-- Start salto if last jump
if self.jumpnumber == 1 then
self.salto = true
end
-- Animation clear
if (self.current == self.animations.attack) or
(self.current == self.animations.attack_up) or
(self.current == self.animations.attack_down) then
self:changeAnimation("idle")
end
-- Remove jump
self.jumpnumber = self.jumpnumber - 1
end
end
-- Walking
if (action == "left" or action == "right") and
(self.current ~= self.animations.attack) and
(self.current ~= self.animations.attack_up) and
(self.current ~= self.animations.attack_down) then
self:changeAnimation("walk")
end
-- Punching
if action == "attack" and self.punchcd <= 0 then
local f = self.facing
self.salto = false
if isDown(controlset, "up") then
-- Punch up
if self.current ~= self.animations.damage then
self:changeAnimation("attack_up")
end
self:hit("up")
elseif isDown(controlset, "down") then
-- Punch down
if self.current ~= self.animations.damage then
self:changeAnimation("attack_down")
end
self:hit("down")
else
-- Punch horizontal
if self.current ~= self.animations.damage then
self:changeAnimation("attack")
end
if f == 1 then
self:hit("right")
else
self:hit("left")
end
self.punchdir = 1
end
end
end
function Player:controlreleased(set, action, key)
if set ~= self:getControlSet() then return end
local isDown = Controller.isDown
local controlset = self:getControlSet()
-- Jumping
if action == "jump" then
self.jumpactive = false
self.jumptimer = Player.jumptimer -- take initial from metatable
end
-- Walking
if (action == "left" or action == "right") and not
(isDown(controlset, "left") or isDown(controlset, "right")) and
self.current == self.animations.walk
then
self:changeAnimation("idle")
end
end
-- Draw of `Player`
function Player:draw(offset_x, offset_y, scale, debug)
-- draw only alive
if not self.alive then return end
-- locals
local offset_x = offset_x or 0
local offset_y = offset_y or 0
local scale = scale or 1
local debug = debug or false
local x, y = self:getPosition()
-- pixel grid
local draw_x = (math.floor(x) + offset_x) * scale
local draw_y = (math.floor(y) + offset_y) * scale
-- sprite draw
love.graphics.setColor(255,255,255,255)
love.graphics.draw(self.sprite, self.current[self.frame], draw_x, draw_y, self.rotate, self.facing*scale, 1*scale, 12, 15)
-- debug draw
if debug then
for _,fixture in pairs(self.body:getFixtureList()) do
if fixture:getCategory() == 2 then
love.graphics.setColor(137, 255, 0, 120)
else
love.graphics.setColor(137, 0, 255, 40)
end
love.graphics.polygon("fill", self.world.camera:translatePoints(self.body:getWorldPoints(fixture:getShape():getPoints())))
end
for _,contact in pairs(self.body:getContactList()) do
love.graphics.setColor(255, 0, 0, 255)
love.graphics.setPointSize(scale)
love.graphics.points(self.world.camera:translatePoints(contact:getPositions()))
end
end
end
-- getPosition
function Player:getPosition()
return self.body:getPosition()
end
-- Draw HUD of `Player`
-- elevation: 1 bottom, 0 top
function Player:drawHUD(x,y,scale,elevation)
-- hud displays only if player is alive
if self.alive then
love.graphics.setColor(255,255,255,255)
love.graphics.draw(self.portrait_frame, self.portrait_box, (x)*scale, (y)*scale, 0, scale, scale)
love.graphics.draw(self.portrait_sprite, self.portrait_sheet[self.name], (x+2)*scale, (y+3)*scale, 0, scale, scale)
local dy = 30 * elevation
love.graphics.setFont(Font)
love.graphics.print((self.combo*10).."%",(x+2)*scale,(y-3+dy)*scale,0,scale,scale)
love.graphics.print(math.max(0, self.lives),(x+24)*scale,(y-3+dy)*scale,0,scale,scale)
end
end
-- Change animation of `Player`
-- idle, walk, attack, attack_up, attack_down, damage
function Player:changeAnimation(animation)
self.frame = 1
self.delay = Player.delay -- INITIAL from metatable
self.current = self.animations[animation]
end
-- Spawn `Effect` relative to `Player`
function Player:createEffect(name)
if name == "trail" or name == "hit" then
-- 16px effect: -7 -7
self.world:createEffect(name, self.body:getX()-8, self.body:getY()-8)
elseif name ~= nil then
-- 24px effect: -12 -15
self.world:createEffect(name, self.body:getX()-12, self.body:getY()-15)
end
end
-- Punch of `Player`
-- (string) direction
function Player:hit(direction)
-- start cooldown
self.punchcd = self.punchinitial
-- actual punch
local fixture
if direction == "left" then
fixture = love.physics.newFixture(self.body, love.physics.newPolygonShape(-6,-6, -20,-6, -20,6, -6,6), 0)
end
if direction == "right" then
fixture = love.physics.newFixture(self.body, love.physics.newPolygonShape(6,-6, 20,-6, 20,6, 6,6), 0)
end
if direction == "up" then
fixture = love.physics.newFixture(self.body, love.physics.newPolygonShape(-8,-7, -8,-20, 8,-20, 8,-7), 0)
end
if direction == "down" then
fixture = love.physics.newFixture(self.body, love.physics.newPolygonShape(-8,7, -8,20, 8,20, 8,7), 0)
end
fixture:setSensor(true)
fixture:setCategory(3)
fixture:setMask(1,3)
fixture:setGroupIndex(self.fixture:getGroupIndex())
fixture:setUserData({0.08, direction})
-- sound
self:playSound(4)
end
-- Taking damage of `Player` by successful hit test
function Player:damage(direction)
local horizontal, vertical = 0, 0
if direction == "left" then
horizontal = -1
end
if direction == "right" then
horizontal = 1
end
if direction == "up" then
vertical = -1
end
if direction == "down" then
vertical = 1
end
self:createEffect("hit")
local x,y = self.body:getLinearVelocity()
self.body:setLinearVelocity(x,0)
self.body:applyLinearImpulse((42+10*self.combo)*horizontal, (68+10*self.combo)*vertical + 15)
self:changeAnimation("damage")
self.combo = math.min(27, self.combo + 1)
self.punchcd = 0.08 + self.combo*0.006
self:playSound(2)
end
-- DIE
function Player:die()
self:playSound(1)
self.combo = Player.combo
self.lives = self.lives - 1
self.alive = false
self.spawntimer = Player.spawntimer
self.body:setActive(false)
self.world:onNautKilled(self)
end
-- And then respawn. Like Jon Snow.
function Player:respawn()
self.alive = true
self.body:setLinearVelocity(0,0)
self.body:setPosition(self.world:getSpawnPosition())
self.body:setActive(true)
self:createEffect("respawn")
end
-- Sounds
function Player:playSound(sfx)
if self.alive then
local source = love.audio.newSource(self.sfx[sfx])
source:play()
end
end
|