aboutsummaryrefslogtreecommitdiffstats
path: root/macros/garret.a-b.lua
blob: dea2bcb235f1f7bee6fcb5f0c227e2c4456ed5b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
script_name = "A-B"
script_description = "makes checking pre-timing possible."
script_author = "garret"
script_version = "2.1.1"
script_namespace = "garret.a-b"

local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
if haveDepCtrl then
    depctrl = DependencyControl {
        --feed="TODO",
    }
end

function switch_number(i)
    if i == "a" then
        return "b"
    elseif i == "b" then
        return "a"
    end
end

function main(sub, sel)
    local i = "a"
    for si,li in ipairs(sel) do
        line = sub[li]
        if line.actor == "" then
            indicator = i
        else
        indicator = line.actor.." "..i
        end
        if line.text == "" then
            line.text = indicator
        elseif line.text:gsub("{[^}]-}","") == "" then
            line.text = indicator.." "..line.text
        end
        sub[li] = line
        i = switch_number(i)
    end
    aegisub.set_undo_point(script_name)
end

if haveDepCtrl then
    depctrl:registerMacro(main)
else
    aegisub.register_macro(script_name, script_description, main)
end