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

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

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

revision 1662 by schoenebeck, Sun Feb 3 16:21:38 2008 UTC revision 1924 by persson, Sun Jun 28 16:43:38 2009 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
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 - 2009 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   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 24  Line 24 
24  #include "EngineChannel.h"  #include "EngineChannel.h"
25    
26  #include "../../common/global_private.h"  #include "../../common/global_private.h"
27    #include "../../Sampler.h"
28    
29  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
30    
# Line 59  namespace LinuxSampler { namespace gig { Line 60  namespace LinuxSampler { namespace gig {
60          SoloMode       = false;          SoloMode       = false;
61          PortamentoMode = false;          PortamentoMode = false;
62          PortamentoTime = CONFIG_PORTAMENTO_TIME_DEFAULT;          PortamentoTime = CONFIG_PORTAMENTO_TIME_DEFAULT;
63    
64            // reset the instrument change command struct (need to be done
65            // twice, as it is double buffered)
66            {
67                instrument_change_command_t& cmd = InstrumentChangeCommand.GetConfigForUpdate();
68                cmd.pDimRegionsInUse = NULL;
69                cmd.pInstrument = NULL;
70                cmd.bChangeInstrument = false;
71            }
72            {
73                instrument_change_command_t& cmd = InstrumentChangeCommand.SwitchConfig();
74                cmd.pDimRegionsInUse = NULL;
75                cmd.pInstrument = NULL;
76                cmd.bChangeInstrument = false;
77            }
78      }      }
79    
80      EngineChannel::~EngineChannel() {      EngineChannel::~EngineChannel() {
81          DisconnectAudioOutputDevice();          DisconnectAudioOutputDevice();
82    
83            // In case the channel was removed before the instrument was
84            // fully loaded, try to give back instrument again (see bug #113)
85            instrument_change_command_t& cmd = ChangeInstrument(NULL);
86            if (cmd.pInstrument) {
87                    Engine::instruments.HandBack(cmd.pInstrument, this);
88            }
89            ///////
90    
91          if (pEventQueue) delete pEventQueue;          if (pEventQueue) delete pEventQueue;
92          if (pActiveKeys) delete pActiveKeys;          if (pActiveKeys) delete pActiveKeys;
93          if (pMIDIKeyInfo) delete[] pMIDIKeyInfo;          if (pMIDIKeyInfo) delete[] pMIDIKeyInfo;
# Line 296  namespace LinuxSampler { namespace gig { Line 321  namespace LinuxSampler { namespace gig {
321              cmd.bChangeInstrument = false;              cmd.bChangeInstrument = false;
322          }          }
323    
324            if (pInstrument != NULL) {
325                pInstrument = NULL;
326                InstrumentStat = -1;
327                InstrumentIdx  = -1;
328                InstrumentIdxName = "";
329                InstrumentFile = "";
330                bStatusChanged = true;
331            }
332    
333          for (uint i = 0; i < 128; i++) {          for (uint i = 0; i < 128; i++) {
334              pMIDIKeyInfo[i].pActiveVoices = new RTList<Voice>(pEngine->pVoicePool);              pMIDIKeyInfo[i].pActiveVoices = new RTList<Voice>(pEngine->pVoicePool);
335              pMIDIKeyInfo[i].pEvents       = new RTList<Event>(pEngine->pEventPool);              pMIDIKeyInfo[i].pEvents       = new RTList<Event>(pEngine->pEventPool);
# Line 319  namespace LinuxSampler { namespace gig { Line 353  namespace LinuxSampler { namespace gig {
353      void EngineChannel::DisconnectAudioOutputDevice() {      void EngineChannel::DisconnectAudioOutputDevice() {
354          if (pEngine) { // if clause to prevent disconnect loops          if (pEngine) { // if clause to prevent disconnect loops
355    
356                ResetInternal();
357    
358              // delete the structures used for instrument change              // delete the structures used for instrument change
359              RTList< ::gig::DimensionRegion*>* d = InstrumentChangeCommand.GetConfigForUpdate().pDimRegionsInUse;              RTList< ::gig::DimensionRegion*>* d = InstrumentChangeCommand.GetConfigForUpdate().pDimRegionsInUse;
360              if (d) delete d;              if (d) delete d;
361              EngineChannel::instrument_change_command_t& cmd = InstrumentChangeCommand.SwitchConfig();              EngineChannel::instrument_change_command_t& cmd = InstrumentChangeCommand.SwitchConfig();
362              d = cmd.pDimRegionsInUse;              d = cmd.pDimRegionsInUse;
363                if (d) delete d;
364    
365              if (cmd.pInstrument) {              if (cmd.pInstrument) {
366                  // release the currently loaded instrument                  // release the currently loaded instrument
367                  Engine::instruments.HandBackInstrument(cmd.pInstrument, this, d);                  Engine::instruments.HandBack(cmd.pInstrument, this);
             }  
             if (d) delete d;  
   
             // release all active dimension regions to resource  
             // manager  
             RTList<uint>::Iterator iuiKey = pActiveKeys->first();  
             RTList<uint>::Iterator end    = pActiveKeys->end();  
             while (iuiKey != end) { // iterate through all active keys  
                 midi_key_info_t* pKey = &pMIDIKeyInfo[*iuiKey];  
                 ++iuiKey;  
   
                 RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();  
                 RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();  
                 for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key  
                     Engine::instruments.HandBackDimReg(itVoice->pDimRgn);  
                 }  
368              }              }
369    
             ResetInternal();  
370              if (pEvents) {              if (pEvents) {
371                  delete pEvents;                  delete pEvents;
372                  pEvents = NULL;                  pEvents = NULL;
# Line 361  namespace LinuxSampler { namespace gig { Line 381  namespace LinuxSampler { namespace gig {
381                      pMIDIKeyInfo[i].pEvents = NULL;                      pMIDIKeyInfo[i].pEvents = NULL;
382                  }                  }
383              }              }
             Engine* oldEngine = pEngine;  
384              AudioOutputDevice* oldAudioDevice = pEngine->pAudioOutputDevice;              AudioOutputDevice* oldAudioDevice = pEngine->pAudioOutputDevice;
385              pEngine = NULL;              pEngine = NULL;
386              Engine::FreeEngine(this, oldAudioDevice);              Engine::FreeEngine(this, oldAudioDevice);
# Line 451  namespace LinuxSampler { namespace gig { Line 470  namespace LinuxSampler { namespace gig {
470          }          }
471          fxSends.push_back(pFxSend);          fxSends.push_back(pFxSend);
472          if (pEngine) pEngine->Enable();          if (pEngine) pEngine->Enable();
473          fireFxSendCountChanged(iSamplerChannelIndex, GetFxSendCount());          fireFxSendCountChanged(GetSamplerChannel()->Index(), GetFxSendCount());
474    
475          return pFxSend;          return pFxSend;
476      }      }
# Line 490  namespace LinuxSampler { namespace gig { Line 509  namespace LinuxSampler { namespace gig {
509              }              }
510          }          }
511          if (pEngine) pEngine->Enable();          if (pEngine) pEngine->Enable();
512          fireFxSendCountChanged(iSamplerChannelIndex, GetFxSendCount());          fireFxSendCountChanged(GetSamplerChannel()->Index(), GetFxSendCount());
513      }      }
514    
515      /**      /**
# Line 717  namespace LinuxSampler { namespace gig { Line 736  namespace LinuxSampler { namespace gig {
736          }          }
737      }      }
738    
739        /**
740         *  Will be called by the MIDIIn Thread to signal that a program
741         *  change should be performed. As a program change isn't
742         *  real-time safe, the actual change is performed by the disk
743         *  thread.
744         *
745         *  @param Program     - MIDI program change number
746         */
747        void EngineChannel::SendProgramChange(uint8_t Program) {
748            if (pEngine) {
749                pEngine->pDiskThread->OrderProgramChange(Program, this);
750            }
751        }
752    
753      void EngineChannel::ClearEventLists() {      void EngineChannel::ClearEventLists() {
754          pEvents->clear();          pEvents->clear();
755          // empty MIDI key specific event lists          // empty MIDI key specific event lists
# Line 737  namespace LinuxSampler { namespace gig { Line 770  namespace LinuxSampler { namespace gig {
770          MidiVolume     = 1.0;          MidiVolume     = 1.0;
771          GlobalPanLeft  = 1.0f;          GlobalPanLeft  = 1.0f;
772          GlobalPanRight = 1.0f;          GlobalPanRight = 1.0f;
773            iLastPanRequest = 64;
774          GlobalTranspose = 0;          GlobalTranspose = 0;
775          // set all MIDI controller values to zero          // set all MIDI controller values to zero
776          memset(ControllerTable, 0x00, 129);          memset(ControllerTable, 0x00, 129);
# Line 875  namespace LinuxSampler { namespace gig { Line 909  namespace LinuxSampler { namespace gig {
909          bStatusChanged = true; // status of engine channel has changed, so set notify flag          bStatusChanged = true; // status of engine channel has changed, so set notify flag
910      }      }
911    
912        float EngineChannel::Pan() {
913            return float(iLastPanRequest - 64) / 64.0f;
914        }
915    
916        void EngineChannel::Pan(float f) {
917            int iMidiPan = int(f * 64.0f) + 64;
918            if (iMidiPan > 127) iMidiPan = 127;
919            else if (iMidiPan < 0) iMidiPan = 0;
920            GlobalPanLeft  = Engine::PanCurve[128 - iMidiPan];
921            GlobalPanRight = Engine::PanCurve[iMidiPan];
922            iLastPanRequest = iMidiPan;
923        }
924    
925      uint EngineChannel::Channels() {      uint EngineChannel::Channels() {
926          return 2;          return 2;
927      }      }
# Line 899  namespace LinuxSampler { namespace gig { Line 946  namespace LinuxSampler { namespace gig {
946          return LS_GIG_ENGINE_NAME;          return LS_GIG_ENGINE_NAME;
947      }      }
948    
949        void EngineChannel::ClearDimRegionsInUse() {
950            {
951                instrument_change_command_t& cmd = InstrumentChangeCommand.GetConfigForUpdate();
952                if(cmd.pDimRegionsInUse != NULL) cmd.pDimRegionsInUse->clear();
953            }
954            {
955                instrument_change_command_t& cmd = InstrumentChangeCommand.SwitchConfig();
956                if(cmd.pDimRegionsInUse != NULL) cmd.pDimRegionsInUse->clear();
957            }
958        }
959    
960        void EngineChannel::ResetDimRegionsInUse() {
961            {
962                instrument_change_command_t& cmd = InstrumentChangeCommand.GetConfigForUpdate();
963                if(cmd.pDimRegionsInUse != NULL) {
964                    delete cmd.pDimRegionsInUse;
965                    cmd.pDimRegionsInUse = new RTList< ::gig::DimensionRegion*>(pEngine->pDimRegionPool[0]);
966                }
967            }
968            {
969                instrument_change_command_t& cmd = InstrumentChangeCommand.SwitchConfig();
970                if(cmd.pDimRegionsInUse != NULL) {
971                    delete cmd.pDimRegionsInUse;
972                    cmd.pDimRegionsInUse = new RTList< ::gig::DimensionRegion*>(pEngine->pDimRegionPool[1]);
973                }
974            }
975        }
976    
977  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

Legend:
Removed from v.1662  
changed lines
  Added in v.1924

  ViewVC Help
Powered by ViewVC