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

Diff of /linuxsampler/trunk/src/engines/gig/Voice.cpp

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

revision 3017 by schoenebeck, Wed Oct 19 12:28:40 2016 UTC revision 3444 by schoenebeck, Sun Dec 23 19:32:11 2018 UTC
# Line 4  Line 4 
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *   Copyright (C) 2009 - 2015 Christian Schoenebeck and Grigor Iliev      *   *   Copyright (C) 2009 Christian Schoenebeck and Grigor Iliev             *
8     *   Copyright (C) 2010 - 2017 Christian Schoenebeck and Andreas Persson   *
9   *                                                                         *   *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 58  namespace LinuxSampler { namespace gig { Line 59  namespace LinuxSampler { namespace gig {
59          si.ChannelCount     = pSample->Channels;          si.ChannelCount     = pSample->Channels;
60          si.FrameSize        = pSample->FrameSize;          si.FrameSize        = pSample->FrameSize;
61          si.BitDepth         = pSample->BitDepth;          si.BitDepth         = pSample->BitDepth;
62          si.TotalFrameCount  = pSample->SamplesTotal;          si.TotalFrameCount  = (uint)pSample->SamplesTotal;
63    
64          si.HasLoops       = pRegion->SampleLoops;          si.HasLoops       = pRegion->SampleLoops;
65          si.LoopStart      = (si.HasLoops) ? pRegion->pSampleLoops[0].LoopStart  : 0;          si.LoopStart      = (si.HasLoops) ? pRegion->pSampleLoops[0].LoopStart  : 0;
# Line 278  namespace LinuxSampler { namespace gig { Line 279  namespace LinuxSampler { namespace gig {
279                             pRegion->LFO1ControlDepth,                             pRegion->LFO1ControlDepth,
280                             pRegion->LFO1FlipPhase,                             pRegion->LFO1FlipPhase,
281                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
282              pLFO1->update(pLFO1->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO1->ExtController] : 0);              pLFO1->updateByMIDICtrlValue(pLFO1->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO1->ExtController] : 0);
283                pLFO1->setScriptDepthFactor(pNote->Override.AmpLFODepth);
284                pLFO1->setScriptFrequencyFactor(pNote->Override.AmpLFOFreq, pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
285          }          }
286      }      }
287    
# Line 322  namespace LinuxSampler { namespace gig { Line 325  namespace LinuxSampler { namespace gig {
325                             pRegion->LFO2ControlDepth,                             pRegion->LFO2ControlDepth,
326                             pRegion->LFO2FlipPhase,                             pRegion->LFO2FlipPhase,
327                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
328              pLFO2->update(pLFO2->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO2->ExtController] : 0);              pLFO2->updateByMIDICtrlValue(pLFO2->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO2->ExtController] : 0);
329                pLFO2->setScriptDepthFactor(pNote->Override.CutoffLFODepth);
330                pLFO2->setScriptFrequencyFactor(pNote->Override.CutoffLFOFreq, pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
331          }          }
332      }      }
333    
# Line 366  namespace LinuxSampler { namespace gig { Line 371  namespace LinuxSampler { namespace gig {
371                             pRegion->LFO3ControlDepth,                             pRegion->LFO3ControlDepth,
372                             false,                             false,
373                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);                             pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
374              pLFO3->update(pLFO3->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO3->ExtController] : 0);              pLFO3->updateByMIDICtrlValue(pLFO3->ExtController ? GetGigEngineChannel()->ControllerTable[pLFO3->ExtController] : 0);
375                pLFO3->setScriptDepthFactor(pNote->Override.PitchLFODepth);
376                pLFO3->setScriptFrequencyFactor(pNote->Override.PitchLFOFreq, pEngine->SampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
377          }          }
378      }      }
379    
# Line 461  namespace LinuxSampler { namespace gig { Line 468  namespace LinuxSampler { namespace gig {
468      }      }
469    
470      void Voice::TriggerEG1(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity) {      void Voice::TriggerEG1(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity) {
471            EG1.setStateOptions(
472                pRegion->EG1Options.AttackCancel,
473                pRegion->EG1Options.AttackHoldCancel,
474                pRegion->EG1Options.Decay1Cancel,
475                pRegion->EG1Options.Decay2Cancel,
476                pRegion->EG1Options.ReleaseCancel
477            );
478          EG1.trigger(pRegion->EG1PreAttack,          EG1.trigger(pRegion->EG1PreAttack,
479                      RTMath::Max(pRegion->EG1Attack, 0.0316) * egInfo.Attack,                      RTMath::Max(pRegion->EG1Attack, 0.0316) * egInfo.Attack,
480                      pRegion->EG1Hold,                      pRegion->EG1Hold,
481                      pRegion->EG1Decay1 * egInfo.Decay * velrelease,                      pRegion->EG1Decay1 * egInfo.Decay * velrelease,
482                      pRegion->EG1Decay2 * egInfo.Decay * velrelease,                      pRegion->EG1Decay2 * egInfo.Decay * velrelease,
483                      pRegion->EG1InfiniteSustain,                      pRegion->EG1InfiniteSustain,
484                      pRegion->EG1Sustain,                      pRegion->EG1Sustain * (pNote ? pNote->Override.Sustain : 1.f),
485                      RTMath::Max(pRegion->EG1Release * velrelease, 0.014) * egInfo.Release,                      RTMath::Max(pRegion->EG1Release * velrelease, 0.014) * egInfo.Release,
486                      velocityAttenuation,                      velocityAttenuation,
487                      sampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);                      sampleRate / CONFIG_DEFAULT_SUBFRAGMENT_SIZE);
488      }      }
489    
490      void Voice::TriggerEG2(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity) {      void Voice::TriggerEG2(const EGInfo& egInfo, double velrelease, double velocityAttenuation, uint sampleRate, uint8_t velocity) {
491            EG2.setStateOptions(
492                pRegion->EG2Options.AttackCancel,
493                pRegion->EG2Options.AttackHoldCancel,
494                pRegion->EG2Options.Decay1Cancel,
495                pRegion->EG2Options.Decay2Cancel,
496                pRegion->EG2Options.ReleaseCancel
497            );
498          EG2.trigger(uint(RgnInfo.EG2PreAttack),          EG2.trigger(uint(RgnInfo.EG2PreAttack),
499                      RgnInfo.EG2Attack * egInfo.Attack,                      RgnInfo.EG2Attack * egInfo.Attack,
500                      false,                      false,
# Line 523  namespace LinuxSampler { namespace gig { Line 544  namespace LinuxSampler { namespace gig {
544          return p;          return p;
545      }      }
546    
547        release_trigger_t Voice::GetReleaseTriggerFlags() {
548            release_trigger_t flags = release_trigger_noteoff; //HACK: currently this method is actually only called by EngineBase if it already knows that this voice requires release trigger, so I took the short way instead of checking (again) the existence of a ::gig::dimension_releasetrigger
549            switch (pRegion->SustainReleaseTrigger) {
550                case ::gig::sust_rel_trg_none:
551                    break;
552                case ::gig::sust_rel_trg_maxvelocity:
553                    flags |= release_trigger_sustain_maxvelocity;
554                    break;
555                case ::gig::sust_rel_trg_keyvelocity:
556                    flags |= release_trigger_sustain_keyvelocity;
557                    break;
558            }
559            return flags;
560        }
561    
562  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

Legend:
Removed from v.3017  
changed lines
  Added in v.3444

  ViewVC Help
Powered by ViewVC