More consistent dialog window titles (Recall Mixer Settings).
[ardour.git] / scripts / mixer_settings_recall.lua
index e2db3b816be0462d1e9dac91607b8eebd45ef87e..363c7bcf3b22355d45f4e162360149cb0b3d193c 100644 (file)
@@ -107,16 +107,14 @@ function factory () return function ()
                for l in file:lines() do
                        --print(i, l)
 
-                       local exec_line = dry_run["dothis-"..i]
+                       local create_groups = dry_run["create_groups"]
                        local skip_line = false
-                       if not(exec_line == nil) and not(exec_line) then
-                               skip_line = true
-                       end
 
                        local plugin, route, group = false, false, false
                        local f = load(l)
 
                        if debug then
+                               --print('create_groups ' .. tostring(create_groups))
                                print(i, string.sub(l, 0, 29), f)
                        end
 
@@ -127,25 +125,25 @@ function factory () return function ()
                        if instance["group_id"]  then group = true end
 
                        if group then
-                               if skip_line then goto nextline end
-
                                local g_id   = instance["group_id"]
                                local routes = instance["routes"]
                                local name   = instance["name"]
                                local group  = group_by_id(g_id)
                                if not(group) then
-                                       local group = Session:new_route_group(name)
-                                       for _, v in pairs(routes) do
-                                               local rt = Session:route_by_id(PBD.ID(v))
-                                               if rt:isnil() then rt = Session:route_by_name(name) end
-                                               if not(rt:isnil()) then group:add(rt) end
+                                       if create_groups then
+                                               local group = Session:new_route_group(name)
+                                               for _, v in pairs(routes) do
+                                                       local rt = Session:route_by_id(PBD.ID(v))
+                                                       if rt:isnil() then rt = Session:route_by_name(name) end
+                                                       if not(rt:isnil()) then group:add(rt) end
+                                               end
                                        end
                                end
                        end
 
                        if route then
                                local substitution = tonumber(dry_run["destination-"..i])
-                               if skip_line or (substitution == 0) then
+                               if substitution == 0 then
                                        bypass_routes[#bypass_routes + 1] = instance["route_id"]
                                        goto nextline
                                end
@@ -219,8 +217,6 @@ function factory () return function ()
                        end
 
                        if plugin then
-                               if skip_line then goto nextline end
-
                                --if the plugin is owned by a route
                                --we decided not to use, skip it
                                for _, v in pairs(bypass_routes) do
@@ -275,13 +271,12 @@ function factory () return function ()
 
                local i = 0
                local dry_table = {
-                       {type = "label", align="right", key="col-0-title", col=0, colspan=1, title = 'Settings:'},
-                       {type = "label", align="right", key="col-1-title", col=1, colspan=1, title = 'Source:'},
-                       {type = "label", align="left", key="col-2-title", col=2, colspan=1, title = 'Destination:'},
+                       {type = "label", align="right", key="col-1-title", col=0, colspan=1, title = 'Source:'},
+                       {type = "label", align="left", key="col-2-title", col=1, colspan=1, title = 'Destination:'},
                }
                local file = io.open(path, "r")
                assert(file, "File not found!")
-
+               pad = 0
                for l in file:lines() do
                        local do_plugin, do_route, do_group = false, false, false
                        local f = load(l)
@@ -304,19 +299,16 @@ function factory () return function ()
                                local group_ptr  = group_by_id(group_id)
 
                                if not(group_ptr) then
-                                       new_group = Session:new_route_group(group_name)
-                                       dlg_title = string.format("%s.", group_name, new_group:name())
+                                       dlg_title = string.format("(Group) %s.", group_name)
                                        --action_title = "will create and use settings"
                                else
-                                       dlg_title = string.format("%s.", group_ptr:name())
+                                       dlg_title = string.format("(Group) %s.", group_ptr:name())
                                        --action_title = "will use group settings"
                                end
                                table.insert(dry_table, {
-                                       type = "label", align="right", key =  "type-"..i , col = 0, colspan = 1, title = "(Group)"
-                               })
-                               table.insert(dry_table, {
-                                       type = "label", align="right", key =  "group-"..i , col = 1, colspan = 1, title = dlg_title
+                                       order=pad, type = "label", align="right", key =  "group-"..i , col = 0, colspan = 1, title = dlg_title
                                })
+                               pad = pad + 1
                        end
 
                        if do_route then
@@ -340,18 +332,19 @@ function factory () return function ()
                                        --action_title = "will use route settings"
                                end
                                if route_ptr:isnil() then name = route_name else name = route_ptr:name() end
+
                                table.insert(dry_table, {
-                                       type = "label",    align="right", key = "type-"..i , col = 0, colspan = 1, title = "(Strip)"
-                               })
-                               table.insert(dry_table, {
-                                       type = "label",    align="right", key = "route-"..i , col = 1, colspan = 1, title = dlg_title
+                                       order=instance['pi_order']+pad, type = "label",    align="right", key = "route-"..i , col = 0, colspan = 1, title = dlg_title
                                })
                                table.insert(dry_table, {
-                                       type = "dropdown", align="left", key = "destination-"..i, col = 2, colspan = 1, title = "", values = route_values, default = name or "----"
+                                       type = "dropdown", align="left", key = "destination-"..i, col = 1, colspan = 1, title = "", values = route_values, default = name or "----"
                                })
                        end
                        i = i + 1
                end
+               table.insert(dry_table, {
+                       type = "checkbox", col=0, colspan=2, align="left",  key = "create_groups", default = true, title = "Create Groups if necessary?"
+               })
                return dry_table
        end
 
@@ -369,7 +362,7 @@ function factory () return function ()
 
        local recall_options = {
                { type = "label", col=0, colspan=10, align="left", title = "" },
-               { type = "file",  col=0, colspan=15, align="left", key = "file", title = "Select a Settings File:",  path = ARDOUR.LuaAPI.build_filename(Session:path(), "export", "params.lua") },
+               { type = "file",  col=0, colspan=15, align="left", key = "file", title = "Select a Settings File",  path = ARDOUR.LuaAPI.build_filename(Session:path(), "export", "params.lua") },
                { type = "label", col=0, colspan=10, align="left", title = "" },
        }
 
@@ -386,7 +379,7 @@ function factory () return function ()
                                recall_options[2]['path'] = global_default_path
                                local rv = LuaDialog.Dialog("Recall Mixer Settings:", recall_options):run()
                                if not(rv) then return end
-                               local dry_return = LuaDialog.Dialog("Mixer Store:", dry_run(false, rv['file'])):run()
+                               local dry_return = LuaDialog.Dialog("Recall Mixer Settings:", dry_run(false, rv['file'])):run()
                                if dry_return then
                                        recall(false, rv['file'], dry_return)
                                else
@@ -401,15 +394,15 @@ function factory () return function ()
 
                if gvld['recall-dir'] == 2 then
                        local local_ok = isdir(local_path)
-                       local local_default_path = ARDOUR.LuaAPI.build_filename(local_path, 'stub')
+                       local local_default_path = ARDOUR.LuaAPI.build_filename(local_path, 'asdf')
                        print(local_default_path)
                        if local_ok then
-                               recall_options[2]['path'] = local_path
+                               recall_options[2]['path'] = local_default_path
                                local rv = LuaDialog.Dialog("Recall Mixer Settings:", recall_options):run()
                                if not(rv) then return end
-                               local dry_return = LuaDialog.Dialog("Mixer Store:", dry_run(false, rv['file'])):run()
+                               local dry_return = LuaDialog.Dialog("Recall Mixer Settings:", dry_run(false, rv['file'])):run()
                                if dry_return then
-                                       recall(false, rv['file'], dry_return)
+                                       recall(true, rv['file'], dry_return)
                                else
                                        return
                                end