Use XMLNode::get/set_property API in ARDOUR::MonitorChoice class
[ardour.git] / libs / ardour / monitor_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/monitor_control.h"
20 #include "ardour/types_convert.h"
21
22 #include "pbd/i18n.h"
23
24 using namespace ARDOUR;
25 using namespace PBD;
26
27 MonitorControl::MonitorControl (Session& session, std::string const & name, Monitorable& m)
28         : SlavableAutomationControl (session, MonitoringAutomation, ParameterDescriptor (MonitoringAutomation),
29                                      boost::shared_ptr<AutomationList>(new AutomationList(Evoral::Parameter(MonitoringAutomation))),
30                                      name)
31
32         , _monitorable (m)
33         , _monitoring (MonitorAuto)
34 {
35         _list->set_interpolation(Evoral::ControlList::Discrete);
36         /* monitoring changes must be synchronized by the process cycle */
37         set_flags (Controllable::Flag (flags() | Controllable::RealTime));
38 }
39
40 void
41 MonitorControl::actually_set_value (double val, Controllable::GroupControlDisposition gcd)
42 {
43         int v = (int) val;
44         switch (v) {
45         case MonitorAuto:
46         case MonitorInput:
47         case MonitorDisk:
48         case MonitorCue:
49                 break;
50         default:
51                 /* illegal value */
52                 return;
53         }
54
55         _monitoring = MonitorChoice (v);
56         AutomationControl::actually_set_value (val, gcd);
57 }
58
59 XMLNode&
60 MonitorControl::get_state ()
61 {
62         XMLNode& node (SlavableAutomationControl::get_state());
63         node.set_property (X_("monitoring"), _monitoring);
64         return node;
65 }
66
67 int
68 MonitorControl::set_state (XMLNode const & node, int version)
69 {
70         SlavableAutomationControl::set_state (node, version);
71
72         if (!node.get_property (X_("monitoring"), _monitoring)) {
73                 _monitoring = MonitorAuto;
74         }
75
76         return 0;
77 }