aboutsummaryrefslogtreecommitdiffstats
path: root/light-purge.lua
blob: b13926625d760ec0c1e67b84514b90d37baa0360 (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 = "TXT Cleanup"
script_description = "remove actors and/or linebreaks"
script_author = "garret"
script_version = "2.0.0"

local function main(sub, conf)
    for i = 1, #sub do
        if sub[i].class == "dialogue" then
            local line = sub[i]
            if conf.purge_actors == true then
                line.actor = ""
            end
            if conf.purge_linebreaks == true then
                line.text = line.text:gsub(" *\\[Nn] *", " ")
            end
            sub[i] = line
        end
    end
end

local function conf()
    local conf = {
        {
            class = "checkbox",
            name = "purge_actors",
            x = 0,
            y = 0,
            width = 1,
            height = 1,
            label = "Remove Actors",
            value = true,
        },
        {
            class = "checkbox",
            name = "purge_linebreaks",
            x = 0,
            y = 1,
            width = 1,
            height = 1,
            label = "Remove Linebreaks",
            value = true,
        },
    }
    return conf
end
aegisub.register_filter(script_name, script_description, 1, main, conf)