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

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

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

revision 473 by schoenebeck, Thu Mar 17 20:13:08 2005 UTC revision 554 by schoenebeck, Thu May 19 19:25:14 2005 UTC
# Line 103  namespace LinuxSampler { namespace gig { Line 103  namespace LinuxSampler { namespace gig {
103          pAudioOutputDevice = NULL;          pAudioOutputDevice = NULL;
104          pDiskThread        = NULL;          pDiskThread        = NULL;
105          pEventGenerator    = NULL;          pEventGenerator    = NULL;
106          pSysexBuffer       = new RingBuffer<uint8_t>(SYSEX_BUFFER_SIZE, 0);          pSysexBuffer       = new RingBuffer<uint8_t>(CONFIG_SYSEX_BUFFER_SIZE, 0);
107          pEventQueue        = new RingBuffer<Event>(MAX_EVENTS_PER_FRAGMENT, 0);          pEventQueue        = new RingBuffer<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT, 0);
108          pEventPool         = new Pool<Event>(MAX_EVENTS_PER_FRAGMENT);          pEventPool         = new Pool<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT);
109          pVoicePool         = new Pool<Voice>(MAX_AUDIO_VOICES);          pVoicePool         = new Pool<Voice>(CONFIG_MAX_VOICES);
110          pVoiceStealingQueue = new RTList<Event>(pEventPool);          pVoiceStealingQueue = new RTList<Event>(pEventPool);
111          pGlobalEvents      = new RTList<Event>(pEventPool);          pGlobalEvents      = new RTList<Event>(pEventPool);
112          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
# Line 231  namespace LinuxSampler { namespace gig { Line 231  namespace LinuxSampler { namespace gig {
231          this->SampleRate         = pAudioOutputDevice->SampleRate();          this->SampleRate         = pAudioOutputDevice->SampleRate();
232    
233          // FIXME: audio drivers with varying fragment sizes might be a problem here          // FIXME: audio drivers with varying fragment sizes might be a problem here
234          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * EG_MIN_RELEASE_TIME) - 1;          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * CONFIG_EG_MIN_RELEASE_TIME) - 1;
235          if (MaxFadeOutPos < 0)          if (MaxFadeOutPos < 0)
236              throw LinuxSamplerException("EG_MIN_RELEASE_TIME in EGADSR.h too big for current audio fragment size / sampling rate!");              throw LinuxSamplerException("CONFIG_EG_MIN_RELEASE_TIME too big for current audio fragment size / sampling rate!");
237    
238          // (re)create disk thread          // (re)create disk thread
239          if (this->pDiskThread) {          if (this->pDiskThread) {
# Line 242  namespace LinuxSampler { namespace gig { Line 242  namespace LinuxSampler { namespace gig {
242              delete this->pDiskThread;              delete this->pDiskThread;
243              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
244          }          }
245          this->pDiskThread = new DiskThread(((pAudioOut->MaxSamplesPerCycle() << MAX_PITCH) << 1) + 6); //FIXME: assuming stereo          this->pDiskThread = new DiskThread(((pAudioOut->MaxSamplesPerCycle() << CONFIG_MAX_PITCH) << 1) + 6); //FIXME: assuming stereo
246          if (!pDiskThread) {          if (!pDiskThread) {
247              dmsg(0,("gig::Engine  new diskthread = NULL\n"));              dmsg(0,("gig::Engine  new diskthread = NULL\n"));
248              exit(EXIT_FAILURE);              exit(EXIT_FAILURE);
# Line 370  namespace LinuxSampler { namespace gig { Line 370  namespace LinuxSampler { namespace gig {
370              }              }
371          }          }
372    
373          // We only allow a maximum of MAX_AUDIO_VOICES voices to be stolen          // We only allow a maximum of CONFIG_MAX_VOICES voices to be stolen
374          // in each audio fragment. All subsequent request for spawning new          // in each audio fragment. All subsequent request for spawning new
375          // voices in the same audio fragment will be ignored.          // voices in the same audio fragment will be ignored.
376          VoiceTheftsLeft = MAX_AUDIO_VOICES;          VoiceTheftsLeft = CONFIG_MAX_VOICES;
377    
378          // reset internal voice counter (just for statistic of active voices)          // reset internal voice counter (just for statistic of active voices)
379          ActiveVoiceCountTemp = 0;          ActiveVoiceCountTemp = 0;
# Line 539  namespace LinuxSampler { namespace gig { Line 539  namespace LinuxSampler { namespace gig {
539                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
540                  ++iuiKey;                  ++iuiKey;
541                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);
542                  #if DEVMODE                  #if CONFIG_DEVMODE
543                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)
544                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
545                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
# Line 549  namespace LinuxSampler { namespace gig { Line 549  namespace LinuxSampler { namespace gig {
549                          }                          }
550                      }                      }
551                  }                  }
552                  #endif // DEVMODE                  #endif // CONFIG_DEVMODE
553              }              }
554          }          }
555    
# Line 584  namespace LinuxSampler { namespace gig { Line 584  namespace LinuxSampler { namespace gig {
584                  // finally place sysex event into input event queue                  // finally place sysex event into input event queue
585                  pEventQueue->push(&event);                  pEventQueue->push(&event);
586              }              }
587              else dmsg(1,("Engine: Sysex message too large (%d byte) for input buffer (%d byte)!",Size,SYSEX_BUFFER_SIZE));              else dmsg(1,("Engine: Sysex message too large (%d byte) for input buffer (%d byte)!",Size,CONFIG_SYSEX_BUFFER_SIZE));
588          }          }
589          else dmsg(1,("Engine: Input event queue full!"));          else dmsg(1,("Engine: Input event queue full!"));
590      }      }
# Line 660  namespace LinuxSampler { namespace gig { Line 660  namespace LinuxSampler { namespace gig {
660          // release voices on this key if needed          // release voices on this key if needed
661          if (pKey->Active && !pEngineChannel->SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
662              itNoteOffEvent->Type = Event::type_release; // transform event type              itNoteOffEvent->Type = Event::type_release; // transform event type
         }  
663    
664          // move event to the key's own event list              // move event to the key's own event list
665          RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);              RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);
666    
667          // spawn release triggered voice(s) if needed              // spawn release triggered voice(s) if needed
668          if (pKey->ReleaseTrigger) {              if (pKey->ReleaseTrigger) {
669              // first, get total amount of required voices (dependant on amount of layers)                  // first, get total amount of required voices (dependant on amount of layers)
670              ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOffEventOnKeyList->Param.Note.Key);                  ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOffEventOnKeyList->Param.Note.Key);
671              if (pRegion) {                  if (pRegion) {
672                  int voicesRequired = pRegion->Layers;                      int voicesRequired = pRegion->Layers;
673                  // now launch the required amount of voices                      // now launch the required amount of voices
674                  for (int i = 0; i < voicesRequired; i++)                      for (int i = 0; i < voicesRequired; i++)
675                      LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, i, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples                          LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, i, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples
676                    }
677                    pKey->ReleaseTrigger = false;
678              }              }
             pKey->ReleaseTrigger = false;  
         }  
679    
680          // if neither a voice was spawned or postponed then remove note off event from key again              // if neither a voice was spawned or postponed then remove note off event from key again
681          if (!pKey->Active && !pKey->VoiceTheftsQueued)              if (!pKey->Active && !pKey->VoiceTheftsQueued)
682              pKey->pEvents->free(itNoteOffEventOnKeyList);                  pKey->pEvents->free(itNoteOffEventOnKeyList);
683            }
684      }      }
685    
686      /**      /**
# Line 781  namespace LinuxSampler { namespace gig { Line 781  namespace LinuxSampler { namespace gig {
781       */       */
782      int Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {      int Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
783          if (!VoiceTheftsLeft) {          if (!VoiceTheftsLeft) {
784              dmsg(1,("Max. voice thefts per audio fragment reached (you may raise MAX_AUDIO_VOICES).\n"));              dmsg(1,("Max. voice thefts per audio fragment reached (you may raise CONFIG_MAX_VOICES).\n"));
785              return -1;              return -1;
786          }          }
787          if (!pEventPool->poolIsEmpty()) {          if (!pEventPool->poolIsEmpty()) {
# Line 789  namespace LinuxSampler { namespace gig { Line 789  namespace LinuxSampler { namespace gig {
789              RTList<Voice>::Iterator itSelectedVoice;              RTList<Voice>::Iterator itSelectedVoice;
790    
791              // Select one voice for voice stealing              // Select one voice for voice stealing
792              switch (VOICE_STEAL_ALGORITHM) {              switch (CONFIG_VOICE_STEAL_ALGO) {
793    
794                  // try to pick the oldest voice on the key where the new                  // try to pick the oldest voice on the key where the new
795                  // voice should be spawned, if there is no voice on that                  // voice should be spawned, if there is no voice on that
# Line 1027  namespace LinuxSampler { namespace gig { Line 1027  namespace LinuxSampler { namespace gig {
1027    
1028          switch (id) {          switch (id) {
1029              case 0x41: { // Roland              case 0x41: { // Roland
1030                    dmsg(3,("Roland Sysex\n"));
1031                  uint8_t device_id, model_id, cmd_id;                  uint8_t device_id, model_id, cmd_id;
1032                  if (!reader.pop(&device_id)) goto free_sysex_data;                  if (!reader.pop(&device_id)) goto free_sysex_data;
1033                  if (!reader.pop(&model_id))  goto free_sysex_data;                  if (!reader.pop(&model_id))  goto free_sysex_data;
# Line 1039  namespace LinuxSampler { namespace gig { Line 1040  namespace LinuxSampler { namespace gig {
1040                  const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later                  const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later
1041                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;
1042                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters
1043                        dmsg(3,("\tSystem Parameter\n"));
1044                  }                  }
1045                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters
1046                        dmsg(3,("\tCommon Parameter\n"));
1047                  }                  }
1048                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)
1049                      switch (addr[3]) {                      dmsg(3,("\tPart Parameter\n"));
1050                        switch (addr[2]) {
1051                          case 0x40: { // scale tuning                          case 0x40: { // scale tuning
1052                                dmsg(3,("\t\tScale Tuning\n"));
1053                              uint8_t scale_tunes[12]; // detuning of all 12 semitones of an octave                              uint8_t scale_tunes[12]; // detuning of all 12 semitones of an octave
1054                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;
1055                              uint8_t checksum;                              uint8_t checksum;
1056                              if (!reader.pop(&checksum))                      goto free_sysex_data;                              if (!reader.pop(&checksum)) goto free_sysex_data;
1057                              if (GSCheckSum(checksum_reader, 12) != checksum) goto free_sysex_data;                              // some are not sending a GS checksum, so we ignore it for now
1058                                //if (GSCheckSum(checksum_reader, 12)) goto free_sysex_data;
1059                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;
1060                              AdjustScale((int8_t*) scale_tunes);                              AdjustScale((int8_t*) scale_tunes);
1061                                dmsg(3,("\t\t\tNew scale applied.\n"));
1062                              break;                              break;
1063                          }                          }
1064                      }                      }
# Line 1184  namespace LinuxSampler { namespace gig { Line 1191  namespace LinuxSampler { namespace gig {
1191      }      }
1192    
1193      String Engine::EngineName() {      String Engine::EngineName() {
1194          return "GigEngine";          return LS_GIG_ENGINE_NAME;
1195      }      }
1196    
1197      String Engine::Description() {      String Engine::Description() {
# Line 1192  namespace LinuxSampler { namespace gig { Line 1199  namespace LinuxSampler { namespace gig {
1199      }      }
1200    
1201      String Engine::Version() {      String Engine::Version() {
1202          String s = "$Revision: 1.33 $";          String s = "$Revision: 1.37 $";
1203          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
1204      }      }
1205    

Legend:
Removed from v.473  
changed lines
  Added in v.554

  ViewVC Help
Powered by ViewVC