box-of-eases/src/ease.lua

48 lines
951 B
Lua
Raw Permalink Normal View History

2021-09-17 22:44:26 +00:00
local self = {}
2021-09-19 12:16:40 +00:00
local easelib = require 'src.easelib'
2021-09-17 22:44:26 +00:00
2021-09-18 00:48:03 +00:00
function self.mixEase(e1, e2, point, param1, param2)
2021-09-17 22:44:26 +00:00
if not point then point = 0.5 end
return function(a)
if a < point then
2021-09-18 00:48:03 +00:00
return e1(a / point, param1[1], param1[2]) * point
2021-09-17 22:44:26 +00:00
else
2021-09-18 00:48:03 +00:00
return e2((a - point) / (1 - point), param2[1], param2[2]) * (1 - point) + point
2021-09-17 22:44:26 +00:00
end
end
end
self.eases = {}
for i,v in pairs(easelib) do
local min = 0
2021-09-18 00:48:03 +00:00
local params = {}
for i = 3, #v do
if v[i] then
table.insert(params, {min = v[i][1], max = v[i][2], default = v[i][3], name = v[i][4]})
end
end
2021-09-17 22:44:26 +00:00
local q = 10
for i = 0, q do
2021-09-18 00:48:03 +00:00
local s = v[2](i / q, (params[1] or {}).default, (params[2] or {}).default)
if s < 0 and not v.overridemin then min = -1 end
2021-09-17 22:44:26 +00:00
end
self.eases[v[1]] = {
f = v[2],
max = 1,
min = min,
2021-09-18 00:48:03 +00:00
i = i,
name = v[1],
2021-09-18 10:02:25 +00:00
params = params,
type = v.type
2021-09-17 22:44:26 +00:00
}
end
self.ease = nil
self.minEase = false
return self