diff options
| author | garret <garret@airmail.cc> | 2022-08-05 02:45:25 +0100 | 
|---|---|---|
| committer | garret <garret@airmail.cc> | 2022-08-05 02:45:25 +0100 | 
| commit | 509d6e951858192c624c2aec7b3bcbededb4c7ec (patch) | |
| tree | 4ec43cfc1d707ab629c7348f786a7e815de4f34e /macros/garret.inverse-glow.lua | |
| parent | 84915e385937b3c2af67972840290a3ce4545678 (diff) | |
| download | aegisub-scripts-509d6e951858192c624c2aec7b3bcbededb4c7ec.tar.gz aegisub-scripts-509d6e951858192c624c2aec7b3bcbededb4c7ec.tar.bz2 aegisub-scripts-509d6e951858192c624c2aec7b3bcbededb4c7ec.zip | |
remove a few old, bad, and/or useless scripts
I'm sure there are better layer orderers out there.
I'm not a typesetter, so I'll never actually use mine enough that I fix the glaring issues.
I don't even remember what inverse glow was for any more
Diffstat (limited to 'macros/garret.inverse-glow.lua')
| -rw-r--r-- | macros/garret.inverse-glow.lua | 55 | 
1 files changed, 0 insertions, 55 deletions
| diff --git a/macros/garret.inverse-glow.lua b/macros/garret.inverse-glow.lua deleted file mode 100644 index ec3edd1..0000000 --- a/macros/garret.inverse-glow.lua +++ /dev/null @@ -1,55 +0,0 @@ -script_name = "Inverse Glow" -script_description = "glow but it goes inside the letter" -script_author = "garret" -script_version = "1.0.1" -script_namespace = "garret.inverse-glow" - -local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl") -local util -if haveDepCtrl then -    depctrl = DependencyControl({ -        --feed="TODO", -        { "aegisub.util" }, -    }) -    util = depctrl:requireModules() -else -    util = require("aegisub.util") -end - -local patterns = { tags_text = "(%b{})(.*)", bord = "\\bord(%d+)", dark = "\\c(&?H*%x+&?)", light = "\\3c(&?H*%x+&?)" } - -local function main(subs, sel) -    for i = #sel, 1, -1 do -        local line = subs[sel[i]] -        local tags, text = line.text:match(patterns.tags_text) -        local blur = tags:match(patterns.bord) -- \bord = value of \blur -        local dark = tags:match(patterns.dark) -- \c = colour of dark layer -        local light = tags:match(patterns.light) -- \3c = colour of light layer - -        if tags and blur and dark and light then -- skip lines that don't have everything needed -            tags = tags:gsub(patterns.bord, "") -- remove \bord -            tags = tags:gsub(patterns.dark, "") -- and both colours -            tags = tags:gsub(patterns.light, "") - -            -- light layer -            local light_line = util.copy(line) -            light_line.layer = line.layer + 1 -            local light_tags = tags:gsub("}", "\\bord0\\shad0\\c" .. light .. "}") -- } (end of tag block) --> \cLightColour} -            light_line.text = light_tags .. text -            subs[sel[i]] = light_line - -            local dark_line = util.copy(line) -            dark_line.layer = line.layer + 2 -            local dark_tags = tags:gsub("}", "\\bord0\\shad0\\c" .. dark .. "\\blur" .. blur .. "}") -- } -> \cDarkColour\blurBord} -            dark_line.text = dark_tags .. text -            subs.insert(sel[i] + 1, dark_line) -        end -    end -    aegisub.set_undo_point(script_name) -end - -if haveDepCtrl then -    depctrl:registerMacro(main) -else -    aegisub.register_macro(script_name, script_description, main) -end |