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

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

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

revision 335 by senkov, Mon Jan 3 02:48:25 2005 UTC revision 348 by schoenebeck, Sun Jan 23 21:24:16 2005 UTC
# Line 146  namespace LinuxSampler { namespace gig { Line 146  namespace LinuxSampler { namespace gig {
146    
147          // get current dimension values to select the right dimension region          // get current dimension values to select the right dimension region
148          //FIXME: controller values for selecting the dimension region here are currently not sample accurate          //FIXME: controller values for selecting the dimension region here are currently not sample accurate
149          uint DimValues[5] = {0,0,0,0,0};          uint DimValues[8] = { 0 };
150          for (int i = pRegion->Dimensions - 1; i >= 0; i--) {          for (int i = pRegion->Dimensions - 1; i >= 0; i--) {
151              switch (pRegion->pDimensionDefinitions[i].dimension) {              switch (pRegion->pDimensionDefinitions[i].dimension) {
152                  case ::gig::dimension_samplechannel:                  case ::gig::dimension_samplechannel:
# Line 248  namespace LinuxSampler { namespace gig { Line 248  namespace LinuxSampler { namespace gig {
248                      std::cerr << "gig::Voice::Trigger() Error: Unknown dimension\n" << std::flush;                      std::cerr << "gig::Voice::Trigger() Error: Unknown dimension\n" << std::flush;
249              }              }
250          }          }
251          pDimRgn = pRegion->GetDimensionRegionByValue(DimValues[4],DimValues[3],DimValues[2],DimValues[1],DimValues[0]);          pDimRgn = pRegion->GetDimensionRegionByValue(DimValues);
252    
253          pSample = pDimRgn->pSample; // sample won't change until the voice is finished          pSample = pDimRgn->pSample; // sample won't change until the voice is finished
254    

Legend:
Removed from v.335  
changed lines
  Added in v.348

  ViewVC Help
Powered by ViewVC