/[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 231 by schoenebeck, Sun Sep 5 00:46:28 2004 UTC revision 352 by schoenebeck, Sat Jan 29 14:24:11 2005 UTC
# Line 66  namespace gig { Line 66  namespace gig {
66          Compressed = (waveList->GetSubChunk(CHUNK_ID_EWAV));          Compressed = (waveList->GetSubChunk(CHUNK_ID_EWAV));
67          if (Compressed) {          if (Compressed) {
68              ScanCompressedSample();              ScanCompressedSample();
69              if (!pDecompressionBuffer) {          }
70                  pDecompressionBuffer    = new int8_t[INITIAL_SAMPLE_BUFFER_SIZE];  
71                  DecompressionBufferSize = INITIAL_SAMPLE_BUFFER_SIZE;          if (BitDepth > 24)                throw gig::Exception("Only samples up to 24 bit supported");
72              }          if (Compressed && Channels == 1)  throw gig::Exception("Mono compressed samples not yet supported");
73            if (Compressed && BitDepth == 24) throw gig::Exception("24 bit compressed samples not yet supported");
74    
75            // we use a buffer for decompression and for truncating 24 bit samples to 16 bit
76            if ((Compressed || BitDepth == 24) && !pDecompressionBuffer) {
77                pDecompressionBuffer    = new int8_t[INITIAL_SAMPLE_BUFFER_SIZE];
78                DecompressionBufferSize = INITIAL_SAMPLE_BUFFER_SIZE;
79          }          }
80          FrameOffset = 0; // just for streaming compressed samples          FrameOffset = 0; // just for streaming compressed samples
81    
# Line 502  namespace gig { Line 508  namespace gig {
508       */       */
509      unsigned long Sample::Read(void* pBuffer, unsigned long SampleCount) {      unsigned long Sample::Read(void* pBuffer, unsigned long SampleCount) {
510          if (SampleCount == 0) return 0;          if (SampleCount == 0) return 0;
511          if (!Compressed) return pCkData->Read(pBuffer, SampleCount, FrameSize); //FIXME: channel inversion due to endian correction?          if (!Compressed) {
512                if (BitDepth == 24) {
513                    // 24 bit sample. For now just truncate to 16 bit.
514                    int8_t* pSrc = (int8_t*)this->pDecompressionBuffer;
515                    int8_t* pDst = (int8_t*)pBuffer;
516                    unsigned long n = pCkData->Read(pSrc, SampleCount, FrameSize);
517                    for (int i = SampleCount * (FrameSize / 3) ; i > 0 ; i--) {
518                        pSrc++;
519                        *pDst++ = *pSrc++;
520                        *pDst++ = *pSrc++;
521                    }
522                    return SampleCount;
523                } else {
524                    return pCkData->Read(pBuffer, SampleCount, FrameSize); //FIXME: channel inversion due to endian correction?
525                }
526            }
527          else { //FIXME: no support for mono compressed samples yet, are there any?          else { //FIXME: no support for mono compressed samples yet, are there any?
528              if (this->SamplePos >= this->SamplesTotal) return 0;              if (this->SamplePos >= this->SamplesTotal) return 0;
529              //TODO: efficiency: we simply assume here that all frames are compressed, maybe we should test for an average compression rate              //TODO: efficiency: we simply assume here that all frames are compressed, maybe we should test for an average compression rate
# Line 680  namespace gig { Line 701  namespace gig {
701          if (!pVelocityTables) pVelocityTables = new VelocityTableMap;          if (!pVelocityTables) pVelocityTables = new VelocityTableMap;
702    
703          RIFF::Chunk* _3ewa = _3ewl->GetSubChunk(CHUNK_ID_3EWA);          RIFF::Chunk* _3ewa = _3ewl->GetSubChunk(CHUNK_ID_3EWA);
704          _3ewa->ReadInt32(); // unknown, allways 0x0000008C ?          _3ewa->ReadInt32(); // unknown, always 0x0000008C ?
705          LFO3Frequency = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());          LFO3Frequency = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());
706          EG3Attack     = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());          EG3Attack     = (double) GIG_EXP_DECODE(_3ewa->ReadInt32());
707          _3ewa->ReadInt16(); // unknown          _3ewa->ReadInt16(); // unknown
# Line 774  namespace gig { Line 795  namespace gig {
795          else if (pitchTrackDimensionBypass & 0x20) DimensionBypass = dim_bypass_ctrl_95;          else if (pitchTrackDimensionBypass & 0x20) DimensionBypass = dim_bypass_ctrl_95;
796          else                                       DimensionBypass = dim_bypass_ctrl_none;          else                                       DimensionBypass = dim_bypass_ctrl_none;
797          uint8_t pan = _3ewa->ReadUint8();          uint8_t pan = _3ewa->ReadUint8();
798          Pan         = (pan < 64) ? pan : (-1) * (int8_t)pan - 63;          Pan         = (pan < 64) ? pan : -((int)pan - 63); // signed 7 bit -> signed 8 bit
799          SelfMask = _3ewa->ReadInt8() & 0x01;          SelfMask = _3ewa->ReadInt8() & 0x01;
800          _3ewa->ReadInt8(); // unknown          _3ewa->ReadInt8(); // unknown
801          uint8_t lfo3ctrl = _3ewa->ReadUint8();          uint8_t lfo3ctrl = _3ewa->ReadUint8();
802          LFO3Controller           = static_cast<lfo3_ctrl_t>(lfo3ctrl & 0x07); // lower 3 bits          LFO3Controller           = static_cast<lfo3_ctrl_t>(lfo3ctrl & 0x07); // lower 3 bits
803          LFO3Sync                 = lfo3ctrl & 0x20; // bit 5          LFO3Sync                 = lfo3ctrl & 0x20; // bit 5
804          InvertAttenuationController = lfo3ctrl & 0x80; // bit 7          InvertAttenuationController = lfo3ctrl & 0x80; // bit 7
         if (VCFType == vcf_type_lowpass) {  
             if (lfo3ctrl & 0x40) // bit 6  
                 VCFType = vcf_type_lowpassturbo;  
         }  
805          AttenuationController  = DecodeLeverageController(static_cast<_lev_ctrl_t>(_3ewa->ReadUint8()));          AttenuationController  = DecodeLeverageController(static_cast<_lev_ctrl_t>(_3ewa->ReadUint8()));
806          uint8_t lfo2ctrl       = _3ewa->ReadUint8();          uint8_t lfo2ctrl       = _3ewa->ReadUint8();
807          LFO2Controller         = static_cast<lfo2_ctrl_t>(lfo2ctrl & 0x07); // lower 3 bits          LFO2Controller         = static_cast<lfo2_ctrl_t>(lfo2ctrl & 0x07); // lower 3 bits
# Line 829  namespace gig { Line 846  namespace gig {
846          VCFVelocityDynamicRange = vcfvelocity % 5;          VCFVelocityDynamicRange = vcfvelocity % 5;
847          VCFVelocityCurve        = static_cast<curve_type_t>(vcfvelocity / 5);          VCFVelocityCurve        = static_cast<curve_type_t>(vcfvelocity / 5);
848          VCFType = static_cast<vcf_type_t>(_3ewa->ReadUint8());          VCFType = static_cast<vcf_type_t>(_3ewa->ReadUint8());
849            if (VCFType == vcf_type_lowpass) {
850                if (lfo3ctrl & 0x40) // bit 6
851                    VCFType = vcf_type_lowpassturbo;
852            }
853    
854          // get the corresponding velocity->volume table from the table map or create & calculate that table if it doesn't exist yet          // get the corresponding velocity->volume table from the table map or create & calculate that table if it doesn't exist yet
855          uint32_t tableKey = (VelocityResponseCurve<<16) | (VelocityResponseDepth<<8) | VelocityResponseCurveScaling;          uint32_t tableKey = (VelocityResponseCurve<<16) | (VelocityResponseDepth<<8) | VelocityResponseCurveScaling;
# Line 836  namespace gig { Line 857  namespace gig {
857              pVelocityAttenuationTable = (*pVelocityTables)[tableKey];              pVelocityAttenuationTable = (*pVelocityTables)[tableKey];
858          }          }
859          else {          else {
860              pVelocityAttenuationTable = new double[128];              pVelocityAttenuationTable =
861              switch (VelocityResponseCurve) { // calculate the new table                  CreateVelocityTable(VelocityResponseCurve,
862                  case curve_type_nonlinear:                                      VelocityResponseDepth,
863                      for (int velocity = 0; velocity < 128; velocity++) {                                      VelocityResponseCurveScaling);
                         pVelocityAttenuationTable[velocity] =  
                             GIG_VELOCITY_TRANSFORM_NONLINEAR(((double)velocity),((double)VelocityResponseDepth),((double)VelocityResponseCurveScaling));  
                         if      (pVelocityAttenuationTable[velocity] > 1.0)   pVelocityAttenuationTable[velocity] = 1.0;  
                         else if (pVelocityAttenuationTable[velocity] < 1e-15) pVelocityAttenuationTable[velocity] = 0.0;  
                      }  
                      break;  
                 case curve_type_linear:  
                     for (int velocity = 0; velocity < 128; velocity++) {  
                         pVelocityAttenuationTable[velocity] =  
                             GIG_VELOCITY_TRANSFORM_LINEAR(((double)velocity),((double)VelocityResponseDepth),((double)VelocityResponseCurveScaling));  
                         if      (pVelocityAttenuationTable[velocity] > 1.0)   pVelocityAttenuationTable[velocity] = 1.0;  
                         else if (pVelocityAttenuationTable[velocity] < 1e-15) pVelocityAttenuationTable[velocity] = 0.0;  
                     }  
                     break;  
                 case curve_type_special:  
                     for (int velocity = 0; velocity < 128; velocity++) {  
                         pVelocityAttenuationTable[velocity] =  
                             GIG_VELOCITY_TRANSFORM_SPECIAL(((double)velocity),((double)VelocityResponseDepth),((double)VelocityResponseCurveScaling));  
                         if      (pVelocityAttenuationTable[velocity] > 1.0)   pVelocityAttenuationTable[velocity] = 1.0;  
                         else if (pVelocityAttenuationTable[velocity] < 1e-15) pVelocityAttenuationTable[velocity] = 0.0;  
                     }  
                     break;  
                 case curve_type_unknown:  
                 default:  
                     throw gig::Exception("Unknown transform curve type.");  
             }  
864              (*pVelocityTables)[tableKey] = pVelocityAttenuationTable; // put the new table into the tables map              (*pVelocityTables)[tableKey] = pVelocityAttenuationTable; // put the new table into the tables map
865          }          }
866      }      }
# Line 1018  namespace gig { Line 1013  namespace gig {
1013          return pVelocityAttenuationTable[MIDIKeyVelocity];          return pVelocityAttenuationTable[MIDIKeyVelocity];
1014      }      }
1015    
1016        double* DimensionRegion::CreateVelocityTable(curve_type_t curveType, uint8_t depth, uint8_t scaling) {
1017    
1018            // line-segment approximations of the 15 velocity curves
1019    
1020            // linear
1021            const int lin0[] = { 1, 1, 127, 127 };
1022            const int lin1[] = { 1, 21, 127, 127 };
1023            const int lin2[] = { 1, 45, 127, 127 };
1024            const int lin3[] = { 1, 74, 127, 127 };
1025            const int lin4[] = { 1, 127, 127, 127 };
1026    
1027            // non-linear
1028            const int non0[] = { 1, 4, 24, 5, 57, 17, 92, 57, 122, 127, 127, 127 };
1029            const int non1[] = { 1, 4, 46, 9, 93, 56, 118, 106, 123, 127,
1030                                 127, 127 };
1031            const int non2[] = { 1, 4, 46, 9, 57, 20, 102, 107, 107, 127,
1032                                 127, 127 };
1033            const int non3[] = { 1, 15, 10, 19, 67, 73, 80, 80, 90, 98, 98, 127,
1034                                 127, 127 };
1035            const int non4[] = { 1, 25, 33, 57, 82, 81, 92, 127, 127, 127 };
1036    
1037            // special
1038            const int spe0[] = { 1, 2, 76, 10, 90, 15, 95, 20, 99, 28, 103, 44,
1039                                 113, 127, 127, 127 };
1040            const int spe1[] = { 1, 2, 27, 5, 67, 18, 89, 29, 95, 35, 107, 67,
1041                                 118, 127, 127, 127 };
1042            const int spe2[] = { 1, 1, 33, 1, 53, 5, 61, 13, 69, 32, 79, 74,
1043                                 85, 90, 91, 127, 127, 127 };
1044            const int spe3[] = { 1, 32, 28, 35, 66, 48, 89, 59, 95, 65, 99, 73,
1045                                 117, 127, 127, 127 };
1046            const int spe4[] = { 1, 4, 23, 5, 49, 13, 57, 17, 92, 57, 122, 127,
1047                                 127, 127 };
1048    
1049            const int* const curves[] = { non0, non1, non2, non3, non4,
1050                                          lin0, lin1, lin2, lin3, lin4,
1051                                          spe0, spe1, spe2, spe3, spe4 };
1052    
1053            double* const table = new double[128];
1054    
1055            const int* curve = curves[curveType * 5 + depth];
1056            const int s = scaling == 0 ? 20 : scaling; // 0 or 20 means no scaling
1057    
1058            table[0] = 0;
1059            for (int x = 1 ; x < 128 ; x++) {
1060    
1061                if (x > curve[2]) curve += 2;
1062                double y = curve[1] + (x - curve[0]) *
1063                    (double(curve[3] - curve[1]) / (curve[2] - curve[0]));
1064                y = y / 127;
1065    
1066                // Scale up for s > 20, down for s < 20. When
1067                // down-scaling, the curve still ends at 1.0.
1068                if (s < 20 && y >= 0.5)
1069                    y = y / ((2 - 40.0 / s) * y + 40.0 / s - 1);
1070                else
1071                    y = y * (s / 20.0);
1072                if (y > 1) y = 1;
1073    
1074                table[x] = y;
1075            }
1076            return table;
1077        }
1078    
1079    
1080  // *************** Region ***************  // *************** Region ***************
# Line 1026  namespace gig { Line 1083  namespace gig {
1083      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) {
1084          // Initialization          // Initialization
1085          Dimensions = 0;          Dimensions = 0;
1086          for (int i = 0; i < 32; i++) {          for (int i = 0; i < 256; i++) {
1087              pDimensionRegions[i] = NULL;              pDimensionRegions[i] = NULL;
1088          }          }
1089            Layers = 1;
1090            File* file = (File*) GetParent()->GetParent();
1091            int dimensionBits = (file->pVersion && file->pVersion->major == 3) ? 8 : 5;
1092    
1093          // Actual Loading          // Actual Loading
1094    
# Line 1037  namespace gig { Line 1097  namespace gig {
1097          RIFF::Chunk* _3lnk = rgnList->GetSubChunk(CHUNK_ID_3LNK);          RIFF::Chunk* _3lnk = rgnList->GetSubChunk(CHUNK_ID_3LNK);
1098          if (_3lnk) {          if (_3lnk) {
1099              DimensionRegions = _3lnk->ReadUint32();              DimensionRegions = _3lnk->ReadUint32();
1100              for (int i = 0; i < 5; i++) {              for (int i = 0; i < dimensionBits; i++) {
1101                  dimension_t dimension = static_cast<dimension_t>(_3lnk->ReadUint8());                  dimension_t dimension = static_cast<dimension_t>(_3lnk->ReadUint8());
1102                  uint8_t     bits      = _3lnk->ReadUint8();                  uint8_t     bits      = _3lnk->ReadUint8();
1103                  if (dimension == dimension_none) { // inactive dimension                  if (dimension == dimension_none) { // inactive dimension
# Line 1053  namespace gig { Line 1113  namespace gig {
1113                      pDimensionDefinitions[i].bits      = bits;                      pDimensionDefinitions[i].bits      = bits;
1114                      pDimensionDefinitions[i].zones     = 0x01 << bits; // = pow(2,bits)                      pDimensionDefinitions[i].zones     = 0x01 << bits; // = pow(2,bits)
1115                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||
1116                                                             dimension == dimension_samplechannel) ? split_type_bit                                                             dimension == dimension_samplechannel ||
1117                                                                                                   : split_type_normal;                                                             dimension == dimension_releasetrigger) ? split_type_bit
1118                                                                                                      : split_type_normal;
1119                      pDimensionDefinitions[i].ranges = NULL; // it's not possible to check velocity dimensions for custom defined ranges at this point                      pDimensionDefinitions[i].ranges = NULL; // it's not possible to check velocity dimensions for custom defined ranges at this point
1120                      pDimensionDefinitions[i].zone_size  =                      pDimensionDefinitions[i].zone_size  =
1121                          (pDimensionDefinitions[i].split_type == split_type_normal) ? 128 / pDimensionDefinitions[i].zones                          (pDimensionDefinitions[i].split_type == split_type_normal) ? 128 / pDimensionDefinitions[i].zones
1122                                                                                     : 0;                                                                                     : 0;
1123                      Dimensions++;                      Dimensions++;
1124    
1125                        // if this is a layer dimension, remember the amount of layers
1126                        if (dimension == dimension_layer) Layers = pDimensionDefinitions[i].zones;
1127                  }                  }
1128                  _3lnk->SetPos(6, RIFF::stream_curpos); // jump forward to next dimension definition                  _3lnk->SetPos(6, RIFF::stream_curpos); // jump forward to next dimension definition
1129              }              }
# Line 1076  namespace gig { Line 1140  namespace gig {
1140                      else { // custom defined ranges                      else { // custom defined ranges
1141                          pDimDef->split_type = split_type_customvelocity;                          pDimDef->split_type = split_type_customvelocity;
1142                          pDimDef->ranges     = new range_t[pDimDef->zones];                          pDimDef->ranges     = new range_t[pDimDef->zones];
1143                          unsigned int bits[5] = {0,0,0,0,0};                          uint8_t bits[8] = { 0 };
1144                          int previousUpperLimit = -1;                          int previousUpperLimit = -1;
1145                          for (int velocityZone = 0; velocityZone < pDimDef->zones; velocityZone++) {                          for (int velocityZone = 0; velocityZone < pDimDef->zones; velocityZone++) {
1146                              bits[i] = velocityZone;                              bits[i] = velocityZone;
1147                              DimensionRegion* pDimRegion = GetDimensionRegionByBit(bits[4],bits[3],bits[2],bits[1],bits[0]);                              DimensionRegion* pDimRegion = GetDimensionRegionByBit(bits);
1148    
1149                              pDimDef->ranges[velocityZone].low  = previousUpperLimit + 1;                              pDimDef->ranges[velocityZone].low  = previousUpperLimit + 1;
1150                              pDimDef->ranges[velocityZone].high = pDimRegion->VelocityUpperLimit;                              pDimDef->ranges[velocityZone].high = pDimRegion->VelocityUpperLimit;
# Line 1094  namespace gig { Line 1158  namespace gig {
1158                  }                  }
1159              }              }
1160    
1161                // jump to start of the wave pool indices (if not already there)
1162                File* file = (File*) GetParent()->GetParent();
1163                if (file->pVersion && file->pVersion->major == 3)
1164                    _3lnk->SetPos(68); // version 3 has a different 3lnk structure
1165                else
1166                    _3lnk->SetPos(44);
1167    
1168              // load sample references              // load sample references
             _3lnk->SetPos(44); // jump to start of the wave pool indices (if not already there)  
1169              for (uint i = 0; i < DimensionRegions; i++) {              for (uint i = 0; i < DimensionRegions; i++) {
1170                  uint32_t wavepoolindex = _3lnk->ReadUint32();                  uint32_t wavepoolindex = _3lnk->ReadUint32();
1171                  pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);                  pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);
# Line 1124  namespace gig { Line 1194  namespace gig {
1194          for (uint i = 0; i < Dimensions; i++) {          for (uint i = 0; i < Dimensions; i++) {
1195              if (pDimensionDefinitions[i].ranges) delete[] pDimensionDefinitions[i].ranges;              if (pDimensionDefinitions[i].ranges) delete[] pDimensionDefinitions[i].ranges;
1196          }          }
1197          for (int i = 0; i < 32; i++) {          for (int i = 0; i < 256; i++) {
1198              if (pDimensionRegions[i]) delete pDimensionRegions[i];              if (pDimensionRegions[i]) delete pDimensionRegions[i];
1199          }          }
1200      }      }
# Line 1142  namespace gig { Line 1212  namespace gig {
1212       * left channel, 1 for right channel or 0 for layer 0, 1 for layer 1,       * left channel, 1 for right channel or 0 for layer 0, 1 for layer 1,
1213       * etc.).       * etc.).
1214       *       *
1215       * @param  Dim4Val  MIDI controller value (0-127) for dimension 4       * @param  DimValues  MIDI controller values (0-127) for dimension 0 to 7
      * @param  Dim3Val  MIDI controller value (0-127) for dimension 3  
      * @param  Dim2Val  MIDI controller value (0-127) for dimension 2  
      * @param  Dim1Val  MIDI controller value (0-127) for dimension 1  
      * @param  Dim0Val  MIDI controller value (0-127) for dimension 0  
1216       * @returns         adress to the DimensionRegion for the given situation       * @returns         adress to the DimensionRegion for the given situation
1217       * @see             pDimensionDefinitions       * @see             pDimensionDefinitions
1218       * @see             Dimensions       * @see             Dimensions
1219       */       */
1220      DimensionRegion* Region::GetDimensionRegionByValue(uint Dim4Val, uint Dim3Val, uint Dim2Val, uint Dim1Val, uint Dim0Val) {      DimensionRegion* Region::GetDimensionRegionByValue(const uint DimValues[8]) {
1221          unsigned int bits[5] = {Dim0Val,Dim1Val,Dim2Val,Dim3Val,Dim4Val};          uint8_t bits[8] = { 0 };
1222          for (uint i = 0; i < Dimensions; i++) {          for (uint i = 0; i < Dimensions; i++) {
1223                bits[i] = DimValues[i];
1224              switch (pDimensionDefinitions[i].split_type) {              switch (pDimensionDefinitions[i].split_type) {
1225                  case split_type_normal:                  case split_type_normal:
1226                      bits[i] /= pDimensionDefinitions[i].zone_size;                      bits[i] /= pDimensionDefinitions[i].zone_size;
# Line 1161  namespace gig { Line 1228  namespace gig {
1228                  case split_type_customvelocity:                  case split_type_customvelocity:
1229                      bits[i] = VelocityTable[bits[i]];                      bits[i] = VelocityTable[bits[i]];
1230                      break;                      break;
1231                  // else the value is already the sought dimension bit number                  case split_type_bit: // the value is already the sought dimension bit number
1232                        const uint8_t limiter_mask = (0xff << pDimensionDefinitions[i].bits) ^ 0xff;
1233                        bits[i] = bits[i] & limiter_mask; // just make sure the value don't uses more bits than allowed
1234                        break;
1235              }              }
1236          }          }
1237          return GetDimensionRegionByBit(bits[4],bits[3],bits[2],bits[1],bits[0]);          return GetDimensionRegionByBit(bits);
1238      }      }
1239    
1240      /**      /**
# Line 1172  namespace gig { Line 1242  namespace gig {
1242       * numbers (zone index). You usually use <i>GetDimensionRegionByValue</i>       * numbers (zone index). You usually use <i>GetDimensionRegionByValue</i>
1243       * instead of calling this method directly!       * instead of calling this method directly!
1244       *       *
1245       * @param Dim4Bit  Bit number for dimension 4       * @param DimBits  Bit numbers for dimension 0 to 7
      * @param Dim3Bit  Bit number for dimension 3  
      * @param Dim2Bit  Bit number for dimension 2  
      * @param Dim1Bit  Bit number for dimension 1  
      * @param Dim0Bit  Bit number for dimension 0  
1246       * @returns        adress to the DimensionRegion for the given dimension       * @returns        adress to the DimensionRegion for the given dimension
1247       *                 bit numbers       *                 bit numbers
1248       * @see            GetDimensionRegionByValue()       * @see            GetDimensionRegionByValue()
1249       */       */
1250      DimensionRegion* Region::GetDimensionRegionByBit(uint8_t Dim4Bit, uint8_t Dim3Bit, uint8_t Dim2Bit, uint8_t Dim1Bit, uint8_t Dim0Bit) {      DimensionRegion* Region::GetDimensionRegionByBit(const uint8_t DimBits[8]) {
1251          return *(pDimensionRegions + ((((((((Dim4Bit << pDimensionDefinitions[3].bits) | Dim3Bit)          return pDimensionRegions[((((((DimBits[7] << pDimensionDefinitions[6].bits | DimBits[6])
1252                                                       << pDimensionDefinitions[2].bits) | Dim2Bit)                                                    << pDimensionDefinitions[5].bits | DimBits[5])
1253                                                       << pDimensionDefinitions[1].bits) | Dim1Bit)                                                    << pDimensionDefinitions[4].bits | DimBits[4])
1254                                                       << pDimensionDefinitions[0].bits) | Dim0Bit) );                                                    << pDimensionDefinitions[3].bits | DimBits[3])
1255                                                      << pDimensionDefinitions[2].bits | DimBits[2])
1256                                                      << pDimensionDefinitions[1].bits | DimBits[1])
1257                                                      << pDimensionDefinitions[0].bits | DimBits[0]];
1258      }      }
1259    
1260      /**      /**
# Line 1203  namespace gig { Line 1272  namespace gig {
1272      }      }
1273    
1274      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex) {      Sample* Region::GetSampleFromWavePool(unsigned int WavePoolTableIndex) {
1275            if ((int32_t)WavePoolTableIndex == -1) return NULL;
1276          File* file = (File*) GetParent()->GetParent();          File* file = (File*) GetParent()->GetParent();
1277          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];          unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];
1278          Sample* sample = file->GetFirstSample();          Sample* sample = file->GetFirstSample();
# Line 1244  namespace gig { Line 1314  namespace gig {
1314          RIFF::List* lrgn = insList->GetSubList(LIST_TYPE_LRGN);          RIFF::List* lrgn = insList->GetSubList(LIST_TYPE_LRGN);
1315          if (!lrgn) throw gig::Exception("Mandatory chunks in <ins > chunk not found.");          if (!lrgn) throw gig::Exception("Mandatory chunks in <ins > chunk not found.");
1316          pRegions = new Region*[Regions];          pRegions = new Region*[Regions];
1317            for (uint i = 0; i < Regions; i++) pRegions[i] = NULL;
1318          RIFF::List* rgn = lrgn->GetFirstSubList();          RIFF::List* rgn = lrgn->GetFirstSubList();
1319          unsigned int iRegion = 0;          unsigned int iRegion = 0;
1320          while (rgn) {          while (rgn) {
# Line 1267  namespace gig { Line 1338  namespace gig {
1338              if (pRegions) {              if (pRegions) {
1339                  if (pRegions[i]) delete (pRegions[i]);                  if (pRegions[i]) delete (pRegions[i]);
1340              }              }
             delete[] pRegions;  
1341          }          }
1342            if (pRegions) delete[] pRegions;
1343      }      }
1344    
1345      /**      /**
# Line 1324  namespace gig { Line 1395  namespace gig {
1395          pInstruments = NULL;          pInstruments = NULL;
1396      }      }
1397    
1398        File::~File() {
1399            // free samples
1400            if (pSamples) {
1401                SamplesIterator = pSamples->begin();
1402                while (SamplesIterator != pSamples->end() ) {
1403                    delete (*SamplesIterator);
1404                    SamplesIterator++;
1405                }
1406                pSamples->clear();
1407    
1408            }
1409            // free instruments
1410            if (pInstruments) {
1411                InstrumentsIterator = pInstruments->begin();
1412                while (InstrumentsIterator != pInstruments->end() ) {
1413                    delete (*InstrumentsIterator);
1414                    InstrumentsIterator++;
1415                }
1416                pInstruments->clear();
1417            }
1418        }
1419    
1420      Sample* File::GetFirstSample() {      Sample* File::GetFirstSample() {
1421          if (!pSamples) LoadSamples();          if (!pSamples) LoadSamples();
1422          if (!pSamples) return NULL;          if (!pSamples) return NULL;

Legend:
Removed from v.231  
changed lines
  Added in v.352

  ViewVC Help
Powered by ViewVC