Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
local ass_mt = {}
|
|
|
|
ass_mt.__index = ass_mt
|
|
|
|
|
|
|
|
local function ass_new()
|
|
|
|
return setmetatable({ scale = 4, text = "" }, ass_mt)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.new_event(ass)
|
|
|
|
-- osd_libass.c adds an event per line
|
|
|
|
if #ass.text > 0 then
|
|
|
|
ass.text = ass.text .. "\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.draw_start(ass)
|
|
|
|
ass.text = string.format("%s{\\p%d}", ass.text, ass.scale)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.draw_stop(ass)
|
|
|
|
ass.text = ass.text .. "{\\p0}"
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.coord(ass, x, y)
|
2015-01-25 00:23:29 +00:00
|
|
|
local scale = 2 ^ (ass.scale - 1)
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
local ix = math.ceil(x * scale)
|
|
|
|
local iy = math.ceil(y * scale)
|
|
|
|
ass.text = string.format("%s %d %d", ass.text, ix, iy)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.append(ass, s)
|
|
|
|
ass.text = ass.text .. s
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.merge(ass1, ass2)
|
|
|
|
ass1.text = ass1.text .. ass2.text
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.pos(ass, x, y)
|
|
|
|
ass:append(string.format("{\\pos(%f,%f)}", x, y))
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.an(ass, an)
|
|
|
|
ass:append(string.format("{\\an%d}", an))
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.move_to(ass, x, y)
|
|
|
|
ass:append(" m")
|
|
|
|
ass:coord(x, y)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.line_to(ass, x, y)
|
|
|
|
ass:append(" l")
|
|
|
|
ass:coord(x, y)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.bezier_curve(ass, x1, y1, x2, y2, x3, y3)
|
|
|
|
ass:append(" b")
|
|
|
|
ass:coord(x1, y1)
|
|
|
|
ass:coord(x2, y2)
|
|
|
|
ass:coord(x3, y3)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function ass_mt.rect_ccw(ass, x0, y0, x1, y1)
|
|
|
|
ass:move_to(x0, y0)
|
|
|
|
ass:line_to(x0, y1)
|
|
|
|
ass:line_to(x1, y1)
|
|
|
|
ass:line_to(x1, y0)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.rect_cw(ass, x0, y0, x1, y1)
|
|
|
|
ass:move_to(x0, y0)
|
|
|
|
ass:line_to(x1, y0)
|
|
|
|
ass:line_to(x1, y1)
|
|
|
|
ass:line_to(x0, y1)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ass_mt.round_rect_cw(ass, x0, y0, x1, y1, r)
|
2014-12-05 17:20:37 +00:00
|
|
|
local c = 0.551915024494 * r -- circle approximation
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
ass:move_to(x0 + r, y0)
|
|
|
|
ass:line_to(x1 - r, y0) -- top line
|
|
|
|
if r > 0 then
|
2014-12-05 17:20:37 +00:00
|
|
|
ass:bezier_curve(x1 - r + c, y0, x1, y0 + r - c, x1, y0 + r) -- top right corner
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
end
|
|
|
|
ass:line_to(x1, y1 - r) -- right line
|
|
|
|
if r > 0 then
|
2014-12-05 17:20:37 +00:00
|
|
|
ass:bezier_curve(x1, y1 - r + c, x1 - r + c, y1, x1 - r, y1) -- bottom right corner
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
end
|
|
|
|
ass:line_to(x0 + r, y1) -- bottom line
|
|
|
|
if r > 0 then
|
2014-12-05 17:20:37 +00:00
|
|
|
ass:bezier_curve(x0 + r - c, y1, x0, y1 - r + c, x0, y1 - r) -- bottom left corner
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
end
|
|
|
|
ass:line_to(x0, y0 + r) -- left line
|
|
|
|
if r > 0 then
|
2014-12-05 17:20:37 +00:00
|
|
|
ass:bezier_curve(x0, y0 + r - c, x0 + r - c, y0, x0 + r, y0) -- top left corner
|
Add initial Lua scripting support
This is preliminary. There are still tons of issues, and any aspect
of scripting may change in the future. I decided to merge this
(preliminary) work now because it makes it easier to develop it, not
because it's done. lua.rst is clear enough about it (plus some
sarcasm).
This requires linking to Lua. Lua has no official pkg-config file, but
there are distribution specific .pc files, all with different names.
Adding a non-pkg-config based configure test was considered, but we'd
rather not.
One major complication is that libquvi links against Lua too, and if
the Lua version is different from mpv's, you will get a crash as soon
as libquvi uses Lua. (libquvi by design always runs when a file is
opened.) I would consider this the problem of distros and whoever
builds mpv, but to make things easier for users, we add a terrible
runtime test to the configure script, which probes whether libquvi
will crash. This is disabled when cross-compiling, but in that case
we hope the user knows what he is doing.
2013-09-25 22:41:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return {ass_new = ass_new}
|