8a0156aebac45e6486796c89fbb4cd33bc26956a
[ardour.git] / libs / surfaces / mackie / jog_wheel.cc
1 /*
2  * Copyright (C) 2006-2007 John Anderson
3  * Copyright (C) 2012-2015 Paul Davis <paul@linuxaudiosystems.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #include <cmath>
21
22 #include "ardour/session.h"
23
24 #include "jog_wheel.h"
25 #include "mackie_control_protocol.h"
26 #include "surface_port.h"
27 #include "controls.h"
28 #include "surface.h"
29
30 #include <algorithm>
31
32 using namespace ArdourSurface;
33 using namespace Mackie;
34
35 JogWheel::JogWheel (MackieControlProtocol & mcp)
36   : _mcp (mcp)
37   , _mode (scroll)
38 {
39 }
40
41 void
42 JogWheel::set_mode (Mode m)
43 {
44         _mode = m;
45 }
46
47 void JogWheel::jog_event (float delta)
48 {
49         if (_mcp.zoom_mode()) {
50                 if  (delta > 0) {
51                         for  (unsigned int i = 0; i < fabs (delta); ++i) {
52                                 _mcp.ZoomIn();
53                         }
54                 } else {
55                         for  (unsigned int i = 0; i < fabs (delta); ++i) {
56                                 _mcp.ZoomOut();
57                         }
58                 }
59                 return;
60         }
61
62         switch  (_mode) {
63         case scroll:
64                 _mcp.ScrollTimeline (delta/4.0);
65                 break;
66         default:
67                 break;
68         }
69 }
70