318a6452a070d58b2f242cec1d2a87b6bd1d104d
[ardour.git] / libs / surfaces / mackie / jog_wheel.cc
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
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