1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: vst.h,v 1.11.2.3 2009/11/25 09:09:44 terminator356 Exp $
// (C) Copyright 2004 Werner Schweer (ws@seh.de)
//
// 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; 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=========================================================
#ifndef __VST_H__
#define __VST_H__
#include "synth.h"
//class QMenu;
namespace MusEGui {
class PopupMenu;
}
namespace MusECore {
struct _FSTHandle;
struct _FST;
//---------------------------------------------------------
// VstSynth
//---------------------------------------------------------
class VstSynth : public Synth {
_FSTHandle* fstHandle;
public:
VstSynth(const QFileInfo& fi) : Synth(fi, fi->baseName()) {
fstHandle = 0;
}
virtual ~VstSynth() {}
virtual Type synthType() const { return VST_SYNTH; }
virtual void incInstances(int val);
virtual void* instantiate();
virtual SynthIF* createSIF(SynthI*) const;
};
//---------------------------------------------------------
// VstSynthIF
// VSTi synthesizer instance
//---------------------------------------------------------
class VstSynthIF : public SynthIF
{
_FST* _fst;
bool _guiVisible;
public:
VstSynthIF(SynthI* s) : SynthIF(s) {
_fst = 0;
_guiVisible = false;
}
virtual bool initGui() { return true; };
virtual void guiHeartBeat() { }
virtual bool guiVisible() const { return false; }
virtual void showGui(bool) { }
virtual bool hasGui() const { return false; }
virtual bool nativeGuiVisible() const;
virtual void showNativeGui(bool v);
virtual bool hasNativeGui() const;
virtual void getGeometry(int*x, int*y, int*w, int*h) const { *x=0;*y=0;*w=0;*h=0; }
virtual void setGeometry(int, int, int, int) {}
virtual void getNativeGeometry(int*x, int*y, int*w, int*h) const { *x=0;*y=0;*w=0;*h=0; }
virtual void setNativeGeometry(int, int, int, int) {}
virtual void preProcessAlways() { };
virtual iMPEvent getData(MidiPort*, MPEventList*, iMPEvent, unsigned pos, int ports, unsigned n, float** buffer) ;
virtual bool putEvent(const MidiPlayEvent& ev);
virtual MidiPlayEvent receiveEvent();
virtual int eventsPending() const { return 0; }
virtual bool init(Synth*);
virtual int channels() const;
virtual int totalOutChannels() const;
virtual int totalInChannels() const;
virtual void deactivate3();
virtual const char* getPatchName(int, int, bool) { return ""; }
virtual void populatePatchPopup(PopupMenu*, int, bool) {};
virtual void write(int level, Xml& xml) const;
virtual float getParameter(unsigned long idx) const;
virtual void setParameter(unsigned long idx, float value);
virtual int getControllerInfo(int, const char**, int*, int*, int*, int*) { return 0; }
};
} // namespace MusECore
#endif
|