/[svn]/linuxsampler/trunk/src/engines/InstrumentEditor.cpp
ViewVC logotype

Contents of /linuxsampler/trunk/src/engines/InstrumentEditor.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1212 - (show annotations) (download)
Tue May 29 23:59:36 2007 UTC (16 years, 10 months ago) by schoenebeck
File size: 3118 byte(s)
* added highly experimental support for on-the-fly instrument editing
  within the sampler's process (by using instrument editor plugins),
  you'll notice the new "Registered instrument editors:" message on
  startup, the plugin path can be overridden at compile time with
  ./configure --enable-plugin-dir=/some/dir
* added a new LSCP command "EDIT INSTRUMENT <sampler-channel>" to spawn
  a matching instrument editor for the instrument on the given sampler
  channel (LSCP command syntax might be subject to change soon)
* config.h is not going to be installed along with liblinuxsampler's
  API header files anymore (not necessary anymore)
* take care of $(DESTDIR) when creating the instruments DB on 'make
  install' rule (needed for packaging and cross compilation)
* bumped version to 0.4.0.5cvs

1 /***************************************************************************
2 * *
3 * Copyright (C) 2007 Christian Schoenebeck *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
18 * MA 02111-1307 USA *
19 ***************************************************************************/
20
21 #include "InstrumentEditor.h"
22
23 #include <algorithm>
24 #include <functional>
25
26 namespace LinuxSampler {
27
28 InstrumentEditor::InstrumentEditor() : Thread(false, false, -1, 0) {
29 pInstrument = NULL;
30 }
31
32 void InstrumentEditor::Launch(void* pInstrument, String sTypeName, String sTypeVersion) {
33 dmsg(1,("InstrumentEditor::Launch(instr=%x,type=%s,version=%s)\n", pInstrument, sTypeName.c_str(), sTypeVersion.c_str()));
34 // prepare the editor's mandatory parameters
35 this->pInstrument = pInstrument;
36 this->sTypeName = sTypeName;
37 this->sTypeVersion = sTypeVersion;
38 // start the editor in its own thread
39 StartThread();
40 }
41
42 int InstrumentEditor::Main() {
43 dmsg(1,("InstrumentEditor::Main()\n"));
44 // run the editor's main loop
45 int iResult = Main(pInstrument, sTypeName, sTypeVersion);
46 // reset editor parameters
47 this->pInstrument = NULL;
48 this->sTypeName = "";
49 this->sTypeVersion = "";
50 dmsg(1,("Instrument editor '%s' returned with exit status %d\n", Name().c_str(), iResult));
51 // notify all registered listeners
52 std::for_each(
53 listeners.begin(), listeners.end(),
54 std::bind2nd(std::mem_fun(&InstrumentEditorListener::OnInstrumentEditorQuit), this)
55 );
56 // done
57 return iResult;
58 }
59
60 void InstrumentEditor::AddListener(InstrumentEditorListener* pListener) {
61 listeners.insert(pListener);
62 }
63
64 void InstrumentEditor::RemoveListener(InstrumentEditorListener* pListener) {
65 listeners.erase(pListener);
66 }
67
68 } // namespace LinuxSampler

  ViewVC Help
Powered by ViewVC