--- linuxsampler/trunk/src/engines/gig/Engine.h 2004/08/22 14:46:47 225 +++ linuxsampler/trunk/src/engines/gig/Engine.h 2005/04/29 14:20:22 502 @@ -3,6 +3,7 @@ * LinuxSampler - modular, streaming capable sampler * * * * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck * + * Copyright (C) 2005 Christian Schoenebeck * * * * 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 * @@ -29,18 +30,22 @@ # warning Engine.h included #endif // DEBUG_HEADERS +#include + +#include "EngineGlobals.h" #include "../../common/RingBuffer.h" -#include "../../common/RTELMemoryPool.h" +#include "../../common/Pool.h" +#include "../../common/ArrayList.h" #include "../../common/ConditionServer.h" #include "../common/Engine.h" #include "../common/Event.h" #include "../common/BiquadFilter.h" #include "../../lib/fileloader/libgig/gig.h" -#include "InstrumentResourceManager.h" #include "../../network/lscp.h" +#include "EngineChannel.h" -#define PITCHBEND_SEMITONES 12 -#define MAX_AUDIO_VOICES 128 +// identifier of this sampler engine +#define LS_GIG_ENGINE_NAME "GigEngine" namespace LinuxSampler { namespace gig { @@ -48,33 +53,25 @@ class Voice; class DiskThread; class InstrumentResourceManager; + class midi_key_info_t; + class EngineChannel; /** * Sampler engine for the Gigasampler format. */ - class gig::Engine : public LinuxSampler::Engine, public InstrumentConsumer { + class Engine : public LinuxSampler::Engine { public: // methods Engine(); - ~Engine(); + virtual ~Engine(); + void Connect(AudioOutputDevice* pAudioOut); - // abstract methods derived from class 'LinuxSampler::Engine' - virtual void LoadInstrument(const char* FileName, uint Instrument); + // implementation of abstract methods derived from class 'LinuxSampler::Engine' + virtual int RenderAudio(uint Samples); + virtual void SendSysex(void* pData, uint Size); virtual void Reset(); virtual void Enable(); virtual void Disable(); - virtual void SendNoteOn(uint8_t Key, uint8_t Velocity); - virtual void SendNoteOff(uint8_t Key, uint8_t Velocity); - virtual void SendPitchbend(int Pitch); - virtual void SendControlChange(uint8_t Controller, uint8_t Value); - virtual float Volume(); - virtual void Volume(float f); - virtual uint Channels(); - virtual void Connect(AudioOutputDevice* pAudioOut); - virtual void DisconnectAudioOutputDevice(); - virtual void SetOutputChannel(uint EngineAudioChannel, uint AudioDeviceChannel); - virtual int OutputChannel(uint EngineAudioChannel); - virtual int RenderAudio(uint Samples); virtual uint VoiceCount(); virtual uint VoiceCountMax(); virtual bool DiskStreamSupported(); @@ -85,76 +82,75 @@ virtual String Description(); virtual String Version(); virtual String EngineName(); - virtual String InstrumentFileName(); - virtual int InstrumentIndex(); - virtual int InstrumentStatus(); - - // abstract methods derived from interface class 'InstrumentConsumer' - virtual void ResourceToBeUpdated(::gig::Instrument* pResource, void*& pUpdateArg); - virtual void ResourceUpdated(::gig::Instrument* pOldResource, ::gig::Instrument* pNewResource, void* pUpdateArg); - protected: - struct midi_key_info_t { - RTEList* pActiveVoices; ///< Contains the active voices associated with the MIDI key. - bool KeyPressed; ///< Is true if the respective MIDI key is currently pressed. - bool Active; ///< If the key contains active voices. - uint* pSelf; ///< hack to allow fast deallocation of the key from the list of active keys - RTEList* pEvents; ///< Key specific events (only Note-on, Note-off and sustain pedal currently) - }; - static InstrumentResourceManager Instruments; + //protected: + static InstrumentResourceManager instruments; AudioOutputDevice* pAudioOutputDevice; - float* pOutputLeft; ///< Audio output channel buffer (left) - float* pOutputRight; ///< Audio output channel buffer (right) - int AudioDeviceChannelLeft; ///< audio device channel number to which the left channel is connected to - int AudioDeviceChannelRight; ///< audio device channel number to which the right channel is connected to uint SampleRate; ///< Sample rate of the engines output audio signal (in Hz) uint MaxSamplesPerCycle; ///< Size of each audio output buffer DiskThread* pDiskThread; - uint8_t ControllerTable[128]; ///< Reflects the current values (0-127) of all MIDI controllers for this engine / sampler channel. - RingBuffer* pEventQueue; ///< Input event queue. - midi_key_info_t pMIDIKeyInfo[128]; ///< Contains all active voices sorted by MIDI key number and other informations to the respective MIDI key - RTELMemoryPool* pVoicePool; ///< Contains all voices that can be activated. - RTELMemoryPool* pActiveKeys; ///< Holds all keys in it's allocation list with active voices. - RTELMemoryPool* pEventPool; ///< Contains all Event objects that can be used. + RingBuffer* pEventQueue; ///< Input event queue for engine global events (e.g. SysEx messages). + Pool* pVoicePool; ///< Contains all voices that can be activated. EventGenerator* pEventGenerator; - RTEList* pEvents; ///< All events for the current audio fragment. - RTEList* pCCEvents; ///< All control change events for the current audio fragment. - RTEList* pSynthesisEvents[Event::destination_count]; ///< Events directly affecting synthesis parameter (like pitch, volume and filter). + RTList* pVoiceStealingQueue; ///< All voice-launching events which had to be postponed due to free voice shortage. + RTList* pGlobalEvents; ///< All engine global events for the current audio fragment (usually only SysEx messages). + Pool* pEventPool; ///< Contains all Event objects that can be used. + RingBuffer* pSysexBuffer; ///< Input buffer for MIDI system exclusive messages. float* pSynthesisParameters[Event::destination_count]; ///< Matrix with final synthesis parameters for the current audio fragment which will be used in the main synthesis loop. biquad_param_t* pBasicFilterParameters; ///< Biquad parameters of the basic bandpass filter. biquad_param_t* pMainFilterParameters; ///< Main biquad parameters of the individual filter (lowpass / bandpass / highpass). - RIFF::File* pRIFF; - ::gig::File* pGig; - ::gig::Instrument* pInstrument; - bool SustainPedal; ///< true if sustain pedal is down - double GlobalVolume; ///< overall volume (a value < 1.0 means attenuation, a value > 1.0 means amplification) - int Pitch; ///< Current (absolute) MIDI pitch value. - int ActiveVoiceCount; ///< number of currently active voices + int ActiveVoiceCount; ///< number of currently active voices (this value will be returned for public calls) + int ActiveVoiceCountTemp; ///< number of currently active voices (for internal usage, will be used for incrementation) int ActiveVoiceCountMax; ///< the maximum voice usage since application start + int VoiceTheftsLeft; ///< We only allow MAX_AUDIO_VOICES voices to be stolen per audio fragment, we use this variable to ensure this limit. + RTList::Iterator itLastStolenVoice; ///< Only for voice stealing: points to the last voice which was theft in current audio fragment, NULL otherwise. + RTList::Iterator iuiLastStolenKey; ///< Only for voice stealing: key number of last key on which the last voice was theft in current audio fragment, NULL otherwise. + EngineChannel* pLastStolenChannel; ///< Only for voice stealing: points to the engine channel on which the previous voice was stolen in this audio fragment. bool SuspensionRequested; ConditionServer EngineDisabled; - String InstrumentFile; - int InstrumentIdx; - int InstrumentStat; - - void ProcessNoteOn(Event* pNoteOnEvent); - void ProcessNoteOff(Event* pNoteOffEvent); - void ProcessPitchbend(Event* pPitchbendEvent); - void ProcessControlChange(Event* pControlChangeEvent); - void KillVoice(Voice* pVoice); + int8_t ScaleTuning[12]; ///< contains optional detune factors (-64..+63 cents) for all 12 semitones of an octave + int MaxFadeOutPos; ///< The last position in an audio fragment to allow an instant fade out (e.g. for voice stealing) without leading to clicks. + uint32_t RandomSeed; ///< State of the random number generator used by the random dimension. + + void ProcessEvents(EngineChannel* pEngineChannel, uint Samples); + void RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples); + void RenderStolenVoices(uint Samples); + void PostProcess(EngineChannel* pEngineChannel); + void ClearEventLists(); + void ImportEvents(uint Samples); + void ProcessNoteOn(EngineChannel* pEngineChannel, Pool::Iterator& itNoteOnEvent); + void ProcessNoteOff(EngineChannel* pEngineChannel, Pool::Iterator& itNoteOffEvent); + void ProcessPitchbend(EngineChannel* pEngineChannel, Pool::Iterator& itPitchbendEvent); + void ProcessControlChange(EngineChannel* pEngineChannel, Pool::Iterator& itControlChangeEvent); + void ProcessSysex(Pool::Iterator& itSysexEvent); + Pool::Iterator LaunchVoice(EngineChannel* pEngineChannel, Pool::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing); + int StealVoice(EngineChannel* pEngineChannel, Pool::Iterator& itNoteOnEvent); + void FreeVoice(EngineChannel* pEngineChannel, Pool::Iterator& itVoice); + void FreeKey(EngineChannel* pEngineChannel, midi_key_info_t* pKey); void ResetSynthesisParameters(Event::destination_t dst, float val); void ResetInternal(); + static Engine* AcquireEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice); + static void FreeEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice); + + void DisableAndLock(); // FIXME: should at least be protected + friend class Voice; friend class EGADSR; friend class EGDecay; friend class VCAManipulator; friend class VCFCManipulator; friend class VCOManipulator; - friend class InstrumentResourceManager; private: - void DisableAndLock(); + ArrayList engineChannels; ///< All engine channels of a gig::Engine instance. + + static std::map engines; ///< All instances of gig::Engine. + + uint8_t GSCheckSum(const RingBuffer::NonVolatileReader AddrReader, uint DataSize); + void AdjustScale(int8_t ScaleTunes[12]); + void ReleaseAllVoices(EngineChannel* pEngineChannel, Pool::Iterator& itReleaseEvent); + void KillAllVoices(EngineChannel* pEngineChannel, Pool::Iterator& itKillEvent); }; }} // namespace LinuxSampler::gig