Normalize API rename part 2
[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 <boost/weak_ptr.hpp>
26
27 #include "pbd/signals.h"
28
29 #include "evoral/Parameter.hpp"
30
31 #include "midi++/libmidi_visibility.h"
32 #include "ardour/libardour_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
46 class LIBARDOUR_API InstrumentInfo {
47   public:
48     InstrumentInfo();
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_patch_name_without (uint16_t bank, uint8_t program, uint8_t channel) const;
56     std::string get_controller_name (Evoral::Parameter param) const;
57     std::string get_instrument_name () const;
58
59     boost::shared_ptr<MIDI::Name::ChannelNameSet> get_patches (uint8_t channel);
60
61     PBD::Signal0<void> Changed;
62
63     static const MIDI::Name::PatchNameList& general_midi_patches();
64
65   private:
66     std::string external_instrument_model;
67     std::string external_instrument_mode;
68
69     boost::weak_ptr<ARDOUR::Processor> internal_instrument;
70
71     boost::shared_ptr<MIDI::Name::ChannelNameSet> plugin_programs_to_channel_name_set (boost::shared_ptr<Processor> p);
72     std::string get_plugin_patch_name (boost::shared_ptr<ARDOUR::Processor>, uint16_t bank, uint8_t program, uint8_t channel) const;
73
74     std::string get_patch_name (uint16_t bank, uint8_t program, uint8_t channel, bool with_extra) const;
75     static MIDI::Name::PatchNameList _gm_patches;
76 };
77
78 } /* namespace ARDOUR */
79
80
81 #endif /* __ardour_instrument_info_h__ */