Skeleton for NI Maschine2 Surface
[ardour.git] / libs / surfaces / maschine2 / m2_map_mikro.cc
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
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, or (at your option)
7  * 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 Foundation,
16  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18
19 #include "m2_map_mikro.h"
20
21 using namespace ArdourSurface;
22
23 M2MapMikro::M2MapMikro ()
24         : M2Contols ()
25         , enc_master (16)
26 {}
27
28 M2ButtonInterface*
29 M2MapMikro::button (PhysicalButtonId id, Modifier m)
30 {
31         return M2Contols::button (id, m);
32 }
33
34 M2ButtonInterface*
35 M2MapMikro::button (SemanticButtonId id)
36 {
37         return M2Contols::button (id);
38 }
39
40 M2EncoderInterface*
41 M2MapMikro::encoder (unsigned int id)
42 {
43         if (id == 0) {
44                 return &enc_master;
45         }
46         // TODO map "nav" (select) and Left/Right to encoder(s) delta.
47         return M2Contols::encoder (id);
48 }
49
50 M2PadInterface*
51 M2MapMikro::pad (unsigned int id)
52 {
53         if (id < 16) {
54                 return &pads[id];
55         }
56         return M2Contols::pad (id);
57 }