redesign VCA control over gain (and theoretically other scalar controls)
[ardour.git] / libs / ardour / ardour / automation_watch.h
1 /*
2     Copyright (C) 2012 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19 #ifndef __ardour_automation_watch_h__
20 #define __ardour_automation_watch_h__
21
22 #include <set>
23 #include <boost/shared_ptr.hpp>
24 #include <glibmm/threads.h>
25 #include <sigc++/signal.h>
26
27 #include "pbd/signals.h"
28
29 #include "ardour/session_handle.h"
30 #include "ardour/types.h"
31
32 namespace ARDOUR {
33
34 class AutomationControl;
35
36 class LIBARDOUR_API AutomationWatch : public sigc::trackable, public ARDOUR::SessionHandlePtr, public PBD::ScopedConnectionList {
37   public:
38     static AutomationWatch& instance();
39
40     void add_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
41     void remove_automation_watch (boost::shared_ptr<ARDOUR::AutomationControl>);
42     void transport_stop_automation_watches (ARDOUR::framepos_t);
43     void set_session (ARDOUR::Session*);
44
45     gint timer ();
46
47   private:
48     typedef std::set<boost::shared_ptr<ARDOUR::AutomationControl> > AutomationWatches;
49
50     AutomationWatch ();
51     ~AutomationWatch();
52
53     static AutomationWatch* _instance;
54     Glib::Threads::Thread*  _thread;
55     framepos_t              _last_time;
56     bool                    _run_thread;
57     AutomationWatches        automation_watches;
58     Glib::Threads::Mutex     automation_watch_lock;
59     PBD::ScopedConnection    transport_connection;
60
61     void transport_state_change ();
62     void remove_weak_automation_watch (boost::weak_ptr<ARDOUR::AutomationControl>);
63     void thread ();
64 };
65
66 }
67
68 #endif // __ardour_automation_watch_h__