ardour
instrument_info.h
Go to the documentation of this file.
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 #ifndef __ardour_instrument_info_h__
20 #define __ardour_instrument_info_h__
21 
22 #include <string>
23 #include <stdint.h>
24 
25 #include <boost/weak_ptr.hpp>
26 
27 #include "pbd/signals.h"
28 
29 #include "evoral/Parameter.hpp"
30 
31 #include "midi++/libmidi_visibility.h"
33 
34 namespace MIDI {
35  namespace Name {
36  class ChannelNameSet;
37  class Patch;
38  typedef std::list<boost::shared_ptr<Patch> > PatchNameList;
39  }
40 }
41 
42 namespace ARDOUR {
43 
44 class Processor;
45 
47  public:
49  ~InstrumentInfo ();
50 
51  void set_external_instrument (const std::string& model, const std::string& mode);
52  void set_internal_instrument (boost::shared_ptr<ARDOUR::Processor>);
53 
54  std::string get_patch_name (uint16_t bank, uint8_t program, uint8_t channel) const;
55  std::string get_controller_name (Evoral::Parameter param) const;
56  std::string get_instrument_name () const;
57 
58  boost::shared_ptr<MIDI::Name::ChannelNameSet> get_patches (uint8_t channel);
59 
60  PBD::Signal0<void> Changed;
61 
62  static const MIDI::Name::PatchNameList& general_midi_patches();
63 
64  private:
67 
69 
71  std::string get_plugin_patch_name (boost::shared_ptr<ARDOUR::Processor>, uint16_t bank, uint8_t program, uint8_t channel) const;
72 
74 };
75 
76 } /* namespace ARDOUR */
77 
78 
79 #endif /* __ardour_instrument_info_h__ */
PBD::Signal0< void > Changed
static MIDI::Name::PatchNameList _gm_patches
Definition: amp.h:29
std::string external_instrument_mode
boost::weak_ptr< ARDOUR::Processor > internal_instrument
#define LIBARDOUR_API
std::list< boost::shared_ptr< Patch > > PatchNameList
Definition: ardour.h:41
std::string external_instrument_model