summaryrefslogtreecommitdiff
path: root/libs/ardour/automation_watch.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2015-03-25 14:28:25 -0500
committerBen Loftis <ben@harrisonconsoles.com>2015-03-25 14:28:36 -0500
commit4a7236b773d691fd3c1647fab8f54b2f56b8bbb2 (patch)
tree083580f25d11ae8986934a3ce91ebce334195e6c /libs/ardour/automation_watch.cc
parent3c55eb1e39e24848766b9fd4379166d3d52db30b (diff)
fix touch-recording of automation in a loop
Diffstat (limited to 'libs/ardour/automation_watch.cc')
-rw-r--r--libs/ardour/automation_watch.cc24
1 files changed, 20 insertions, 4 deletions
diff --git a/libs/ardour/automation_watch.cc b/libs/ardour/automation_watch.cc
index 5fa7285c67..b300680f87 100644
--- a/libs/ardour/automation_watch.cc
+++ b/libs/ardour/automation_watch.cc
@@ -44,6 +44,7 @@ AutomationWatch::instance ()
AutomationWatch::AutomationWatch ()
: _thread (0)
+ , _last_time (0)
, _run_thread (false)
{
@@ -121,12 +122,25 @@ AutomationWatch::timer ()
Glib::Threads::Mutex::Lock lm (automation_watch_lock);
framepos_t time = _session->audible_frame ();
-
- for (AutomationWatches::iterator aw = automation_watches.begin(); aw != automation_watches.end(); ++aw) {
- if ((*aw)->alist()->automation_write()) {
- (*aw)->list()->add (time, (*aw)->user_double(), true);
+ if (time > _last_time) { //we only write automation in the forward direction; this fixes automation-recording in a loop
+ for (AutomationWatches::iterator aw = automation_watches.begin(); aw != automation_watches.end(); ++aw) {
+ if ((*aw)->alist()->automation_write()) {
+ (*aw)->list()->add (time, (*aw)->user_double(), true);
+ }
+ }
+ } else { //transport stopped or reversed. stop the automation pass and start a new one (for bonus points, someday store the previous pass in an undo record)
+ for (AutomationWatches::iterator aw = automation_watches.begin(); aw != automation_watches.end(); ++aw) {
+ DEBUG_TRACE (DEBUG::Automation, string_compose ("%1: transport in rewind, speed %2, in write pass ? %3 writing ? %4\n",
+ (*aw)->name(), _session->transport_speed(), rolling,
+ (*aw)->alist()->automation_write()));
+ (*aw)->list()->set_in_write_pass (false);
+ if ( (*aw)->alist()->automation_write() ) {
+ (*aw)->list()->set_in_write_pass (true);
+ }
}
}
+
+ _last_time = time;
}
return TRUE;
@@ -170,6 +184,8 @@ AutomationWatch::transport_state_change ()
}
bool rolling = _session->transport_rolling();
+
+ _last_time = _session->audible_frame ();
{
Glib::Threads::Mutex::Lock lm (automation_watch_lock);