light_world.lua/light.lua

1434 lines
44 KiB
Lua
Raw Normal View History

2014-03-04 13:52:51 +00:00
LOVE_LIGHT_CURRENT = nil
LOVE_LIGHT_CIRCLE = nil
LOVE_LIGHT_POLY = nil
LOVE_LIGHT_IMAGE = nil
2014-03-23 18:10:58 +00:00
LOVE_LIGHT_BODY = nil
2014-03-04 13:52:51 +00:00
LOVE_LIGHT_LAST_BUFFER = nil
2014-03-09 03:22:45 +00:00
LOVE_LIGHT_SHADOW_GEOMETRY = nil
2014-03-04 13:52:51 +00:00
LOVE_LIGHT_BLURV = love.graphics.newShader("shader/blurv.glsl")
LOVE_LIGHT_BLURH = love.graphics.newShader("shader/blurh.glsl")
2014-03-17 03:32:42 +00:00
LOVE_LIGHT_BLURV:send("screen", {love.window.getWidth(), love.window.getHeight()})
LOVE_LIGHT_BLURH:send("screen", {love.window.getWidth(), love.window.getHeight()})
2014-03-04 13:52:51 +00:00
LOVE_LIGHT_TRANSLATE_X = 0
LOVE_LIGHT_TRANSLATE_Y = 0
LOVE_LIGHT_TRANSLATE_X_OLD = 0
LOVE_LIGHT_TRANSLATE_Y_OLD = 0
2014-03-16 00:12:18 +00:00
LOVE_LIGHT_DIRECTION = 0
2014-03-04 13:52:51 +00:00
love.light = {}
-- light world
function love.light.newWorld()
local o = {}
o.lights = {}
o.ambient = {0, 0, 0}
o.circle = {}
o.poly = {}
o.img = {}
2014-03-23 18:10:58 +00:00
o.body = {}
2014-03-16 21:01:14 +00:00
o.refraction = {}
2014-03-04 13:52:51 +00:00
o.shadow = love.graphics.newCanvas()
2014-03-06 15:56:25 +00:00
o.shadow2 = love.graphics.newCanvas()
2014-03-04 13:52:51 +00:00
o.shine = love.graphics.newCanvas()
2014-03-16 00:12:18 +00:00
o.shine2 = love.graphics.newCanvas()
2014-03-06 15:56:25 +00:00
o.normalMap = love.graphics.newCanvas()
o.glowMap = love.graphics.newCanvas()
o.glowMap2 = love.graphics.newCanvas()
2014-03-16 21:01:14 +00:00
o.refractionMap = love.graphics.newCanvas()
o.refractionMap2 = love.graphics.newCanvas()
2014-03-17 03:32:42 +00:00
o.reflectionMap = love.graphics.newCanvas()
o.reflectionMap2 = love.graphics.newCanvas()
2014-03-09 17:33:34 +00:00
o.glowBlur = 1.0
2014-03-06 15:56:25 +00:00
o.isGlowBlur = false
o.glowTimer = 0.0
o.glowDown = false
2014-03-16 21:01:14 +00:00
o.refractionStrength = 8.0
o.pixelShadow = love.graphics.newCanvas()
o.pixelShadow2 = love.graphics.newCanvas()
o.shader = love.graphics.newShader("shader/poly_shadow.glsl")
o.glowShader = love.graphics.newShader("shader/glow.glsl")
o.normalShader = love.graphics.newShader("shader/normal.glsl")
2014-03-16 21:01:14 +00:00
o.refractionShader = love.graphics.newShader("shader/refraction.glsl")
2014-03-17 03:32:42 +00:00
o.refractionShader:send("screen", {love.window.getWidth(), love.window.getHeight()})
o.reflectionShader = love.graphics.newShader("shader/reflection.glsl")
o.reflectionShader:send("screen", {love.window.getWidth(), love.window.getHeight()})
o.reflectionStrength = 16.0
o.reflectionVisibility = 1.0
2014-03-04 13:52:51 +00:00
o.changed = true
2014-03-06 15:56:25 +00:00
o.blur = 2.0
2014-03-04 13:52:51 +00:00
-- update
o.update = function()
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
love.graphics.setShader(o.shader)
if LOVE_LIGHT_TRANSLATE_X ~= LOVE_LIGHT_TRANSLATE_X_OLD or LOVE_LIGHT_TRANSLATE_Y ~= LOVE_LIGHT_TRANSLATE_Y_OLD then
LOVE_LIGHT_TRANSLATE_X_OLD = LOVE_LIGHT_TRANSLATE_X
LOVE_LIGHT_TRANSLATE_Y_OLD = LOVE_LIGHT_TRANSLATE_Y
o.changed = true
end
2014-03-23 18:10:58 +00:00
love.graphics.setColor(255, 255, 255)
love.graphics.setBlendMode("alpha")
2014-03-04 13:52:51 +00:00
local lightsOnScreen = 0
LOVE_LIGHT_CIRCLE = o.circle
LOVE_LIGHT_POLY = o.poly
LOVE_LIGHT_IMAGE = o.img
2014-03-23 18:10:58 +00:00
LOVE_LIGHT_BODY = o.body
2014-03-04 13:52:51 +00:00
for i = 1, #o.lights do
if o.lights[i].changed or o.changed then
if o.lights[i].x + o.lights[i].range > LOVE_LIGHT_TRANSLATE_X and o.lights[i].x - o.lights[i].range < love.graphics.getWidth() + LOVE_LIGHT_TRANSLATE_X
and o.lights[i].y + o.lights[i].range > LOVE_LIGHT_TRANSLATE_Y and o.lights[i].y - o.lights[i].range < love.graphics.getHeight() + LOVE_LIGHT_TRANSLATE_Y
2014-03-04 13:52:51 +00:00
then
local lightposrange = {o.lights[i].x, love.graphics.getHeight() - o.lights[i].y, o.lights[i].range}
2014-03-04 13:52:51 +00:00
LOVE_LIGHT_CURRENT = o.lights[i]
2014-03-16 00:12:18 +00:00
LOVE_LIGHT_DIRECTION = LOVE_LIGHT_DIRECTION + 0.002
o.shader:send("lightPosition", {o.lights[i].x - LOVE_LIGHT_TRANSLATE_X, love.graphics.getHeight() - (o.lights[i].y - LOVE_LIGHT_TRANSLATE_Y)})
o.shader:send("lightRange", o.lights[i].range)
o.shader:send("lightColor", {o.lights[i].red / 255.0, o.lights[i].green / 255.0, o.lights[i].blue / 255.0})
2014-03-09 03:22:45 +00:00
o.shader:send("lightSmooth", o.lights[i].smooth)
o.shader:send("lightGlow", {1.0 - o.lights[i].glowSize, o.lights[i].glowStrength})
2014-03-16 00:12:18 +00:00
o.shader:send("lightAngle", math.pi - o.lights[i].angle / 2.0)
o.shader:send("lightDirection", o.lights[i].direction)
2014-03-04 13:52:51 +00:00
2014-03-23 18:10:58 +00:00
love.graphics.setCanvas(o.lights[i].shadow)
love.graphics.clear()
2014-03-09 03:22:45 +00:00
-- calculate shadows
2014-03-23 18:10:58 +00:00
LOVE_LIGHT_SHADOW_GEOMETRY = calculateShadows(LOVE_LIGHT_CURRENT, LOVE_LIGHT_BODY)
2014-03-04 13:52:51 +00:00
-- draw shadow
love.graphics.setInvertedStencil(shadowStencil)
love.graphics.setBlendMode("additive")
love.graphics.rectangle("fill", LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y, love.graphics.getWidth(), love.graphics.getHeight())
2014-03-04 13:52:51 +00:00
2014-03-09 03:22:45 +00:00
-- draw color shadows
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
2014-03-23 18:10:58 +00:00
for k = 1,#LOVE_LIGHT_SHADOW_GEOMETRY do
if LOVE_LIGHT_SHADOW_GEOMETRY[k].alpha < 1.0 then
2014-03-09 03:22:45 +00:00
love.graphics.setColor(
2014-03-23 18:10:58 +00:00
LOVE_LIGHT_SHADOW_GEOMETRY[k].red * (1.0 - LOVE_LIGHT_SHADOW_GEOMETRY[k].alpha),
LOVE_LIGHT_SHADOW_GEOMETRY[k].green * (1.0 - LOVE_LIGHT_SHADOW_GEOMETRY[k].alpha),
LOVE_LIGHT_SHADOW_GEOMETRY[k].blue * (1.0 - LOVE_LIGHT_SHADOW_GEOMETRY[k].alpha)
2014-03-09 03:22:45 +00:00
)
2014-03-23 18:10:58 +00:00
love.graphics.polygon("fill", unpack(LOVE_LIGHT_SHADOW_GEOMETRY[k]))
2014-03-09 03:22:45 +00:00
end
end
2014-03-23 18:10:58 +00:00
for k = 1, #LOVE_LIGHT_BODY do
if LOVE_LIGHT_BODY[k].alpha < 1.0 then
love.graphics.setBlendMode("multiplicative")
love.graphics.setColor(LOVE_LIGHT_BODY[k].red, LOVE_LIGHT_BODY[k].green, LOVE_LIGHT_BODY[k].blue)
if LOVE_LIGHT_BODY[k].shadowType == "circle" then
love.graphics.circle("fill", LOVE_LIGHT_BODY[k].x - LOVE_LIGHT_BODY[k].ox, LOVE_LIGHT_BODY[k].y - LOVE_LIGHT_BODY[k].oy, LOVE_LIGHT_BODY[k].radius)
elseif LOVE_LIGHT_BODY[k].shadowType == "rectangle" then
love.graphics.rectangle("fill", LOVE_LIGHT_BODY[k].x - LOVE_LIGHT_BODY[k].ox, LOVE_LIGHT_BODY[k].y - LOVE_LIGHT_BODY[k].oy, LOVE_LIGHT_BODY[k].width, LOVE_LIGHT_BODY[k].height)
elseif LOVE_LIGHT_BODY[k].shadowType == "polygon" then
love.graphics.polygon("fill", unpack(LOVE_LIGHT_BODY[k].data))
end
2014-03-09 03:22:45 +00:00
end
2014-03-23 18:10:58 +00:00
if LOVE_LIGHT_BODY[k].shadowType == "image" and LOVE_LIGHT_BODY[k].img then
love.graphics.setBlendMode("alpha")
local length = 1.0
local shadowRotation = math.atan2((LOVE_LIGHT_BODY[k].x) - o.lights[i].x, (LOVE_LIGHT_BODY[k].y + LOVE_LIGHT_BODY[k].oy) - o.lights[i].y)
--local alpha = math.abs(math.cos(shadowRotation))
LOVE_LIGHT_BODY[k].shadowVert = {
{math.sin(shadowRotation) * LOVE_LIGHT_BODY[k].imgHeight * length, (length * math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].imgHeight + (math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].shadowY, 0, 0, LOVE_LIGHT_BODY[k].red, LOVE_LIGHT_BODY[k].green, LOVE_LIGHT_BODY[k].blue, LOVE_LIGHT_BODY[k].alpha * LOVE_LIGHT_BODY[k].fadeStrength * 255},
{LOVE_LIGHT_BODY[k].imgWidth + math.sin(shadowRotation) * LOVE_LIGHT_BODY[k].imgHeight * length, (length * math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].imgHeight + (math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].shadowY, 1, 0, LOVE_LIGHT_BODY[k].red, LOVE_LIGHT_BODY[k].green, LOVE_LIGHT_BODY[k].blue, LOVE_LIGHT_BODY[k].alpha * LOVE_LIGHT_BODY[k].fadeStrength * 255},
{LOVE_LIGHT_BODY[k].imgWidth, LOVE_LIGHT_BODY[k].imgHeight + (math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].shadowY, 1, 1, LOVE_LIGHT_BODY[k].red, LOVE_LIGHT_BODY[k].green, LOVE_LIGHT_BODY[k].blue, LOVE_LIGHT_BODY[k].alpha * 255},
{0, LOVE_LIGHT_BODY[k].imgHeight + (math.cos(shadowRotation) + 1.0) * LOVE_LIGHT_BODY[k].shadowY, 0, 1, LOVE_LIGHT_BODY[k].red, LOVE_LIGHT_BODY[k].green, LOVE_LIGHT_BODY[k].blue, LOVE_LIGHT_BODY[k].alpha * 255}
}
LOVE_LIGHT_BODY[k].shadowMesh:setVertices(LOVE_LIGHT_BODY[k].shadowVert)
love.graphics.draw(LOVE_LIGHT_BODY[k].shadowMesh, LOVE_LIGHT_BODY[k].x - LOVE_LIGHT_BODY[k].ox + LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_BODY[k].y - LOVE_LIGHT_BODY[k].oy + LOVE_LIGHT_TRANSLATE_Y)
2014-03-09 03:22:45 +00:00
end
end
love.graphics.setShader(o.shader)
2014-03-04 13:52:51 +00:00
-- draw shine
love.graphics.setCanvas(o.lights[i].shine)
o.lights[i].shine:clear(255, 255, 255)
love.graphics.setBlendMode("alpha")
love.graphics.setStencil(polyStencil)
love.graphics.rectangle("fill", LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y, love.graphics.getWidth(), love.graphics.getHeight())
2014-03-04 13:52:51 +00:00
lightsOnScreen = lightsOnScreen + 1
2014-03-06 15:56:25 +00:00
o.lights[i].visible = true
else
o.lights[i].visible = false
2014-03-04 13:52:51 +00:00
end
o.lights[i].changed = o.changed
end
end
-- update shadow
2014-03-04 13:52:51 +00:00
love.graphics.setShader()
2014-03-23 18:10:58 +00:00
love.graphics.setCanvas(o.shadow)
love.graphics.setStencil()
love.graphics.setColor(unpack(o.ambient))
love.graphics.setBlendMode("alpha")
love.graphics.rectangle("fill", LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y, love.graphics.getWidth(), love.graphics.getHeight())
love.graphics.setColor(255, 255, 255)
love.graphics.setBlendMode("additive")
for i = 1, #o.lights do
if o.lights[i].visible then
love.graphics.draw(o.lights[i].shadow, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-04 13:52:51 +00:00
end
2014-03-23 18:10:58 +00:00
end
o.isShadowBlur = false
2014-03-04 13:52:51 +00:00
-- update shine
2014-03-04 13:52:51 +00:00
love.graphics.setCanvas(o.shine)
love.graphics.setColor(unpack(o.ambient))
2014-03-04 13:52:51 +00:00
love.graphics.setBlendMode("alpha")
love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth(), love.graphics.getHeight())
2014-03-06 15:56:25 +00:00
love.graphics.setColor(255, 255, 255)
2014-03-04 13:52:51 +00:00
love.graphics.setBlendMode("additive")
for i = 1, #o.lights do
2014-03-06 15:56:25 +00:00
if o.lights[i].visible then
love.graphics.draw(o.lights[i].shine, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
end
2014-03-04 13:52:51 +00:00
end
2014-03-06 15:56:25 +00:00
-- update pixel shadow
love.graphics.setBlendMode("alpha")
2014-03-06 15:56:25 +00:00
-- create normal map
2014-03-23 18:10:58 +00:00
o.normalMap:clear()
love.graphics.setShader()
love.graphics.setCanvas(o.normalMap)
for i = 1, #o.body do
if o.body[i].type == "image" and o.body[i].normal then
love.graphics.setColor(255, 255, 255)
love.graphics.draw(o.body[i].normal, o.body[i].x - o.body[i].nx + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].ny + LOVE_LIGHT_TRANSLATE_Y)
end
end
2014-03-23 18:10:58 +00:00
love.graphics.setColor(255, 255, 255)
love.graphics.setBlendMode("alpha")
o.pixelShadow2:clear()
love.graphics.setCanvas(o.pixelShadow2)
love.graphics.setBlendMode("additive")
love.graphics.setShader(o.shader2)
for i = 1, #o.lights do
2014-03-06 15:56:25 +00:00
if o.lights[i].visible then
o.normalShader:send('screenResolution', {love.graphics.getWidth(), love.graphics.getHeight()})
o.normalShader:send('lightColor', {o.lights[i].red / 255.0, o.lights[i].green / 255.0, o.lights[i].blue / 255.0})
o.normalShader:send('lightPosition',{o.lights[i].x, love.graphics.getHeight() - o.lights[i].y, o.lights[i].z / 255.0})
o.normalShader:send('lightRange',{o.lights[i].range})
o.normalShader:send("lightSmooth", o.lights[i].smooth)
2014-03-16 00:12:18 +00:00
o.normalShader:send("lightAngle", math.pi - o.lights[i].angle / 2.0)
o.normalShader:send("lightDirection", o.lights[i].direction)
love.graphics.setShader(o.normalShader)
love.graphics.draw(o.normalMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
end
end
love.graphics.setShader()
o.pixelShadow:clear(255, 255, 255)
love.graphics.setCanvas(o.pixelShadow)
love.graphics.setBlendMode("alpha")
love.graphics.draw(o.pixelShadow2, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setBlendMode("additive")
love.graphics.setColor({o.ambient[1], o.ambient[2], o.ambient[3]})
2014-03-10 11:00:06 +00:00
love.graphics.rectangle("fill", LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y, love.graphics.getWidth(), love.graphics.getHeight())
love.graphics.setBlendMode("alpha")
2014-03-06 15:56:25 +00:00
-- create glow map
2014-03-23 18:10:58 +00:00
o.glowMap:clear(0, 0, 0)
love.graphics.setCanvas(o.glowMap)
if o.glowDown then
o.glowTimer = math.max(0.0, o.glowTimer - love.timer.getDelta())
if o.glowTimer == 0.0 then
o.glowDown = not o.glowDown
2014-03-09 17:33:34 +00:00
end
2014-03-23 18:10:58 +00:00
else
o.glowTimer = math.min(o.glowTimer + love.timer.getDelta(), 1.0)
if o.glowTimer == 1.0 then
o.glowDown = not o.glowDown
2014-03-09 17:33:34 +00:00
end
2014-03-23 18:10:58 +00:00
end
2014-03-23 18:10:58 +00:00
for i = 1, #o.body do
if o.body[i].glowStrength > 0.0 then
love.graphics.setColor(o.body[i].glowRed * o.body[i].glowStrength, o.body[i].glowGreen * o.body[i].glowStrength, o.body[i].glowBlue * o.body[i].glowStrength)
else
2014-03-23 18:10:58 +00:00
love.graphics.setColor(0, 0, 0)
end
2014-03-23 18:10:58 +00:00
if o.body[i].type == "circle" then
love.graphics.circle("fill", o.body[i].x, o.body[i].y, o.body[i].radius)
elseif o.body[i].type == "rectangle" then
love.graphics.rectangle("fill", o.body[i].x, o.body[i].y, o.body[i].width, o.body[i].height)
elseif o.body[i].type == "polygon" then
love.graphics.polygon("fill", unpack(o.body[i].data))
elseif o.body[i].type == "image" and o.body[i].img then
if o.body[i].glowStrength > 0.0 and o.body[i].glow then
love.graphics.setShader(o.glowShader)
2014-03-23 18:10:58 +00:00
o.glowShader:send("glowImage", o.body[i].glow)
o.glowShader:send("glowTime", love.timer.getTime())
love.graphics.setColor(255, 255, 255)
else
love.graphics.setShader()
love.graphics.setColor(0, 0, 0)
2014-03-06 15:56:25 +00:00
end
2014-03-23 18:10:58 +00:00
love.graphics.draw(o.body[i].img, o.body[i].x - o.body[i].ix + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].iy + LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
end
2014-03-23 18:10:58 +00:00
end
love.graphics.setShader()
o.isGlowBlur = false
2014-03-06 15:56:25 +00:00
2014-03-16 21:01:14 +00:00
-- create refraction map
2014-03-23 18:10:58 +00:00
o.refractionMap:clear()
love.graphics.setCanvas(o.refractionMap)
for i = 1, #o.body do
if o.body[i].refraction and o.body[i].normal then
love.graphics.setColor(255, 255, 255)
if o.body[i].tileX == 0.0 and o.body[i].tileY == 0.0 then
love.graphics.draw(normal, o.body[i].x - o.body[i].nx + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].ny + LOVE_LIGHT_TRANSLATE_Y)
2014-03-16 21:01:14 +00:00
else
2014-03-23 18:10:58 +00:00
o.body[i].normalMesh:setVertices(o.body[i].normalVert)
love.graphics.draw(o.body[i].normalMesh, o.body[i].x - o.body[i].nx + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].ny + LOVE_LIGHT_TRANSLATE_Y)
2014-03-16 21:01:14 +00:00
end
end
2014-03-23 18:10:58 +00:00
end
love.graphics.setBlendMode("replace")
love.graphics.setColor(0, 0, 0, 0)
for i = 1, #o.body do
if not o.body[i].refractive then
if o.body[i].type == "circle" then
love.graphics.circle("fill", o.body[i].x, o.body[i].y, o.body[i].radius)
elseif o.body[i].type == "rectangle" then
love.graphics.rectangle("fill", o.body[i].x, o.body[i].y, o.body[i].width, o.body[i].height)
elseif o.body[i].type == "polygon" then
love.graphics.polygon("fill", unpack(o.body[i].data))
elseif o.body[i].type == "image" and o.body[i].img then
love.graphics.draw(o.body[i].img, o.body[i].x - o.body[i].ix + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].iy + LOVE_LIGHT_TRANSLATE_Y)
2014-03-17 03:32:42 +00:00
end
end
end
-- create reflection map
2014-03-23 18:10:58 +00:00
love.graphics.setBlendMode("alpha")
2014-03-17 03:32:42 +00:00
if o.changed then
o.reflectionMap:clear(0, 0, 0)
love.graphics.setCanvas(o.reflectionMap)
2014-03-23 18:10:58 +00:00
for i = 1, #o.body do
if o.body[i].reflection and o.body[i].normal then
2014-03-17 03:32:42 +00:00
love.graphics.setColor(255, 0, 0)
2014-03-23 18:10:58 +00:00
o.body[i].normalMesh:setVertices(o.body[i].normalVert)
love.graphics.draw(o.body[i].normalMesh, o.body[i].x - o.body[i].nx + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].ny + LOVE_LIGHT_TRANSLATE_Y)
2014-03-17 03:32:42 +00:00
end
end
2014-03-23 18:10:58 +00:00
for i = 1, #o.body do
if o.body[i].reflective and o.body[i].img then
2014-03-17 03:32:42 +00:00
love.graphics.setColor(0, 255, 0)
2014-03-23 18:10:58 +00:00
love.graphics.draw(o.body[i].img, o.body[i].x - o.body[i].ix + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].iy + LOVE_LIGHT_TRANSLATE_Y)
elseif not o.body[i].reflection and o.body[i].img then
2014-03-17 03:32:42 +00:00
love.graphics.setColor(0, 0, 0)
2014-03-23 18:10:58 +00:00
love.graphics.draw(o.body[i].img, o.body[i].x - o.body[i].ix + LOVE_LIGHT_TRANSLATE_X, o.body[i].y - o.body[i].iy + LOVE_LIGHT_TRANSLATE_Y)
2014-03-17 03:32:42 +00:00
end
end
2014-03-16 21:01:14 +00:00
end
2014-03-04 13:52:51 +00:00
love.graphics.setShader()
love.graphics.setBlendMode("alpha")
love.graphics.setStencil()
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
o.changed = false
end
-- draw shadow
o.drawShadow = function()
love.graphics.setColor(255, 255, 255)
if o.blur then
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
2014-03-06 15:56:25 +00:00
LOVE_LIGHT_BLURV:send("steps", o.blur)
LOVE_LIGHT_BLURH:send("steps", o.blur)
2014-03-04 13:52:51 +00:00
love.graphics.setBlendMode("alpha")
2014-03-06 15:56:25 +00:00
love.graphics.setCanvas(o.shadow2)
2014-03-04 13:52:51 +00:00
love.graphics.setShader(LOVE_LIGHT_BLURV)
love.graphics.draw(o.shadow, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
love.graphics.setCanvas(o.shadow)
2014-03-04 13:52:51 +00:00
love.graphics.setShader(LOVE_LIGHT_BLURH)
love.graphics.draw(o.shadow2, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-04 13:52:51 +00:00
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
love.graphics.draw(o.shadow, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-04 13:52:51 +00:00
love.graphics.setBlendMode("alpha")
else
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
love.graphics.draw(o.shadow, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-04 13:52:51 +00:00
love.graphics.setBlendMode("alpha")
end
end
-- draw shine
o.drawShine = function()
love.graphics.setColor(255, 255, 255)
2014-03-16 00:12:18 +00:00
if o.blur and false then
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
LOVE_LIGHT_BLURV:send("steps", o.blur)
LOVE_LIGHT_BLURH:send("steps", o.blur)
love.graphics.setBlendMode("alpha")
love.graphics.setCanvas(o.shine2)
love.graphics.setShader(LOVE_LIGHT_BLURV)
love.graphics.draw(o.shine, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setCanvas(o.shine)
love.graphics.setShader(LOVE_LIGHT_BLURH)
love.graphics.draw(o.shine2, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
love.graphics.draw(o.shine, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setBlendMode("alpha")
else
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
love.graphics.draw(o.shine, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setBlendMode("alpha")
end
2014-03-04 13:52:51 +00:00
end
-- draw pixel shadow
o.drawPixelShadow = function()
love.graphics.setColor(255, 255, 255)
2014-03-06 15:56:25 +00:00
love.graphics.setBlendMode("multiplicative")
love.graphics.setShader()
love.graphics.draw(o.pixelShadow, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
love.graphics.setBlendMode("alpha")
end
-- draw glow
o.drawGlow = function()
love.graphics.setColor(255, 255, 255)
2014-03-09 17:33:34 +00:00
if o.isGlowBlur or o.glowBlur == 0.0 then
2014-03-06 15:56:25 +00:00
love.graphics.setBlendMode("additive")
love.graphics.setShader()
love.graphics.draw(o.glowMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
love.graphics.setBlendMode("alpha")
else
2014-03-09 17:33:34 +00:00
LOVE_LIGHT_BLURV:send("steps", o.glowBlur)
LOVE_LIGHT_BLURH:send("steps", o.glowBlur)
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
2014-03-09 17:33:34 +00:00
love.graphics.setBlendMode("additive")
o.glowMap2:clear()
2014-03-06 15:56:25 +00:00
love.graphics.setCanvas(o.glowMap2)
love.graphics.setShader(LOVE_LIGHT_BLURV)
love.graphics.draw(o.glowMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-06 15:56:25 +00:00
love.graphics.setCanvas(o.glowMap)
love.graphics.setShader(LOVE_LIGHT_BLURH)
love.graphics.draw(o.glowMap2, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
2014-03-09 17:33:34 +00:00
--love.graphics.setBlendMode("additive")
love.graphics.setShader()
love.graphics.draw(o.glowMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setBlendMode("alpha")
2014-03-06 15:56:25 +00:00
o.isGlowBlur = true
end
end
2014-03-16 21:01:14 +00:00
-- draw refraction
o.drawRefraction = function()
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
if LOVE_LIGHT_LAST_BUFFER then
love.graphics.setColor(255, 255, 255)
love.graphics.setBlendMode("alpha")
love.graphics.setCanvas(o.refractionMap2)
love.graphics.draw(LOVE_LIGHT_LAST_BUFFER, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
o.refractionShader:send("backBuffer", o.refractionMap2)
o.refractionShader:send("refractionStrength", o.refractionStrength)
love.graphics.setShader(o.refractionShader)
love.graphics.draw(o.refractionMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-17 03:32:42 +00:00
love.graphics.setShader()
end
end
-- draw reflection
o.drawReflection = function()
LOVE_LIGHT_LAST_BUFFER = love.graphics.getCanvas()
if LOVE_LIGHT_LAST_BUFFER then
love.graphics.setColor(255, 255, 255)
love.graphics.setBlendMode("alpha")
love.graphics.setCanvas(o.reflectionMap2)
love.graphics.draw(LOVE_LIGHT_LAST_BUFFER, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
love.graphics.setCanvas(LOVE_LIGHT_LAST_BUFFER)
o.reflectionShader:send("backBuffer", o.reflectionMap2)
o.reflectionShader:send("reflectionStrength", o.reflectionStrength)
o.reflectionShader:send("reflectionVisibility", o.reflectionVisibility)
love.graphics.setShader(o.reflectionShader)
love.graphics.draw(o.reflectionMap, LOVE_LIGHT_TRANSLATE_X, LOVE_LIGHT_TRANSLATE_Y)
2014-03-16 21:01:14 +00:00
love.graphics.setShader()
end
end
2014-03-04 13:52:51 +00:00
-- new light
o.newLight = function(x, y, red, green, blue, range)
o.lights[#o.lights + 1] = love.light.newLight(o, x, y, red, green, blue, range)
return o.lights[#o.lights]
end
-- clear lights
o.clearLights = function()
o.lights = {}
2014-03-06 15:56:25 +00:00
o.changed = true
2014-03-04 13:52:51 +00:00
end
-- clear objects
2014-03-23 18:10:58 +00:00
o.clearBodys = function()
o.body = {}
2014-03-06 15:56:25 +00:00
o.changed = true
2014-03-04 13:52:51 +00:00
end
-- set offset
o.setTranslation = function(translateX, translateY)
LOVE_LIGHT_TRANSLATE_X = translateX
LOVE_LIGHT_TRANSLATE_Y = translateY
end
2014-03-04 13:52:51 +00:00
-- set ambient color
o.setAmbientColor = function(red, green, blue)
o.ambient = {red, green, blue}
end
-- set ambient red
o.setAmbientRed = function(red)
o.ambient[1] = red
end
-- set ambient green
o.setAmbientGreen = function(green)
o.ambient[2] = green
end
-- set ambient blue
o.setAmbientBlue = function(blue)
o.ambient[3] = blue
end
-- set blur
o.setBlur = function(blur)
o.blur = blur
o.changed = true
end
2014-03-16 21:01:14 +00:00
-- set blur
o.setShadowBlur = function(blur)
o.blur = blur
o.changed = true
end
2014-03-09 17:33:34 +00:00
-- set glow blur
2014-03-10 11:00:06 +00:00
o.setGlowStrength = function(strength)
o.glowBlur = strength
2014-03-09 17:33:34 +00:00
o.changed = true
end
2014-03-16 21:01:14 +00:00
-- set refraction blur
o.setRefractionStrength = function(strength)
o.refractionStrength = strength
end
2014-03-17 03:32:42 +00:00
-- set reflection strength
o.setReflectionStrength = function(strength)
o.reflectionStrength = strength
end
-- set reflection visibility
o.setReflectionVisibility = function(visibility)
o.reflectionVisibility = visibility
end
2014-03-04 13:52:51 +00:00
-- new rectangle
o.newRectangle = function(x, y, w, h)
return love.light.newRectangle(o, x, y, w, h)
end
-- new circle
o.newCircle = function(x, y, r)
return love.light.newCircle(o, x, y, r)
end
-- new polygon
o.newPolygon = function(...)
return love.light.newPolygon(o, ...)
end
-- new image
o.newImage = function(img, x, y, width, height, ox, oy)
return love.light.newImage(o, img, x, y, width, height, ox, oy)
end
2014-03-16 21:01:14 +00:00
-- new refraction
o.newRefraction = function(normal, x, y)
return love.light.newRefraction(o, normal, x, y)
end
-- new refraction from height map
o.newRefractionHeightMap = function(heightMap, x, y, strength)
return love.light.newRefractionHeightMap(o, heightMap, x, y, strength)
end
2014-03-23 18:10:58 +00:00
-- new body
o.newBody = function(type, ...)
return love.light.newBody(o, type, ...)
end
2014-03-04 13:52:51 +00:00
-- set polygon data
o.setPoints = function(n, ...)
2014-03-23 18:10:58 +00:00
o.body[n].data = {...}
2014-03-04 13:52:51 +00:00
end
2014-03-06 23:16:57 +00:00
-- get polygon count
2014-03-23 18:10:58 +00:00
o.getBodyCount = function()
return #o.body
end
2014-03-04 13:52:51 +00:00
-- get polygon
o.getPoints = function(n)
2014-03-23 18:10:58 +00:00
if o.body[n].data then
return unpack(o.body[n].data)
end
2014-03-04 13:52:51 +00:00
end
2014-03-06 15:56:25 +00:00
-- set light position
o.setLightPosition = function(n, x, y)
o.lights[n].setPosition(x, y)
end
-- set light x
o.setLightX = function(n, x)
o.lights[n].setX(x)
end
-- set light y
o.setLightY = function(n, y)
o.lights[n].setY(y)
end
2014-03-16 00:12:18 +00:00
-- set light angle
o.setLightAngle = function(n, angle)
o.lights[n].setAngle(angle)
end
-- set light direction
o.setLightDirection = function(n, direction)
o.lights[n].setDirection(direction)
end
2014-03-04 13:52:51 +00:00
-- get light count
o.getLightCount = function()
return #o.lights
end
-- get light x position
o.getLightX = function(n)
return o.lights[n].x
end
-- get light y position
o.getLightY = function(n)
return o.lights[n].y
end
2014-03-06 20:39:29 +00:00
-- get type
o.getType = function()
return "world"
end
2014-03-04 13:52:51 +00:00
return o
end
-- light object
function love.light.newLight(p, x, y, red, green, blue, range)
local o = {}
2014-03-16 00:12:18 +00:00
o.direction = 0
o.angle = math.pi * 2.0
o.range = 0
2014-03-04 13:52:51 +00:00
o.shadow = love.graphics.newCanvas()
o.shine = love.graphics.newCanvas()
2014-03-16 00:12:18 +00:00
o.x = x or 0
o.y = y or 0
o.z = 15
2014-03-16 00:12:18 +00:00
o.red = red or 255
o.green = green or 255
o.blue = blue or 255
o.range = range or 300
2014-03-04 13:52:51 +00:00
o.smooth = 1.0
o.glowSize = 0.1
o.glowStrength = 0.0
o.changed = true
2014-03-06 15:56:25 +00:00
o.visible = true
2014-03-04 13:52:51 +00:00
-- set position
o.setPosition = function(x, y)
if x ~= o.x or y ~= o.y then
o.x = x
o.y = y
o.changed = true
end
end
2014-03-06 20:39:29 +00:00
-- get x
o.getX = function()
return o.x
end
-- get y
o.getY = function()
return o.y
end
2014-03-06 15:56:25 +00:00
-- set x
o.setX = function(x)
if x ~= o.x then
o.x = x
o.changed = true
end
end
-- set y
o.setY = function(y)
if y ~= o.y then
o.y = y
o.changed = true
end
end
2014-03-04 13:52:51 +00:00
-- set color
o.setColor = function(red, green, blue)
o.red = red
o.green = green
o.blue = blue
--p.changed = true
end
-- set range
o.setRange = function(range)
if range ~= o.range then
o.range = range
o.changed = true
end
end
2014-03-16 00:12:18 +00:00
-- set direction
o.setDirection = function(direction)
if direction ~= o.direction then
if direction > math.pi * 2 then
o.direction = math.mod(direction, math.pi * 2)
elseif direction < 0.0 then
o.direction = math.pi * 2 - math.mod(math.abs(direction), math.pi * 2)
else
o.direction = direction
end
o.changed = true
end
end
-- set angle
o.setAngle = function(angle)
if angle ~= o.angle then
if angle > math.pi then
o.angle = math.mod(angle, math.pi)
elseif angle < 0.0 then
o.angle = math.pi - math.mod(math.abs(angle), math.pi)
else
o.angle = angle
end
o.changed = true
end
end
2014-03-04 13:52:51 +00:00
-- set glow size
o.setSmooth = function(smooth)
o.smooth = smooth
o.changed = true
end
-- set glow size
o.setGlowSize = function(size)
o.glowSize = size
o.changed = true
end
-- set glow strength
o.setGlowStrength = function(strength)
o.glowStrength = strength
o.changed = true
end
-- get type
o.getType = function()
return "light"
end
return o
end
2014-03-23 18:10:58 +00:00
-- body object
function love.light.newBody(p, type, ...)
local args = {...}
2014-03-04 13:52:51 +00:00
local o = {}
2014-03-23 18:10:58 +00:00
p.body[#p.body + 1] = o
p.changed = true
o.id = #p.body
o.type = type
o.normal = nil
o.glow = nil
if o.type == "circle" then
o.x = args[1] or 0
o.y = args[2] or 0
o.radius = args[3] or 16
o.ox = args[4] or 0
o.oy = args[5] or 0
o.shadowType = "circle"
o.reflection = false
o.reflective = false
o.refraction = false
o.refractive = false
elseif o.type == "rectangle" then
o.x = args[1] or 0
o.y = args[2] or 0
o.width = args[3] or 64
o.height = args[4] or 64
o.ox = o.width * 0.5
o.oy = o.height * 0.5
o.shadowType = "rectangle"
o.data = {
o.x - o.ox,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy + o.height,
o.x - o.ox,
o.y - o.oy + o.height
}
o.reflection = false
o.reflective = false
o.refraction = false
o.refractive = false
elseif o.type == "polygon" then
o.shadowType = "polygon"
o.data = args or {0, 0, 0, 0, 0, 0}
o.reflection = false
o.reflective = false
o.refraction = false
o.refractive = false
elseif o.type == "image" then
o.img = args[1]
o.x = args[2] or 0
o.y = args[3] or 0
if o.img then
o.imgWidth = o.img:getWidth()
o.imgHeight = o.img:getHeight()
o.width = args[4] or o.imgWidth
o.height = args[5] or o.imgHeight
o.ix = o.imgWidth * 0.5
o.iy = o.imgHeight * 0.5
else
o.width = args[4] or 64
o.height = args[5] or 64
end
o.ox = args[6] or o.width * 0.5
o.oy = args[7] or o.height * 0.5
o.shadowType = "rectangle"
o.data = {
o.x - o.ox,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy + o.height,
o.x - o.ox,
o.y - o.oy + o.height
}
o.reflection = false
o.reflective = true
o.refraction = false
o.refractive = false
elseif o.type == "refraction" then
o.normal = args[1]
o.x = args[2] or 0
o.y = args[3] or 0
if o.normal then
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.width = args[4] or o.normalWidth
o.height = args[5] or o.normalHeight
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
o.normal:setWrap("repeat", "repeat")
o.normalVert = {
{0.0, 0.0, 0.0, 0.0},
{o.width, 0.0, 1.0, 0.0},
{o.width, o.height, 1.0, 1.0},
{0.0, o.height, 0.0, 1.0}
}
o.normalMesh = love.graphics.newMesh(o.normalVert, o.normal, "fan")
else
o.width = args[4] or 64
o.height = args[5] or 64
end
o.ox = o.width / 2.0
o.oy = o.height / 2.0
o.reflection = false
o.reflective = false
o.refraction = true
o.refractive = false
end
2014-03-04 13:52:51 +00:00
o.shine = true
2014-03-23 18:10:58 +00:00
o.red = 0
o.green = 0
o.blue = 0
o.alpha = 1.0
2014-03-09 17:33:34 +00:00
o.glowRed = 255
o.glowGreen = 255
o.glowBlue = 255
o.glowStrength = 0.0
2014-03-23 18:10:58 +00:00
o.tileX = 0
o.tileY = 0
2014-03-04 13:52:51 +00:00
-- refresh
o.refresh = function()
2014-03-23 18:10:58 +00:00
if o.data then
o.data[1] = o.x - o.ox
o.data[2] = o.y - o.oy
o.data[3] = o.x - o.ox + o.width
o.data[4] = o.y - o.oy
o.data[5] = o.x - o.ox + o.width
o.data[6] = o.y - o.oy + o.height
o.data[7] = o.x - o.ox
o.data[8] = o.y - o.oy + o.height
end
2014-03-04 13:52:51 +00:00
end
-- set position
o.setPosition = function(x, y)
if x ~= o.x or y ~= o.y then
o.x = x
o.y = y
o.refresh()
p.changed = true
end
end
2014-03-23 18:10:58 +00:00
-- set x position
2014-03-06 20:39:29 +00:00
o.setX = function(x)
if x ~= o.x then
o.x = x
o.refresh()
p.changed = true
end
end
2014-03-23 18:10:58 +00:00
-- set y position
2014-03-06 20:39:29 +00:00
o.setY = function(y)
if y ~= o.y then
o.y = y
o.refresh()
p.changed = true
end
end
2014-03-23 18:10:58 +00:00
-- get x position
o.getX = function()
return o.x
end
2014-03-23 18:10:58 +00:00
-- get y position
o.getY = function(y)
return o.y
end
2014-03-06 20:39:29 +00:00
-- get width
o.getWidth = function()
return o.width
end
-- get height
o.getHeight = function()
return o.height
end
2014-03-23 18:10:58 +00:00
-- get image width
o.getImageWidth = function()
return o.imgWidth
2014-03-06 20:39:29 +00:00
end
2014-03-23 18:10:58 +00:00
-- get image height
o.getImageHeight = function()
return o.imgHeight
2014-03-04 13:52:51 +00:00
end
2014-03-23 18:10:58 +00:00
-- set dimension
o.setDimension = function(width, height)
o.width = width
o.height = height
o.refresh()
p.changed = true
2014-03-04 13:52:51 +00:00
end
2014-03-23 18:10:58 +00:00
-- set offset
o.setOffset = function(ox, oy)
if ox ~= o.ox or oy ~= o.oy then
o.ox = ox
o.oy = oy
if o.shadowType == "rectangle" then
o.refresh()
end
2014-03-06 20:39:29 +00:00
p.changed = true
end
end
2014-03-23 18:10:58 +00:00
-- set offset
o.setImageOffset = function(ix, iy)
if ix ~= o.ix or iy ~= o.iy then
o.ix = ix
o.iy = iy
o.refresh()
2014-03-06 20:39:29 +00:00
p.changed = true
end
end
2014-03-23 18:10:58 +00:00
-- set offset
o.setNormalOffset = function(nx, ny)
if nx ~= o.nx or ny ~= o.ny then
o.nx = nx
o.ny = ny
o.refresh()
2014-03-04 13:52:51 +00:00
p.changed = true
end
end
2014-03-09 17:33:34 +00:00
-- set glow color
o.setGlowColor = function(red, green, blue)
o.glowRed = red
o.glowGreen = green
o.glowBlue = blue
p.changed = true
end
-- set glow alpha
o.setGlowStrength = function(strength)
o.glowStrength = strength
p.changed = true
end
2014-03-04 13:52:51 +00:00
-- get radius
o.getRadius = function()
return o.radius
end
2014-03-23 18:10:58 +00:00
-- set radius
o.setRadius = function(radius)
if radius ~= o.radius then
o.radius = radius
p.changed = true
end
2014-03-04 13:52:51 +00:00
end
-- set polygon data
o.setPoints = function(...)
o.data = {...}
p.changed = true
end
2014-03-23 18:10:58 +00:00
-- get polygon data
o.getPoints = function()
return unpack(o.data)
end
-- set shadow on/off
o.setShadowType = function(type)
o.shadowType = type
p.changed = true
end
-- set shadow on/off
o.setShadow = function(b)
o.castsNoShadow = not b
p.changed = true
end
-- set shine on/off
o.setShine = function(b)
o.shine = b
p.changed = true
end
2014-03-23 18:10:58 +00:00
-- set glass color
2014-03-09 03:22:45 +00:00
o.setColor = function(red, green, blue)
o.red = red
o.green = green
o.blue = blue
p.changed = true
end
2014-03-23 18:10:58 +00:00
-- set glass alpha
2014-03-09 03:22:45 +00:00
o.setAlpha = function(alpha)
2014-03-23 18:10:58 +00:00
o.alpha = alpha
2014-03-09 03:22:45 +00:00
p.changed = true
end
2014-03-23 18:10:58 +00:00
-- set reflection on/off
o.setReflection = function(reflection)
o.reflection = reflection
2014-03-09 17:33:34 +00:00
end
2014-03-23 18:10:58 +00:00
-- set refraction on/off
o.setRefraction = function(refraction)
o.refraction = refraction
2014-03-09 03:22:45 +00:00
end
-- set reflective on other objects on/off
o.setReflective = function(reflective)
o.reflective = reflective
end
-- set refractive on other objects on/off
o.setRefractive = function(refractive)
o.refractive = refractive
end
-- set image
o.setImage = function(img)
2014-03-23 18:10:58 +00:00
if img then
o.img = img
o.imgWidth = o.img:getWidth()
o.imgHeight = o.img:getHeight()
o.ix = o.imgWidth * 0.5
o.iy = o.imgHeight * 0.5
end
end
-- set normal
2014-03-06 15:56:25 +00:00
o.setNormalMap = function(normal)
2014-03-23 18:10:58 +00:00
if normal then
o.normal = normal
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
end
end
-- set height map
o.setHeightMap = function(heightMap, strength)
o.normal = HeightMapToNormalMap(heightMap, strength)
2014-03-23 18:10:58 +00:00
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
end
-- generate flat normal map
o.generateNormalMapFlat = function(mode)
local imgData = o.img:getData()
local imgNormalData = love.image.newImageData(o.imgWidth, o.imgHeight)
local color
if mode == "top" then
color = {127, 127, 255}
elseif mode == "front" then
color = {127, 255, 127}
elseif mode == "back" then
color = {127, 0, 127}
elseif mode == "left" then
color = {31, 255, 223}
elseif mode == "right" then
color = {223, 223, 127}
end
for i = 0, o.imgHeight - 1 do
for k = 0, o.imgWidth - 1 do
local r, g, b, a = imgData:getPixel(k, i)
if a > 0 then
imgNormalData:setPixel(k, i, color[1], color[2], color[3], 255)
end
end
end
o.normal = love.graphics.newImage(imgNormalData)
2014-03-23 18:10:58 +00:00
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
end
-- generate faded normal map
2014-03-08 20:18:40 +00:00
o.generateNormalMapGradient = function(horizontalGradient, verticalGradient)
local imgData = o.img:getData()
local imgNormalData = love.image.newImageData(o.imgWidth, o.imgHeight)
local dx = 255.0 / o.imgWidth
local dy = 255.0 / o.imgHeight
local nx
local ny
local nz
for i = 0, o.imgWidth - 1 do
for k = 0, o.imgHeight - 1 do
local r, g, b, a = imgData:getPixel(i, k)
if a > 0 then
2014-03-08 20:18:40 +00:00
if horizontalGradient == "gradient" then
nx = i * dx
2014-03-08 20:18:40 +00:00
elseif horizontalGradient == "inverse" then
nx = 255 - i * dx
else
nx = 127
end
2014-03-08 20:18:40 +00:00
if verticalGradient == "gradient" then
ny = 127 + k * dy * 0.5
nz = 255 - k * dy * 0.5
2014-03-08 20:18:40 +00:00
elseif verticalGradient == "inverse" then
ny = 127 - k * dy * 0.5
nz = 127 - k * dy * 0.25
else
ny = 255
nz = 127
end
imgNormalData:setPixel(i, k, nx, ny, nz, 255)
end
end
end
o.normal = love.graphics.newImage(imgNormalData)
2014-03-23 18:10:58 +00:00
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
end
-- generate normal map
o.generateNormalMap = function(strength)
o.normal = HeightMapToNormalMap(o.img, strength)
2014-03-23 18:10:58 +00:00
o.normalWidth = o.normal:getWidth()
o.normalHeight = o.normal:getHeight()
o.nx = o.normalWidth * 0.5
o.ny = o.normalHeight * 0.5
end
2014-03-06 15:56:25 +00:00
-- set normal
o.setGlowMap = function(glow)
o.glow = glow
2014-03-23 18:10:58 +00:00
o.glowStrength = 1.0
2014-03-16 21:01:14 +00:00
end
-- set tile offset
2014-03-23 18:10:58 +00:00
o.setNormalTileOffset = function(tx, ty)
o.tileX = tx / o.normalWidth
o.tileY = ty / o.normalHeight
o.normalVert = {
2014-03-16 21:01:14 +00:00
{0.0, 0.0, o.tileX, o.tileY},
2014-03-23 18:10:58 +00:00
{o.normalWidth, 0.0, o.tileX + 1.0, o.tileY},
{o.normalWidth, o.normalHeight, o.tileX + 1.0, o.tileY + 1.0},
{0.0, o.normalHeight, o.tileX, o.tileY + 1.0}
2014-03-16 21:01:14 +00:00
}
p.changed = true
end
2014-03-23 18:10:58 +00:00
-- get type
o.getType = function()
return o.type
2014-03-16 21:01:14 +00:00
end
2014-03-23 18:10:58 +00:00
-- get type
o.setShadowType = function(type, ...)
o.shadowType = type
local args = {...}
if o.shadowType == "circle" then
o.radius = args[1] or 16
o.ox = args[2] or 0
o.oy = args[3] or 0
elseif o.shadowType == "rectangle" then
o.width = args[1] or 64
o.height = args[2] or 64
o.ox = args[3] or o.width * 0.5
o.oy = args[4] or o.height * 0.5
o.data = {
o.x - o.ox,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy,
o.x - o.ox + o.width,
o.y - o.oy + o.height,
o.x - o.ox,
o.y - o.oy + o.height
}
elseif o.shadowType == "polygon" then
o.data = args or {0, 0, 0, 0, 0, 0}
elseif o.shadowType == "image" then
if o.img then
o.width = o.imgWidth
o.height = o.imgHeight
o.shadowVert = {
{0.0, 0.0, 0.0, 0.0},
{o.width, 0.0, 1.0, 0.0},
{o.width, o.height, 1.0, 1.0},
{0.0, o.height, 0.0, 1.0}
}
if not o.shadowMesh then
o.shadowMesh = love.graphics.newMesh(o.shadowVert, o.img, "fan")
o.shadowMesh:setVertexColors(true)
2014-03-16 21:01:14 +00:00
end
2014-03-23 18:10:58 +00:00
else
o.width = 64
o.height = 64
2014-03-16 21:01:14 +00:00
end
2014-03-23 18:10:58 +00:00
o.shadowX = args[1] or 0
o.shadowY = args[2] or 0
o.fadeStrength = args[3] or 0.0
2014-03-16 21:01:14 +00:00
end
end
2014-03-23 18:10:58 +00:00
return o
end
2014-03-16 21:01:14 +00:00
2014-03-23 18:10:58 +00:00
-- rectangle object
function love.light.newRectangle(p, x, y, width, height)
return p.newBody("rectangle", x, y, width, height)
end
2014-03-16 21:01:14 +00:00
2014-03-23 18:10:58 +00:00
-- circle object
function love.light.newCircle(p, x, y, radius)
return p.newBody("circle", x, y, radius)
end
2014-03-16 21:01:14 +00:00
2014-03-23 18:10:58 +00:00
-- poly object
function love.light.newPolygon(p, ...)
return p.newBody("polygon", ...)
end
2014-03-16 21:01:14 +00:00
2014-03-23 18:10:58 +00:00
-- image object
function love.light.newImage(p, img, x, y, width, height, ox, oy)
return p.newBody("image", img, x, y, width, height, ox, oy)
end
-- refraction object
function love.light.newRefraction(p, normal, x, y, width, height)
return p.newBody("refraction", normal, x, y, width, height)
end
-- refraction object (height map)
function love.light.newRefractionHeightMap(p, heightMap, x, y, strength)
local normal = HeightMapToNormalMap(heightMap, strength)
return love.light.newRefraction(p, normal, x, y)
2014-03-16 21:01:14 +00:00
end
2014-03-04 13:52:51 +00:00
-- vector functions
function normalize(v)
local len = math.sqrt(math.pow(v[1], 2) + math.pow(v[2], 2))
local normalizedv = {v[1] / len, v[2] / len}
return normalizedv
end
function dot(v1, v2)
return v1[1] * v2[1] + v1[2] * v2[2]
end
function lengthSqr(v)
return v[1] * v[1] + v[2] * v[2]
end
function length(v)
return math.sqrt(lengthSqr(v))
end
2014-03-23 18:10:58 +00:00
function calculateShadows(light, body)
2014-03-04 13:52:51 +00:00
local shadowGeometry = {}
local shadowLength = 10000
2014-03-23 18:10:58 +00:00
for i = 1, #body do
if body[i].shadowType == "rectangle" or body[i].shadowType == "polygon" then
curPolygon = body[i].data
if not body[i].castsNoShadow then
local edgeFacingTo = {}
for k = 1, #curPolygon, 2 do
local indexOfNextVertex = (k + 2) % #curPolygon
local normal = {-curPolygon[indexOfNextVertex+1] + curPolygon[k + 1], curPolygon[indexOfNextVertex] - curPolygon[k]}
local lightToPoint = {curPolygon[k] - light.x, curPolygon[k + 1] - light.y}
normal = normalize(normal)
lightToPoint = normalize(lightToPoint)
local dotProduct = dot(normal, lightToPoint)
if dotProduct > 0 then table.insert(edgeFacingTo, true)
else table.insert(edgeFacingTo, false) end
end
local curShadowGeometry = {}
for k = 1, #edgeFacingTo do
local nextIndex = (k + 1) % #edgeFacingTo
if nextIndex == 0 then nextIndex = #edgeFacingTo end
if edgeFacingTo[k] and not edgeFacingTo[nextIndex] then
curShadowGeometry[1] = curPolygon[nextIndex*2-1]
curShadowGeometry[2] = curPolygon[nextIndex*2]
local lightVecFrontBack = normalize({curPolygon[nextIndex*2-1] - light.x, curPolygon[nextIndex*2] - light.y})
curShadowGeometry[3] = curShadowGeometry[1] + lightVecFrontBack[1] * shadowLength
curShadowGeometry[4] = curShadowGeometry[2] + lightVecFrontBack[2] * shadowLength
elseif not edgeFacingTo[k] and edgeFacingTo[nextIndex] then
curShadowGeometry[7] = curPolygon[nextIndex*2-1]
curShadowGeometry[8] = curPolygon[nextIndex*2]
local lightVecBackFront = normalize({curPolygon[nextIndex*2-1] - light.x, curPolygon[nextIndex*2] - light.y})
curShadowGeometry[5] = curShadowGeometry[7] + lightVecBackFront[1] * shadowLength
curShadowGeometry[6] = curShadowGeometry[8] + lightVecBackFront[2] * shadowLength
end
end
if curShadowGeometry[1]
and curShadowGeometry[2]
and curShadowGeometry[3]
and curShadowGeometry[4]
and curShadowGeometry[5]
and curShadowGeometry[6]
and curShadowGeometry[7]
and curShadowGeometry[8]
then
curShadowGeometry.alpha = body[i].alpha
curShadowGeometry.red = body[i].red
curShadowGeometry.green = body[i].green
curShadowGeometry.blue = body[i].blue
shadowGeometry[#shadowGeometry + 1] = curShadowGeometry
2014-03-04 13:52:51 +00:00
end
end
2014-03-23 18:10:58 +00:00
elseif body[i].shadowType == "circle" then
local length = math.sqrt(math.pow(light.x - (body[i].x - body[i].ox), 2) + math.pow(light.y - (body[i].y - body[i].oy), 2))
if length >= body[i].radius and length <= light.range then
local curShadowGeometry = {}
local angle = math.atan2(light.x - (body[i].x - body[i].ox), (body[i].y - body[i].oy) - light.y) + math.pi / 2
local x2 = ((body[i].x - body[i].ox) + math.sin(angle) * body[i].radius)
local y2 = ((body[i].y - body[i].oy) - math.cos(angle) * body[i].radius)
local x3 = ((body[i].x - body[i].ox) - math.sin(angle) * body[i].radius)
local y3 = ((body[i].y - body[i].oy) + math.cos(angle) * body[i].radius)
curShadowGeometry[1] = x2
curShadowGeometry[2] = y2
curShadowGeometry[3] = x3
curShadowGeometry[4] = y3
curShadowGeometry[5] = x3 - (light.x - x3) * shadowLength
curShadowGeometry[6] = y3 - (light.y - y3) * shadowLength
curShadowGeometry[7] = x2 - (light.x - x2) * shadowLength
curShadowGeometry[8] = y2 - (light.y - y2) * shadowLength
curShadowGeometry.alpha = body[i].alpha
curShadowGeometry.red = body[i].red
curShadowGeometry.green = body[i].green
curShadowGeometry.blue = body[i].blue
2014-03-04 13:52:51 +00:00
shadowGeometry[#shadowGeometry + 1] = curShadowGeometry
end
end
end
return shadowGeometry
end
shadowStencil = function()
2014-03-09 03:22:45 +00:00
for i = 1,#LOVE_LIGHT_SHADOW_GEOMETRY do
if LOVE_LIGHT_SHADOW_GEOMETRY[i].alpha == 1.0 then
love.graphics.polygon("fill", unpack(LOVE_LIGHT_SHADOW_GEOMETRY[i]))
end
2014-03-04 13:52:51 +00:00
end
2014-03-23 18:10:58 +00:00
for i = 1, #LOVE_LIGHT_BODY do
if LOVE_LIGHT_BODY[i].shadowType == "circle" then
love.graphics.circle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].radius)
elseif LOVE_LIGHT_BODY[i].shadowType == "rectangle" then
love.graphics.rectangle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].width, LOVE_LIGHT_BODY[i].height)
elseif LOVE_LIGHT_BODY[i].shadowType == "polygon" then
love.graphics.polygon("fill", unpack(LOVE_LIGHT_BODY[i].data))
elseif LOVE_LIGHT_BODY[i].shadowType == "image" then
--love.graphics.rectangle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].width, LOVE_LIGHT_BODY[i].height)
2014-03-09 03:22:45 +00:00
end
2014-03-04 13:52:51 +00:00
end
end
polyStencil = function()
2014-03-23 18:10:58 +00:00
for i = 1, #LOVE_LIGHT_BODY do
if LOVE_LIGHT_BODY[i].shine and (LOVE_LIGHT_BODY[i].glowStrength == 0.0 or (LOVE_LIGHT_BODY[i].type == "image" and not LOVE_LIGHT_BODY[i].normal)) then
if LOVE_LIGHT_BODY[i].shadowType == "circle" then
love.graphics.circle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].radius)
elseif LOVE_LIGHT_BODY[i].shadowType == "rectangle" then
love.graphics.rectangle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].width, LOVE_LIGHT_BODY[i].height)
elseif LOVE_LIGHT_BODY[i].shadowType == "polygon" then
love.graphics.polygon("fill", unpack(LOVE_LIGHT_BODY[i].data))
elseif LOVE_LIGHT_BODY[i].shadowType == "image" then
--love.graphics.rectangle("fill", LOVE_LIGHT_BODY[i].x - LOVE_LIGHT_BODY[i].ox, LOVE_LIGHT_BODY[i].y - LOVE_LIGHT_BODY[i].oy, LOVE_LIGHT_BODY[i].width, LOVE_LIGHT_BODY[i].height)
end
2014-03-09 17:33:34 +00:00
end
end
end
function HeightMapToNormalMap(heightMap, strength)
local imgData = heightMap:getData()
local imgData2 = love.image.newImageData(heightMap:getWidth(), heightMap:getHeight())
local red, green, blue, alpha
local x, y
local matrix = {}
matrix[1] = {}
matrix[2] = {}
matrix[3] = {}
strength = strength or 1.0
for i = 0, heightMap:getHeight() - 1 do
for k = 0, heightMap:getWidth() - 1 do
for l = 1, 3 do
for m = 1, 3 do
if k + (l - 1) < 1 then
x = heightMap:getWidth() - 1
elseif k + (l - 1) > heightMap:getWidth() - 1 then
x = 1
else
x = k + l - 1
end
if i + (m - 1) < 1 then
y = heightMap:getHeight() - 1
elseif i + (m - 1) > heightMap:getHeight() - 1 then
y = 1
else
y = i + m - 1
end
local red, green, blue, alpha = imgData:getPixel(x, y)
matrix[l][m] = red
end
end
red = (255 + ((matrix[1][2] - matrix[2][2]) + (matrix[2][2] - matrix[3][2])) * strength) / 2.0
green = (255 - ((matrix[2][2] - matrix[1][1]) + (matrix[2][3] - matrix[2][2])) * strength) / 2.0
blue = 192
imgData2:setPixel(k, i, red, green, blue)
end
end
return love.graphics.newImage(imgData2)
2014-03-04 13:52:51 +00:00
end