/[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 1081 by schoenebeck, Thu Mar 8 00:17:03 2007 UTC revision 1106 by schoenebeck, Sun Mar 18 19:38:47 2007 UTC
# Line 2152  namespace { Line 2152  namespace {
2152                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);
2153              }              }
2154              GetSample(); // load global region sample reference              GetSample(); // load global region sample reference
2155            } else {
2156                DimensionRegions = 0;
2157          }          }
2158    
2159          // make sure there is at least one dimension region          // make sure there is at least one dimension region
# Line 2174  namespace { Line 2176  namespace {
2176       * @throws gig::Exception if samples cannot be dereferenced       * @throws gig::Exception if samples cannot be dereferenced
2177       */       */
2178      void Region::UpdateChunks() {      void Region::UpdateChunks() {
2179            // in the gig format we don't care about the Region's sample reference
2180            // but we still have to provide some existing one to not corrupt the
2181            // file, so to avoid the latter we simply always assign the sample of
2182            // the first dimension region of this region
2183            pSample = pDimensionRegions[0]->pSample;
2184    
2185          // first update base class's chunks          // first update base class's chunks
2186          DLS::Region::UpdateChunks();          DLS::Region::UpdateChunks();
2187    
# Line 2740  namespace { Line 2748  namespace {
2748      }      }
2749    
2750      Group::~Group() {      Group::~Group() {
2751            // remove the chunk associated with this group (if any)
2752            if (pNameChunk) pNameChunk->GetParent()->DeleteSubChunk(pNameChunk);
2753      }      }
2754    
2755      /** @brief Update chunks with current group settings.      /** @brief Update chunks with current group settings.
2756       *       *
2757       * Apply current Group field values to the respective. You have to call       * Apply current Group field values to the respective chunks. You have
2758       * File::Save() to make changes persistent.       * to call File::Save() to make changes persistent.
2759         *
2760         * Usually there is absolutely no need to call this method explicitly.
2761         * It will be called automatically when File::Save() was called.
2762       */       */
2763      void Group::UpdateChunks() {      void Group::UpdateChunks() {
2764          // make sure <3gri> and <3gnl> list chunks exist          // make sure <3gri> and <3gnl> list chunks exist
# Line 2893  namespace { Line 2906  namespace {
2906          if (!pSamples || !pSamples->size()) throw gig::Exception("Could not delete sample as there are no samples");          if (!pSamples || !pSamples->size()) throw gig::Exception("Could not delete sample as there are no samples");
2907          SampleList::iterator iter = find(pSamples->begin(), pSamples->end(), (DLS::Sample*) pSample);          SampleList::iterator iter = find(pSamples->begin(), pSamples->end(), (DLS::Sample*) pSample);
2908          if (iter == pSamples->end()) throw gig::Exception("Could not delete sample, could not find given sample");          if (iter == pSamples->end()) throw gig::Exception("Could not delete sample, could not find given sample");
2909            if (SamplesIterator != pSamples->end() && *SamplesIterator == pSample) ++SamplesIterator; // avoid iterator invalidation
2910          pSamples->erase(iter);          pSamples->erase(iter);
2911          delete pSample;          delete pSample;
2912      }      }
# Line 3175  namespace { Line 3189  namespace {
3189          }          }
3190      }      }
3191    
3192        /**
3193         * Apply all the gig file's current instruments, samples, groups and settings
3194         * to the respective RIFF chunks. You have to call Save() to make changes
3195         * persistent.
3196         *
3197         * Usually there is absolutely no need to call this method explicitly.
3198         * It will be called automatically when File::Save() was called.
3199         *
3200         * @throws Exception - on errors
3201         */
3202        void File::UpdateChunks() {
3203            // first update base class's chunks
3204            DLS::File::UpdateChunks();
3205    
3206            // update group's chunks
3207            if (pGroups) {
3208                std::list<Group*>::iterator iter = pGroups->begin();
3209                std::list<Group*>::iterator end  = pGroups->end();
3210                for (; iter != end; ++iter) {
3211                    (*iter)->UpdateChunks();
3212                }
3213            }
3214        }
3215    
3216    
3217    
3218  // *************** Exception ***************  // *************** Exception ***************

Legend:
Removed from v.1081  
changed lines
  Added in v.1106

  ViewVC Help
Powered by ViewVC