/[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 933 by schoenebeck, Fri Nov 24 12:50:05 2006 UTC revision 1195 by persson, Thu May 17 17:24:26 2007 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file access 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 254  namespace { Line 254  namespace {
254  }  }
255    
256    
257    
258    // *************** Other Internal functions  ***************
259    // *
260    
261        static split_type_t __resolveSplitType(dimension_t dimension) {
262            return (
263                dimension == dimension_layer ||
264                dimension == dimension_samplechannel ||
265                dimension == dimension_releasetrigger ||
266                dimension == dimension_keyboard ||
267                dimension == dimension_roundrobin ||
268                dimension == dimension_random ||
269                dimension == dimension_smartmidi ||
270                dimension == dimension_roundrobinkeyboard
271            ) ? split_type_bit : split_type_normal;
272        }
273    
274        static int __resolveZoneSize(dimension_def_t& dimension_definition) {
275            return (dimension_definition.split_type == split_type_normal)
276            ? int(128.0 / dimension_definition.zones) : 0;
277        }
278    
279    
280    
281  // *************** Sample ***************  // *************** Sample ***************
282  // *  // *
283    
# Line 279  namespace { Line 303  namespace {
303       *                         is located, 0 otherwise       *                         is located, 0 otherwise
304       */       */
305      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) {
306          pInfo->UseFixedLengthStrings = true;          static const DLS::Info::FixedStringLength fixedStringLengths[] = {
307                { CHUNK_ID_INAM, 64 },
308                { 0, 0 }
309            };
310            pInfo->FixedStringLengths = fixedStringLengths;
311          Instances++;          Instances++;
312          FileNo = fileNo;          FileNo = fileNo;
313    
# Line 316  namespace { Line 344  namespace {
344              SamplePeriod  = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);              SamplePeriod  = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);
345              MIDIUnityNote = 64;              MIDIUnityNote = 64;
346              FineTune      = 0;              FineTune      = 0;
347                SMPTEFormat   = smpte_format_no_offset;
348              SMPTEOffset   = 0;              SMPTEOffset   = 0;
349              Loops         = 0;              Loops         = 0;
350              LoopID        = 0;              LoopID        = 0;
351                LoopType      = loop_type_normal;
352              LoopStart     = 0;              LoopStart     = 0;
353              LoopEnd       = 0;              LoopEnd       = 0;
354              LoopFraction  = 0;              LoopFraction  = 0;
# Line 364  namespace { Line 394  namespace {
394       * Usually there is absolutely no need to call this method explicitly.       * Usually there is absolutely no need to call this method explicitly.
395       * It will be called automatically when File::Save() was called.       * It will be called automatically when File::Save() was called.
396       *       *
397       * @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
398       *                        was provided yet       *                        was provided yet
399       * @throws gig::Exception if there is any invalid sample setting       * @throws gig::Exception if there is any invalid sample setting
400       */       */
# Line 374  namespace { Line 404  namespace {
404    
405          // make sure 'smpl' chunk exists          // make sure 'smpl' chunk exists
406          pCkSmpl = pWaveList->GetSubChunk(CHUNK_ID_SMPL);          pCkSmpl = pWaveList->GetSubChunk(CHUNK_ID_SMPL);
407          if (!pCkSmpl) pCkSmpl = pWaveList->AddSubChunk(CHUNK_ID_SMPL, 60);          if (!pCkSmpl) {
408                pCkSmpl = pWaveList->AddSubChunk(CHUNK_ID_SMPL, 60);
409                memset(pCkSmpl->LoadChunkData(), 0, 60);
410            }
411          // update 'smpl' chunk          // update 'smpl' chunk
412          uint8_t* pData = (uint8_t*) pCkSmpl->LoadChunkData();          uint8_t* pData = (uint8_t*) pCkSmpl->LoadChunkData();
413          SamplePeriod = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);          SamplePeriod = uint32_t(1000000000.0 / SamplesPerSecond + 0.5);
414          memcpy(&pData[0], &Manufacturer, 4);          store32(&pData[0], Manufacturer);
415          memcpy(&pData[4], &Product, 4);          store32(&pData[4], Product);
416          memcpy(&pData[8], &SamplePeriod, 4);          store32(&pData[8], SamplePeriod);
417          memcpy(&pData[12], &MIDIUnityNote, 4);          store32(&pData[12], MIDIUnityNote);
418          memcpy(&pData[16], &FineTune, 4);          store32(&pData[16], FineTune);
419          memcpy(&pData[20], &SMPTEFormat, 4);          store32(&pData[20], SMPTEFormat);
420          memcpy(&pData[24], &SMPTEOffset, 4);          store32(&pData[24], SMPTEOffset);
421          memcpy(&pData[28], &Loops, 4);          store32(&pData[28], Loops);
422    
423          // we skip 'manufByt' for now (4 bytes)          // we skip 'manufByt' for now (4 bytes)
424    
425          memcpy(&pData[36], &LoopID, 4);          store32(&pData[36], LoopID);
426          memcpy(&pData[40], &LoopType, 4);          store32(&pData[40], LoopType);
427          memcpy(&pData[44], &LoopStart, 4);          store32(&pData[44], LoopStart);
428          memcpy(&pData[48], &LoopEnd, 4);          store32(&pData[48], LoopEnd);
429          memcpy(&pData[52], &LoopFraction, 4);          store32(&pData[52], LoopFraction);
430          memcpy(&pData[56], &LoopPlayCount, 4);          store32(&pData[56], LoopPlayCount);
431    
432          // make sure '3gix' chunk exists          // make sure '3gix' chunk exists
433          pCk3gix = pWaveList->GetSubChunk(CHUNK_ID_3GIX);          pCk3gix = pWaveList->GetSubChunk(CHUNK_ID_3GIX);
# Line 414  namespace { Line 447  namespace {
447          }          }
448          // update '3gix' chunk          // update '3gix' chunk
449          pData = (uint8_t*) pCk3gix->LoadChunkData();          pData = (uint8_t*) pCk3gix->LoadChunkData();
450          memcpy(&pData[0], &iSampleGroup, 2);          store16(&pData[0], iSampleGroup);
451      }      }
452    
453      /// 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 635  namespace { Line 668  namespace {
668       * enlarged samples before calling File::Save() as this might exceed the       * enlarged samples before calling File::Save() as this might exceed the
669       * current sample's boundary!       * current sample's boundary!
670       *       *
671       * Also note: only WAVE_FORMAT_PCM is currently supported, that is       * Also note: only DLS_WAVE_FORMAT_PCM is currently supported, that is
672       * FormatTag must be WAVE_FORMAT_PCM. Trying to resize samples with       * FormatTag must be DLS_WAVE_FORMAT_PCM. Trying to resize samples with
673       * other formats will fail!       * other formats will fail!
674       *       *
675       * @param iNewSize - new sample wave data size in sample points (must be       * @param iNewSize - new sample wave data size in sample points (must be
676       *                   greater than zero)       *                   greater than zero)
677       * @throws DLS::Excecption if FormatTag != WAVE_FORMAT_PCM       * @throws DLS::Excecption if FormatTag != DLS_WAVE_FORMAT_PCM
678       *                         or if \a iNewSize is less than 1       *                         or if \a iNewSize is less than 1
679       * @throws gig::Exception if existing sample is compressed       * @throws gig::Exception if existing sample is compressed
680       * @see DLS::Sample::GetSize(), DLS::Sample::FrameSize,       * @see DLS::Sample::GetSize(), DLS::Sample::FrameSize,
# Line 1338  namespace { Line 1371  namespace {
1371                  if (lfo3ctrl & 0x40) // bit 6                  if (lfo3ctrl & 0x40) // bit 6
1372                      VCFType = vcf_type_lowpassturbo;                      VCFType = vcf_type_lowpassturbo;
1373              }              }
1374                if (_3ewa->RemainingBytes() >= 8) {
1375                    _3ewa->Read(DimensionUpperLimits, 1, 8);
1376                } else {
1377                    memset(DimensionUpperLimits, 0, 8);
1378                }
1379          } else { // '3ewa' chunk does not exist yet          } else { // '3ewa' chunk does not exist yet
1380              // use default values              // use default values
1381              LFO3Frequency                   = 1.0;              LFO3Frequency                   = 1.0;
# Line 1418  namespace { Line 1456  namespace {
1456              VCFVelocityDynamicRange         = 0x04;              VCFVelocityDynamicRange         = 0x04;
1457              VCFVelocityCurve                = curve_type_linear;              VCFVelocityCurve                = curve_type_linear;
1458              VCFType                         = vcf_type_lowpass;              VCFType                         = vcf_type_lowpass;
1459                memset(DimensionUpperLimits, 0, 8);
1460          }          }
1461    
1462          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,
# Line 1473  namespace { Line 1512  namespace {
1512    
1513          // update '3ewa' chunk with DimensionRegion's current settings          // update '3ewa' chunk with DimensionRegion's current settings
1514    
1515          const uint32_t unknown = _3ewa->GetSize(); // unknown, always chunk size ?          const uint32_t chunksize = _3ewa->GetNewSize();
1516          memcpy(&pData[0], &unknown, 4);          store32(&pData[0], chunksize); // unknown, always chunk size?
1517    
1518          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);          const int32_t lfo3freq = (int32_t) GIG_EXP_ENCODE(LFO3Frequency);
1519          memcpy(&pData[4], &lfo3freq, 4);          store32(&pData[4], lfo3freq);
1520    
1521          const int32_t eg3attack = (int32_t) GIG_EXP_ENCODE(EG3Attack);          const int32_t eg3attack = (int32_t) GIG_EXP_ENCODE(EG3Attack);
1522          memcpy(&pData[8], &eg3attack, 4);          store32(&pData[8], eg3attack);
1523    
1524          // next 2 bytes unknown          // next 2 bytes unknown
1525    
1526          memcpy(&pData[14], &LFO1InternalDepth, 2);          store16(&pData[14], LFO1InternalDepth);
1527    
1528          // next 2 bytes unknown          // next 2 bytes unknown
1529    
1530          memcpy(&pData[18], &LFO3InternalDepth, 2);          store16(&pData[18], LFO3InternalDepth);
1531    
1532          // next 2 bytes unknown          // next 2 bytes unknown
1533    
1534          memcpy(&pData[22], &LFO1ControlDepth, 2);          store16(&pData[22], LFO1ControlDepth);
1535    
1536          // next 2 bytes unknown          // next 2 bytes unknown
1537    
1538          memcpy(&pData[26], &LFO3ControlDepth, 2);          store16(&pData[26], LFO3ControlDepth);
1539    
1540          const int32_t eg1attack = (int32_t) GIG_EXP_ENCODE(EG1Attack);          const int32_t eg1attack = (int32_t) GIG_EXP_ENCODE(EG1Attack);
1541          memcpy(&pData[28], &eg1attack, 4);          store32(&pData[28], eg1attack);
1542    
1543          const int32_t eg1decay1 = (int32_t) GIG_EXP_ENCODE(EG1Decay1);          const int32_t eg1decay1 = (int32_t) GIG_EXP_ENCODE(EG1Decay1);
1544          memcpy(&pData[32], &eg1decay1, 4);          store32(&pData[32], eg1decay1);
1545    
1546          // next 2 bytes unknown          // next 2 bytes unknown
1547    
1548          memcpy(&pData[38], &EG1Sustain, 2);          store16(&pData[38], EG1Sustain);
1549    
1550          const int32_t eg1release = (int32_t) GIG_EXP_ENCODE(EG1Release);          const int32_t eg1release = (int32_t) GIG_EXP_ENCODE(EG1Release);
1551          memcpy(&pData[40], &eg1release, 4);          store32(&pData[40], eg1release);
1552    
1553          const uint8_t eg1ctl = (uint8_t) EncodeLeverageController(EG1Controller);          const uint8_t eg1ctl = (uint8_t) EncodeLeverageController(EG1Controller);
1554          memcpy(&pData[44], &eg1ctl, 1);          pData[44] = eg1ctl;
1555    
1556          const uint8_t eg1ctrloptions =          const uint8_t eg1ctrloptions =
1557              (EG1ControllerInvert) ? 0x01 : 0x00 |              (EG1ControllerInvert) ? 0x01 : 0x00 |
1558              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG1ControllerAttackInfluence) |              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG1ControllerAttackInfluence) |
1559              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG1ControllerDecayInfluence) |              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG1ControllerDecayInfluence) |
1560              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG1ControllerReleaseInfluence);              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG1ControllerReleaseInfluence);
1561          memcpy(&pData[45], &eg1ctrloptions, 1);          pData[45] = eg1ctrloptions;
1562    
1563          const uint8_t eg2ctl = (uint8_t) EncodeLeverageController(EG2Controller);          const uint8_t eg2ctl = (uint8_t) EncodeLeverageController(EG2Controller);
1564          memcpy(&pData[46], &eg2ctl, 1);          pData[46] = eg2ctl;
1565    
1566          const uint8_t eg2ctrloptions =          const uint8_t eg2ctrloptions =
1567              (EG2ControllerInvert) ? 0x01 : 0x00 |              (EG2ControllerInvert) ? 0x01 : 0x00 |
1568              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG2ControllerAttackInfluence) |              GIG_EG_CTR_ATTACK_INFLUENCE_ENCODE(EG2ControllerAttackInfluence) |
1569              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG2ControllerDecayInfluence) |              GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(EG2ControllerDecayInfluence) |
1570              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG2ControllerReleaseInfluence);              GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(EG2ControllerReleaseInfluence);
1571          memcpy(&pData[47], &eg2ctrloptions, 1);          pData[47] = eg2ctrloptions;
1572    
1573          const int32_t lfo1freq = (int32_t) GIG_EXP_ENCODE(LFO1Frequency);          const int32_t lfo1freq = (int32_t) GIG_EXP_ENCODE(LFO1Frequency);
1574          memcpy(&pData[48], &lfo1freq, 4);          store32(&pData[48], lfo1freq);
1575    
1576          const int32_t eg2attack = (int32_t) GIG_EXP_ENCODE(EG2Attack);          const int32_t eg2attack = (int32_t) GIG_EXP_ENCODE(EG2Attack);
1577          memcpy(&pData[52], &eg2attack, 4);          store32(&pData[52], eg2attack);
1578    
1579          const int32_t eg2decay1 = (int32_t) GIG_EXP_ENCODE(EG2Decay1);          const int32_t eg2decay1 = (int32_t) GIG_EXP_ENCODE(EG2Decay1);
1580          memcpy(&pData[56], &eg2decay1, 4);          store32(&pData[56], eg2decay1);
1581    
1582          // next 2 bytes unknown          // next 2 bytes unknown
1583    
1584          memcpy(&pData[62], &EG2Sustain, 2);          store16(&pData[62], EG2Sustain);
1585    
1586          const int32_t eg2release = (int32_t) GIG_EXP_ENCODE(EG2Release);          const int32_t eg2release = (int32_t) GIG_EXP_ENCODE(EG2Release);
1587          memcpy(&pData[64], &eg2release, 4);          store32(&pData[64], eg2release);
1588    
1589          // next 2 bytes unknown          // next 2 bytes unknown
1590    
1591          memcpy(&pData[70], &LFO2ControlDepth, 2);          store16(&pData[70], LFO2ControlDepth);
1592    
1593          const int32_t lfo2freq = (int32_t) GIG_EXP_ENCODE(LFO2Frequency);          const int32_t lfo2freq = (int32_t) GIG_EXP_ENCODE(LFO2Frequency);
1594          memcpy(&pData[72], &lfo2freq, 4);          store32(&pData[72], lfo2freq);
1595    
1596          // next 2 bytes unknown          // next 2 bytes unknown
1597    
1598          memcpy(&pData[78], &LFO2InternalDepth, 2);          store16(&pData[78], LFO2InternalDepth);
1599    
1600          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);
1601          memcpy(&pData[80], &eg1decay2, 4);          store32(&pData[80], eg1decay2);
1602    
1603          // next 2 bytes unknown          // next 2 bytes unknown
1604    
1605          memcpy(&pData[86], &EG1PreAttack, 2);          store16(&pData[86], EG1PreAttack);
1606    
1607          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);
1608          memcpy(&pData[88], &eg2decay2, 4);          store32(&pData[88], eg2decay2);
1609    
1610          // next 2 bytes unknown          // next 2 bytes unknown
1611    
1612          memcpy(&pData[94], &EG2PreAttack, 2);          store16(&pData[94], EG2PreAttack);
1613    
1614          {          {
1615              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 1588  namespace { Line 1627  namespace {
1627                  default:                  default:
1628                      throw Exception("Could not update DimensionRegion's chunk, unknown VelocityResponseCurve selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown VelocityResponseCurve selected");
1629              }              }
1630              memcpy(&pData[96], &velocityresponse, 1);              pData[96] = velocityresponse;
1631          }          }
1632    
1633          {          {
# Line 1607  namespace { Line 1646  namespace {
1646                  default:                  default:
1647                      throw Exception("Could not update DimensionRegion's chunk, unknown ReleaseVelocityResponseCurve selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown ReleaseVelocityResponseCurve selected");
1648              }              }
1649              memcpy(&pData[97], &releasevelocityresponse, 1);              pData[97] = releasevelocityresponse;
1650          }          }
1651    
1652          memcpy(&pData[98], &VelocityResponseCurveScaling, 1);          pData[98] = VelocityResponseCurveScaling;
1653    
1654          memcpy(&pData[99], &AttenuationControllerThreshold, 1);          pData[99] = AttenuationControllerThreshold;
1655    
1656          // next 4 bytes unknown          // next 4 bytes unknown
1657    
1658          memcpy(&pData[104], &SampleStartOffset, 2);          store16(&pData[104], SampleStartOffset);
1659    
1660          // next 2 bytes unknown          // next 2 bytes unknown
1661    
# Line 1635  namespace { Line 1674  namespace {
1674                  default:                  default:
1675                      throw Exception("Could not update DimensionRegion's chunk, unknown DimensionBypass selected");                      throw Exception("Could not update DimensionRegion's chunk, unknown DimensionBypass selected");
1676              }              }
1677              memcpy(&pData[108], &pitchTrackDimensionBypass, 1);              pData[108] = pitchTrackDimensionBypass;
1678          }          }
1679    
1680          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
1681          memcpy(&pData[109], &pan, 1);          pData[109] = pan;
1682    
1683          const uint8_t selfmask = (SelfMask) ? 0x01 : 0x00;          const uint8_t selfmask = (SelfMask) ? 0x01 : 0x00;
1684          memcpy(&pData[110], &selfmask, 1);          pData[110] = selfmask;
1685    
1686          // next byte unknown          // next byte unknown
1687    
# Line 1651  namespace { Line 1690  namespace {
1690              if (LFO3Sync) lfo3ctrl |= 0x20; // bit 5              if (LFO3Sync) lfo3ctrl |= 0x20; // bit 5
1691              if (InvertAttenuationController) lfo3ctrl |= 0x80; // bit 7              if (InvertAttenuationController) lfo3ctrl |= 0x80; // bit 7
1692              if (VCFType == vcf_type_lowpassturbo) lfo3ctrl |= 0x40; // bit 6              if (VCFType == vcf_type_lowpassturbo) lfo3ctrl |= 0x40; // bit 6
1693              memcpy(&pData[112], &lfo3ctrl, 1);              pData[112] = lfo3ctrl;
1694          }          }
1695    
1696          const uint8_t attenctl = EncodeLeverageController(AttenuationController);          const uint8_t attenctl = EncodeLeverageController(AttenuationController);
1697          memcpy(&pData[113], &attenctl, 1);          pData[113] = attenctl;
1698    
1699          {          {
1700              uint8_t lfo2ctrl = LFO2Controller & 0x07; // lower 3 bits              uint8_t lfo2ctrl = LFO2Controller & 0x07; // lower 3 bits
1701              if (LFO2FlipPhase) lfo2ctrl |= 0x80; // bit 7              if (LFO2FlipPhase) lfo2ctrl |= 0x80; // bit 7
1702              if (LFO2Sync)      lfo2ctrl |= 0x20; // bit 5              if (LFO2Sync)      lfo2ctrl |= 0x20; // bit 5
1703              if (VCFResonanceController != vcf_res_ctrl_none) lfo2ctrl |= 0x40; // bit 6              if (VCFResonanceController != vcf_res_ctrl_none) lfo2ctrl |= 0x40; // bit 6
1704              memcpy(&pData[114], &lfo2ctrl, 1);              pData[114] = lfo2ctrl;
1705          }          }
1706    
1707          {          {
# Line 1671  namespace { Line 1710  namespace {
1710              if (LFO1Sync)      lfo1ctrl |= 0x40; // bit 6              if (LFO1Sync)      lfo1ctrl |= 0x40; // bit 6
1711              if (VCFResonanceController != vcf_res_ctrl_none)              if (VCFResonanceController != vcf_res_ctrl_none)
1712                  lfo1ctrl |= GIG_VCF_RESONANCE_CTRL_ENCODE(VCFResonanceController);                  lfo1ctrl |= GIG_VCF_RESONANCE_CTRL_ENCODE(VCFResonanceController);
1713              memcpy(&pData[115], &lfo1ctrl, 1);              pData[115] = lfo1ctrl;
1714          }          }
1715    
1716          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth
1717                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */
1718          memcpy(&pData[116], &eg3depth, 1);          pData[116] = eg3depth;
1719    
1720          // next 2 bytes unknown          // next 2 bytes unknown
1721    
1722          const uint8_t channeloffset = ChannelOffset * 4;          const uint8_t channeloffset = ChannelOffset * 4;
1723          memcpy(&pData[120], &channeloffset, 1);          pData[120] = channeloffset;
1724    
1725          {          {
1726              uint8_t regoptions = 0;              uint8_t regoptions = 0;
1727              if (MSDecode)      regoptions |= 0x01; // bit 0              if (MSDecode)      regoptions |= 0x01; // bit 0
1728              if (SustainDefeat) regoptions |= 0x02; // bit 1              if (SustainDefeat) regoptions |= 0x02; // bit 1
1729              memcpy(&pData[121], &regoptions, 1);              pData[121] = regoptions;
1730          }          }
1731    
1732          // next 2 bytes unknown          // next 2 bytes unknown
1733    
1734          memcpy(&pData[124], &VelocityUpperLimit, 1);          pData[124] = VelocityUpperLimit;
1735    
1736          // next 3 bytes unknown          // next 3 bytes unknown
1737    
1738          memcpy(&pData[128], &ReleaseTriggerDecay, 1);          pData[128] = ReleaseTriggerDecay;
1739    
1740          // next 2 bytes unknown          // next 2 bytes unknown
1741    
1742          const uint8_t eg1hold = (EG1Hold) ? 0x80 : 0x00; // bit 7          const uint8_t eg1hold = (EG1Hold) ? 0x80 : 0x00; // bit 7
1743          memcpy(&pData[131], &eg1hold, 1);          pData[131] = eg1hold;
1744    
1745          const uint8_t vcfcutoff = (VCFEnabled) ? 0x80 : 0x00 |  /* bit 7 */          const uint8_t vcfcutoff = (VCFEnabled) ? 0x80 : 0x00 |  /* bit 7 */
1746                                    (VCFCutoff & 0x7f);   /* lower 7 bits */                                    (VCFCutoff & 0x7f);   /* lower 7 bits */
1747          memcpy(&pData[132], &vcfcutoff, 1);          pData[132] = vcfcutoff;
1748    
1749          memcpy(&pData[133], &VCFCutoffController, 1);          pData[133] = VCFCutoffController;
1750    
1751          const uint8_t vcfvelscale = (VCFCutoffControllerInvert) ? 0x80 : 0x00 | /* bit 7 */          const uint8_t vcfvelscale = (VCFCutoffControllerInvert) ? 0x80 : 0x00 | /* bit 7 */
1752                                      (VCFVelocityScale & 0x7f); /* lower 7 bits */                                      (VCFVelocityScale & 0x7f); /* lower 7 bits */
1753          memcpy(&pData[134], &vcfvelscale, 1);          pData[134] = vcfvelscale;
1754    
1755          // next byte unknown          // next byte unknown
1756    
1757          const uint8_t vcfresonance = (VCFResonanceDynamic) ? 0x00 : 0x80 | /* bit 7 */          const uint8_t vcfresonance = (VCFResonanceDynamic) ? 0x00 : 0x80 | /* bit 7 */
1758                                       (VCFResonance & 0x7f); /* lower 7 bits */                                       (VCFResonance & 0x7f); /* lower 7 bits */
1759          memcpy(&pData[136], &vcfresonance, 1);          pData[136] = vcfresonance;
1760    
1761          const uint8_t vcfbreakpoint = (VCFKeyboardTracking) ? 0x80 : 0x00 | /* bit 7 */          const uint8_t vcfbreakpoint = (VCFKeyboardTracking) ? 0x80 : 0x00 | /* bit 7 */
1762                                        (VCFKeyboardTrackingBreakpoint & 0x7f); /* lower 7 bits */                                        (VCFKeyboardTrackingBreakpoint & 0x7f); /* lower 7 bits */
1763          memcpy(&pData[137], &vcfbreakpoint, 1);          pData[137] = vcfbreakpoint;
1764    
1765          const uint8_t vcfvelocity = VCFVelocityDynamicRange % 5 |          const uint8_t vcfvelocity = VCFVelocityDynamicRange % 5 |
1766                                      VCFVelocityCurve * 5;                                      VCFVelocityCurve * 5;
1767          memcpy(&pData[138], &vcfvelocity, 1);          pData[138] = vcfvelocity;
1768    
1769          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;          const uint8_t vcftype = (VCFType == vcf_type_lowpassturbo) ? vcf_type_lowpass : VCFType;
1770          memcpy(&pData[139], &vcftype, 1);          pData[139] = vcftype;
1771    
1772            if (chunksize >= 148) {
1773                memcpy(&pData[140], DimensionUpperLimits, 8);
1774            }
1775      }      }
1776    
1777      // 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 1953  namespace { Line 1996  namespace {
1996                      default:                      default:
1997                          throw gig::Exception("leverage controller number is not supported by the gig format");                          throw gig::Exception("leverage controller number is not supported by the gig format");
1998                  }                  }
1999                    break;
2000              default:              default:
2001                  throw gig::Exception("Unknown leverage controller type.");                  throw gig::Exception("Unknown leverage controller type.");
2002          }          }
# Line 2070  namespace { Line 2114  namespace {
2114  // *  // *
2115    
2116      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) {
         pInfo->UseFixedLengthStrings = true;  
   
2117          // Initialization          // Initialization
2118          Dimensions = 0;          Dimensions = 0;
2119          for (int i = 0; i < 256; i++) {          for (int i = 0; i < 256; i++) {
# Line 2105  namespace { Line 2147  namespace {
2147                      pDimensionDefinitions[i].dimension = dimension;                      pDimensionDefinitions[i].dimension = dimension;
2148                      pDimensionDefinitions[i].bits      = bits;                      pDimensionDefinitions[i].bits      = bits;
2149                      pDimensionDefinitions[i].zones     = zones ? zones : 0x01 << bits; // = pow(2,bits)                      pDimensionDefinitions[i].zones     = zones ? zones : 0x01 << bits; // = pow(2,bits)
2150                      pDimensionDefinitions[i].split_type = (dimension == dimension_layer ||                      pDimensionDefinitions[i].split_type = __resolveSplitType(dimension);
2151                                                             dimension == dimension_samplechannel ||                      pDimensionDefinitions[i].zone_size  = __resolveZoneSize(pDimensionDefinitions[i]);
                                                            dimension == dimension_releasetrigger ||  
                                                            dimension == dimension_keyboard ||  
                                                            dimension == dimension_roundrobin ||  
                                                            dimension == dimension_random) ? split_type_bit  
                                                                                           : split_type_normal;  
                     pDimensionDefinitions[i].zone_size  =  
                         (pDimensionDefinitions[i].split_type == split_type_normal) ? 128.0 / pDimensionDefinitions[i].zones  
                                                                                    : 0;  
2152                      Dimensions++;                      Dimensions++;
2153    
2154                      // if this is a layer dimension, remember the amount of layers                      // if this is a layer dimension, remember the amount of layers
# Line 2140  namespace { Line 2174  namespace {
2174                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);
2175              }              }
2176              GetSample(); // load global region sample reference              GetSample(); // load global region sample reference
2177            } else {
2178                DimensionRegions = 0;
2179                for (int i = 0 ; i < 8 ; i++) {
2180                    pDimensionDefinitions[i].dimension  = dimension_none;
2181                    pDimensionDefinitions[i].bits       = 0;
2182                    pDimensionDefinitions[i].zones      = 0;
2183                }
2184          }          }
2185    
2186          // make sure there is at least one dimension region          // make sure there is at least one dimension region
# Line 2162  namespace { Line 2203  namespace {
2203       * @throws gig::Exception if samples cannot be dereferenced       * @throws gig::Exception if samples cannot be dereferenced
2204       */       */
2205      void Region::UpdateChunks() {      void Region::UpdateChunks() {
2206            // in the gig format we don't care about the Region's sample reference
2207            // but we still have to provide some existing one to not corrupt the
2208            // file, so to avoid the latter we simply always assign the sample of
2209            // the first dimension region of this region
2210            pSample = pDimensionRegions[0]->pSample;
2211    
2212          // first update base class's chunks          // first update base class's chunks
2213          DLS::Region::UpdateChunks();          DLS::Region::UpdateChunks();
2214    
# Line 2179  namespace { Line 2226  namespace {
2226          if (!_3lnk) {          if (!_3lnk) {
2227              const int _3lnkChunkSize = (pFile->pVersion && pFile->pVersion->major == 3) ? 1092 : 172;              const int _3lnkChunkSize = (pFile->pVersion && pFile->pVersion->major == 3) ? 1092 : 172;
2228              _3lnk = pCkRegion->AddSubChunk(CHUNK_ID_3LNK, _3lnkChunkSize);              _3lnk = pCkRegion->AddSubChunk(CHUNK_ID_3LNK, _3lnkChunkSize);
2229                memset(_3lnk->LoadChunkData(), 0, _3lnkChunkSize);
2230    
2231                // move 3prg to last position
2232                pCkRegion->MoveSubChunk(pCkRegion->GetSubList(LIST_TYPE_3PRG), 0);
2233          }          }
2234    
2235          // update dimension definitions in '3lnk' chunk          // update dimension definitions in '3lnk' chunk
2236          uint8_t* pData = (uint8_t*) _3lnk->LoadChunkData();          uint8_t* pData = (uint8_t*) _3lnk->LoadChunkData();
2237          memcpy(&pData[0], &DimensionRegions, 4);          store32(&pData[0], DimensionRegions);
2238          for (int i = 0; i < iMaxDimensions; i++) {          for (int i = 0; i < iMaxDimensions; i++) {
2239              pData[4 + i * 8] = (uint8_t) pDimensionDefinitions[i].dimension;              pData[4 + i * 8] = (uint8_t) pDimensionDefinitions[i].dimension;
2240              pData[5 + i * 8] = pDimensionDefinitions[i].bits;              pData[5 + i * 8] = pDimensionDefinitions[i].bits;
# Line 2208  namespace { Line 2259  namespace {
2259                  }                  }
2260                  if (iWaveIndex < 0) throw gig::Exception("Could not update gig::Region, could not find DimensionRegion's sample");                  if (iWaveIndex < 0) throw gig::Exception("Could not update gig::Region, could not find DimensionRegion's sample");
2261              }              }
2262              memcpy(&pData[iWavePoolOffset + i * 4], &iWaveIndex, 4);              store32(&pData[iWavePoolOffset + i * 4], iWaveIndex);
2263          }          }
2264      }      }
2265    
# Line 2248  namespace { Line 2299  namespace {
2299          int dim[8] = { 0 };          int dim[8] = { 0 };
2300          for (int i = 0 ; i < DimensionRegions ; i++) {          for (int i = 0 ; i < DimensionRegions ; i++) {
2301    
2302              if (pDimensionRegions[i]->VelocityUpperLimit) {              if (pDimensionRegions[i]->DimensionUpperLimits[veldim] ||
2303                    pDimensionRegions[i]->VelocityUpperLimit) {
2304                  // create the velocity table                  // create the velocity table
2305                  uint8_t* table = pDimensionRegions[i]->VelocityTable;                  uint8_t* table = pDimensionRegions[i]->VelocityTable;
2306                  if (!table) {                  if (!table) {
# Line 2257  namespace { Line 2309  namespace {
2309                  }                  }
2310                  int tableidx = 0;                  int tableidx = 0;
2311                  int velocityZone = 0;                  int velocityZone = 0;
2312                  for (int k = i ; k < end ; k += step) {                  if (pDimensionRegions[i]->DimensionUpperLimits[veldim]) { // gig3
2313                      DimensionRegion *d = pDimensionRegions[k];                      for (int k = i ; k < end ; k += step) {
2314                      for (; tableidx <= d->VelocityUpperLimit ; tableidx++) table[tableidx] = velocityZone;                          DimensionRegion *d = pDimensionRegions[k];
2315                      velocityZone++;                          for (; tableidx <= d->DimensionUpperLimits[veldim] ; tableidx++) table[tableidx] = velocityZone;
2316                            velocityZone++;
2317                        }
2318                    } else { // gig2
2319                        for (int k = i ; k < end ; k += step) {
2320                            DimensionRegion *d = pDimensionRegions[k];
2321                            for (; tableidx <= d->VelocityUpperLimit ; tableidx++) table[tableidx] = velocityZone;
2322                            velocityZone++;
2323                        }
2324                  }                  }
2325              } else {              } else {
2326                  if (pDimensionRegions[i]->VelocityTable) {                  if (pDimensionRegions[i]->VelocityTable) {
# Line 2327  namespace { Line 2387  namespace {
2387          // assign definition of new dimension          // assign definition of new dimension
2388          pDimensionDefinitions[Dimensions] = *pDimDef;          pDimensionDefinitions[Dimensions] = *pDimDef;
2389    
2390            // auto correct certain dimension definition fields (where possible)
2391            pDimensionDefinitions[Dimensions].split_type  =
2392                __resolveSplitType(pDimensionDefinitions[Dimensions].dimension);
2393            pDimensionDefinitions[Dimensions].zone_size =
2394                __resolveZoneSize(pDimensionDefinitions[Dimensions]);
2395    
2396          // create new dimension region(s) for this new dimension          // create new dimension region(s) for this new dimension
2397          for (int i = 1 << iCurrentBits; i < 1 << iNewBits; i++) {          for (int i = 1 << iCurrentBits; i < 1 << iNewBits; i++) {
2398              //TODO: maybe we should copy existing dimension regions if possible instead of simply creating new ones with default values              //TODO: maybe we should copy existing dimension regions if possible instead of simply creating new ones with default values
2399              RIFF::List* pNewDimRgnListChunk = pCkRegion->AddSubList(LIST_TYPE_3EWL);              RIFF::List* _3prg = pCkRegion->GetSubList(LIST_TYPE_3PRG);
2400                RIFF::List* pNewDimRgnListChunk = _3prg->AddSubList(LIST_TYPE_3EWL);
2401              pDimensionRegions[i] = new DimensionRegion(pNewDimRgnListChunk);              pDimensionRegions[i] = new DimensionRegion(pNewDimRgnListChunk);
2402              DimensionRegions++;              DimensionRegions++;
2403          }          }
# Line 2455  namespace { Line 2522  namespace {
2522              } else {              } else {
2523                  switch (pDimensionDefinitions[i].split_type) {                  switch (pDimensionDefinitions[i].split_type) {
2524                      case split_type_normal:                      case split_type_normal:
2525                          bits = uint8_t(DimValues[i] / pDimensionDefinitions[i].zone_size);                          if (pDimensionRegions[0]->DimensionUpperLimits[i]) {
2526                                // gig3: all normal dimensions (not just the velocity dimension) have custom zone ranges
2527                                for (bits = 0 ; bits < pDimensionDefinitions[i].zones ; bits++) {
2528                                    if (DimValues[i] <= pDimensionRegions[bits << bitpos]->DimensionUpperLimits[i]) break;
2529                                }
2530                            } else {
2531                                // gig2: evenly sized zones
2532                                bits = uint8_t(DimValues[i] / pDimensionDefinitions[i].zone_size);
2533                            }
2534                          break;                          break;
2535                      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
2536                          const uint8_t limiter_mask = (0xff << pDimensionDefinitions[i].bits) ^ 0xff;                          const uint8_t limiter_mask = (0xff << pDimensionDefinitions[i].bits) ^ 0xff;
# Line 2469  namespace { Line 2544  namespace {
2544          DimensionRegion* dimreg = pDimensionRegions[dimregidx];          DimensionRegion* dimreg = pDimensionRegions[dimregidx];
2545          if (veldim != -1) {          if (veldim != -1) {
2546              // (dimreg is now the dimension region for the lowest velocity)              // (dimreg is now the dimension region for the lowest velocity)
2547              if (dimreg->VelocityUpperLimit) // custom defined zone ranges              if (dimreg->VelocityTable) // custom defined zone ranges
2548                  bits = dimreg->VelocityTable[DimValues[veldim]];                  bits = dimreg->VelocityTable[DimValues[veldim]];
2549              else // normal split type              else // normal split type
2550                  bits = uint8_t(DimValues[veldim] / pDimensionDefinitions[veldim].zone_size);                  bits = uint8_t(DimValues[veldim] / pDimensionDefinitions[veldim].zone_size);
# Line 2535  namespace { Line 2610  namespace {
2610  // *  // *
2611    
2612      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) {
2613          pInfo->UseFixedLengthStrings = true;          static const DLS::Info::FixedStringLength fixedStringLengths[] = {
2614                { CHUNK_ID_INAM, 64 },
2615                { CHUNK_ID_ISFT, 12 },
2616                { 0, 0 }
2617            };
2618            pInfo->FixedStringLengths = fixedStringLengths;
2619    
2620          // Initialization          // Initialization
2621          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;          for (int i = 0; i < 128; i++) RegionKeyTable[i] = NULL;
2622            EffectSend = 0;
2623            Attenuation = 0;
2624            FineTune = 0;
2625            PitchbendRange = 0;
2626            PianoReleaseMode = false;
2627            DimensionKeyRange.low = 0;
2628            DimensionKeyRange.high = 0;
2629    
2630          // Loading          // Loading
2631          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);
# Line 2617  namespace { Line 2704  namespace {
2704          if (!_3ewg)  _3ewg = lart->AddSubChunk(CHUNK_ID_3EWG, 12);          if (!_3ewg)  _3ewg = lart->AddSubChunk(CHUNK_ID_3EWG, 12);
2705          // update '3ewg' RIFF chunk          // update '3ewg' RIFF chunk
2706          uint8_t* pData = (uint8_t*) _3ewg->LoadChunkData();          uint8_t* pData = (uint8_t*) _3ewg->LoadChunkData();
2707          memcpy(&pData[0], &EffectSend, 2);          store16(&pData[0], EffectSend);
2708          memcpy(&pData[2], &Attenuation, 4);          store32(&pData[2], Attenuation);
2709          memcpy(&pData[6], &FineTune, 2);          store16(&pData[6], FineTune);
2710          memcpy(&pData[8], &PitchbendRange, 2);          store16(&pData[8], PitchbendRange);
2711          const uint8_t dimkeystart = (PianoReleaseMode) ? 0x01 : 0x00 |          const uint8_t dimkeystart = (PianoReleaseMode) ? 0x01 : 0x00 |
2712                                      DimensionKeyRange.low << 1;                                      DimensionKeyRange.low << 1;
2713          memcpy(&pData[10], &dimkeystart, 1);          pData[10] = dimkeystart;
2714          memcpy(&pData[11], &DimensionKeyRange.high, 1);          pData[11] = DimensionKeyRange.high;
2715      }      }
2716    
2717      /**      /**
# Line 2711  namespace { Line 2798  namespace {
2798      }      }
2799    
2800      Group::~Group() {      Group::~Group() {
2801            // remove the chunk associated with this group (if any)
2802            if (pNameChunk) pNameChunk->GetParent()->DeleteSubChunk(pNameChunk);
2803      }      }
2804    
2805      /** @brief Update chunks with current group settings.      /** @brief Update chunks with current group settings.
2806       *       *
2807       * Apply current Group field values to the respective. You have to call       * Apply current Group field values to the respective chunks. You have
2808       * File::Save() to make changes persistent.       * to call File::Save() to make changes persistent.
2809         *
2810         * Usually there is absolutely no need to call this method explicitly.
2811         * It will be called automatically when File::Save() was called.
2812       */       */
2813      void Group::UpdateChunks() {      void Group::UpdateChunks() {
2814          // make sure <3gri> and <3gnl> list chunks exist          // make sure <3gri> and <3gnl> list chunks exist
2815          RIFF::List* _3gri = pFile->pRIFF->GetSubList(LIST_TYPE_3GRI);          RIFF::List* _3gri = pFile->pRIFF->GetSubList(LIST_TYPE_3GRI);
2816          if (!_3gri) _3gri = pFile->pRIFF->AddSubList(LIST_TYPE_3GRI);          if (!_3gri) {
2817                _3gri = pFile->pRIFF->AddSubList(LIST_TYPE_3GRI);
2818                pFile->pRIFF->MoveSubChunk(_3gri, pFile->pRIFF->GetSubChunk(CHUNK_ID_PTBL));
2819            }
2820          RIFF::List* _3gnl = _3gri->GetSubList(LIST_TYPE_3GNL);          RIFF::List* _3gnl = _3gri->GetSubList(LIST_TYPE_3GNL);
2821          if (!_3gnl) _3gnl = pFile->pRIFF->AddSubList(LIST_TYPE_3GNL);          if (!_3gnl) _3gnl = _3gri->AddSubList(LIST_TYPE_3GNL);
2822          // 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
2823          ::SaveString(CHUNK_ID_3GNM, pNameChunk, _3gnl, Name, String("Unnamed Group"), true, 64);          ::SaveString(CHUNK_ID_3GNM, pNameChunk, _3gnl, Name, String("Unnamed Group"), true, 64);
2824      }      }
# Line 2799  namespace { Line 2894  namespace {
2894  // *************** File ***************  // *************** File ***************
2895  // *  // *
2896    
2897        const DLS::Info::FixedStringLength File::FixedStringLengths[] = {
2898            { CHUNK_ID_IARL, 256 },
2899            { CHUNK_ID_IART, 128 },
2900            { CHUNK_ID_ICMS, 128 },
2901            { CHUNK_ID_ICMT, 1024 },
2902            { CHUNK_ID_ICOP, 128 },
2903            { CHUNK_ID_ICRD, 128 },
2904            { CHUNK_ID_IENG, 128 },
2905            { CHUNK_ID_IGNR, 128 },
2906            { CHUNK_ID_IKEY, 128 },
2907            { CHUNK_ID_IMED, 128 },
2908            { CHUNK_ID_INAM, 128 },
2909            { CHUNK_ID_IPRD, 128 },
2910            { CHUNK_ID_ISBJ, 128 },
2911            { CHUNK_ID_ISFT, 128 },
2912            { CHUNK_ID_ISRC, 128 },
2913            { CHUNK_ID_ISRF, 128 },
2914            { CHUNK_ID_ITCH, 128 },
2915            { 0, 0 }
2916        };
2917    
2918      File::File() : DLS::File() {      File::File() : DLS::File() {
2919          pGroups = NULL;          pGroups = NULL;
2920          pInfo->UseFixedLengthStrings = true;          pInfo->FixedStringLengths = FixedStringLengths;
2921            pInfo->ArchivalLocation = String(256, ' ');
2922    
2923            // add some mandatory chunks to get the file chunks in right
2924            // order (INFO chunk will be moved to first position later)
2925            pRIFF->AddSubChunk(CHUNK_ID_VERS, 8);
2926            pRIFF->AddSubChunk(CHUNK_ID_COLH, 4);
2927      }      }
2928    
2929      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {
2930          pGroups = NULL;          pGroups = NULL;
2931          pInfo->UseFixedLengthStrings = true;          pInfo->FixedStringLengths = FixedStringLengths;
2932      }      }
2933    
2934      File::~File() {      File::~File() {
# Line 2848  namespace { Line 2970  namespace {
2970         // create new Sample object and its respective 'wave' list chunk         // create new Sample object and its respective 'wave' list chunk
2971         RIFF::List* wave = wvpl->AddSubList(LIST_TYPE_WAVE);         RIFF::List* wave = wvpl->AddSubList(LIST_TYPE_WAVE);
2972         Sample* pSample = new Sample(this, wave, 0 /*arbitrary value, we update offsets when we save*/);         Sample* pSample = new Sample(this, wave, 0 /*arbitrary value, we update offsets when we save*/);
2973    
2974           // add mandatory chunks to get the chunks in right order
2975           wave->AddSubChunk(CHUNK_ID_FMT, 16);
2976           wave->AddSubList(LIST_TYPE_INFO);
2977    
2978         pSamples->push_back(pSample);         pSamples->push_back(pSample);
2979         return pSample;         return pSample;
2980      }      }
# Line 2864  namespace { Line 2991  namespace {
2991          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");
2992          SampleList::iterator iter = find(pSamples->begin(), pSamples->end(), (DLS::Sample*) pSample);          SampleList::iterator iter = find(pSamples->begin(), pSamples->end(), (DLS::Sample*) pSample);
2993          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");
2994            if (SamplesIterator != pSamples->end() && *SamplesIterator == pSample) ++SamplesIterator; // avoid iterator invalidation
2995          pSamples->erase(iter);          pSamples->erase(iter);
2996          delete pSample;          delete pSample;
2997      }      }
# Line 2875  namespace { Line 3003  namespace {
3003      void File::LoadSamples(progress_t* pProgress) {      void File::LoadSamples(progress_t* pProgress) {
3004          // Groups must be loaded before samples, because samples will try          // Groups must be loaded before samples, because samples will try
3005          // to resolve the group they belong to          // to resolve the group they belong to
3006          LoadGroups();          if (!pGroups) LoadGroups();
3007    
3008          if (!pSamples) pSamples = new SampleList;          if (!pSamples) pSamples = new SampleList;
3009    
# Line 2989  namespace { Line 3117  namespace {
3117         __ensureMandatoryChunksExist();         __ensureMandatoryChunksExist();
3118         RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);         RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);
3119         RIFF::List* lstInstr = lstInstruments->AddSubList(LIST_TYPE_INS);         RIFF::List* lstInstr = lstInstruments->AddSubList(LIST_TYPE_INS);
3120    
3121           // add mandatory chunks to get the chunks in right order
3122           lstInstr->AddSubList(LIST_TYPE_INFO);
3123    
3124         Instrument* pInstrument = new Instrument(this, lstInstr);         Instrument* pInstrument = new Instrument(this, lstInstr);
3125    
3126           lstInstr->AddSubChunk(CHUNK_ID_INSH, 12);
3127    
3128           // this string is needed for the gig to be loadable in GSt:
3129           pInstrument->pInfo->Software = "Endless Wave";
3130    
3131         pInstruments->push_back(pInstrument);         pInstruments->push_back(pInstrument);
3132         return pInstrument;         return pInstrument;
3133      }      }
# Line 3000  namespace { Line 3138  namespace {
3138       * have to call Save() to make this persistent to the file.       * have to call Save() to make this persistent to the file.
3139       *       *
3140       * @param pInstrument - instrument to delete       * @param pInstrument - instrument to delete
3141       * @throws gig::Excption if given instrument could not be found       * @throws gig::Exception if given instrument could not be found
3142       */       */
3143      void File::DeleteInstrument(Instrument* pInstrument) {      void File::DeleteInstrument(Instrument* pInstrument) {
3144          if (!pInstruments) throw gig::Exception("Could not delete instrument as there are no instruments");          if (!pInstruments) throw gig::Exception("Could not delete instrument as there are no instruments");
# Line 3078  namespace { Line 3216  namespace {
3216          return pGroup;          return pGroup;
3217      }      }
3218    
3219        /** @brief Delete a group and its samples.
3220         *
3221         * This will delete the given Group object and all the samples that
3222         * belong to this group from the gig file. You have to call Save() to
3223         * make this persistent to the file.
3224         *
3225         * @param pGroup - group to delete
3226         * @throws gig::Exception if given group could not be found
3227         */
3228      void File::DeleteGroup(Group* pGroup) {      void File::DeleteGroup(Group* pGroup) {
3229          if (!pGroups) LoadGroups();          if (!pGroups) LoadGroups();
3230          std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);          std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);
3231          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");
3232          if (pGroups->size() == 1) throw gig::Exception("Cannot delete group, there must be at least one default group!");          if (pGroups->size() == 1) throw gig::Exception("Cannot delete group, there must be at least one default group!");
3233            // delete all members of this group
3234            for (Sample* pSample = pGroup->GetFirstSample(); pSample; pSample = pGroup->GetNextSample()) {
3235                DeleteSample(pSample);
3236            }
3237            // now delete this group object
3238            pGroups->erase(iter);
3239            delete pGroup;
3240        }
3241    
3242        /** @brief Delete a group.
3243         *
3244         * This will delete the given Group object from the gig file. All the
3245         * samples that belong to this group will not be deleted, but instead
3246         * be moved to another group. You have to call Save() to make this
3247         * persistent to the file.
3248         *
3249         * @param pGroup - group to delete
3250         * @throws gig::Exception if given group could not be found
3251         */
3252        void File::DeleteGroupOnly(Group* pGroup) {
3253            if (!pGroups) LoadGroups();
3254            std::list<Group*>::iterator iter = find(pGroups->begin(), pGroups->end(), pGroup);
3255            if (iter == pGroups->end()) throw gig::Exception("Could not delete group, could not find given group");
3256            if (pGroups->size() == 1) throw gig::Exception("Cannot delete group, there must be at least one default group!");
3257          // move all members of this group to another group          // move all members of this group to another group
3258          pGroup->MoveAll();          pGroup->MoveAll();
3259          pGroups->erase(iter);          pGroups->erase(iter);
# Line 3113  namespace { Line 3284  namespace {
3284          }          }
3285      }      }
3286    
3287        /**
3288         * Apply all the gig file's current instruments, samples, groups and settings
3289         * to the respective RIFF chunks. You have to call Save() to make changes
3290         * persistent.
3291         *
3292         * Usually there is absolutely no need to call this method explicitly.
3293         * It will be called automatically when File::Save() was called.
3294         *
3295         * @throws Exception - on errors
3296         */
3297        void File::UpdateChunks() {
3298            RIFF::Chunk* info = pRIFF->GetSubList(LIST_TYPE_INFO);
3299    
3300            // first update base class's chunks
3301            DLS::File::UpdateChunks();
3302    
3303            if (!info) {
3304                // INFO was added by Resource::UpdateChunks - make sure it
3305                // is placed first in file
3306                info = pRIFF->GetSubList(LIST_TYPE_INFO);
3307                RIFF::Chunk* first = pRIFF->GetFirstSubChunk();
3308                if (first != info) {
3309                    pRIFF->MoveSubChunk(info, first);
3310                }
3311            }
3312    
3313            // update group's chunks
3314            if (pGroups) {
3315                std::list<Group*>::iterator iter = pGroups->begin();
3316                std::list<Group*>::iterator end  = pGroups->end();
3317                for (; iter != end; ++iter) {
3318                    (*iter)->UpdateChunks();
3319                }
3320            }
3321        }
3322    
3323    
3324    
3325  // *************** Exception ***************  // *************** Exception ***************

Legend:
Removed from v.933  
changed lines
  Added in v.1195

  ViewVC Help
Powered by ViewVC