aegisub-scripts/macros/garret.dupe-and-comment.lua

104 lines
3.2 KiB
Lua

script_name = "Dupe and Comment"
script_description =
"Copies a line and comments out the original.\nbecause i like seeing the original while editing, and being able to go back to it easily"
script_author = "garret"
script_version = "2.2.0"
script_namespace = "garret.dupe-and-comment"
local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
local util, json
if haveDepCtrl then
depctrl = DependencyControl({
--feed="TODO",
{
{ "aegisub.util" },
{ "json" },
},
})
util, json = depctrl:requireModules()
else
util = require("aegisub.util")
local _
_, json = pcall(require, "json") -- if you have depctrl, you have json, but even if you don't, you might have it anyway so worth checking
_ = nil
end
--inspect = require 'inspect'
function comment(subs, sel)
for i = #sel, 1, -1 do
local line = subs[sel[i]]
local dupe = util.copy(line)
line.comment = false -- going to edit it, so we probably want to see it on the video
dupe.comment = true -- this is the actual original one
subs.insert(sel[i] + 1, dupe) -- putting it on the next line so i don't have to change line
end
aegisub.set_undo_point(script_name)
end
function undo(subs, sel)
for i = #sel, 1, -1 do
local edit = subs[sel[i]]
local original = subs[sel[i] + 1]
if edit.comment == false and original.comment == true then
original.comment = false
subs[sel[i] + 1] = original
subs.delete(sel[i])
end
end
aegisub.set_undo_point("Undo " .. script_name)
end
local function hide(subs, sel)
for i = #sel, 1, -1 do
local orig = subs[sel[i]]
if orig.comment then
local edit = subs[sel[i] - 1]
edit.extra.dupencom = json.encode(orig)
subs[sel[i] - 1] = edit
subs.delete(sel[i])
end
end
aegisub.set_undo_point("Hide comments")
end
local function unhide(subs, sel)
for i = #sel, 1, -1 do
local j = 0
while true do
local edit = subs[sel[i] + j]
if edit.extra.dupencom ~= nil then
original = json.decode(edit.extra.dupencom)
edit.extra.dupencom = nil
subs[sel[i] + j] = edit
j = j + 1
subs.insert(sel[i] + j, original)
else
break
end
end
end
aegisub.set_undo_point("Unhide comments")
end
local macros = {
{ "Do", script_description, comment },
{ "Undo", "Deletes selected line and restores the original", undo },
}
if json ~= nil then -- dont lock out core functionality because you dont have this one thing
table.insert(macros, { "Cleanup/Do", "Hides the original in extradata", hide })
table.insert(macros, { "Cleanup/Undo", "Restores the original from extradata", unhide })
end
if haveDepCtrl then
depctrl:registerMacros(macros)
else
for _, macro in ipairs(macros) do
local name, desc, fun = unpack(macro)
aegisub.register_macro(script_name .. "/" .. name, desc, fun)
end
end
-- i trust what petzku from the cartel has to say on adding multiple macros with depctrl