diff options
author | garret <garret@airmail.cc> | 2021-07-21 22:48:09 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2021-07-21 22:48:09 +0100 |
commit | d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed (patch) | |
tree | dbb8ae6c4ef3bc4e017a8640d2548080d6a81d6e | |
parent | 5f1fc4cbb321401d308f8510ef184f690a173aa9 (diff) | |
download | aegisub-scripts-d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed.tar.gz aegisub-scripts-d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed.tar.bz2 aegisub-scripts-d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed.zip |
new ones that do stuff with comments
each script is a different type of comment tho
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | append-comment.lua | 49 | ||||
-rw-r--r-- | select-comments.lua | 34 |
3 files changed, 91 insertions, 0 deletions
@@ -17,6 +17,10 @@ Makes checking pre-timing possible by putting some text in the lines (the actor ignores lines with text in them, prepends to lines with just tags in them +### Append Comment + +pops up a dialogue to put the comment in, and appends it to the selected lines. + ### Audio Clipper Extracts audio from the selected line(s), like the create audio clip button. @@ -75,3 +79,7 @@ originally created to convert stuff that should've been alpha-timed in the first ### Scenebleed Detector Finds scenebleeds in the selected lines, and marks them with an effect (`bleed`). + +### Select Comments + +take a guess diff --git a/append-comment.lua b/append-comment.lua new file mode 100644 index 0000000..9f62ed2 --- /dev/null +++ b/append-comment.lua @@ -0,0 +1,49 @@ +script_name = "Append Comment" +script_description = "ts do all the work pls kthxbye" +script_author = "garret" +script_version = "1.0.0" + +inspect = require 'inspect' +function log(level, msg) + if type(level) ~= "number" then + msg = level + level = 4 + end + if type(msg) == "table" then + msg = inspect(msg) + end + aegisub.log(level, tostring(msg).."\n") +end + +function clean(msg) +msg = msg:gsub("\n","\\N") +end + +function main(sub, sel) + dialog_config= + { + { + class="label", + x=0,y=0,width=1,height=1, + label="Comment:" + }, + { + class="textbox",name="msg", + x=0,y=1,width=1,height=2, + value="" + } + } + button, results = aegisub.dialog.display(dialog_config) + if button ~= false then + msg = results.msg + for _, i in ipairs(sel) do + local line = sub[i] + line.text = line.text.." {"..msg.."}" + sub[i] = line + end + else + aegisub.cancel() + end +end + +aegisub.register_macro(script_name, script_description, main) diff --git a/select-comments.lua b/select-comments.lua new file mode 100644 index 0000000..ce2e255 --- /dev/null +++ b/select-comments.lua @@ -0,0 +1,34 @@ +script_name = "Select Comments" +script_description = "Selects all commented lines" +script_author = "garret" +script_version = "1.0.0" + +-- logging stuff, for testing +-- commented out because for the user it's an external dependency for no good reason +--[[inspect = require 'inspect' +function log(level, msg) + if type(level) ~= "number" then + level = msg + level = 4 + end + if type(msg) == "table" then + msg = inspect(msg) + end + aegisub.log(level, tostring(msg) .. "\n") +end]] + +function main(sub, sel) + sel = {} + for i=1,#sub do + line=sub[i] + if line.comment == true then + --log(4, "comment on line "..i) + table.insert(sel, i) + --log(4, sel) + end + end + aegisub.set_undo_point(script_name) + return sel +end + +aegisub.register_macro(script_name, script_description, main) |