Update scripts to new request_locate() API
This commit is contained in:
parent
8d557dd56a
commit
c509c94824
@ -48,7 +48,7 @@ function factory (params) return function ()
|
||||
end
|
||||
local t_end = ARDOUR.LuaAPI.monotonic_time ()
|
||||
|
||||
Session:request_locate((playhead + step * n_steps), false, 5)
|
||||
Session:request_locate((playhead + step * n_steps), ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI)
|
||||
print (count_regions (), (t_end - t_start) / 1000 / n_steps)
|
||||
collectgarbage ();
|
||||
ARDOUR.LuaAPI.usleep(500000)
|
||||
|
@ -27,7 +27,7 @@ function factory () return function ()
|
||||
|
||||
for l in Session:locations():list():iter() do
|
||||
if l:is_mark() and string.find (l:name(), "^" .. rv['marker'] .. ".*$") then
|
||||
Session:request_locate (l:start())
|
||||
Session:request_locate (l:start (), ARDOUR.LocateTransportDisposition.RollIfAppropriate, ARDOUR.TransportRequestSource.TRS_UI)
|
||||
if keep then goto restart end
|
||||
return
|
||||
end
|
||||
|
@ -259,7 +259,7 @@ function factory (params) return function ()
|
||||
|
||||
--advance playhead so it's just after the newly added regions
|
||||
if n_regions_created > 0 then
|
||||
Session:request_locate((playhead + loop:length() * n_paste),false,5) --TRS_UI
|
||||
Session:request_locate (0, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI)
|
||||
end
|
||||
|
||||
-- all done, commit the combined Undo Operation
|
||||
|
Loading…
Reference in New Issue
Block a user