2021-10-25 23:19:22 +00:00
|
|
|
Lights = {}
|
|
|
|
LightTimer = 0
|
|
|
|
|
|
|
|
function CreateDarkness()
|
2021-10-25 23:23:57 +00:00
|
|
|
return love.graphics.newCanvas(game.width, game.height)
|
2021-10-25 23:19:22 +00:00
|
|
|
end
|
|
|
|
|
2021-11-28 02:38:30 +00:00
|
|
|
function CreateLight(x,y,range,lum,flicker)
|
2021-10-25 23:19:22 +00:00
|
|
|
local o = {}
|
|
|
|
o.pos = {
|
|
|
|
x = x,
|
|
|
|
y = y
|
|
|
|
}
|
|
|
|
o.range = range
|
2021-11-28 02:38:30 +00:00
|
|
|
o.lum = lum or 1
|
|
|
|
o.flicker_value = flicker or 1
|
2021-10-25 23:19:22 +00:00
|
|
|
o.flicker = 0
|
2021-10-27 09:06:08 +00:00
|
|
|
o.dim = 0
|
2021-11-28 02:38:30 +00:00
|
|
|
o.flicker_speed = flicker_speed or 10
|
|
|
|
o.flicker_time = 0
|
2021-10-25 23:19:22 +00:00
|
|
|
table.insert(Lights,o)
|
|
|
|
return o
|
|
|
|
end
|
|
|
|
|
2021-10-27 09:06:08 +00:00
|
|
|
function SetDarkness()
|
|
|
|
love.graphics.setColor(0,0,0,1)
|
|
|
|
love.graphics.rectangle("fill",0,0,game.width,game.height)
|
|
|
|
end
|
|
|
|
|
2021-10-25 23:19:22 +00:00
|
|
|
function DoLights()
|
2021-10-27 09:06:08 +00:00
|
|
|
|
2021-11-28 02:38:30 +00:00
|
|
|
for _, light in pairs(Lights) do
|
|
|
|
light.flicker_time = light.flicker_time + 1
|
|
|
|
|
|
|
|
if light.flicker_time >= light.flicker_speed then
|
|
|
|
light.flicker_time = light.flicker_time - light.flicker_speed
|
|
|
|
light.flicker = 0 + math.random(-1,1)
|
|
|
|
light.flicker = math.min(math.max(light.flicker, -light.flicker_value),light.flicker_value)
|
2021-10-27 09:06:08 +00:00
|
|
|
end
|
2021-10-25 23:19:22 +00:00
|
|
|
end
|
2021-11-28 02:38:30 +00:00
|
|
|
--[[
|
2021-10-25 23:19:22 +00:00
|
|
|
-- first, border
|
|
|
|
love.graphics.setColor(1,1,1)
|
|
|
|
for _, light in pairs(Lights) do
|
2021-10-27 09:06:08 +00:00
|
|
|
|
2021-11-28 02:38:30 +00:00
|
|
|
love.graphics.circle(
|
|
|
|
"fill",
|
|
|
|
light.pos.x - Camera.pos.x,
|
|
|
|
light.pos.y - Camera.pos.y,
|
|
|
|
light.range + light.flicker + 1
|
|
|
|
)
|
2021-10-27 09:06:08 +00:00
|
|
|
end
|
2021-11-28 02:38:30 +00:00
|
|
|
]]
|
|
|
|
love.graphics.setBlendMode("replace")
|
2021-10-27 09:06:08 +00:00
|
|
|
for _, enty in pairs(LoadedEntities) do
|
|
|
|
end
|
2021-11-28 02:38:30 +00:00
|
|
|
|
|
|
|
local shades = 200
|
|
|
|
for i=1, shades do
|
|
|
|
for _, light in pairs(Lights) do
|
|
|
|
local luminosity = shades*light.lum/100
|
|
|
|
love.graphics.setColor(0,0,0,math.min(1,math.max(0,(shades-i-luminosity+1)/(shades-luminosity+1))))
|
|
|
|
love.graphics.circle(
|
|
|
|
"fill",
|
|
|
|
light.pos.x - Camera.pos.x,
|
|
|
|
light.pos.y - Camera.pos.y,
|
|
|
|
(light.range + light.flicker)*(shades-i+1)/shades
|
|
|
|
)
|
|
|
|
end
|
2021-10-25 23:19:22 +00:00
|
|
|
end
|
|
|
|
love.graphics.setBlendMode("alpha")
|
|
|
|
end
|
|
|
|
|
|
|
|
function DoBorder()
|
|
|
|
end
|
|
|
|
|
|
|
|
function DrawDarkness()
|
2021-10-25 23:23:57 +00:00
|
|
|
love.graphics.draw(Canvas.Darkness, 0, 0, 0, 0.5, 0.5)
|
2021-10-27 09:06:08 +00:00
|
|
|
end
|