mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
* first primitive implementation of MidiPatchManager
* some cosmetic changes * added midi_patch_path() to libs/ardour/ardour/session_directory.h git-svn-id: svn://localhost/ardour2/branches/3.0@4299 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
6974dbdcd2
commit
a9bb336fc4
10 changed files with 211 additions and 8 deletions
|
|
@ -200,6 +200,7 @@ midi_region_view.cc
|
||||||
midi_scroomer.cc
|
midi_scroomer.cc
|
||||||
midi_streamview.cc
|
midi_streamview.cc
|
||||||
midi_time_axis.cc
|
midi_time_axis.cc
|
||||||
|
midi_patch_manager.cc
|
||||||
mixer_strip.cc
|
mixer_strip.cc
|
||||||
mixer_ui.cc
|
mixer_ui.cc
|
||||||
new_session_dialog.cc
|
new_session_dialog.cc
|
||||||
|
|
|
||||||
77
gtk2_ardour/midi_patch_manager.cc
Normal file
77
gtk2_ardour/midi_patch_manager.cc
Normal file
|
|
@ -0,0 +1,77 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 2008 Hans Baier
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <sigc++/sigc++.h>
|
||||||
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
|
#include "midi_patch_manager.h"
|
||||||
|
#include "pbd/file_utils.h"
|
||||||
|
#include "ardour/session.h"
|
||||||
|
#include "ardour/session_directory.h"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
using namespace sigc;
|
||||||
|
using namespace ARDOUR;
|
||||||
|
using namespace MIDI;
|
||||||
|
using namespace MIDI::Name;
|
||||||
|
using namespace PBD;
|
||||||
|
using namespace PBD::sys;
|
||||||
|
|
||||||
|
MidiPatchManager* MidiPatchManager::_manager = 0;
|
||||||
|
|
||||||
|
void
|
||||||
|
MidiPatchManager::set_session (Session& s)
|
||||||
|
{
|
||||||
|
_session = &s;
|
||||||
|
_session->GoingAway.connect (mem_fun (*this, &MidiPatchManager::drop_session));
|
||||||
|
|
||||||
|
refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
MidiPatchManager::refresh()
|
||||||
|
{
|
||||||
|
_documents.clear();
|
||||||
|
|
||||||
|
path path_to_patches = _session->session_directory().midi_patch_path();
|
||||||
|
|
||||||
|
if(!exists(path_to_patches)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(is_directory(path_to_patches));
|
||||||
|
|
||||||
|
Glib::PatternSpec pattern(Glib::ustring("*.midnam"));
|
||||||
|
vector<path> result;
|
||||||
|
|
||||||
|
find_matching_files_in_directory(path_to_patches, pattern, result);
|
||||||
|
|
||||||
|
for(vector<path>::iterator i = result.begin(); i != result.end(); ++i) {
|
||||||
|
boost::shared_ptr<MIDINameDocument> document(new MIDINameDocument(i->to_string()));
|
||||||
|
_documents.push_back(document);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
MidiPatchManager::drop_session ()
|
||||||
|
{
|
||||||
|
_session = 0;
|
||||||
|
_documents.clear();
|
||||||
|
}
|
||||||
71
gtk2_ardour/midi_patch_manager.h
Normal file
71
gtk2_ardour/midi_patch_manager.h
Normal file
|
|
@ -0,0 +1,71 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 2008 Hans Baier
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef MIDI_PATCH_MANAGER_H_
|
||||||
|
#define MIDI_PATCH_MANAGER_H_
|
||||||
|
|
||||||
|
#include "midi++/midnam_patch.h"
|
||||||
|
|
||||||
|
namespace ARDOUR {
|
||||||
|
class Session;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace MIDI
|
||||||
|
{
|
||||||
|
|
||||||
|
namespace Name
|
||||||
|
{
|
||||||
|
|
||||||
|
class MidiPatchManager
|
||||||
|
{
|
||||||
|
/// Singleton
|
||||||
|
private:
|
||||||
|
MidiPatchManager() {};
|
||||||
|
MidiPatchManager( const MidiPatchManager& );
|
||||||
|
MidiPatchManager& operator= (const MidiPatchManager&);
|
||||||
|
|
||||||
|
static MidiPatchManager* _manager;
|
||||||
|
|
||||||
|
public:
|
||||||
|
typedef std::list<boost::shared_ptr<MIDINameDocument> > MidiNameDocuments;
|
||||||
|
|
||||||
|
virtual ~MidiPatchManager() { _manager = 0; }
|
||||||
|
|
||||||
|
static MidiPatchManager& instance() {
|
||||||
|
if (_manager == 0) {
|
||||||
|
_manager = new MidiPatchManager();
|
||||||
|
}
|
||||||
|
return *_manager;
|
||||||
|
}
|
||||||
|
|
||||||
|
void set_session (ARDOUR::Session&);
|
||||||
|
|
||||||
|
private:
|
||||||
|
void drop_session();
|
||||||
|
void refresh();
|
||||||
|
|
||||||
|
ARDOUR::Session* _session;
|
||||||
|
MidiNameDocuments _documents;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Name
|
||||||
|
|
||||||
|
} // namespace MIDI
|
||||||
|
#endif /* MIDI_PATCH_MANAGER_H_ */
|
||||||
|
|
@ -141,9 +141,9 @@ MidiTimeAxisView::MidiTimeAxisView (PublicEditor& ed, Session& sess, boost::shar
|
||||||
}
|
}
|
||||||
|
|
||||||
// add channel selector expander
|
// add channel selector expander
|
||||||
HBox *channel_selector_box = manage(new HBox());
|
HBox *midi_expander_box = manage(new HBox());
|
||||||
channel_selector_box->pack_start(_channel_selector, false, false);
|
midi_expander_box->pack_start(_channel_selector, false, false);
|
||||||
_midi_expander.add(*channel_selector_box);
|
_midi_expander.add(*midi_expander_box);
|
||||||
_midi_expander.property_expanded().signal_changed().connect(
|
_midi_expander.property_expanded().signal_changed().connect(
|
||||||
mem_fun(this, &MidiTimeAxisView::channel_selector_toggled));
|
mem_fun(this, &MidiTimeAxisView::channel_selector_toggled));
|
||||||
controls_vbox.pack_start(_midi_expander, false, false);
|
controls_vbox.pack_start(_midi_expander, false, false);
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,13 @@ public:
|
||||||
* root_path()/interchange/session_name/midifiles
|
* root_path()/interchange/session_name/midifiles
|
||||||
*/
|
*/
|
||||||
const path midi_path () const;
|
const path midi_path () const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the absolute path to the directory in which
|
||||||
|
* the session stores MIDNAM patch files, ie
|
||||||
|
* root_path()/interchange/session_name/patchfiles
|
||||||
|
*/
|
||||||
|
const path midi_patch_path () const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return The absolute path to the directory in which all
|
* @return The absolute path to the directory in which all
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ namespace ARDOUR {
|
||||||
const char* const old_sound_dir_name = X_("sounds");
|
const char* const old_sound_dir_name = X_("sounds");
|
||||||
const char* const sound_dir_name = X_("audiofiles");
|
const char* const sound_dir_name = X_("audiofiles");
|
||||||
const char* const midi_dir_name = X_("midifiles");
|
const char* const midi_dir_name = X_("midifiles");
|
||||||
|
const char* const midi_patch_dir_name = X_("patchfiles");
|
||||||
const char* const peak_dir_name = X_("peaks");
|
const char* const peak_dir_name = X_("peaks");
|
||||||
const char* const dead_sound_dir_name = X_("dead_sounds");
|
const char* const dead_sound_dir_name = X_("dead_sounds");
|
||||||
const char* const dead_midi_dir_name = X_("dead_midi");
|
const char* const dead_midi_dir_name = X_("dead_midi");
|
||||||
|
|
|
||||||
|
|
@ -478,7 +478,7 @@ PluginManager::vst_discover (string path)
|
||||||
|
|
||||||
PluginInfoPtr info(new VSTPluginInfo);
|
PluginInfoPtr info(new VSTPluginInfo);
|
||||||
|
|
||||||
/* what a goddam joke freeware VST is */
|
/* what a joke freeware VST is */
|
||||||
|
|
||||||
if (!strcasecmp ("The Unnamed plugin", finfo->name)) {
|
if (!strcasecmp ("The Unnamed plugin", finfo->name)) {
|
||||||
info->name = PBD::basename_nosuffix (path);
|
info->name = PBD::basename_nosuffix (path);
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,12 @@ SessionDirectory::midi_path () const
|
||||||
return sources_root() / midi_dir_name;
|
return sources_root() / midi_dir_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const path
|
||||||
|
SessionDirectory::midi_patch_path () const
|
||||||
|
{
|
||||||
|
return sources_root() / midi_patch_path();
|
||||||
|
}
|
||||||
|
|
||||||
const path
|
const path
|
||||||
SessionDirectory::peak_path () const
|
SessionDirectory::peak_path () const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,34 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 2008 Hans Baier
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef MIDNAM_PATCH_H_
|
#ifndef MIDNAM_PATCH_H_
|
||||||
#define MIDNAM_PATCH_H_
|
#define MIDNAM_PATCH_H_
|
||||||
|
|
||||||
#include "pbd/stateful.h"
|
|
||||||
#include "midi++/event.h"
|
|
||||||
#include "pbd/xml++.h"
|
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
|
#include "pbd/stateful.h"
|
||||||
|
#include "midi++/event.h"
|
||||||
|
#include "pbd/xml++.h"
|
||||||
|
|
||||||
namespace MIDI
|
namespace MIDI
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,23 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 2008 Hans Baier
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
*/
|
||||||
|
|
||||||
#include "midi++/midnam_patch.h"
|
#include "midi++/midnam_patch.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue