/[svn]/linuxsampler/trunk/src/engines/gig/Voice.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/engines/gig/Voice.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2175 - (show annotations) (download) (as text)
Mon Apr 25 08:12:36 2011 UTC (12 years, 11 months ago) by persson
File MIME type: text/x-c++hdr
File size: 6721 byte(s)
* sfz engine: implemeted filters. Filter types: lowpass, bandpass,
  bandreject and highpass. 1, 2, 4 and 6 pole filters. Opcodes:
  fil_type, cutoff, resonance, fil_veltrack, fil_keytrack,
  fil_keycenter, cutoff_cc, cutoff_chanaft.
* sfz engine: bugfix: zero ampeg_sustain didn't work
* gig engine: bugfix: pitch LFO controller "internal+aftertouch" was broken
* gig engine: bugfix: filter keyboard tracking was broken
* gig engine: filter performance fix (an unnecessary copy was made of
  the filter parameters in each sub fragment)
* ASIO driver: fixes for newer gcc versions (fix from PortAudio)

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005 - 2008 Christian Schoenebeck *
7 * Copyright (C) 2009 - 2011 Christian Schoenebeck and Grigor Iliev *
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17 * GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, write to the Free Software *
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
22 * MA 02111-1307 USA *
23 ***************************************************************************/
24
25 #ifndef __LS_GIG_VOICE_H__
26 #define __LS_GIG_VOICE_H__
27
28 #include "../../common/global_private.h"
29
30 #include <gig.h>
31
32 #include "../../common/RTMath.h"
33 #include "../../common/Pool.h"
34 #include "../../drivers/audio/AudioOutputDevice.h"
35 #include "Stream.h"
36 #include "DiskThread.h"
37 #include "EGADSR.h"
38 #include "EGDecay.h"
39 #include "Filter.h"
40 #include "../common/VoiceBase.h"
41 #include "SynthesisParam.h"
42 #include "SmoothVolume.h"
43
44 namespace LinuxSampler { namespace gig {
45 class Engine;
46 class EngineChannel;
47
48 /** Gig Voice
49 *
50 * Renders a voice for the Gigasampler format.
51 */
52 class Voice : public LinuxSampler::VoiceBase<EngineChannel, ::gig::DimensionRegion, ::gig::Sample, DiskThread> {
53 public:
54 Voice();
55 virtual ~Voice();
56 void SetOutput(AudioOutputDevice* pAudioOutputDevice);
57 void SetEngine(LinuxSampler::Engine* pEngine);
58
59 protected:
60 virtual SampleInfo GetSampleInfo();
61 virtual RegionInfo GetRegionInfo();
62 virtual InstrumentInfo GetInstrumentInfo();
63 virtual double CalculateCrossfadeVolume(uint8_t MIDIKeyVelocity);
64 virtual AbstractEngine* GetEngine() { return (AbstractEngine*)pEngine; }
65 virtual double GetEG1ControllerValue(uint8_t MIDIKeyVelocity);
66 virtual EGInfo CalculateEG1ControllerInfluence(double eg1ControllerValue);
67 virtual void TriggerEG1(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity);
68 virtual double GetEG2ControllerValue(uint8_t MIDIKeyVelocity);
69 virtual EGInfo CalculateEG2ControllerInfluence(double eg2ControllerValue);
70 virtual void TriggerEG2(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity);
71 virtual void InitLFO1();
72 virtual void InitLFO2();
73 virtual void InitLFO3();
74 virtual float CalculateCutoffBase(uint8_t MIDIKeyVelocity);
75 virtual float CalculateFinalCutoff(float cutoffBase);
76 virtual uint8_t GetVCFCutoffCtrl();
77 virtual uint8_t GetVCFResonanceCtrl();
78 virtual void ProcessCCEvent(RTList<Event>::Iterator& itEvent);
79 virtual void ProcessCutoffEvent(RTList<Event>::Iterator& itEvent);
80 virtual double GetVelocityAttenuation(uint8_t MIDIKeyVelocity);
81 virtual double GetVelocityRelease(uint8_t MIDIKeyVelocity);
82 virtual double GetSampleAttenuation();
83 virtual void ProcessGroupEvent(RTList<Event>::Iterator& itEvent);
84
85 private:
86 EGADSR EG1;
87 EGADSR EG2;
88
89 public: // FIXME: just made public for debugging (sanity check in Engine::RenderAudio()), should be changed to private before the final release
90 // Attributes
91 Engine* pEngine; ///< Pointer to the sampler engine, to be able to access the event lists.
92 //uint LoopCyclesLeft; ///< In case there is a RAMLoop and it's not an endless loop; reflects number of loop cycles left to be passed
93
94 // Static Methods
95 static float CalculateFilterCutoffCoeff();
96
97 // Methods
98 void ProcessEvents(uint Samples);
99 void processCrossFadeEvent(RTList<Event>::Iterator& itEvent);
100
101 EngineChannel* GetGigEngineChannel();
102
103 protected:
104 virtual uint8_t CrossfadeAttenuation(uint8_t& CrossfadeControllerValue) {
105 uint8_t c = std::max(CrossfadeControllerValue, pRegion->AttenuationControllerThreshold);
106 c = (!pRegion->Crossfade.out_end) ? c /* 0,0,0,0 means no crossfade defined */
107 : (c < pRegion->Crossfade.in_end) ?
108 ((c <= pRegion->Crossfade.in_start) ? 0
109 : 127 * (c - pRegion->Crossfade.in_start) / (pRegion->Crossfade.in_end - pRegion->Crossfade.in_start))
110 : (c <= pRegion->Crossfade.out_start) ? 127
111 : (c < pRegion->Crossfade.out_end) ? 127 * (pRegion->Crossfade.out_end - c) / (pRegion->Crossfade.out_end - pRegion->Crossfade.out_start)
112 : 0;
113 return pRegion->InvertAttenuationController ? 127 - c : c;
114 }
115
116 inline float Constrain(float ValueToCheck, float Min, float Max) {
117 if (ValueToCheck > Max) ValueToCheck = Max;
118 else if (ValueToCheck < Min) ValueToCheck = Min;
119 return ValueToCheck;
120 }
121 };
122
123 }} // namespace LinuxSampler::gig
124
125 #endif // __LS_GIG_VOICE_H__

  ViewVC Help
Powered by ViewVC