/[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 1416 by schoenebeck, Sun Oct 14 12:06:32 2007 UTC revision 1875 by schoenebeck, Thu Mar 26 13:32:59 2009 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-2007 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2009 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 25  Line 25 
25    
26  #include "helper.h"  #include "helper.h"
27    
28    #include <algorithm>
29  #include <math.h>  #include <math.h>
30  #include <iostream>  #include <iostream>
31    
# Line 676  namespace { Line 677  namespace {
677          if (SampleCount > this->SamplesTotal) SampleCount = this->SamplesTotal;          if (SampleCount > this->SamplesTotal) SampleCount = this->SamplesTotal;
678          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;
679          unsigned long allocationsize = (SampleCount + NullSamplesCount) * this->FrameSize;          unsigned long allocationsize = (SampleCount + NullSamplesCount) * this->FrameSize;
680            SetPos(0); // reset read position to begin of sample
681          RAMCache.pStart            = new int8_t[allocationsize];          RAMCache.pStart            = new int8_t[allocationsize];
682          RAMCache.Size              = Read(RAMCache.pStart, SampleCount) * this->FrameSize;          RAMCache.Size              = Read(RAMCache.pStart, SampleCount) * this->FrameSize;
683          RAMCache.NullExtensionSize = allocationsize - RAMCache.Size;          RAMCache.NullExtensionSize = allocationsize - RAMCache.Size;
# Line 713  namespace { Line 715  namespace {
715          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;          if (RAMCache.pStart) delete[] (int8_t*) RAMCache.pStart;
716          RAMCache.pStart = NULL;          RAMCache.pStart = NULL;
717          RAMCache.Size   = 0;          RAMCache.Size   = 0;
718            RAMCache.NullExtensionSize = 0;
719      }      }
720    
721      /** @brief Resize sample.      /** @brief Resize sample.
# Line 907  namespace { Line 910  namespace {
910                                  }                                  }
911    
912                                  // reverse the sample frames for backward playback                                  // reverse the sample frames for backward playback
913                                  SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);                                  if (totalreadsamples > swapareastart) //FIXME: this if() is just a crash workaround for now (#102), but totalreadsamples <= swapareastart should never be the case, so there's probably still a bug above!
914                                        SwapMemoryArea(&pDst[swapareastart * this->FrameSize], (totalreadsamples - swapareastart) * this->FrameSize, this->FrameSize);
915                              }                              }
916                          } while (samplestoread && readsamples);                          } while (samplestoread && readsamples);
917                          break;                          break;
# Line 1834  namespace { Line 1838  namespace {
1838    
1839          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth
1840                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */
1841          pData[116] = eg3depth;          store16(&pData[116], eg3depth);
1842    
1843          // next 2 bytes unknown          // next 2 bytes unknown
1844    
# Line 2372  namespace { Line 2376  namespace {
2376    
2377          // Actual Loading          // Actual Loading
2378    
2379            if (!file->GetAutoLoad()) return;
2380    
2381          LoadDimensionRegions(rgnList);          LoadDimensionRegions(rgnList);
2382    
2383          RIFF::Chunk* _3lnk = rgnList->GetSubChunk(CHUNK_ID_3LNK);          RIFF::Chunk* _3lnk = rgnList->GetSubChunk(CHUNK_ID_3LNK);
# Line 2415  namespace { Line 2421  namespace {
2421              else              else
2422                  _3lnk->SetPos(44);                  _3lnk->SetPos(44);
2423    
2424              // load sample references              // load sample references (if auto loading is enabled)
2425              for (uint i = 0; i < DimensionRegions; i++) {              if (file->GetAutoLoad()) {
2426                  uint32_t wavepoolindex = _3lnk->ReadUint32();                  for (uint i = 0; i < DimensionRegions; i++) {
2427                  if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);                      uint32_t wavepoolindex = _3lnk->ReadUint32();
2428                        if (file->pWavePoolTable) pDimensionRegions[i]->pSample = GetSampleFromWavePool(wavepoolindex);
2429                    }
2430                    GetSample(); // load global region sample reference
2431              }              }
             GetSample(); // load global region sample reference  
2432          } else {          } else {
2433              DimensionRegions = 0;              DimensionRegions = 0;
2434              for (int i = 0 ; i < 8 ; i++) {              for (int i = 0 ; i < 8 ; i++) {
# Line 2919  namespace { Line 2927  namespace {
2927      }      }
2928    
2929    
2930    // *************** MidiRule ***************
2931    // *
2932    
2933    MidiRuleCtrlTrigger::MidiRuleCtrlTrigger(RIFF::Chunk* _3ewg) {
2934        _3ewg->SetPos(36);
2935        Triggers = _3ewg->ReadUint8();
2936        _3ewg->SetPos(40);
2937        ControllerNumber = _3ewg->ReadUint8();
2938        _3ewg->SetPos(46);
2939        for (int i = 0 ; i < Triggers ; i++) {
2940            pTriggers[i].TriggerPoint = _3ewg->ReadUint8();
2941            pTriggers[i].Descending = _3ewg->ReadUint8();
2942            pTriggers[i].VelSensitivity = _3ewg->ReadUint8();
2943            pTriggers[i].Key = _3ewg->ReadUint8();
2944            pTriggers[i].NoteOff = _3ewg->ReadUint8();
2945            pTriggers[i].Velocity = _3ewg->ReadUint8();
2946            pTriggers[i].OverridePedal = _3ewg->ReadUint8();
2947            _3ewg->ReadUint8();
2948        }
2949    }
2950    
2951    
2952  // *************** Instrument ***************  // *************** Instrument ***************
2953  // *  // *
# Line 2940  namespace { Line 2969  namespace {
2969          PianoReleaseMode = false;          PianoReleaseMode = false;
2970          DimensionKeyRange.low = 0;          DimensionKeyRange.low = 0;
2971          DimensionKeyRange.high = 0;          DimensionKeyRange.high = 0;
2972            pMidiRules = new MidiRule*[3];
2973            pMidiRules[0] = NULL;
2974    
2975          // Loading          // Loading
2976          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);
# Line 2954  namespace { Line 2985  namespace {
2985                  PianoReleaseMode       = dimkeystart & 0x01;                  PianoReleaseMode       = dimkeystart & 0x01;
2986                  DimensionKeyRange.low  = dimkeystart >> 1;                  DimensionKeyRange.low  = dimkeystart >> 1;
2987                  DimensionKeyRange.high = _3ewg->ReadUint8();                  DimensionKeyRange.high = _3ewg->ReadUint8();
2988    
2989                    if (_3ewg->GetSize() > 32) {
2990                        // read MIDI rules
2991                        int i = 0;
2992                        _3ewg->SetPos(32);
2993                        uint8_t id1 = _3ewg->ReadUint8();
2994                        uint8_t id2 = _3ewg->ReadUint8();
2995    
2996                        if (id1 == 4 && id2 == 16) {
2997                            pMidiRules[i++] = new MidiRuleCtrlTrigger(_3ewg);
2998                        }
2999                        //TODO: all the other types of rules
3000    
3001                        pMidiRules[i] = NULL;
3002                    }
3003              }              }
3004          }          }
3005    
3006          if (!pRegions) pRegions = new RegionList;          if (pFile->GetAutoLoad()) {
3007          RIFF::List* lrgn = insList->GetSubList(LIST_TYPE_LRGN);              if (!pRegions) pRegions = new RegionList;
3008          if (lrgn) {              RIFF::List* lrgn = insList->GetSubList(LIST_TYPE_LRGN);
3009              RIFF::List* rgn = lrgn->GetFirstSubList();              if (lrgn) {
3010              while (rgn) {                  RIFF::List* rgn = lrgn->GetFirstSubList();
3011                  if (rgn->GetListType() == LIST_TYPE_RGN) {                  while (rgn) {
3012                      __notify_progress(pProgress, (float) pRegions->size() / (float) Regions);                      if (rgn->GetListType() == LIST_TYPE_RGN) {
3013                      pRegions->push_back(new Region(this, rgn));                          __notify_progress(pProgress, (float) pRegions->size() / (float) Regions);
3014                            pRegions->push_back(new Region(this, rgn));
3015                        }
3016                        rgn = lrgn->GetNextSubList();
3017                  }                  }
3018                  rgn = lrgn->GetNextSubList();                  // Creating Region Key Table for fast lookup
3019                    UpdateRegionKeyTable();
3020              }              }
             // Creating Region Key Table for fast lookup  
             UpdateRegionKeyTable();  
3021          }          }
3022    
3023          __notify_progress(pProgress, 1.0f); // notify done          __notify_progress(pProgress, 1.0f); // notify done
# Line 2988  namespace { Line 3036  namespace {
3036      }      }
3037    
3038      Instrument::~Instrument() {      Instrument::~Instrument() {
3039            delete[] pMidiRules;
3040      }      }
3041    
3042      /**      /**
# Line 3102  namespace { Line 3151  namespace {
3151          UpdateRegionKeyTable();          UpdateRegionKeyTable();
3152      }      }
3153    
3154        /**
3155         * Returns a MIDI rule of the instrument.
3156         *
3157         * The list of MIDI rules, at least in gig v3, always contains at
3158         * most two rules. The second rule can only be the DEF filter
3159         * (which currently isn't supported by libgig).
3160         *
3161         * @param i - MIDI rule number
3162         * @returns   pointer address to MIDI rule number i or NULL if there is none
3163         */
3164        MidiRule* Instrument::GetMidiRule(int i) {
3165            return pMidiRules[i];
3166        }
3167    
3168    
3169  // *************** Group ***************  // *************** Group ***************
# Line 3259  namespace { Line 3321  namespace {
3321      };      };
3322    
3323      File::File() : DLS::File() {      File::File() : DLS::File() {
3324            bAutoLoad = true;
3325          *pVersion = VERSION_3;          *pVersion = VERSION_3;
3326          pGroups = NULL;          pGroups = NULL;
3327          pInfo->SetFixedStringLengths(_FileFixedStringLengths);          pInfo->SetFixedStringLengths(_FileFixedStringLengths);
# Line 3274  namespace { Line 3337  namespace {
3337      }      }
3338    
3339      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {      File::File(RIFF::File* pRIFF) : DLS::File(pRIFF) {
3340            bAutoLoad = true;
3341          pGroups = NULL;          pGroups = NULL;
3342          pInfo->SetFixedStringLengths(_FileFixedStringLengths);          pInfo->SetFixedStringLengths(_FileFixedStringLengths);
3343      }      }
# Line 3343  namespace { Line 3407  namespace {
3407          pSamples->erase(iter);          pSamples->erase(iter);
3408          delete pSample;          delete pSample;
3409    
3410            SampleList::iterator tmp = SamplesIterator;
3411          // remove all references to the sample          // remove all references to the sample
3412          for (Instrument* instrument = GetFirstInstrument() ; instrument ;          for (Instrument* instrument = GetFirstInstrument() ; instrument ;
3413               instrument = GetNextInstrument()) {               instrument = GetNextInstrument()) {
# Line 3357  namespace { Line 3422  namespace {
3422                  }                  }
3423              }              }
3424          }          }
3425            SamplesIterator = tmp; // restore iterator
3426      }      }
3427    
3428      void File::LoadSamples() {      void File::LoadSamples() {
# Line 3447  namespace { Line 3513  namespace {
3513              progress_t subprogress;              progress_t subprogress;
3514              __divide_progress(pProgress, &subprogress, 3.0f, 0.0f); // randomly schedule 33% for this subtask              __divide_progress(pProgress, &subprogress, 3.0f, 0.0f); // randomly schedule 33% for this subtask
3515              __notify_progress(&subprogress, 0.0f);              __notify_progress(&subprogress, 0.0f);
3516              GetFirstSample(&subprogress); // now force all samples to be loaded              if (GetAutoLoad())
3517                    GetFirstSample(&subprogress); // now force all samples to be loaded
3518              __notify_progress(&subprogress, 1.0f);              __notify_progress(&subprogress, 1.0f);
3519    
3520              // instrument loading subtask              // instrument loading subtask
# Line 3854  namespace { Line 3921  namespace {
3921          }          }
3922      }      }
3923    
3924        /**
3925         * Enable / disable automatic loading. By default this properyt is
3926         * enabled and all informations are loaded automatically. However
3927         * loading all Regions, DimensionRegions and especially samples might
3928         * take a long time for large .gig files, and sometimes one might only
3929         * be interested in retrieving very superficial informations like the
3930         * amount of instruments and their names. In this case one might disable
3931         * automatic loading to avoid very slow response times.
3932         *
3933         * @e CAUTION: by disabling this property many pointers (i.e. sample
3934         * references) and informations will have invalid or even undefined
3935         * data! This feature is currently only intended for retrieving very
3936         * superficial informations in a very fast way. Don't use it to retrieve
3937         * details like synthesis informations or even to modify .gig files!
3938         */
3939        void File::SetAutoLoad(bool b) {
3940            bAutoLoad = b;
3941        }
3942    
3943        /**
3944         * Returns whether automatic loading is enabled.
3945         * @see SetAutoLoad()
3946         */
3947        bool File::GetAutoLoad() {
3948            return bAutoLoad;
3949        }
3950    
3951    
3952    
3953  // *************** Exception ***************  // *************** Exception ***************

Legend:
Removed from v.1416  
changed lines
  Added in v.1875

  ViewVC Help
Powered by ViewVC