f83b2c06322dac16618955b13a329565ce354e8d
[ardour.git] / libs / ardour / ardour / instrument_info.h
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 "pbd/signals.h"
26
27 #include "midi++/midnam_patch.h"
28
29 #include <boost/weak_ptr.hpp>
30
31 namespace ARDOUR {
32
33 class Processor;
34
35 class InstrumentInfo {
36   public:
37     InstrumentInfo();
38     ~InstrumentInfo ();
39
40     void set_external_instrument (const std::string& model, const std::string& mode);
41     void set_internal_instrument (boost::shared_ptr<ARDOUR::Processor>);
42
43     std::string get_patch_name (uint16_t bank, uint8_t program, uint8_t channel) const;
44     std::string get_instrument_name () const;
45
46     boost::shared_ptr<MIDI::Name::ChannelNameSet> get_patches (uint8_t channel);
47
48     PBD::Signal0<void> Changed;
49
50     static const MIDI::Name::PatchBank::PatchNameList& general_midi_patches();
51
52   private:
53     std::string external_instrument_model;
54     std::string external_instrument_mode;
55
56     boost::weak_ptr<ARDOUR::Processor> internal_instrument;
57
58     boost::shared_ptr<MIDI::Name::ChannelNameSet> plugin_programs_to_channel_name_set (boost::shared_ptr<Processor> p);
59     std::string get_plugin_patch_name (boost::shared_ptr<ARDOUR::Processor>, uint16_t bank, uint8_t program, uint8_t channel) const;
60
61     static MIDI::Name::PatchBank::PatchNameList _gm_patches;
62 };
63
64 } /* namespace ARDOUR */
65
66
67 #endif /* __ardour_instrument_info_h__ */