/[svn]/linuxsampler/trunk/src/engines/common/Engine.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/common/Engine.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 64 by schoenebeck, Thu May 6 20:06:20 2004 UTC revision 329 by senkov, Tue Dec 28 09:43:04 2004 UTC
# Line 24  Line 24 
24  #define __LS_ENGINE_H__  #define __LS_ENGINE_H__
25    
26  #include "../../common/global.h"  #include "../../common/global.h"
27  #include "../../audiodriver/AudioOutputDevice.h"  #include "../../drivers/audio/AudioOutputDevice.h"
28    
29  namespace LinuxSampler {  namespace LinuxSampler {
30    
# Line 38  namespace LinuxSampler { Line 38  namespace LinuxSampler {
38      class Engine {      class Engine {
39          public:          public:
40    
41                virtual ~Engine() {};
42    
43              /////////////////////////////////////////////////////////////////              /////////////////////////////////////////////////////////////////
44              // type definitions              // type definitions
45    
# Line 62  namespace LinuxSampler { Line 64  namespace LinuxSampler {
64              virtual void   SendNoteOff(uint8_t Key, uint8_t Velocity) = 0;              virtual void   SendNoteOff(uint8_t Key, uint8_t Velocity) = 0;
65              virtual void   SendPitchbend(int Pitch) = 0;              virtual void   SendPitchbend(int Pitch) = 0;
66              virtual void   SendControlChange(uint8_t Controller, uint8_t Value) = 0;              virtual void   SendControlChange(uint8_t Controller, uint8_t Value) = 0;
67                virtual void   SendSysex(void* pData, uint Size) = 0;
68              virtual float  Volume() = 0;              virtual float  Volume() = 0;
69              virtual void   Volume(float f) = 0;              virtual void   Volume(float f) = 0;
70                virtual uint   Channels() = 0;
71              virtual void   Connect(AudioOutputDevice* pAudioOut) = 0;              virtual void   Connect(AudioOutputDevice* pAudioOut) = 0;
72              virtual void   DisconnectAudioOutputDevice() = 0;              virtual void   DisconnectAudioOutputDevice() = 0;
73                virtual void   SetOutputChannel(uint EngineAudioChannel, uint AudioDeviceChannel) = 0;
74                virtual int    OutputChannel(uint EngineAudioChannel) = 0;
75              virtual int    RenderAudio(uint Samples) = 0;              virtual int    RenderAudio(uint Samples) = 0;
76              virtual uint   VoiceCount() = 0;              virtual uint   VoiceCount() = 0;
77              virtual uint   VoiceCountMax() = 0;              virtual uint   VoiceCountMax() = 0;
# Line 76  namespace LinuxSampler { Line 82  namespace LinuxSampler {
82              virtual String DiskStreamBufferFillPercentage() = 0;              virtual String DiskStreamBufferFillPercentage() = 0;
83              virtual String Description() = 0;              virtual String Description() = 0;
84              virtual String Version() = 0;              virtual String Version() = 0;
85                virtual String EngineName() = 0;
86                virtual String InstrumentFileName() = 0;
87                virtual int    InstrumentIndex() = 0;
88                virtual int    InstrumentStatus() = 0;
89      };      };
90  }  }
91    

Legend:
Removed from v.64  
changed lines
  Added in v.329

  ViewVC Help
Powered by ViewVC