/[svn]/libgig/trunk/src/gig.cpp
ViewVC logotype

Diff of /libgig/trunk/src/gig.cpp

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

revision 858 by persson, Sat May 6 11:29:29 2006 UTC revision 1050 by schoenebeck, Fri Mar 2 01:04:45 2007 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file loader library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2005 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2007 by Christian Schoenebeck                      *
6   *                              <cuse@users.sourceforge.net>               *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8   *   This library is free software; you can redistribute it and/or modify  *   *   This library is free software; you can redistribute it and/or modify  *
# Line 111  namespace { Line 111  namespace {
111          return x & 0x800000 ? x - 0x1000000 : x;          return x & 0x800000 ? x - 0x1000000 : x;
112      }      }
113    
114        inline void store24(unsigned char* pDst, int x)
115        {
116            pDst[0] = x;
117            pDst[1] = x >> 8;
118            pDst[2] = x >> 16;
119        }
120    
121      void Decompress16(int compressionmode, const unsigned char* params,      void Decompress16(int compressionmode, const unsigned char* params,
122                        int srcStep, int dstStep,                        int srcStep, int dstStep,
123                        const unsigned char* pSrc, int16_t* pDst,                        const unsigned char* pSrc, int16_t* pDst,
# Line 150  namespace { Line 157  namespace {
157      }      }
158    
159      void Decompress24(int compressionmode, const unsigned char* params,      void Decompress24(int compressionmode, const unsigned char* params,
160                        int dstStep, const unsigned char* pSrc, int16_t* pDst,                        int dstStep, const unsigned char* pSrc, uint8_t* pDst,
161                        unsigned long currentframeoffset,                        unsigned long currentframeoffset,
162                        unsigned long copysamples, int truncatedBits)                        unsigned long copysamples, int truncatedBits)
163      {      {
         // Note: The 24 bits are truncated to 16 bits for now.  
   
164          int y, dy, ddy, dddy;          int y, dy, ddy, dddy;
         const int shift = 8 - truncatedBits;  
165    
166  #define GET_PARAMS(params)                      \  #define GET_PARAMS(params)                      \
167          y    = get24(params);                   \          y    = get24(params);                   \
# Line 173  namespace { Line 177  namespace {
177    
178  #define COPY_ONE(x)                             \  #define COPY_ONE(x)                             \
179          SKIP_ONE(x);                            \          SKIP_ONE(x);                            \
180          *pDst = y >> shift;                     \          store24(pDst, y << truncatedBits);      \
181          pDst += dstStep          pDst += dstStep
182    
183          switch (compressionmode) {          switch (compressionmode) {
184              case 2: // 24 bit uncompressed              case 2: // 24 bit uncompressed
185                  pSrc += currentframeoffset * 3;                  pSrc += currentframeoffset * 3;
186                  while (copysamples) {                  while (copysamples) {
187                      *pDst = get24(pSrc) >> shift;                      store24(pDst, get24(pSrc) << truncatedBits);
188                      pDst += dstStep;                      pDst += dstStep;
189                      pSrc += 3;                      pSrc += 3;
190                      copysamples--;                      copysamples--;
# Line 275  namespace { Line 279  namespace {
279       *                         is located, 0 otherwise       *                         is located, 0 otherwise
280       */       */
281      Sample::Sample(File* pFile, RIFF::List* waveList, unsigned long WavePoolOffset, unsigned long fileNo) : DLS::Sample((DLS::File*) pFile, waveList, WavePoolOffset) {      Sample::Sample(File* pFile, RIFF::List* waveList, unsigned long WavePoolOffset, unsigned long fileNo) : DLS::Sample((DLS::File*) pFile, waveList, WavePoolOffset) {
282            pInfo->UseFixedLengthStrings = true;
283          Instances++;          Instances++;
284          FileNo = fileNo;          FileNo = fileNo;
285    
286          pCk3gix = waveList->GetSubChunk(CHUNK_ID_3GIX);          pCk3gix = waveList->GetSubChunk(CHUNK_ID_3GIX);
287          if (pCk3gix) {          if (pCk3gix) {
288              SampleGroup = pCk3gix->ReadInt16();              uint16_t iSampleGroup = pCk3gix->ReadInt16();
289                pGroup = pFile->GetGroup(iSampleGroup);
290          } else { // '3gix' chunk missing          } else { // '3gix' chunk missing
291              // use default value(s)              // by default assigned to that mandatory "Default Group"
292              SampleGroup = 0;              pGroup = pFile->GetGroup(0);
293          }          }
294    
295          pCkSmpl = waveList->GetSubChunk(CHUNK_ID_SMPL);          pCkSmpl = waveList->GetSubChunk(CHUNK_ID_SMPL);
# Line 307  namespace { Line 313  namespace {
313              // use default values              // use default values
314              Manufacturer  = 0;              Manufacturer  = 0;
315              Product       = 0;              Product       = 0;
316              SamplePeriod  = 1 / SamplesPerSecond;              SamplePeriod  = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);
317              MIDIUnityNote = 64;              MIDIUnityNote = 64;
318              FineTune      = 0;              FineTune      = 0;
319              SMPTEOffset   = 0;              SMPTEOffset   = 0;
# Line 348  namespace { Line 354  namespace {
354          }          }
355          FrameOffset = 0; // just for streaming compressed samples          FrameOffset = 0; // just for streaming compressed samples
356    
357          LoopSize = LoopEnd - LoopStart;          LoopSize = LoopEnd - LoopStart + 1;
358      }      }
359    
360      /**      /**
# Line 358  namespace { Line 364  namespace {
364       * Usually there is absolutely no need to call this method explicitly.       * Usually there is absolutely no need to call this method explicitly.
365       * It will be called automatically when File::Save() was called.       * It will be called automatically when File::Save() was called.
366       *       *
367       * @throws DLS::Exception if FormatTag != WAVE_FORMAT_PCM or no sample data       * @throws DLS::Exception if FormatTag != DLS_WAVE_FORMAT_PCM or no sample data
368       *                        was provided yet       *                        was provided yet
369       * @throws gig::Exception if there is any invalid sample setting       * @throws gig::Exception if there is any invalid sample setting
370       */       */
# Line 371  namespace { Line 377  namespace {
377          if (!pCkSmpl) pCkSmpl = pWaveList->AddSubChunk(CHUNK_ID_SMPL, 60);          if (!pCkSmpl) pCkSmpl = pWaveList->AddSubChunk(CHUNK_ID_SMPL, 60);
378          // update 'smpl' chunk          // update 'smpl' chunk
379          uint8_t* pData = (uint8_t*) pCkSmpl->LoadChunkData();          uint8_t* pData = (uint8_t*) pCkSmpl->LoadChunkData();
380          SamplePeriod = 1 / SamplesPerSecond;          SamplePeriod = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);
381          memcpy(&pData[0], &Manufacturer, 4);          memcpy(&pData[0], &Manufacturer, 4);
382          memcpy(&pData[4], &Product, 4);          memcpy(&pData[4], &Product, 4);
383          memcpy(&pData[8], &SamplePeriod, 4);          memcpy(&pData[8], &SamplePeriod, 4);
# Line 393  namespace { Line 399  namespace {
399          // make sure '3gix' chunk exists          // make sure '3gix' chunk exists
400          pCk3gix = pWaveList->GetSubChunk(CHUNK_ID_3GIX);          pCk3gix = pWaveList->GetSubChunk(CHUNK_ID_3GIX);
401          if (!pCk3gix) pCk3gix = pWaveList->AddSubChunk(CHUNK_ID_3GIX, 4);          if (!pCk3gix) pCk3gix = pWaveList->AddSubChunk(CHUNK_ID_3GIX, 4);
402            // determine appropriate sample group index (to be stored in chunk)
403            uint16_t iSampleGroup = 0; // 0 refers to default sample group
404            File* pFile = static_cast<File*>(pParent);
405            if (pFile->pGroups) {
406                std::list<Group*>::iterator iter = pFile->pGroups->begin();
407                std::list<Group*>::iterator end  = pFile->pGroups->end();
408                for (int i = 0; iter != end; i++, iter++) {
409                    if (*iter == pGroup) {
410                        iSampleGroup = i;
411                        break; // found
412                    }
413                }
414            }
415          // update '3gix' chunk          // update '3gix' chunk
416          pData = (uint8_t*) pCk3gix->LoadChunkData();          pData = (uint8_t*) pCk3gix->LoadChunkData();
417          memcpy(&pData[0], &SampleGroup, 2);          memcpy(&pData[0], &iSampleGroup, 2);
418      }      }
419    
420      /// Scans compressed samples for mandatory informations (e.g. actual number of total sample points).      /// Scans compressed samples for mandatory informations (e.g. actual number of total sample points).
# Line 616  namespace { Line 635  namespace {
635       * enlarged samples before calling File::Save() as this might exceed the       * enlarged samples before calling File::Save() as this might exceed the
636       * current sample's boundary!       * current sample's boundary!
637       *       *
638       * Also note: only WAVE_FORMAT_PCM is currently supported, that is       * Also note: only DLS_WAVE_FORMAT_PCM is currently supported, that is
639       * FormatTag must be WAVE_FORMAT_PCM. Trying to resize samples with       * FormatTag must be DLS_WAVE_FORMAT_PCM. Trying to resize samples with
640       * other formats will fail!       * other formats will fail!
641       *       *
642       * @param iNewSize - new sample wave data size in sample points (must be       * @param iNewSize - new sample wave data size in sample points (must be
643       *                   greater than zero)       *                   greater than zero)
644       * @throws DLS::Excecption if FormatTag != WAVE_FORMAT_PCM       * @throws DLS::Excecption if FormatTag != DLS_WAVE_FORMAT_PCM
645       *                         or if \a iNewSize is less than 1       *                         or if \a iNewSize is less than 1
646       * @throws gig::Exception if existing sample is compressed       * @throws gig::Exception if existing sample is compressed
647       * @see DLS::Sample::GetSize(), DLS::Sample::FrameSize,       * @see DLS::Sample::GetSize(), DLS::Sample::FrameSize,
# Line 722  namespace { Line 741  namespace {
741       * @param SampleCount      number of sample points to read       * @param SampleCount      number of sample points to read
742       * @param pPlaybackState   will be used to store and reload the playback       * @param pPlaybackState   will be used to store and reload the playback
743       *                         state for the next ReadAndLoop() call       *                         state for the next ReadAndLoop() call
744         * @param pDimRgn          dimension region with looping information
745       * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression       * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression
746       * @returns                number of successfully read sample points       * @returns                number of successfully read sample points
747       * @see                    CreateDecompressionBuffer()       * @see                    CreateDecompressionBuffer()
748       */       */
749      unsigned long Sample::ReadAndLoop(void* pBuffer, unsigned long SampleCount, playback_state_t* pPlaybackState, buffer_t* pExternalDecompressionBuffer) {      unsigned long Sample::ReadAndLoop(void* pBuffer, unsigned long SampleCount, playback_state_t* pPlaybackState,
750                                          DimensionRegion* pDimRgn, buffer_t* pExternalDecompressionBuffer) {
751          unsigned long samplestoread = SampleCount, totalreadsamples = 0, readsamples, samplestoloopend;          unsigned long samplestoread = SampleCount, totalreadsamples = 0, readsamples, samplestoloopend;
752          uint8_t* pDst = (uint8_t*) pBuffer;          uint8_t* pDst = (uint8_t*) pBuffer;
753    
754          SetPos(pPlaybackState->position); // recover position from the last time          SetPos(pPlaybackState->position); // recover position from the last time
755    
756          if (this->Loops && GetPos() <= this->LoopEnd) { // honor looping if there are loop points defined          if (pDimRgn->SampleLoops) { // honor looping if there are loop points defined
757    
758              switch (this->LoopType) {              const DLS::sample_loop_t& loop = pDimRgn->pSampleLoops[0];
759                const uint32_t loopEnd = loop.LoopStart + loop.LoopLength;
760    
761                  case loop_type_bidirectional: { //TODO: not tested yet!              if (GetPos() <= loopEnd) {
762                      do {                  switch (loop.LoopType) {
                         // if not endless loop check if max. number of loop cycles have been passed  
                         if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;  
   
                         if (!pPlaybackState->reverse) { // forward playback  
                             do {  
                                 samplestoloopend  = this->LoopEnd - GetPos();  
                                 readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);  
                                 samplestoread    -= readsamples;  
                                 totalreadsamples += readsamples;  
                                 if (readsamples == samplestoloopend) {  
                                     pPlaybackState->reverse = true;  
                                     break;  
                                 }  
                             } while (samplestoread && readsamples);  
                         }  
                         else { // backward playback  
763    
764                              // as we can only read forward from disk, we have to                      case loop_type_bidirectional: { //TODO: not tested yet!
765                              // determine the end position within the loop first,                          do {
766                              // read forward from that 'end' and finally after                              // if not endless loop check if max. number of loop cycles have been passed
767                              // reading, swap all sample frames so it reflects                              if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;
768                              // backward playback  
769                                if (!pPlaybackState->reverse) { // forward playback
770                              unsigned long swapareastart       = totalreadsamples;                                  do {
771                              unsigned long loopoffset          = GetPos() - this->LoopStart;                                      samplestoloopend  = loopEnd - GetPos();
772                              unsigned long samplestoreadinloop = Min(samplestoread, loopoffset);                                      readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
773                              unsigned long reverseplaybackend  = GetPos() - samplestoreadinloop;                                      samplestoread    -= readsamples;
774                                        totalreadsamples += readsamples;
775                              SetPos(reverseplaybackend);                                      if (readsamples == samplestoloopend) {
776                                            pPlaybackState->reverse = true;
777                              // read samples for backward playback                                          break;
778                              do {                                      }
779                                  readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], samplestoreadinloop, pExternalDecompressionBuffer);                                  } while (samplestoread && readsamples);
780                                  samplestoreadinloop -= readsamples;                              }
781                                  samplestoread       -= readsamples;                              else { // backward playback
                                 totalreadsamples    += readsamples;  
                             } while (samplestoreadinloop && readsamples);  
782    
783                              SetPos(reverseplaybackend); // pretend we really read backwards                                  // as we can only read forward from disk, we have to
784                                    // determine the end position within the loop first,
785                                    // read forward from that 'end' and finally after
786                                    // reading, swap all sample frames so it reflects
787                                    // backward playback
788    
789                                    unsigned long swapareastart       = totalreadsamples;
790                                    unsigned long loopoffset          = GetPos() - loop.LoopStart;
791                                    unsigned long samplestoreadinloop = Min(samplestoread, loopoffset);
792                                    unsigned long reverseplaybackend  = GetPos() - samplestoreadinloop;
793    
794                                    SetPos(reverseplaybackend);
795    
796                                    // read samples for backward playback
797                                    do {
798                                        readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], samplestoreadinloop, pExternalDecompressionBuffer);
799                                        samplestoreadinloop -= readsamples;
800                                        samplestoread       -= readsamples;
801                                        totalreadsamples    += readsamples;
802                                    } while (samplestoreadinloop && readsamples);
803    
804                                    SetPos(reverseplaybackend); // pretend we really read backwards
805    
806                                    if (reverseplaybackend == loop.LoopStart) {
807                                        pPlaybackState->loop_cycles_left--;
808                                        pPlaybackState->reverse = false;
809                                    }
810    
811                              if (reverseplaybackend == this->LoopStart) {                                  // reverse the sample frames for backward playback
812                                  pPlaybackState->loop_cycles_left--;                                  SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);
                                 pPlaybackState->reverse = false;  
813                              }                              }
814                            } while (samplestoread && readsamples);
815                            break;
816                        }
817    
818                              // reverse the sample frames for backward playback                      case loop_type_backward: { // TODO: not tested yet!
819                              SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);                          // forward playback (not entered the loop yet)
820                          }                          if (!pPlaybackState->reverse) do {
821                      } while (samplestoread && readsamples);                              samplestoloopend  = loopEnd - GetPos();
822                      break;                              readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
823                  }                              samplestoread    -= readsamples;
824                                totalreadsamples += readsamples;
825                  case loop_type_backward: { // TODO: not tested yet!                              if (readsamples == samplestoloopend) {
826                      // forward playback (not entered the loop yet)                                  pPlaybackState->reverse = true;
827                      if (!pPlaybackState->reverse) do {                                  break;
828                          samplestoloopend  = this->LoopEnd - GetPos();                              }
829                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);                          } while (samplestoread && readsamples);
                         samplestoread    -= readsamples;  
                         totalreadsamples += readsamples;  
                         if (readsamples == samplestoloopend) {  
                             pPlaybackState->reverse = true;  
                             break;  
                         }  
                     } while (samplestoread && readsamples);  
830    
831                      if (!samplestoread) break;                          if (!samplestoread) break;
832    
833                      // as we can only read forward from disk, we have to                          // as we can only read forward from disk, we have to
834                      // determine the end position within the loop first,                          // determine the end position within the loop first,
835                      // read forward from that 'end' and finally after                          // read forward from that 'end' and finally after
836                      // reading, swap all sample frames so it reflects                          // reading, swap all sample frames so it reflects
837                      // backward playback                          // backward playback
838    
839                      unsigned long swapareastart       = totalreadsamples;                          unsigned long swapareastart       = totalreadsamples;
840                      unsigned long loopoffset          = GetPos() - this->LoopStart;                          unsigned long loopoffset          = GetPos() - loop.LoopStart;
841                      unsigned long samplestoreadinloop = (this->LoopPlayCount) ? Min(samplestoread, pPlaybackState->loop_cycles_left * LoopSize - loopoffset)                          unsigned long samplestoreadinloop = (this->LoopPlayCount) ? Min(samplestoread, pPlaybackState->loop_cycles_left * loop.LoopLength - loopoffset)
842                                                                                : samplestoread;                                                                                    : samplestoread;
843                      unsigned long reverseplaybackend  = this->LoopStart + Abs((loopoffset - samplestoreadinloop) % this->LoopSize);                          unsigned long reverseplaybackend  = loop.LoopStart + Abs((loopoffset - samplestoreadinloop) % loop.LoopLength);
844    
845                      SetPos(reverseplaybackend);                          SetPos(reverseplaybackend);
846    
847                      // read samples for backward playback                          // read samples for backward playback
848                      do {                          do {
849                          // if not endless loop check if max. number of loop cycles have been passed                              // if not endless loop check if max. number of loop cycles have been passed
850                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;                              if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;
851                          samplestoloopend     = this->LoopEnd - GetPos();                              samplestoloopend     = loopEnd - GetPos();
852                          readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoreadinloop, samplestoloopend), pExternalDecompressionBuffer);                              readsamples          = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoreadinloop, samplestoloopend), pExternalDecompressionBuffer);
853                          samplestoreadinloop -= readsamples;                              samplestoreadinloop -= readsamples;
854                          samplestoread       -= readsamples;                              samplestoread       -= readsamples;
855                          totalreadsamples    += readsamples;                              totalreadsamples    += readsamples;
856                          if (readsamples == samplestoloopend) {                              if (readsamples == samplestoloopend) {
857                              pPlaybackState->loop_cycles_left--;                                  pPlaybackState->loop_cycles_left--;
858                              SetPos(this->LoopStart);                                  SetPos(loop.LoopStart);
859                          }                              }
860                      } while (samplestoreadinloop && readsamples);                          } while (samplestoreadinloop && readsamples);
861    
862                      SetPos(reverseplaybackend); // pretend we really read backwards                          SetPos(reverseplaybackend); // pretend we really read backwards
863    
864                      // reverse the sample frames for backward playback                          // reverse the sample frames for backward playback
865                      SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);                          SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);
866                      break;                          break;
867                  }                      }
868    
869                  default: case loop_type_normal: {                      default: case loop_type_normal: {
870                      do {                          do {
871                          // if not endless loop check if max. number of loop cycles have been passed                              // if not endless loop check if max. number of loop cycles have been passed
872                          if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;                              if (this->LoopPlayCount && !pPlaybackState->loop_cycles_left) break;
873                          samplestoloopend  = this->LoopEnd - GetPos();                              samplestoloopend  = loopEnd - GetPos();
874                          readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);                              readsamples       = Read(&pDst[totalreadsamples * this->FrameSize], Min(samplestoread, samplestoloopend), pExternalDecompressionBuffer);
875                          samplestoread    -= readsamples;                              samplestoread    -= readsamples;
876                          totalreadsamples += readsamples;                              totalreadsamples += readsamples;
877                          if (readsamples == samplestoloopend) {                              if (readsamples == samplestoloopend) {
878                              pPlaybackState->loop_cycles_left--;                                  pPlaybackState->loop_cycles_left--;
879                              SetPos(this->LoopStart);                                  SetPos(loop.LoopStart);
880                          }                              }
881                      } while (samplestoread && readsamples);                          } while (samplestoread && readsamples);
882                      break;                          break;
883                        }
884                  }                  }
885              }              }
886          }          }
# Line 884  namespace { Line 910  namespace {
910       * have to use an external decompression buffer for <b>EACH</b>       * have to use an external decompression buffer for <b>EACH</b>
911       * streaming thread to avoid race conditions and crashes!       * streaming thread to avoid race conditions and crashes!
912       *       *
913         * For 16 bit samples, the data in the buffer will be int16_t
914         * (using native endianness). For 24 bit, the buffer will
915         * contain three bytes per sample, little-endian.
916         *
917       * @param pBuffer      destination buffer       * @param pBuffer      destination buffer
918       * @param SampleCount  number of sample points to read       * @param SampleCount  number of sample points to read
919       * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression       * @param pExternalDecompressionBuffer  (optional) external buffer to use for decompression
# Line 894  namespace { Line 924  namespace {
924          if (SampleCount == 0) return 0;          if (SampleCount == 0) return 0;
925          if (!Compressed) {          if (!Compressed) {
926              if (BitDepth == 24) {              if (BitDepth == 24) {
927                  // 24 bit sample. For now just truncate to 16 bit.                  return pCkData->Read(pBuffer, SampleCount * FrameSize, 1) / FrameSize;
                 unsigned char* pSrc = (unsigned char*) ((pExternalDecompressionBuffer) ? pExternalDecompressionBuffer->pStart : this->InternalDecompressionBuffer.pStart);  
                 int16_t* pDst = static_cast<int16_t*>(pBuffer);  
                 if (Channels == 2) { // Stereo  
                     unsigned long readBytes = pCkData->Read(pSrc, SampleCount * 6, 1);  
                     pSrc++;  
                     for (unsigned long i = readBytes ; i > 0 ; i -= 3) {  
                         *pDst++ = get16(pSrc);  
                         pSrc += 3;  
                     }  
                     return (pDst - static_cast<int16_t*>(pBuffer)) >> 1;  
                 }  
                 else { // Mono  
                     unsigned long readBytes = pCkData->Read(pSrc, SampleCount * 3, 1);  
                     pSrc++;  
                     for (unsigned long i = readBytes ; i > 0 ; i -= 3) {  
                         *pDst++ = get16(pSrc);  
                         pSrc += 3;  
                     }  
                     return pDst - static_cast<int16_t*>(pBuffer);  
                 }  
928              }              }
929              else { // 16 bit              else { // 16 bit
930                  // (pCkData->Read does endian correction)                  // (pCkData->Read does endian correction)
# Line 944  namespace { Line 954  namespace {
954    
955              unsigned char* pSrc = (unsigned char*) pDecompressionBuffer->pStart;              unsigned char* pSrc = (unsigned char*) pDecompressionBuffer->pStart;
956              int16_t* pDst = static_cast<int16_t*>(pBuffer);              int16_t* pDst = static_cast<int16_t*>(pBuffer);
957                uint8_t* pDst24 = static_cast<uint8_t*>(pBuffer);
958              remainingbytes = pCkData->Read(pSrc, assumedsize, 1);              remainingbytes = pCkData->Read(pSrc, assumedsize, 1);
959    
960              while (remainingsamples && remainingbytes) {              while (remainingsamples && remainingbytes) {
# Line 1025  namespace { Line 1036  namespace {
1036                              const unsigned char* const param_r = pSrc;                              const unsigned char* const param_r = pSrc;
1037                              if (mode_r != 2) pSrc += 12;                              if (mode_r != 2) pSrc += 12;
1038    
1039                              Decompress24(mode_l, param_l, 2, pSrc, pDst,                              Decompress24(mode_l, param_l, 6, pSrc, pDst24,
1040                                           skipsamples, copysamples, TruncatedBits);                                           skipsamples, copysamples, TruncatedBits);
1041                              Decompress24(mode_r, param_r, 2, pSrc + rightChannelOffset, pDst + 1,                              Decompress24(mode_r, param_r, 6, pSrc + rightChannelOffset, pDst24 + 3,
1042                                           skipsamples, copysamples, TruncatedBits);                                           skipsamples, copysamples, TruncatedBits);
1043                              pDst += copysamples << 1;                              pDst24 += copysamples * 6;
1044                          }                          }
1045                          else { // Mono                          else { // Mono
1046                              Decompress24(mode_l, param_l, 1, pSrc, pDst,                              Decompress24(mode_l, param_l, 3, pSrc, pDst24,
1047                                           skipsamples, copysamples, TruncatedBits);                                           skipsamples, copysamples, TruncatedBits);
1048                              pDst += copysamples;                              pDst24 += copysamples * 3;
1049                          }                          }
1050                      }                      }
1051                      else { // 16 bit                      else { // 16 bit
# Line 1141  namespace { Line 1152  namespace {
1152          }          }
1153      }      }
1154    
1155        /**
1156         * Returns pointer to the Group this Sample belongs to. In the .gig
1157         * format a sample always belongs to one group. If it wasn't explicitly
1158         * assigned to a certain group, it will be automatically assigned to a
1159         * default group.
1160         *
1161         * @returns Sample's Group (never NULL)
1162         */
1163        Group* Sample::GetGroup() const {
1164            return pGroup;
1165        }
1166    
1167      Sample::~Sample() {      Sample::~Sample() {
1168          Instances--;          Instances--;
1169          if (!Instances && InternalDecompressionBuffer.Size) {          if (!Instances && InternalDecompressionBuffer.Size) {
# Line 1170  namespace { Line 1193  namespace {
1193    
1194          RIFF::Chunk* _3ewa = _3ewl->GetSubChunk(CHUNK_ID_3EWA);          RIFF::Chunk* _3ewa = _3ewl->GetSubChunk(CHUNK_ID_3EWA);
1195          if (_3ewa) { // if '3ewa' chunk exists          if (_3ewa) { // if '3ewa' chunk exists
1196              _3ewa->ReadInt32(); // unknown, always 0x0000008C ?              _3ewa->ReadInt32(); // unknown, always == chunk size ?
1197              LFO3Frequency = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());              LFO3Frequency = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());
1198              EG3Attack     = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());              EG3Attack     = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());
1199              _3ewa->ReadInt16(); // unknown              _3ewa->ReadInt16(); // unknown
# Line 1450  namespace { Line 1473  namespace {
1473    
1474          // update '3ewa' chunk with DimensionRegion's current settings          // update '3ewa' chunk with DimensionRegion's current settings
1475    
1476          const uint32_t unknown = 0x0000008C; // unknown, always 0x0000008C ?          const uint32_t unknown = _3ewa->GetSize(); // unknown, always chunk size ?
1477          memcpy(&pData[0], &unknown, 4);          memcpy(&pData[0], &unknown, 4);
1478    
1479          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);
1480          memcpy(&pData[4], &lfo3freq, 4);          memcpy(&pData[4], &lfo3freq, 4);
1481    
1482          const int32_t eg3attack = (int32_t) GIG_EXP_ENCODE(EG3Attack);          const int32_t eg3attack = (int32_t) GIG_EXP_ENCODE(EG3Attack);
1483          memcpy(&pData[4], &eg3attack, 4);          memcpy(&pData[8], &eg3attack, 4);
1484    
1485          // next 2 bytes unknown          // next 2 bytes unknown
1486    
1487          memcpy(&pData[10], &LFO1InternalDepth, 2);          memcpy(&pData[14], &LFO1InternalDepth, 2);
1488    
1489          // next 2 bytes unknown          // next 2 bytes unknown
1490    
1491          memcpy(&pData[14], &LFO3InternalDepth, 2);          memcpy(&pData[18], &LFO3InternalDepth, 2);
1492    
1493          // next 2 bytes unknown          // next 2 bytes unknown
1494    
1495          memcpy(&pData[18], &LFO1ControlDepth, 2);          memcpy(&pData[22], &LFO1ControlDepth, 2);
1496    
1497          // next 2 bytes unknown          // next 2 bytes unknown
1498    
1499          memcpy(&pData[22], &LFO3ControlDepth, 2);          memcpy(&pData[26], &LFO3ControlDepth, 2);
1500    
1501          const int32_t eg1attack = (int32_t) GIG_EXP_ENCODE(EG1Attack);          const int32_t eg1attack = (int32_t) GIG_EXP_ENCODE(EG1Attack);
1502          memcpy(&pData[24], &eg1attack, 4);          memcpy(&pData[28], &eg1attack, 4);
1503    
1504          const int32_t eg1decay1 = (int32_t) GIG_EXP_ENCODE(EG1Decay1);          const int32_t eg1decay1 = (int32_t) GIG_EXP_ENCODE(EG1Decay1);
1505          memcpy(&pData[28], &eg1decay1, 4);          memcpy(&pData[32], &eg1decay1, 4);
1506    
1507          // next 2 bytes unknown          // next 2 bytes unknown
1508    
1509          memcpy(&pData[34], &EG1Sustain, 2);          memcpy(&pData[38], &EG1Sustain, 2);
1510    
1511          const int32_t eg1release = (int32_t) GIG_EXP_ENCODE(EG1Release);          const int32_t eg1release = (int32_t) GIG_EXP_ENCODE(EG1Release);
1512          memcpy(&pData[36], &eg1release, 4);          memcpy(&pData[40], &eg1release, 4);
1513    
1514          const uint8_t eg1ctl = (uint8_t) EncodeLeverageController(EG1Controller);          const uint8_t eg1ctl = (uint8_t) EncodeLeverageController(EG1Controller);
1515          memcpy(&pData[40], &eg1ctl, 1);          memcpy(&pData[44], &eg1ctl, 1);
1516    
1517          const uint8_t eg1ctrloptions =          const uint8_t eg1ctrloptions =
1518              (EG1ControllerInvert) ? 0x01 : 0x00 |              (EG1ControllerInvert) ? 0x01 : 0x00 |
1519              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG1ControllerAttackInfluence) |              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG1ControllerAttackInfluence) |
1520              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG1ControllerDecayInfluence) |              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG1ControllerDecayInfluence) |
1521              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG1ControllerReleaseInfluence);              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG1ControllerReleaseInfluence);
1522          memcpy(&pData[41], &eg1ctrloptions, 1);          memcpy(&pData[45], &eg1ctrloptions, 1);
1523    
1524          const uint8_t eg2ctl = (uint8_t) EncodeLeverageController(EG2Controller);          const uint8_t eg2ctl = (uint8_t) EncodeLeverageController(EG2Controller);
1525          memcpy(&pData[42], &eg2ctl, 1);          memcpy(&pData[46], &eg2ctl, 1);
1526    
1527          const uint8_t eg2ctrloptions =          const uint8_t eg2ctrloptions =
1528              (EG2ControllerInvert) ? 0x01 : 0x00 |              (EG2ControllerInvert) ? 0x01 : 0x00 |
1529              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG2ControllerAttackInfluence) |              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG2ControllerAttackInfluence) |
1530              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG2ControllerDecayInfluence) |              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG2ControllerDecayInfluence) |
1531              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG2ControllerReleaseInfluence);              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG2ControllerReleaseInfluence);
1532          memcpy(&pData[43], &eg2ctrloptions, 1);          memcpy(&pData[47], &eg2ctrloptions, 1);
1533    
1534          const int32_t lfo1freq = (int32_t) GIG_EXP_ENCODE(LFO1Frequency);          const int32_t lfo1freq = (int32_t) GIG_EXP_ENCODE(LFO1Frequency);
1535          memcpy(&pData[44], &lfo1freq, 4);          memcpy(&pData[48], &lfo1freq, 4);
1536    
1537          const int32_t eg2attack = (int32_t) GIG_EXP_ENCODE(EG2Attack);          const int32_t eg2attack = (int32_t) GIG_EXP_ENCODE(EG2Attack);
1538          memcpy(&pData[48], &eg2attack, 4);          memcpy(&pData[52], &eg2attack, 4);
1539    
1540          const int32_t eg2decay1 = (int32_t) GIG_EXP_ENCODE(EG2Decay1);          const int32_t eg2decay1 = (int32_t) GIG_EXP_ENCODE(EG2Decay1);
1541          memcpy(&pData[52], &eg2decay1, 4);          memcpy(&pData[56], &eg2decay1, 4);
1542    
1543          // next 2 bytes unknown          // next 2 bytes unknown
1544    
1545          memcpy(&pData[58], &EG2Sustain, 2);          memcpy(&pData[62], &EG2Sustain, 2);
1546    
1547          const int32_t eg2release = (int32_t) GIG_EXP_ENCODE(EG2Release);          const int32_t eg2release = (int32_t) GIG_EXP_ENCODE(EG2Release);
1548          memcpy(&pData[60], &eg2release, 4);          memcpy(&pData[64], &eg2release, 4);
1549    
1550          // next 2 bytes unknown          // next 2 bytes unknown
1551    
1552          memcpy(&pData[66], &LFO2ControlDepth, 2);          memcpy(&pData[70], &LFO2ControlDepth, 2);
1553    
1554          const int32_t lfo2freq = (int32_t) GIG_EXP_ENCODE(LFO2Frequency);          const int32_t lfo2freq = (int32_t) GIG_EXP_ENCODE(LFO2Frequency);
1555          memcpy(&pData[68], &lfo2freq, 4);          memcpy(&pData[72], &lfo2freq, 4);
1556    
1557          // next 2 bytes unknown          // next 2 bytes unknown
1558    
1559          memcpy(&pData[72], &LFO2InternalDepth, 2);          memcpy(&pData[78], &LFO2InternalDepth, 2);
1560    
1561          const int32_t eg1decay2 = (int32_t) (EG1InfiniteSustain) ? 0x7fffffff : (int32_t) GIG_EXP_ENCODE(EG1Decay2);          const int32_t eg1decay2 = (int32_t) (EG1InfiniteSustain) ? 0x7fffffff : (int32_t) GIG_EXP_ENCODE(EG1Decay2);
1562          memcpy(&pData[74], &eg1decay2, 4);          memcpy(&pData[80], &eg1decay2, 4);
1563    
1564          // next 2 bytes unknown          // next 2 bytes unknown
1565    
1566          memcpy(&pData[80], &EG1PreAttack, 2);          memcpy(&pData[86], &EG1PreAttack, 2);
1567    
1568          const int32_t eg2decay2 = (int32_t) (EG2InfiniteSustain) ? 0x7fffffff : (int32_t) GIG_EXP_ENCODE(EG2Decay2);          const int32_t eg2decay2 = (int32_t) (EG2InfiniteSustain) ? 0x7fffffff : (int32_t) GIG_EXP_ENCODE(EG2Decay2);
1569          memcpy(&pData[82], &eg2decay2, 4);          memcpy(&pData[88], &eg2decay2, 4);
1570    
1571          // next 2 bytes unknown          // next 2 bytes unknown
1572    
1573          memcpy(&pData[88], &EG2PreAttack, 2);          memcpy(&pData[94], &EG2PreAttack, 2);
1574    
1575          {          {
1576              if (VelocityResponseDepth > 4) throw Exception("VelocityResponseDepth must be between 0 and 4");              if (VelocityResponseDepth > 4) throw Exception("VelocityResponseDepth must be between 0 and 4");
# Line 1565  namespace { Line 1588  namespace {
1588                  default:                  default:
1589                      throw Exception("Could not update DimensionRegion's chunk, unknown VelocityResponseCurve selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown VelocityResponseCurve selected");
1590              }              }
1591              memcpy(&pData[90], &velocityresponse, 1);              memcpy(&pData[96], &velocityresponse, 1);
1592          }          }
1593    
1594          {          {
# Line 1584  namespace { Line 1607  namespace {
1607                  default:                  default:
1608                      throw Exception("Could not update DimensionRegion's chunk, unknown ReleaseVelocityResponseCurve selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown ReleaseVelocityResponseCurve selected");
1609              }              }
1610              memcpy(&pData[91], &releasevelocityresponse, 1);              memcpy(&pData[97], &releasevelocityresponse, 1);
1611          }          }
1612    
1613          memcpy(&pData[92], &VelocityResponseCurveScaling, 1);          memcpy(&pData[98], &VelocityResponseCurveScaling, 1);
1614    
1615          memcpy(&pData[93], &AttenuationControllerThreshold, 1);          memcpy(&pData[99], &AttenuationControllerThreshold, 1);
1616    
1617          // next 4 bytes unknown          // next 4 bytes unknown
1618    
1619          memcpy(&pData[98], &SampleStartOffset, 2);          memcpy(&pData[104], &SampleStartOffset, 2);
1620    
1621          // next 2 bytes unknown          // next 2 bytes unknown
1622    
# Line 1612  namespace { Line 1635  namespace {
1635                  default:                  default:
1636                      throw Exception("Could not update DimensionRegion's chunk, unknown DimensionBypass selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown DimensionBypass selected");
1637              }              }
1638              memcpy(&pData[102], &pitchTrackDimensionBypass, 1);              memcpy(&pData[108], &pitchTrackDimensionBypass, 1);
1639          }          }
1640    
1641          const uint8_t pan = (Pan >= 0) ? Pan : ((-Pan) + 63); // signed 8 bit -> signed 7 bit          const uint8_t pan = (Pan >= 0) ? Pan : ((-Pan) + 63); // signed 8 bit -> signed 7 bit
1642          memcpy(&pData[103], &pan, 1);          memcpy(&pData[109], &pan, 1);
1643    
1644          const uint8_t selfmask = (SelfMask) ? 0x01 : 0x00;          const uint8_t selfmask = (SelfMask) ? 0x01 : 0x00;
1645          memcpy(&pData[104], &selfmask, 1);          memcpy(&pData[110], &selfmask, 1);
1646    
1647          // next byte unknown          // next byte unknown
1648    
# Line 1628  namespace { Line 1651  namespace {
1651              if (LFO3Sync) lfo3ctrl |= 0x20; // bit 5              if (LFO3Sync) lfo3ctrl |= 0x20; // bit 5
1652              if (InvertAttenuationController) lfo3ctrl |= 0x80; // bit 7              if (InvertAttenuationController) lfo3ctrl |= 0x80; // bit 7
1653              if (VCFType == vcf_type_lowpassturbo) lfo3ctrl |= 0x40; // bit 6              if (VCFType == vcf_type_lowpassturbo) lfo3ctrl |= 0x40; // bit 6
1654              memcpy(&pData[106], &lfo3ctrl, 1);              memcpy(&pData[112], &lfo3ctrl, 1);
1655          }          }
1656    
1657          const uint8_t attenctl = EncodeLeverageController(AttenuationController);          const uint8_t attenctl = EncodeLeverageController(AttenuationController);
1658          memcpy(&pData[107], &attenctl, 1);          memcpy(&pData[113], &attenctl, 1);
1659    
1660          {          {
1661              uint8_t lfo2ctrl = LFO2Controller & 0x07; // lower 3 bits              uint8_t lfo2ctrl = LFO2Controller & 0x07; // lower 3 bits
1662              if (LFO2FlipPhase) lfo2ctrl |= 0x80; // bit 7              if (LFO2FlipPhase) lfo2ctrl |= 0x80; // bit 7
1663              if (LFO2Sync)      lfo2ctrl |= 0x20; // bit 5              if (LFO2Sync)      lfo2ctrl |= 0x20; // bit 5
1664              if (VCFResonanceController != vcf_res_ctrl_none) lfo2ctrl |= 0x40; // bit 6              if (VCFResonanceController != vcf_res_ctrl_none) lfo2ctrl |= 0x40; // bit 6
1665              memcpy(&pData[108], &lfo2ctrl, 1);              memcpy(&pData[114], &lfo2ctrl, 1);
1666          }          }
1667    
1668          {          {
# Line 1648  namespace { Line 1671  namespace {
1671              if (LFO1Sync)      lfo1ctrl |= 0x40; // bit 6              if (LFO1Sync)      lfo1ctrl |= 0x40; // bit 6
1672              if (VCFResonanceController != vcf_res_ctrl_none)              if (VCFResonanceController != vcf_res_ctrl_none)
1673                  lfo1ctrl |= GIG_VCF_RESONANCE_CTRL_ENCODE(VCFResonanceController);                  lfo1ctrl |= GIG_VCF_RESONANCE_CTRL_ENCODE(VCFResonanceController);
1674              memcpy(&pData[109], &lfo1ctrl, 1);              memcpy(&pData[115], &lfo1ctrl, 1);
1675          }          }
1676    
1677          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth
1678                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */
1679          memcpy(&pData[110], &eg3depth, 1);          memcpy(&pData[116], &eg3depth, 1);
1680    
1681          // next 2 bytes unknown          // next 2 bytes unknown
1682    
1683          const uint8_t channeloffset = ChannelOffset * 4;          const uint8_t channeloffset = ChannelOffset * 4;
1684          memcpy(&pData[113], &channeloffset, 1);          memcpy(&pData[120], &channeloffset, 1);
1685    
1686          {          {
1687              uint8_t regoptions = 0;              uint8_t regoptions = 0;
1688              if (MSDecode)      regoptions |= 0x01; // bit 0              if (MSDecode)      regoptions |= 0x01; // bit 0
1689              if (SustainDefeat) regoptions |= 0x02; // bit 1              if (SustainDefeat) regoptions |= 0x02; // bit 1
1690              memcpy(&pData[114], &regoptions, 1);              memcpy(&pData[121], &regoptions, 1);
1691          }          }
1692    
1693          // next 2 bytes unknown          // next 2 bytes unknown
1694    
1695          memcpy(&pData[117], &VelocityUpperLimit, 1);          memcpy(&pData[124], &VelocityUpperLimit, 1);
1696    
1697          // next 3 bytes unknown          // next 3 bytes unknown
1698    
1699          memcpy(&pData[121], &ReleaseTriggerDecay, 1);          memcpy(&pData[128], &ReleaseTriggerDecay, 1);
1700    
1701          // next 2 bytes unknown          // next 2 bytes unknown
1702    
1703          const uint8_t eg1hold = (EG1Hold) ? 0x80 : 0x00; // bit 7          const uint8_t eg1hold = (EG1Hold) ? 0x80 : 0x00; // bit 7
1704          memcpy(&pData[124], &eg1hold, 1);          memcpy(&pData[131], &eg1hold, 1);
1705    
1706          const uint8_t vcfcutoff = (VCFEnabled) ? 0x80 : 0x00 |  /* bit 7 */          const uint8_t vcfcutoff = (VCFEnabled) ? 0x80 : 0x00 |  /* bit 7 */
1707                                    (VCFCutoff)  ? 0x7f : 0x00;   /* lower 7 bits */                                    (VCFCutoff & 0x7f);   /* lower 7 bits */
1708          memcpy(&pData[125], &vcfcutoff, 1);          memcpy(&pData[132], &vcfcutoff, 1);
1709    
1710          memcpy(&pData[126], &VCFCutoffController, 1);          memcpy(&pData[133], &VCFCutoffController, 1);
1711    
1712          const uint8_t vcfvelscale = (VCFCutoffControllerInvert) ? 0x80 : 0x00 | /* bit 7 */          const uint8_t vcfvelscale = (VCFCutoffControllerInvert) ? 0x80 : 0x00 | /* bit 7 */
1713                                      (VCFVelocityScale) ? 0x7f : 0x00; /* lower 7 bits */                                      (VCFVelocityScale & 0x7f); /* lower 7 bits */
1714          memcpy(&pData[127], &vcfvelscale, 1);          memcpy(&pData[134], &vcfvelscale, 1);
1715    
1716          // next byte unknown          // next byte unknown
1717    
1718          const uint8_t vcfresonance = (VCFResonanceDynamic) ? 0x00 : 0x80 | /* bit 7 */          const uint8_t vcfresonance = (VCFResonanceDynamic) ? 0x00 : 0x80 | /* bit 7 */
1719                                       (VCFResonance) ? 0x7f : 0x00; /* lower 7 bits */                                       (VCFResonance & 0x7f); /* lower 7 bits */
1720          memcpy(&pData[129], &vcfresonance, 1);          memcpy(&pData[136], &vcfresonance, 1);
1721    
1722          const uint8_t vcfbreakpoint = (VCFKeyboardTracking) ? 0x80 : 0x00 | /* bit 7 */          const uint8_t vcfbreakpoint = (VCFKeyboardTracking) ? 0x80 : 0x00 | /* bit 7 */
1723                                        (VCFKeyboardTrackingBreakpoint) ? 0x7f : 0x00; /* lower 7 bits */                                        (VCFKeyboardTrackingBreakpoint & 0x7f); /* lower 7 bits */
1724          memcpy(&pData[130], &vcfbreakpoint, 1);          memcpy(&pData[137], &vcfbreakpoint, 1);
1725    
1726          const uint8_t vcfvelocity = VCFVelocityDynamicRange % 5 |          const uint8_t vcfvelocity = VCFVelocityDynamicRange % 5 |
1727                                      VCFVelocityCurve * 5;                                      VCFVelocityCurve * 5;
1728          memcpy(&pData[131], &vcfvelocity, 1);          memcpy(&pData[138], &vcfvelocity, 1);
1729    
1730          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;
1731          memcpy(&pData[132], &vcftype, 1);          memcpy(&pData[139], &vcftype, 1);
1732      }      }
1733    
1734      // get the corresponding velocity table from the table map or create & calculate that table if it doesn't exist yet      // get the corresponding velocity table from the table map or create & calculate that table if it doesn't exist yet
# Line 2047  namespace { Line 2070  namespace {
2070  // *  // *
2071    
2072      Region::Region(Instrument* pInstrument, RIFF::List* rgnList) : DLS::Region((DLS::Instrument*) pInstrument, rgnList) {      Region::Region(Instrument* pInstrument, RIFF::List* rgnList) : DLS::Region((DLS::Instrument*) pInstrument, rgnList) {
2073            pInfo->UseFixedLengthStrings = true;
2074    
2075          // Initialization          // Initialization
2076          Dimensions = 0;          Dimensions = 0;
2077          for (int i = 0; i < 256; i++) {          for (int i = 0; i < 256; i++) {
# Line 2083  namespace { Line 2108  namespace {
2108                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||
2109                                                             dimension == dimension_samplechannel ||                                                             dimension == dimension_samplechannel ||
2110                                                             dimension == dimension_releasetrigger ||                                                             dimension == dimension_releasetrigger ||
2111                                                               dimension == dimension_keyboard ||
2112                                                             dimension == dimension_roundrobin ||                                                             dimension == dimension_roundrobin ||
2113                                                             dimension == dimension_random) ? split_type_bit                                                             dimension == dimension_random) ? split_type_bit
2114                                                                                            : split_type_normal;                                                                                            : split_type_normal;
# Line 2111  namespace { Line 2137  namespace {
2137              // load sample references              // load sample references
2138              for (uint i = 0; i < DimensionRegions; i++) {              for (uint i = 0; i < DimensionRegions; i++) {
2139                  uint32_t wavepoolindex = _3lnk->ReadUint32();                  uint32_t wavepoolindex = _3lnk->ReadUint32();
2140                  pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);
2141              }              }
2142                GetSample(); // load global region sample reference
2143          }          }
2144    
2145          // make sure there is at least one dimension region          // make sure there is at least one dimension region
# Line 2156  namespace { Line 2183  namespace {
2183    
2184          // update dimension definitions in '3lnk' chunk          // update dimension definitions in '3lnk' chunk
2185          uint8_t* pData = (uint8_t*) _3lnk->LoadChunkData();          uint8_t* pData = (uint8_t*) _3lnk->LoadChunkData();
2186            memcpy(&pData[0], &DimensionRegions, 4);
2187          for (int i = 0; i < iMaxDimensions; i++) {          for (int i = 0; i < iMaxDimensions; i++) {
2188              pData[i * 8]     = (uint8_t) pDimensionDefinitions[i].dimension;              pData[4 + i * 8] = (uint8_t) pDimensionDefinitions[i].dimension;
2189              pData[i * 8 + 1] = pDimensionDefinitions[i].bits;              pData[5 + i * 8] = pDimensionDefinitions[i].bits;
2190              // next 2 bytes unknown              // next 2 bytes unknown
2191              pData[i * 8 + 4] = pDimensionDefinitions[i].zones;              pData[8 + i * 8] = pDimensionDefinitions[i].zones;
2192              // next 3 bytes unknown              // next 3 bytes unknown
2193          }          }
2194    
# Line 2489  namespace { Line 2517  namespace {
2517      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex, progress_t* pProgress) {      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex, progress_t* pProgress) {
2518          if ((int32_t)WavePoolTableIndex == -1) return NULL;          if ((int32_t)WavePoolTableIndex == -1) return NULL;
2519          File* file = (File*) GetParent()->GetParent();          File* file = (File*) GetParent()->GetParent();
2520            if (!file->pWavePoolTable) return NULL;
2521          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];
2522          unsigned long soughtfileno = file->pWavePoolTableHi[WavePoolTableIndex];          unsigned long soughtfileno = file->pWavePoolTableHi[WavePoolTableIndex];
2523          Sample* sample = file->GetFirstSample(pProgress);          Sample* sample = file->GetFirstSample(pProgress);
2524          while (sample) {          while (sample) {
2525              if (sample->ulWavePoolOffset == soughtoffset &&              if (sample->ulWavePoolOffset == soughtoffset &&
2526                  sample->FileNo == soughtfileno) return static_cast<gig::Sample*>(pSample = sample);                  sample->FileNo == soughtfileno) return static_cast<gig::Sample*>(sample);
2527              sample = file->GetNextSample();              sample = file->GetNextSample();
2528          }          }
2529          return NULL;          return NULL;
# Line 2506  namespace { Line 2535  namespace {
2535  // *  // *
2536    
2537      Instrument::Instrument(File* pFile, RIFF::List* insList, progress_t* pProgress) : DLS::Instrument((DLS::File*)pFile, insList) {      Instrument::Instrument(File* pFile, RIFF::List* insList, progress_t* pProgress) : DLS::Instrument((DLS::File*)pFile, insList) {
2538            pInfo->UseFixedLengthStrings = true;
2539    
2540          // Initialization          // Initialization
2541          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;
2542    
# Line 2664  namespace { Line 2695  namespace {
2695    
2696    
2697    
2698    // *************** Group ***************
2699    // *
2700    
2701        /** @brief Constructor.
2702         *
2703         * @param file   - pointer to the gig::File object
2704         * @param ck3gnm - pointer to 3gnm chunk associated with this group or
2705         *                 NULL if this is a new Group
2706         */
2707        Group::Group(File* file, RIFF::Chunk* ck3gnm) {
2708            pFile      = file;
2709            pNameChunk = ck3gnm;
2710            ::LoadString(pNameChunk, Name);
2711        }
2712    
2713        Group::~Group() {
2714        }
2715    
2716        /** @brief Update chunks with current group settings.
2717         *
2718         * Apply current Group field values to the respective. You have to call
2719         * File::Save() to make changes persistent.
2720         */
2721        void Group::UpdateChunks() {
2722            // make sure <3gri> and <3gnl> list chunks exist
2723            RIFF::List* _3gri = pFile->pRIFF->GetSubList(LIST_TYPE_3GRI);
2724            if (!_3gri) _3gri = pFile->pRIFF->AddSubList(LIST_TYPE_3GRI);
2725            RIFF::List* _3gnl = _3gri->GetSubList(LIST_TYPE_3GNL);
2726            if (!_3gnl) _3gnl = pFile->pRIFF->AddSubList(LIST_TYPE_3GNL);
2727            // now store the name of this group as <3gnm> chunk as subchunk of the <3gnl> list chunk
2728            ::SaveString(CHUNK_ID_3GNM, pNameChunk, _3gnl, Name, String("Unnamed Group"), true, 64);
2729        }
2730    
2731        /**
2732         * Returns the first Sample of this Group. You have to call this method
2733         * once before you use GetNextSample().
2734         *
2735         * <b>Notice:</b> this method might block for a long time, in case the
2736         * samples of this .gig file were not scanned yet
2737         *
2738         * @returns  pointer address to first Sample or NULL if there is none
2739         *           applied to this Group
2740         * @see      GetNextSample()
2741         */
2742        Sample* Group::GetFirstSample() {
2743            // FIXME: lazy und unsafe implementation, should be an autonomous iterator
2744            for (Sample* pSample = pFile->GetFirstSample(); pSample; pSample = pFile->GetNextSample()) {
2745                if (pSample->GetGroup() == this) return pSample;
2746            }
2747            return NULL;
2748        }
2749    
2750        /**
2751         * Returns the next Sample of the Group. You have to call
2752         * GetFirstSample() once before you can use this method. By calling this
2753         * method multiple times it iterates through the Samples assigned to
2754         * this Group.
2755         *
2756         * @returns  pointer address to the next Sample of this Group or NULL if
2757         *           end reached
2758         * @see      GetFirstSample()
2759         */
2760        Sample* Group::GetNextSample() {
2761            // FIXME: lazy und unsafe implementation, should be an autonomous iterator
2762            for (Sample* pSample = pFile->GetNextSample(); pSample; pSample = pFile->GetNextSample()) {
2763                if (pSample->GetGroup() == this) return pSample;
2764            }
2765            return NULL;
2766        }
2767    
2768        /**
2769         * Move Sample given by \a pSample from another Group to this Group.
2770         */
2771        void Group::AddSample(Sample* pSample) {
2772            pSample->pGroup = this;
2773        }
2774    
2775        /**
2776         * Move all members of this group to another group (preferably the 1st
2777         * one except this). This method is called explicitly by
2778         * File::DeleteGroup() thus when a Group was deleted. This code was
2779         * intentionally not placed in the destructor!
2780         */
2781        void Group::MoveAll() {
2782            // get "that" other group first
2783            Group* pOtherGroup = NULL;
2784            for (pOtherGroup = pFile->GetFirstGroup(); pOtherGroup; pOtherGroup = pFile->GetNextGroup()) {
2785                if (pOtherGroup != this) break;
2786            }
2787            if (!pOtherGroup) throw Exception(
2788                "Could not move samples to another group, since there is no "
2789                "other Group. This is a bug, report it!"
2790            );
2791            // now move all samples of this group to the other group
2792            for (Sample* pSample = GetFirstSample(); pSample; pSample = GetNextSample()) {
2793                pOtherGroup->AddSample(pSample);
2794            }
2795        }
2796    
2797    
2798    
2799  // *************** File ***************  // *************** File ***************
2800  // *  // *
2801    
2802      File::File() : DLS::File() {      File::File() : DLS::File() {
2803            pGroups = NULL;
2804            pInfo->UseFixedLengthStrings = true;
2805      }      }
2806    
2807      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {
2808            pGroups = NULL;
2809            pInfo->UseFixedLengthStrings = true;
2810        }
2811    
2812        File::~File() {
2813            if (pGroups) {
2814                std::list<Group*>::iterator iter = pGroups->begin();
2815                std::list<Group*>::iterator end  = pGroups->end();
2816                while (iter != end) {
2817                    delete *iter;
2818                    ++iter;
2819                }
2820                delete pGroups;
2821            }
2822      }      }
2823    
2824      Sample* File::GetFirstSample(progress_t* pProgress) {      Sample* File::GetFirstSample(progress_t* pProgress) {
# Line 2725  namespace { Line 2873  namespace {
2873      }      }
2874    
2875      void File::LoadSamples(progress_t* pProgress) {      void File::LoadSamples(progress_t* pProgress) {
2876            // Groups must be loaded before samples, because samples will try
2877            // to resolve the group they belong to
2878            LoadGroups();
2879    
2880          if (!pSamples) pSamples = new SampleList;          if (!pSamples) pSamples = new SampleList;
2881    
2882          RIFF::File* file = pRIFF;          RIFF::File* file = pRIFF;
# Line 2888  namespace { Line 3040  namespace {
3040          }          }
3041      }      }
3042    
3043        Group* File::GetFirstGroup() {
3044            if (!pGroups) LoadGroups();
3045            // there must always be at least one group
3046            GroupsIterator = pGroups->begin();
3047            return *GroupsIterator;
3048        }
3049    
3050        Group* File::GetNextGroup() {
3051            if (!pGroups) return NULL;
3052            ++GroupsIterator;
3053            return (GroupsIterator == pGroups->end()) ? NULL : *GroupsIterator;
3054        }
3055    
3056        /**
3057         * Returns the group with the given index.
3058         *
3059         * @param index - number of the sought group (0..n)
3060         * @returns sought group or NULL if there's no such group
3061         */
3062        Group* File::GetGroup(uint index) {
3063            if (!pGroups) LoadGroups();
3064            GroupsIterator = pGroups->begin();
3065            for (uint i = 0; GroupsIterator != pGroups->end(); i++) {
3066                if (i == index) return *GroupsIterator;
3067                ++GroupsIterator;
3068            }
3069            return NULL;
3070        }
3071    
3072        Group* File::AddGroup() {
3073            if (!pGroups) LoadGroups();
3074            // there must always be at least one group
3075            __ensureMandatoryChunksExist();
3076            Group* pGroup = new Group(this, NULL);
3077            pGroups->push_back(pGroup);
3078            return pGroup;
3079        }
3080    
3081        void File::DeleteGroup(Group* pGroup) {
3082            if (!pGroups) LoadGroups();
3083            std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);
3084            if (iter == pGroups->end()) throw gig::Exception("Could not delete group, could not find given group");
3085            if (pGroups->size() == 1) throw gig::Exception("Cannot delete group, there must be at least one default group!");
3086            // move all members of this group to another group
3087            pGroup->MoveAll();
3088            pGroups->erase(iter);
3089            delete pGroup;
3090        }
3091    
3092        void File::LoadGroups() {
3093            if (!pGroups) pGroups = new std::list<Group*>;
3094            // try to read defined groups from file
3095            RIFF::List* lst3gri = pRIFF->GetSubList(LIST_TYPE_3GRI);
3096            if (lst3gri) {
3097                RIFF::List* lst3gnl = lst3gri->GetSubList(LIST_TYPE_3GNL);
3098                if (lst3gnl) {
3099                    RIFF::Chunk* ck = lst3gnl->GetFirstSubChunk();
3100                    while (ck) {
3101                        if (ck->GetChunkID() == CHUNK_ID_3GNM) {
3102                            pGroups->push_back(new Group(this, ck));
3103                        }
3104                        ck = lst3gnl->GetNextSubChunk();
3105                    }
3106                }
3107            }
3108            // if there were no group(s), create at least the mandatory default group
3109            if (!pGroups->size()) {
3110                Group* pGroup = new Group(this, NULL);
3111                pGroup->Name = "Default Group";
3112                pGroups->push_back(pGroup);
3113            }
3114        }
3115    
3116    
3117    
3118  // *************** Exception ***************  // *************** Exception ***************

Legend:
Removed from v.858  
changed lines
  Added in v.1050

  ViewVC Help
Powered by ViewVC