fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / record_safe_control.cc
1 /*
2     Copyright (C) 2016 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include "ardour/audioengine.h"
20 #include "ardour/record_safe_control.h"
21
22 #include "pbd/i18n.h"
23
24 using namespace ARDOUR;
25 using namespace PBD;
26
27 RecordSafeControl::RecordSafeControl (Session& session, std::string const & name, Recordable& r)
28         : SlavableAutomationControl (session, RecSafeAutomation, ParameterDescriptor (RecSafeAutomation),
29                                      boost::shared_ptr<AutomationList>(new AutomationList(Evoral::Parameter(RecSafeAutomation))),
30                                      name)
31         , _recordable (r)
32 {
33         _list->set_interpolation(Evoral::ControlList::Discrete);
34
35         /* record-enable changes must be synchronized by the process cycle */
36         set_flags (Controllable::Flag (flags() | Controllable::RealTime));
37 }
38
39 void
40 RecordSafeControl::actually_set_value (double val, Controllable::GroupControlDisposition gcd)
41 {
42         if (val && !_recordable.can_be_record_safe()) {
43                 std::cerr << "rec-enable not allowed\n";
44                 return;
45         }
46
47         SlavableAutomationControl::actually_set_value (val, gcd);
48 }
49