forked from Stabyourself/mari0
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lakito.lua
176 lines (149 loc) · 3.89 KB
/
lakito.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
lakito = class:new()
function lakito:init(x, y)
--PHYSICS STUFF
self.starty = y
self.x = x-1+2/16
self.y = y-12/16
self.speedx = 0 --!
self.speedy = 0
self.width = 12/16
self.height = 12/16
self.static = false
self.active = true
self.mask = { true,
true, false, false, true, true,
true, true, true, true, true,
true, false, true, true, true,
true, true, true, true, true,
true, true, true, true, true,
true, true, true, true, true}
self.gravity = 0
self.portalable = false
self.passive = false
self.category = 21
--IMAGE STUFF
self.drawable = false
self.direction = "left"
self.rotation = 0
self.timer = 0
end
function lakito:update(dt)
if self.shot then
self.speedy = self.speedy + shotgravity*dt
self.x = self.x+self.speedx*dt
self.y = self.y+self.speedy*dt
if self.passive == false then
self.timer = self.timer + dt
if self.timer > lakitorespawn then
self.y = self.starty - 12/16
self.x = splitxscroll[#splitxscroll] + width
self.timer = 0
self.shot = false
self.active = true
self.gravity = 0
self.speedy = 0
self.speedx = 0
end
end
elseif self.passive then
self.speedx = -lakitopassivespeed
else
local count = 0
for i, v in pairs(objects["goomba"]) do
if v.t == "spikeyfall" or v.t == "spikey" then
count = count + 1
end
end
self.timer = self.timer + dt
if count < 3 then
if self.timer > lakitothrowtime then
table.insert(objects["goomba"], goomba:new(self.x+6/16, self.y, "spikeyfall"))
self.timer = 0
end
end
--movement
--get nearest player (relative to that player's position in 1 second)
local nearestplayer = 1
local nearestplayerx = objects["player"][1].x + objects["player"][1].speedx * lakitodistancetime
for i = 2, players do
local v = objects["player"][i]
if math.abs(self.x - (v.x + v.speedx*lakitodistancetime)) < nearestplayerx and not v.dead then
nearestplayer = i
nearestplayerx = v.x + v.speedx*lakitodistancetime
end
end
local distance = math.abs(self.x - nearestplayerx)
--check if too far in wrong direciton
if self.direction == "left" and self.x < nearestplayerx-lakitospace then
self.direction = "right"
elseif self.direction == "right" and self.x > nearestplayerx+lakitospace then
self.direction = "left"
end
if self.direction == "right" then
self.speedx = math.max(2, round((distance-3)*2))
else
self.speedx = -2
end
end
--check if switch to passive
if lakitoend then
self.passive = true
end
end
function lakito:draw()
local horscale = scale
if self.direction == "left" then
horscale = -scale
end
local verscale = scale
if self.shot then
verscale = -scale
end
local quad = 1
if self.timer > lakitothrowtime-lakitohidetime then
quad = 2
end
love.graphics.draw(lakitoimg, lakitoquad[quad], math.floor((self.x-xscroll-2/16+.5)*16*scale), (self.y-0.5+1/16)*16*scale, 0, horscale, verscale, 8, 12)
end
function lakito:stomp()
self:shotted()
self.speedy = 0
end
function lakito:shotted() --fireball, star, turtle
playsound(shotsound)
self.shot = true
self.speedy = -shotjumpforce
self.direction = dir or "right"
self.active = false
self.gravity = shotgravity
self.speedx = 0
self.timer = 0
end
function lakito:rightcollide(a, b)
if a == "goomba" and b.t == "spikeyfall" then
self:shotted()
addpoints(firepoints["lakito"], self.x, self.y)
end
return false
end
function lakito:leftcollide(a, b)
if a == "goomba" and b.t == "spikeyfall" then
self:shotted()
addpoints(firepoints["lakito"], self.x, self.y)
end
return false
end
function lakito:ceilcollide(a, b)
if a == "goomba" and b.t == "spikeyfall" then
self:shotted()
addpoints(firepoints["lakito"], self.x, self.y)
end
return false
end
function lakito:floorcollide(a, b)
if a == "goomba" and b.t == "spikeyfall" then
self:shotted()
addpoints(firepoints["lakito"], self.x, self.y)
end
return false
end