summaryrefslogtreecommitdiff
path: root/scripts/addscopes.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-18 22:57:53 +0100
committerRobin Gareus <robin@gareus.org>2016-03-18 22:57:53 +0100
commitabd65cfc70c72115bbe35aac86ff3721ef9131ef (patch)
tree5f8e4e2b6d5b2faa74fd9e1bbfd2ef4f40effdd0 /scripts/addscopes.lua
parent79ea6c82487c47c377abff59ab8625f23b3b7809 (diff)
Add a Lua Action Script to add scopes to all tracks
Diffstat (limited to 'scripts/addscopes.lua')
-rw-r--r--scripts/addscopes.lua55
1 files changed, 55 insertions, 0 deletions
diff --git a/scripts/addscopes.lua b/scripts/addscopes.lua
new file mode 100644
index 0000000000..341773483c
--- /dev/null
+++ b/scripts/addscopes.lua
@@ -0,0 +1,55 @@
+ardour {
+ ["type"] = "EditorAction",
+ name = "Add Scopes",
+ license = "MIT",
+ author = "Robin Gareus",
+ email = "robin@gareus.org",
+ site = "http://gareus.org",
+ description = [[Add 'Inline Scope' Lua Processor to all Tracks]]
+}
+
+function action_params ()
+ return
+ {
+ ["unique"] = { title = "Only add Scope if non is present already (yes/no)", default = "yes"},
+ ["position"] = { title = "Insert Position from top (0,..)", default = "0"},
+ }
+end
+
+
+function factory (params)
+ return function ()
+ -- get configuration
+ local uniq = params["unique"] or "yes"
+ local pos = params["position"] or 0
+
+ -- loop over all tracks
+ for t in Session:get_tracks():iter() do
+ local insert = true;
+
+ -- check if a scope is already present
+ if uniq ~= "no" then
+ local proc;
+ local i = 0;
+ repeat
+ -- get Nth Ardour::Processor
+ proc = t:nth_plugin (i)
+ -- check if it's a scope
+ if (not proc:isnil() and proc:display_name () == "Inline Scope") then
+ insert = false;
+ end
+ i = i + 1
+ until proc:isnil() or insert == false
+ end
+
+ -- create a new processor and insert it
+ if insert then
+ local a = ARDOUR.LuaAPI.new_luaproc(Session, "Inline Scope");
+ if (not a:isnil()) then
+ t:add_processor_by_index(a, pos, nil, true)
+ a = nil
+ end
+ end
+ end
+ end
+end