better group support + mute and solo recall
This commit is contained in:
parent
7b42c7e361
commit
c7f7347822
@ -2,8 +2,8 @@ ardour {
|
|||||||
["type"] = "EditorAction",
|
["type"] = "EditorAction",
|
||||||
name = "Mixer Store",
|
name = "Mixer Store",
|
||||||
author = "Ardour Lua Taskforce",
|
author = "Ardour Lua Taskforce",
|
||||||
description = [[Stores the current Mixer state as a file that can be recalled arbitrarily.
|
description = [[Stores the current Mixer state as a file that can be read and recalled arbitrarily.
|
||||||
Supports: processor settings, gain, trim, pan and processor ordering plus some fancy voodoo magic for re-adding deleted plugins.]]
|
Supports: processor settings, grouping, mute, solo, gain, trim, pan and processor ordering, plus re-adding certain deleted plugins.]]
|
||||||
}
|
}
|
||||||
|
|
||||||
function factory() return function()
|
function factory() return function()
|
||||||
@ -18,12 +18,22 @@ function factory() return function()
|
|||||||
|
|
||||||
function group_by_id(id)
|
function group_by_id(id)
|
||||||
local group = nil
|
local group = nil
|
||||||
|
local id = tonumber(id)
|
||||||
for g in Session:route_groups():iter() do
|
for g in Session:route_groups():iter() do
|
||||||
local group_id = tonumber(g:to_stateful():id():to_s())
|
local group_id = tonumber(g:to_stateful():id():to_s())
|
||||||
if group_id == id then group = g end
|
if group_id == id then group = g end
|
||||||
end return group
|
end return group
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function route_group_interrogate(t)
|
||||||
|
local group = false
|
||||||
|
for g in Session:route_groups():iter() do
|
||||||
|
for r in g:route_list():iter() do
|
||||||
|
if r:name() == t:name() then group = g:to_stateful():id():to_s() end
|
||||||
|
end
|
||||||
|
end return group
|
||||||
|
end
|
||||||
|
|
||||||
local path = ARDOUR.LuaAPI.build_filename(Session:path(), "export", "params.lua")
|
local path = ARDOUR.LuaAPI.build_filename(Session:path(), "export", "params.lua")
|
||||||
function mark()
|
function mark()
|
||||||
|
|
||||||
@ -33,8 +43,8 @@ function factory() return function()
|
|||||||
|
|
||||||
local g_route_str, group_str = "", ""
|
local g_route_str, group_str = "", ""
|
||||||
local i = 0
|
local i = 0
|
||||||
for g in Session:route_groups():iter() do
|
for g in Session:route_groups():iter() do --@ToDo: Color, and other bools
|
||||||
group_str = "instance = {group_id = " .. g:to_stateful():id():to_s() .. ", routes = {"
|
group_str = "instance = {group_id = " .. g:to_stateful():id():to_s() .. ", name = " .. "\"" .. g:name() .. "\"" .. ", routes = {"
|
||||||
for t in g:route_list():iter() do
|
for t in g:route_list():iter() do
|
||||||
g_route_str = g_route_str .."[".. i .."] = " .. t:to_stateful():id():to_s() .. ","
|
g_route_str = g_route_str .."[".. i .."] = " .. t:to_stateful():id():to_s() .. ","
|
||||||
i = i + 1
|
i = i + 1
|
||||||
@ -76,7 +86,7 @@ function factory() return function()
|
|||||||
on = on + 1
|
on = on + 1
|
||||||
end
|
end
|
||||||
|
|
||||||
route_str = "instance = {route_id = " .. rid .. ", gain_control = " .. r:gain_control():get_value() .. ", trim_control = " .. r:trim_control():get_value() .. ", pan_control = " .. tostring(pan) .. ", order = {" .. proc_order_str .."}, cache = {" .. cache_str .. "}" .. "}"
|
route_str = "instance = {route_id = " .. rid .. ", gain_control = " .. r:gain_control():get_value() .. ", trim_control = " .. r:trim_control():get_value() .. ", pan_control = " .. tostring(pan) .. ", muted = " .. tostring(r:muted()) .. ", soloed = " .. tostring(r:soloed()) .. ", order = {" .. proc_order_str .."}, cache = {" .. cache_str .. "}, group = " .. tostring(route_group_interrogate(r)) .. "}"
|
||||||
file = io.open(path, "a")
|
file = io.open(path, "a")
|
||||||
file:write(route_str, "\r\n")
|
file:write(route_str, "\r\n")
|
||||||
file:close()
|
file:close()
|
||||||
@ -97,6 +107,7 @@ function factory() return function()
|
|||||||
if plug:parameter_is_input (j) and label ~= "hidden" and label:sub (1,1) ~= "#" then
|
if plug:parameter_is_input (j) and label ~= "hidden" and label:sub (1,1) ~= "#" then
|
||||||
local _, _, pd = ARDOUR.LuaAPI.plugin_automation(proc, n)
|
local _, _, pd = ARDOUR.LuaAPI.plugin_automation(proc, n)
|
||||||
local val = ARDOUR.LuaAPI.get_processor_param(proc, j, true)
|
local val = ARDOUR.LuaAPI.get_processor_param(proc, j, true)
|
||||||
|
print(proc:display_name(), label, val)
|
||||||
params[n] = val
|
params[n] = val
|
||||||
end
|
end
|
||||||
n = n + 1
|
n = n + 1
|
||||||
@ -132,8 +143,9 @@ function factory() return function()
|
|||||||
if group then
|
if group then
|
||||||
local g_id = instance["group_id"]
|
local g_id = instance["group_id"]
|
||||||
local routes = instance["routes"]
|
local routes = instance["routes"]
|
||||||
|
local name = instance["name"]
|
||||||
local group = group_by_id(g_id)
|
local group = group_by_id(g_id)
|
||||||
if group == nil then goto nextline end
|
if group == nil then group = Session:new_route_group(name) end
|
||||||
for k, v in pairs(routes) do
|
for k, v in pairs(routes) do
|
||||||
local rt = Session:route_by_id(PBD.ID(v))
|
local rt = Session:route_by_id(PBD.ID(v))
|
||||||
if not(rt:isnil()) then group:add(rt) end
|
if not(rt:isnil()) then group:add(rt) end
|
||||||
@ -141,14 +153,22 @@ function factory() return function()
|
|||||||
end
|
end
|
||||||
|
|
||||||
if route then
|
if route then
|
||||||
|
|
||||||
local old_order = ARDOUR.ProcessorList()
|
local old_order = ARDOUR.ProcessorList()
|
||||||
local r_id = PBD.ID(instance["route_id"])
|
local r_id = PBD.ID(instance["route_id"])
|
||||||
|
local muted, soloed = instance["muted"], instance["soloed"]
|
||||||
local order = instance["order"]
|
local order = instance["order"]
|
||||||
local cache = instance["cache"]
|
local cache = instance["cache"]
|
||||||
|
local group = instance["group"]
|
||||||
local gc, tc, pc = instance["gain_control"], instance["trim_control"], instance["pan_control"]
|
local gc, tc, pc = instance["gain_control"], instance["trim_control"], instance["pan_control"]
|
||||||
|
|
||||||
local rt = Session:route_by_id(r_id)
|
local rt = Session:route_by_id(r_id)
|
||||||
if rt:isnil() then goto nextline end
|
if rt:isnil() then goto nextline end
|
||||||
|
local cur_group_id = route_group_interrogate(rt)
|
||||||
|
if not(group) and (cur_group_id ~= false) then
|
||||||
|
local g = group_by_id(cur_group_id)
|
||||||
|
if g ~= nil then g:remove(rt) end
|
||||||
|
end
|
||||||
|
|
||||||
for k, v in pairs(order) do
|
for k, v in pairs(order) do
|
||||||
local proc = Session:processor_by_id(PBD.ID(v))
|
local proc = Session:processor_by_id(PBD.ID(v))
|
||||||
@ -156,13 +176,18 @@ function factory() return function()
|
|||||||
for id, name in pairs(cache) do
|
for id, name in pairs(cache) do
|
||||||
if v == id then
|
if v == id then
|
||||||
proc = new_plugin(name)
|
proc = new_plugin(name)
|
||||||
rt:add_processor_by_index(proc, 0, nil, true)
|
if not(proc:isnil()) then
|
||||||
invalidate[v] = proc:to_stateful():id():to_s()
|
rt:add_processor_by_index(proc, 0, nil, true)
|
||||||
|
invalidate[v] = proc:to_stateful():id():to_s()
|
||||||
|
old_order:push_back(proc)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if not(proc:isnil()) then old_order:push_back(proc) end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if muted then rt:mute_control():set_value(1, 1) else rt:mute_control():set_value(0, 1) end
|
||||||
|
if soloed then rt:solo_control():set_value(1, 1) else rt:solo_control():set_value(0, 1) end
|
||||||
rt:gain_control():set_value(gc, 1)
|
rt:gain_control():set_value(gc, 1)
|
||||||
rt:trim_control():set_value(tc, 1)
|
rt:trim_control():set_value(tc, 1)
|
||||||
if pc ~= false then rt:pan_azimuth_control():set_value(pc, 1) end
|
if pc ~= false then rt:pan_azimuth_control():set_value(pc, 1) end
|
||||||
|
Loading…
Reference in New Issue
Block a user