/[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 929 by schoenebeck, Tue Oct 24 22:24:45 2006 UTC revision 1070 by persson, Mon Mar 5 17:42:35 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-2006 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 286  namespace { Line 286  namespace {
286          pCk3gix = waveList->GetSubChunk(CHUNK_ID_3GIX);          pCk3gix = waveList->GetSubChunk(CHUNK_ID_3GIX);
287          if (pCk3gix) {          if (pCk3gix) {
288              uint16_t iSampleGroup = pCk3gix->ReadInt16();              uint16_t iSampleGroup = pCk3gix->ReadInt16();
289              // caution: sample groups in .gig files are indexed (1..n) whereas Groups in libgig (0..n-1)              pGroup = pFile->GetGroup(iSampleGroup);
             pGroup = pFile->GetGroup(iSampleGroup - 1);  
290          } else { // '3gix' chunk missing          } else { // '3gix' chunk missing
291              // not assigned to a group by default              // by default assigned to that mandatory "Default Group"
292              pGroup = NULL;              pGroup = pFile->GetGroup(0);
293          }          }
294    
295          pCkSmpl = waveList->GetSubChunk(CHUNK_ID_SMPL);          pCkSmpl = waveList->GetSubChunk(CHUNK_ID_SMPL);
# Line 365  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 401  namespace { Line 400  namespace {
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)          // determine appropriate sample group index (to be stored in chunk)
403          uint16_t iSampleGroup = 0; // no sample group by default          uint16_t iSampleGroup = 0; // 0 refers to default sample group
404          File* pFile = static_cast<File*>(pParent);          File* pFile = static_cast<File*>(pParent);
405          if (pFile->pGroups) {          if (pFile->pGroups) {
406              std::list<Group*>::iterator iter = pFile->pGroups->begin();              std::list<Group*>::iterator iter = pFile->pGroups->begin();
407              std::list<Group*>::iterator end  = pFile->pGroups->end();              std::list<Group*>::iterator end  = pFile->pGroups->end();
408              // caution: sample groups in .gig files are indexed (1..n) whereas Groups in libgig (0..n-1)              for (int i = 0; iter != end; i++, iter++) {
             for (int i = 1; iter != end; i++, iter++) {  
409                  if (*iter == pGroup) {                  if (*iter == pGroup) {
410                      iSampleGroup = i;                      iSampleGroup = i;
411                      break; // found                      break; // found
# Line 637  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 1154  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 1328  namespace { Line 1338  namespace {
1338                  if (lfo3ctrl & 0x40) // bit 6                  if (lfo3ctrl & 0x40) // bit 6
1339                      VCFType = vcf_type_lowpassturbo;                      VCFType = vcf_type_lowpassturbo;
1340              }              }
1341                if (_3ewa->RemainingBytes() >= 8) {
1342                    _3ewa->Read(DimensionUpperLimits, 1, 8);
1343                } else {
1344                    memset(DimensionUpperLimits, 0, 8);
1345                }
1346          } else { // '3ewa' chunk does not exist yet          } else { // '3ewa' chunk does not exist yet
1347              // use default values              // use default values
1348              LFO3Frequency                   = 1.0;              LFO3Frequency                   = 1.0;
# Line 1408  namespace { Line 1423  namespace {
1423              VCFVelocityDynamicRange         = 0x04;              VCFVelocityDynamicRange         = 0x04;
1424              VCFVelocityCurve                = curve_type_linear;              VCFVelocityCurve                = curve_type_linear;
1425              VCFType                         = vcf_type_lowpass;              VCFType                         = vcf_type_lowpass;
1426                memset(DimensionUpperLimits, 0, 8);
1427          }          }
1428    
1429          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,
# Line 1463  namespace { Line 1479  namespace {
1479    
1480          // update '3ewa' chunk with DimensionRegion's current settings          // update '3ewa' chunk with DimensionRegion's current settings
1481    
1482          const uint32_t unknown = _3ewa->GetSize(); // unknown, always chunk size ?          const uint32_t chunksize = _3ewa->GetSize();
1483          memcpy(&pData[0], &unknown, 4);          memcpy(&pData[0], &chunksize, 4); // unknown, always chunk size?
1484    
1485          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);
1486          memcpy(&pData[4], &lfo3freq, 4);          memcpy(&pData[4], &lfo3freq, 4);
# Line 1719  namespace { Line 1735  namespace {
1735    
1736          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;
1737          memcpy(&pData[139], &vcftype, 1);          memcpy(&pData[139], &vcftype, 1);
1738    
1739            if (chunksize >= 148) {
1740                memcpy(&pData[140], DimensionUpperLimits, 8);
1741            }
1742      }      }
1743    
1744      // 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 2238  namespace { Line 2258  namespace {
2258          int dim[8] = { 0 };          int dim[8] = { 0 };
2259          for (int i = 0 ; i < DimensionRegions ; i++) {          for (int i = 0 ; i < DimensionRegions ; i++) {
2260    
2261              if (pDimensionRegions[i]->VelocityUpperLimit) {              if (pDimensionRegions[i]->DimensionUpperLimits[veldim] ||
2262                    pDimensionRegions[i]->VelocityUpperLimit) {
2263                  // create the velocity table                  // create the velocity table
2264                  uint8_t* table = pDimensionRegions[i]->VelocityTable;                  uint8_t* table = pDimensionRegions[i]->VelocityTable;
2265                  if (!table) {                  if (!table) {
# Line 2247  namespace { Line 2268  namespace {
2268                  }                  }
2269                  int tableidx = 0;                  int tableidx = 0;
2270                  int velocityZone = 0;                  int velocityZone = 0;
2271                  for (int k = i ; k < end ; k += step) {                  if (pDimensionRegions[i]->DimensionUpperLimits[veldim]) { // gig3
2272                      DimensionRegion *d = pDimensionRegions[k];                      for (int k = i ; k < end ; k += step) {
2273                      for (; tableidx <= d->VelocityUpperLimit ; tableidx++) table[tableidx] = velocityZone;                          DimensionRegion *d = pDimensionRegions[k];
2274                      velocityZone++;                          for (; tableidx <= d->DimensionUpperLimits[veldim] ; tableidx++) table[tableidx] = velocityZone;
2275                            velocityZone++;
2276                        }
2277                    } else { // gig2
2278                        for (int k = i ; k < end ; k += step) {
2279                            DimensionRegion *d = pDimensionRegions[k];
2280                            for (; tableidx <= d->VelocityUpperLimit ; tableidx++) table[tableidx] = velocityZone;
2281                            velocityZone++;
2282                        }
2283                  }                  }
2284              } else {              } else {
2285                  if (pDimensionRegions[i]->VelocityTable) {                  if (pDimensionRegions[i]->VelocityTable) {
# Line 2445  namespace { Line 2474  namespace {
2474              } else {              } else {
2475                  switch (pDimensionDefinitions[i].split_type) {                  switch (pDimensionDefinitions[i].split_type) {
2476                      case split_type_normal:                      case split_type_normal:
2477                          bits = uint8_t(DimValues[i] / pDimensionDefinitions[i].zone_size);                          if (pDimensionRegions[0]->DimensionUpperLimits[i]) {
2478                                // gig3: all normal dimensions (not just the velocity dimension) have custom zone ranges
2479                                for (bits = 0 ; bits < pDimensionDefinitions[i].zones ; bits++) {
2480                                    if (DimValues[i] <= pDimensionRegions[bits << bitpos]->DimensionUpperLimits[i]) break;
2481                                }
2482                            } else {
2483                                // gig2: evenly sized zones
2484                                bits = uint8_t(DimValues[i] / pDimensionDefinitions[i].zone_size);
2485                            }
2486                          break;                          break;
2487                      case split_type_bit: // the value is already the sought dimension bit number                      case split_type_bit: // the value is already the sought dimension bit number
2488                          const uint8_t limiter_mask = (0xff << pDimensionDefinitions[i].bits) ^ 0xff;                          const uint8_t limiter_mask = (0xff << pDimensionDefinitions[i].bits) ^ 0xff;
# Line 2459  namespace { Line 2496  namespace {
2496          DimensionRegion* dimreg = pDimensionRegions[dimregidx];          DimensionRegion* dimreg = pDimensionRegions[dimregidx];
2497          if (veldim != -1) {          if (veldim != -1) {
2498              // (dimreg is now the dimension region for the lowest velocity)              // (dimreg is now the dimension region for the lowest velocity)
2499              if (dimreg->VelocityUpperLimit) // custom defined zone ranges              if (dimreg->VelocityTable) // custom defined zone ranges
2500                  bits = dimreg->VelocityTable[DimValues[veldim]];                  bits = dimreg->VelocityTable[DimValues[veldim]];
2501              else // normal split type              else // normal split type
2502                  bits = uint8_t(DimValues[veldim] / pDimensionDefinitions[veldim].zone_size);                  bits = uint8_t(DimValues[veldim] / pDimensionDefinitions[veldim].zone_size);
# Line 2690  namespace { Line 2727  namespace {
2727    
2728      /** @brief Constructor.      /** @brief Constructor.
2729       *       *
2730       * @param file   - pointer to the RIFF::File object of this .gig file       * @param file   - pointer to the gig::File object
2731       * @param ck3gnm - pointer to 3gnm chunk associated with this group       * @param ck3gnm - pointer to 3gnm chunk associated with this group or
2732         *                 NULL if this is a new Group
2733       */       */
2734      Group::Group(RIFF::File* file, RIFF::Chunk* ck3gnm) {      Group::Group(File* file, RIFF::Chunk* ck3gnm) {
2735          pFile      = file;          pFile      = file;
2736          pNameChunk = ck3gnm;          pNameChunk = ck3gnm;
2737          ::LoadString(pNameChunk, Name);          ::LoadString(pNameChunk, Name);
# Line 2709  namespace { Line 2747  namespace {
2747       */       */
2748      void Group::UpdateChunks() {      void Group::UpdateChunks() {
2749          // make sure <3gri> and <3gnl> list chunks exist          // make sure <3gri> and <3gnl> list chunks exist
2750          RIFF::List* _3gri = pFile->GetSubList(LIST_TYPE_3GRI);          RIFF::List* _3gri = pFile->pRIFF->GetSubList(LIST_TYPE_3GRI);
2751          if (!_3gri) _3gri = pFile->AddSubList(LIST_TYPE_3GRI);          if (!_3gri) _3gri = pFile->pRIFF->AddSubList(LIST_TYPE_3GRI);
2752          RIFF::List* _3gnl = _3gri->GetSubList(LIST_TYPE_3GNL);          RIFF::List* _3gnl = _3gri->GetSubList(LIST_TYPE_3GNL);
2753          if (!_3gnl) _3gnl = pFile->AddSubList(LIST_TYPE_3GNL);          if (!_3gnl) _3gnl = pFile->pRIFF->AddSubList(LIST_TYPE_3GNL);
2754          // now store the name of this group as <3gnm> chunk as subchunk of the <3gnl> list chunk          // now store the name of this group as <3gnm> chunk as subchunk of the <3gnl> list chunk
2755          ::SaveString(CHUNK_ID_3GNM, pNameChunk, _3gnl, Name, String("Unnamed Group"), true, 64);          ::SaveString(CHUNK_ID_3GNM, pNameChunk, _3gnl, Name, String("Unnamed Group"), true, 64);
2756      }      }
2757    
2758        /**
2759         * Returns the first Sample of this Group. You have to call this method
2760         * once before you use GetNextSample().
2761         *
2762         * <b>Notice:</b> this method might block for a long time, in case the
2763         * samples of this .gig file were not scanned yet
2764         *
2765         * @returns  pointer address to first Sample or NULL if there is none
2766         *           applied to this Group
2767         * @see      GetNextSample()
2768         */
2769        Sample* Group::GetFirstSample() {
2770            // FIXME: lazy und unsafe implementation, should be an autonomous iterator
2771            for (Sample* pSample = pFile->GetFirstSample(); pSample; pSample = pFile->GetNextSample()) {
2772                if (pSample->GetGroup() == this) return pSample;
2773            }
2774            return NULL;
2775        }
2776    
2777        /**
2778         * Returns the next Sample of the Group. You have to call
2779         * GetFirstSample() once before you can use this method. By calling this
2780         * method multiple times it iterates through the Samples assigned to
2781         * this Group.
2782         *
2783         * @returns  pointer address to the next Sample of this Group or NULL if
2784         *           end reached
2785         * @see      GetFirstSample()
2786         */
2787        Sample* Group::GetNextSample() {
2788            // FIXME: lazy und unsafe implementation, should be an autonomous iterator
2789            for (Sample* pSample = pFile->GetNextSample(); pSample; pSample = pFile->GetNextSample()) {
2790                if (pSample->GetGroup() == this) return pSample;
2791            }
2792            return NULL;
2793        }
2794    
2795        /**
2796         * Move Sample given by \a pSample from another Group to this Group.
2797         */
2798        void Group::AddSample(Sample* pSample) {
2799            pSample->pGroup = this;
2800        }
2801    
2802        /**
2803         * Move all members of this group to another group (preferably the 1st
2804         * one except this). This method is called explicitly by
2805         * File::DeleteGroup() thus when a Group was deleted. This code was
2806         * intentionally not placed in the destructor!
2807         */
2808        void Group::MoveAll() {
2809            // get "that" other group first
2810            Group* pOtherGroup = NULL;
2811            for (pOtherGroup = pFile->GetFirstGroup(); pOtherGroup; pOtherGroup = pFile->GetNextGroup()) {
2812                if (pOtherGroup != this) break;
2813            }
2814            if (!pOtherGroup) throw Exception(
2815                "Could not move samples to another group, since there is no "
2816                "other Group. This is a bug, report it!"
2817            );
2818            // now move all samples of this group to the other group
2819            for (Sample* pSample = GetFirstSample(); pSample; pSample = GetNextSample()) {
2820                pOtherGroup->AddSample(pSample);
2821            }
2822        }
2823    
2824    
2825    
2826  // *************** File ***************  // *************** File ***************
# Line 2796  namespace { Line 2900  namespace {
2900      }      }
2901    
2902      void File::LoadSamples(progress_t* pProgress) {      void File::LoadSamples(progress_t* pProgress) {
2903            // Groups must be loaded before samples, because samples will try
2904            // to resolve the group they belong to
2905            LoadGroups();
2906    
2907          if (!pSamples) pSamples = new SampleList;          if (!pSamples) pSamples = new SampleList;
2908    
2909          RIFF::File* file = pRIFF;          RIFF::File* file = pRIFF;
# Line 2961  namespace { Line 3069  namespace {
3069    
3070      Group* File::GetFirstGroup() {      Group* File::GetFirstGroup() {
3071          if (!pGroups) LoadGroups();          if (!pGroups) LoadGroups();
3072          if (!pGroups) return NULL;          // there must always be at least one group
3073          GroupsIterator = pGroups->begin();          GroupsIterator = pGroups->begin();
3074          return (GroupsIterator == pGroups->end()) ? NULL : *GroupsIterator;          return *GroupsIterator;
3075      }      }
3076    
3077      Group* File::GetNextGroup() {      Group* File::GetNextGroup() {
# Line 2980  namespace { Line 3088  namespace {
3088       */       */
3089      Group* File::GetGroup(uint index) {      Group* File::GetGroup(uint index) {
3090          if (!pGroups) LoadGroups();          if (!pGroups) LoadGroups();
         if (!pGroups) return NULL;  
3091          GroupsIterator = pGroups->begin();          GroupsIterator = pGroups->begin();
3092          for (uint i = 0; GroupsIterator != pGroups->end(); i++) {          for (uint i = 0; GroupsIterator != pGroups->end(); i++) {
3093              if (i == index) return *GroupsIterator;              if (i == index) return *GroupsIterator;
# Line 2991  namespace { Line 3098  namespace {
3098    
3099      Group* File::AddGroup() {      Group* File::AddGroup() {
3100          if (!pGroups) LoadGroups();          if (!pGroups) LoadGroups();
3101          if (!pGroups) pGroups = new std::list<Group*>;          // there must always be at least one group
3102          __ensureMandatoryChunksExist();          __ensureMandatoryChunksExist();
3103          Group* pGroup = new Group(pRIFF, NULL);          Group* pGroup = new Group(this, NULL);
3104          pGroups->push_back(pGroup);          pGroups->push_back(pGroup);
3105          return pGroup;          return pGroup;
3106      }      }
3107    
3108      void File::DeleteGroup(Group* pGroup) {      void File::DeleteGroup(Group* pGroup) {
3109          if (!pGroups) throw gig::Exception("Could not delete group as there are no groups");          if (!pGroups) LoadGroups();
3110          std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);          std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);
3111          if (iter == pGroups->end()) throw gig::Exception("Could not delete group, could not find given group");          if (iter == pGroups->end()) throw gig::Exception("Could not delete group, could not find given group");
3112            if (pGroups->size() == 1) throw gig::Exception("Cannot delete group, there must be at least one default group!");
3113            // move all members of this group to another group
3114            pGroup->MoveAll();
3115          pGroups->erase(iter);          pGroups->erase(iter);
3116          delete pGroup;          delete pGroup;
3117      }      }
3118    
3119      void File::LoadGroups() {      void File::LoadGroups() {
3120          if (!pGroups) pGroups = new std::list<Group*>;          if (!pGroups) pGroups = new std::list<Group*>;
3121            // try to read defined groups from file
3122          RIFF::List* lst3gri = pRIFF->GetSubList(LIST_TYPE_3GRI);          RIFF::List* lst3gri = pRIFF->GetSubList(LIST_TYPE_3GRI);
3123          if (!lst3gri) return;          if (lst3gri) {
3124          RIFF::List* lst3gnl = lst3gri->GetSubList(LIST_TYPE_3GNL);              RIFF::List* lst3gnl = lst3gri->GetSubList(LIST_TYPE_3GNL);
3125          if (!lst3gnl) return;              if (lst3gnl) {
3126          {                  RIFF::Chunk* ck = lst3gnl->GetFirstSubChunk();
3127              RIFF::Chunk* ck = lst3gnl->GetFirstSubChunk();                  while (ck) {
3128              while (ck) {                      if (ck->GetChunkID() == CHUNK_ID_3GNM) {
3129                  if (ck->GetChunkID() == CHUNK_ID_3GNM) {                          pGroups->push_back(new Group(this, ck));
3130                      pGroups->push_back(new Group(pRIFF, ck));                      }
3131                        ck = lst3gnl->GetNextSubChunk();
3132                  }                  }
                 ck = lst3gnl->GetNextSubChunk();  
3133              }              }
3134          }          }
3135            // if there were no group(s), create at least the mandatory default group
3136            if (!pGroups->size()) {
3137                Group* pGroup = new Group(this, NULL);
3138                pGroup->Name = "Default Group";
3139                pGroups->push_back(pGroup);
3140            }
3141      }      }
3142    
3143    

Legend:
Removed from v.929  
changed lines
  Added in v.1070

  ViewVC Help
Powered by ViewVC