forked from alesan99/mari0_ae
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
funnel.lua
521 lines (442 loc) · 14.7 KB
/
funnel.lua
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
funnel = class:new()
function funnel:init(x, y, dir, r)
self.cox = x
self.coy = y
self.dir = dir or "right"
self.r = {unpack(r)}
self.reverse = 1
self.power = true
self.firstupdate = true
self.input1state = "off"
self.input2state = "off"
self.quad = 1
self.timer = 0
self.timer2 = 0
self.objtable = {
"player", "box", "gel", "turret", "enemy", "ice", "energyball", "tilemoving", "mushroom", "flower", "oneup", "star",
"fireball", "fire", "poisonmush", "brofireball", "boomerang", "hammersuit", "mariohammer", "frogsuit", "levelball",
"core", "iceball", "powblock", "smallspring", "pbutton"
}
for i, v in pairs(enemies) do
table.insert(self.objtable, v)
end
table.remove(self.r, 1)
table.remove(self.r, 1)
self.speed = funnelspeed
--Input list
if #self.r > 0 and self.r[1] ~= "link" then
local v = convertr(self.r[1], {"num", "bool", "string", "bool"}, true)
--SPEED
self.speed = math.max(0.8, math.min(50, v[1] or funnelspeed))
--REVERSED
if v[2] then
self.reverse = -1
end
--DIR
if v[3] ~= nil then
self.dir = v[3]
end
--DEFAULT OFF
if v[4] ~= nil then
if v[4] then
self.power = false
end
else
self.legacy = true
end
table.remove(self.r, 1)
end
--[[DIRECTION
if #self.r > 0 and self.r[1] ~= "link" then
self.dir = self.r[1]
table.remove(self.r, 1)
end
--SPEED
if #self.r > 0 and self.r[1] ~= "link" and tonumber(self.r[1]) then
self.speed = tonumber(self.r[1])
table.remove(self.r, 1)
end
--DIRECTION
if #self.r > 0 and self.r[1] ~= "link" then
if self.r[1] == "true" then
self.reverse = -1
end
table.remove(self.r, 1)
end
--POWER
if #self.r > 0 and self.r[1] ~= "link" then
if self.r[1] == "true" then
self.power = false
end
table.remove(self.r, 1)
end]]
self:updaterange()
self.animationtime = 2/self.speed-1/16
end
function funnel:link()
while #self.r >= 3 do
for j, w in pairs(outputs) do
for i, v in pairs(objects[w]) do
if tonumber(self.r[2]) == v.cox and tonumber(self.r[3]) == v.coy then
if self.legacy and self.r[4] == "power" then
self.power = false
end
v:addoutput(self, self.r[4] or "reverse")
end
end
end
table.remove(self.r, 1)
table.remove(self.r, 1)
table.remove(self.r, 1)
table.remove(self.r, 1)
end
end
function funnel:update(dt)
if self.power then
self.timer = self.timer + dt
if self.timer > self.animationtime then
self.timer = math.fmod(self.timer, self.animationtime)
end
self.timer2 = self.timer2 + dt
while self.timer2 > excursionbaseanimationtime do
self.timer2 = self.timer2 - excursionbaseanimationtime
if self.reverse == 1 then
self.quad = self.quad + 1
if self.quad > 8 then
self.quad = 1
end
else
self.quad = self.quad - 1
if self.quad < 1 then
self.quad = 8
end
end
end
local x, y, width, height
for i, v in pairs(self.funneltable) do
if v.dir == "right" then
x = v.x-1
y = v.y-1
width = v.rangex
height = 2
elseif v.dir == "left" then
x = v.x+v.rangex
y = v.y-1
width = -v.rangex
height = 2
elseif v.dir == "up" then
x = v.x-1
y = v.y+v.rangey
width = 2
height = -v.rangey
else
x = v.x-1
y = v.y-1
width = 2
height = v.rangey
end
if v.dir == "right" or v.dir == "left" then
if v.timer < math.abs(v.rangex) then
v.timer = v.timer + dt*funnelbuildupspeed
if v.timer > math.abs(v.rangex) then
v.timer = math.abs(v.rangex)
end
end
else
if v.timer < math.abs(v.rangey) then
v.timer = v.timer + dt*funnelbuildupspeed
if v.timer > math.abs(v.rangey) then
v.timer = math.abs(v.rangey)
end
end
end
local rectcol = checkrect(x, y, width, height, self.objtable)
for i = 1, #rectcol, 2 do
local w = objects[rectcol[i]][rectcol[i+1]]
if not w.ignorefunnels then
w.speedx = 0
w.speedy = 0
if v.dir == "right" then
w.speedx = self.speed*self.reverse
local diff = (w.y+w.height/2)-y-1
w.speedy = -diff*funnelforce
if rectcol[i] == "player" and w.controlsenabled then
if downkey(rectcol[i+1]) then
w.speedy = funnelmovespeed
elseif upkey(rectcol[i+1]) then
w.speedy = w.speedy-funnelmovespeed
end
end
elseif v.dir == "left" then
w.speedx = -self.speed*self.reverse
local diff = (w.y+w.height/2)-y-1
w.speedy = -diff*funnelforce
if rectcol[i] == "player" and w.controlsenabled then
if downkey(rectcol[i+1]) then
w.speedy = funnelmovespeed
elseif upkey(rectcol[i+1]) then
w.speedy = w.speedy-funnelmovespeed
end
end
elseif v.dir == "up" then
w.speedy = -self.speed*self.reverse
local diff = (w.x+w.width/2)-x-1
w.speedx = -diff*funnelforce
if rectcol[i] == "player" and w.controlsenabled then
if leftkey(rectcol[i+1]) then
w.speedx = -funnelmovespeed
elseif rightkey(rectcol[i+1]) then
w.speedx = funnelmovespeed
end
end
else
w.speedy = self.speed*self.reverse
local diff = (w.x+w.width/2)-x-1
w.speedx = -diff*funnelforce
if rectcol[i] == "player" and w.controlsenabled then
if leftkey(rectcol[i+1]) then
w.speedx = -funnelmovespeed
elseif rightkey(rectcol[i+1]) then
w.speedx = funnelmovespeed
end
end
end
w.funnel = true
w.gravity = 0
--w.gravitydirection = math.pi/2
if w.dofunnel then
w:dofunnel()
end
end
end
end
end
end
function funnel:draw()
love.graphics.setColor(255, 255, 255)
if self.power then
local img
if self.reverse == 1 then
img = funnel1img
endimg = funnelend1img
else
img = funnel2img
endimg = funnelend2img
end
for i, v in pairs(self.funneltable) do
if v.dir == "right" then
local progress = v.timer/v.rangex
if self.reverse == 1 then
love.graphics.setScissor((v.x-xscroll-1)*16*scale, (v.y-yscroll-1.5)*16*scale, v.rangex*progress*16*scale, 2*16*scale)
else
love.graphics.setScissor((v.x-xscroll-1+(v.rangex*(1-progress)))*16*scale, (v.y-yscroll-1.5)*16*scale, v.rangex*progress*16*scale, 2*16*scale)
end
local x
for j = 0, math.ceil(v.rangex/2)+1 do
x = math.floor((v.x-xscroll-1+(j-1)*2+self.timer/self.animationtime*2*self.reverse)*16*scale)
love.graphics.draw(img, x, math.floor((v.y-yscroll-1.5)*16*scale), 0, scale, scale)
end
love.graphics.draw(endimg, math.floor((v.x-xscroll+v.rangex-1.5)*16*scale), math.floor((v.y-yscroll-1)*16*scale), 0, scale, scale, 8, 8)
love.graphics.setScissor()
elseif v.dir == "left" then
local progress = v.timer/-v.rangex
if self.reverse == 1 then
love.graphics.setScissor((v.x+v.rangex-xscroll-v.rangex*(1-progress))*16*scale, (v.y-yscroll-1.5)*16*scale, -v.rangex*progress*16*scale, 2*16*scale)
else
love.graphics.setScissor((v.x+v.rangex-xscroll)*16*scale, (v.y-yscroll-1.5)*16*scale, -v.rangex*progress*16*scale, 2*16*scale)
end
for j = 0, math.ceil(-v.rangex/2)+1 do
local x = math.floor((v.x+v.rangex-xscroll+(j-1)*2-self.timer/self.animationtime*2*self.reverse)*16*scale)
love.graphics.draw(img, x, math.floor((v.y-yscroll-1.5)*16*scale), 0, scale, scale)
end
love.graphics.draw(endimg, math.floor((v.x-xscroll+v.rangex+.5)*16*scale), math.floor((v.y-yscroll)*16*scale), math.pi, scale, scale, 8, 8)
love.graphics.setScissor()
elseif v.dir == "up" then
local progress = v.timer/-v.rangey
if self.reverse == 1 then
love.graphics.setScissor((v.x-xscroll-1)*16*scale, (v.y+v.rangey-yscroll-.5-v.rangey*(1-progress))*16*scale, 2*16*scale, -v.rangey*progress*16*scale)
else
love.graphics.setScissor((v.x-xscroll-1)*16*scale, (v.y+v.rangey-yscroll-.5)*16*scale, 2*16*scale, -v.rangey*progress*16*scale)
end
for j = 0, math.ceil(-v.rangey/2)+1 do
local y = math.floor((v.y+v.rangey-yscroll-.5+(j-1)*2-self.timer/self.animationtime*2*self.reverse)*16*scale)
love.graphics.draw(img, math.floor((v.x-xscroll+1)*16*scale), y, math.pi/2, scale, scale)
end
love.graphics.draw(endimg, math.floor((v.x-xscroll-.5)*16*scale), math.floor((v.y-yscroll+v.rangey)*16*scale), -math.pi/2, scale, scale, 8, 8)
love.graphics.setScissor()
else
local progress = v.timer/v.rangey
if self.reverse == 1 then
love.graphics.setScissor((v.x-xscroll-1)*16*scale, (v.y-yscroll-1.5)*16*scale, 2*16*scale, v.rangey*progress*16*scale)
else
love.graphics.setScissor((v.x-xscroll-1)*16*scale, (v.y-yscroll-1.5+v.rangey*(1-progress))*16*scale, 2*16*scale, v.rangey*progress*16*scale)
end
for j = 0, math.ceil(v.rangey/2)+1 do
local y = math.floor((v.y-yscroll-1.5+(j-1)*2+self.timer/self.animationtime*2*self.reverse)*16*scale)
love.graphics.draw(img, math.floor((v.x-xscroll+1)*16*scale), y, math.pi/2, scale, scale)
end
love.graphics.draw(endimg, math.floor((v.x-xscroll+.5)*16*scale), math.floor((v.y-yscroll+v.rangey-2)*16*scale), math.pi/2, scale, scale, 8, 8)
love.graphics.setScissor()
end
end
end
love.graphics.setColor(255, 255, 255)
if self.dir == "right" then
love.graphics.draw(funnelbaseimg, excursionquad[self.quad], math.floor((self.cox-xscroll-1)*16*scale), math.floor((self.coy-yscroll-1.5)*16*scale), 0, scale, scale)
elseif self.dir == "left" then
love.graphics.draw(funnelbaseimg, excursionquad[self.quad], math.floor((self.cox-xscroll)*16*scale), math.floor((self.coy-yscroll+.5)*16*scale), math.pi, scale, scale)
elseif self.dir == "up" then
love.graphics.draw(funnelbaseimg, excursionquad[self.quad], math.floor((self.cox-xscroll-1)*16*scale), math.floor((self.coy-yscroll-.5)*16*scale), -math.pi/2, scale, scale)
elseif self.dir == "down" then
love.graphics.draw(funnelbaseimg, excursionquad[self.quad], math.floor((self.cox-xscroll+1)*16*scale), math.floor((self.coy-yscroll-1.5)*16*scale), math.pi/2, scale, scale)
end
end
function funnel:updaterange()
self.funneltable = {}
local dir = self.dir
local startx, starty = self.cox, self.coy
local rangex, rangey = 0, 0
local x, y = self.cox, self.coy
local firstcheck = true
local quit = false
local collision = false
while x >= 1 and x <= mapwidth and y >= 1 and y <= mapheight and not collision and (x ~= startx or y ~= starty or dir ~= self.dir or firstcheck == true) and quit == false do
firstcheck = false
if dir == "right" then
x = x + 1
rangex = rangex + 1
elseif dir == "left" then
x = x - 1
rangex = rangex - 1
elseif dir == "up" then
y = y - 1
rangey = rangey - 1
elseif dir == "down" then
y = y + 1
rangey = rangey + 1
end
--check if current block is a portal
local opp = "left"
if dir == "left" then
opp = "right"
elseif dir == "up" then
opp = "down"
elseif dir == "down" then
opp = "up"
end
local portalx, portaly, portalfacing, infacing, portalrealx, portalrealy, portal2realx, portal2realy = getPortal(x, y, opp)
if portalx ~= false and ((dir == "left" and infacing == "right") or (dir == "right" and infacing == "left") or (dir == "up" and infacing == "down") or (dir == "down" and infacing == "up")) then
--check if complete entry
local pass = true
if dir == "right" then
if y ~= portal2realy-1 then
pass = false
end
elseif dir == "left" then
if y ~= portal2realy then
pass = false
end
elseif dir == "up" then
if x ~= portal2realx-1 then
pass = false
end
elseif dir == "down" then
if x ~= portal2realx then
pass = false
end
end
if pass then
local dummy = {dir=dir, x=x-rangex, y=y-rangey, rangex=rangex, rangey=rangey, timer=0}
table.insert(self.funneltable, dummy)
x, y = portalrealx, portalrealy
dir = portalfacing
if dir == "down" then
x = x-1
elseif dir == "left" then
y = y-1
end
rangex, rangey = 0, 0
if dir == "right" then
x = portalx + 1
elseif dir == "left" then
x = portalx - 1
rangex = 0
elseif dir == "up" then
y = portaly - 1
elseif dir == "down" then
y = portaly + 1
end
end
end
--doors
for i, v in pairs(objects["door"]) do
if v.active then
local secondx, secondy = x, y
if dir == "right" then
secondy = secondy + 1
elseif dir == "left" then
secondy = secondy + 1
elseif dir == "up" then
secondx = secondx + 1
elseif dir == "down" then
secondx = secondx + 1
end
if v.dir == "ver" then
if (x == v.cox or secondx == v.cox) and ((y == v.coy or y == v.coy-1) or (secondy == v.coy or secondy == v.coy-1)) then
quit = true
end
elseif v.dir == "hor" then
if (y == v.coy or secondy == v.coy) and ((x == v.cox or x == v.cox+1) or (secondx == v.cox or secondx == v.cox+1)) then
quit = true
end
end
end
end
--get collision for next while
if dir == "up" or dir == "down" then
if not inmap(x+1, y) or (tilequads[map[x][y][1]]:getproperty("collision", x, y) and tilequads[map[x][y][1]]:getproperty("grate", x, y) == false) or
(tilequads[map[x+1][y][1]]:getproperty("collision", x+1, y) and tilequads[map[x+1][y][1]]:getproperty("grate", x+1, y) == false) then
collision = true
end
else
if not inmap(x, y+1) or (tilequads[map[x][y][1]]:getproperty("collision", x, y) and tilequads[map[x][y][1]]:getproperty("grate", x, y) == false) or
(tilequads[map[x][y+1][1]]:getproperty("collision", x, y+1) and tilequads[map[x][y+1][1]]:getproperty("grate", x, y+1) == false) then
collision = true
end
end
end
if rangex ~= 0 or rangey ~= 0 then
local dummy = {dir=dir, x=x-rangex, y=y-rangey, rangex=rangex, rangey=rangey, timer=0}
table.insert(self.funneltable, dummy)
if not self.lastblock or (self.lastblock[1] == x+rangex and self.lastblock[2] == y+rangey) then
for i, v in pairs(self.funneltable) do
v.timer = math.abs(v.rangex)+math.abs(v.rangey)
end
end
self.lastblock = {x+rangex, y+rangey}
end
end
function funnel:input(t, input)
if input == "power" then
if t == "on" and self.input2state == "off" then
self.power = not self.power
elseif t == "off" and self.input2state == "on" then
self.power = not self.power
elseif t == "toggle" then
self.power = not self.power
end
self.input2state = t
else--if input == "reverse" then
if t == "on" and self.input1state == "off" then
self.reverse = -self.reverse
elseif t == "off" and self.input1state == "on" then
self.reverse = -self.reverse
elseif t == "toggle" then
self.reverse = -self.reverse
end
self.input1state = t
for i, v in pairs(self.funneltable) do
v.timer = 0
end
end
end