summaryrefslogtreecommitdiff
path: root/share/scripts/metering_point.lua
blob: 3a229a640ba3b5b79a03e7c102083d16c6fa07b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
ardour {
    ["type"] = "EditorAction",
    name = "Meter Point",
    author = "Ardour Lua Taskforce",
    description = [[Batch change metering point for selected or tracks in the given session.]]
}

function factory () return function ()

	local dialog_options = {
		{ type = "label", colspan = 5, title = "" },
		{ type = "radio", col = 1, colspan = 7, key = "select", title = "", values ={ ["Set All: Input"] = ARDOUR.MeterPoint.MeterInput, ["Set All: Pre Fader"] = ARDOUR.MeterPoint.MeterPreFader, ["Set All: Post Fader"] = ARDOUR.MeterPoint.MeterPostFader, ["Set All: Output"] = ARDOUR.MeterPoint.MeterOutput, ["Set All: Custom"] = ARDOUR.MeterPoint.MeterCustom}, default = "Set All: Input"},
		{ type = "label", colspan = 5, title = "" },
		{ type = "checkbox", col=1, colspan = 1, key = "select-tracks", default = true, title = "Selected tracks only"},
		{ type = "checkbox", col=2, colspan = 1, key = "rec-tracks", default = true, title = "Record Enabled tracks only"},
		{ type = "label", colspan = 5, title = "" },
	}

	local rv = LuaDialog.Dialog("Change all Meter Taps:", dialog_options):run()
	if not rv then return end -- user cancelled

	local rl;
	if rv['select-tracks'] then
		rl = Editor:get_selection ()
	else
		rl = Session:get_routes()
	end

	local meter_point = rv['select']

	for route in rl:iter() do
		if not(route:to_track():isnil()) then
			if rv['rec-tracks'] then
				if route:rec_enable_control():get_value() == 1.0 then
					route:to_track():set_meter_point(meter_point, false)
				end
			else
				route:to_track():set_meter_point(meter_point, false)
			end
		end
	end
end end