/[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 1627 by persson, Sun Jan 6 10:53:53 2008 UTC revision 1950 by persson, Wed Jul 29 08:57:46 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 2965  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 2969  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
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 2982  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 2988  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
2988    
2989                  if (_3ewg->GetSize() > 32) {                  if (_3ewg->GetSize() > 32) {
2990                      // read MIDI rules                      // read MIDI rules
2991                        int i = 0;
2992                      _3ewg->SetPos(32);                      _3ewg->SetPos(32);
2993                      uint8_t id1 = _3ewg->ReadUint8();                      uint8_t id1 = _3ewg->ReadUint8();
2994                      uint8_t id2 = _3ewg->ReadUint8();                      uint8_t id2 = _3ewg->ReadUint8();
2995    
2996                      if (id1 == 4 && id2 == 16) {                      if (id1 == 4 && id2 == 16) {
2997                          MidiRules.push_back(new MidiRuleCtrlTrigger(_3ewg));                          pMidiRules[i++] = new MidiRuleCtrlTrigger(_3ewg);
2998                      }                      }
2999                      //TODO: all the other types of rules                      //TODO: all the other types of rules
3000    
3001                        pMidiRules[i] = NULL;
3002                  }                  }
3003              }              }
3004          }          }
# Line 3027  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 3036  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
3036      }      }
3037    
3038      Instrument::~Instrument() {      Instrument::~Instrument() {
3039            for (int i = 0 ; pMidiRules[i] ; i++) {
3040                delete pMidiRules[i];
3041            }
3042            delete[] pMidiRules;
3043      }      }
3044    
3045      /**      /**
# Line 3142  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 3155  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
3155      }      }
3156    
3157      /**      /**
3158       * Returns the first MIDI rule of the instrument. You have to call       * Returns a MIDI rule of the instrument.
      * this method once before you use GetNextMidiRule().  
3159       *       *
3160       * The list of MIDI rules, at least in gig v3, always contains at       * The list of MIDI rules, at least in gig v3, always contains at
3161       * most two rules. The second rule can only be the DEF filter       * most two rules. The second rule can only be the DEF filter
3162       * (which currently isn't supported by libgig).       * (which currently isn't supported by libgig).
3163       *       *
3164       * @returns  pointer address to first MIDI rule or NULL if there is none       * @param i - MIDI rule number
3165       * @see      GetNextMidiRule()       * @returns   pointer address to MIDI rule number i or NULL if there is none
      */  
     MidiRule* Instrument::GetFirstMidiRule() {  
         MidiRulesIterator = MidiRules.begin();  
         return MidiRulesIterator != MidiRules.end() ? *MidiRulesIterator : NULL;  
     }  
   
     /**  
      * Returns the next MIDI rule of the instrument. You have to call  
      * GetFirstMidiRule() once before you can use this method. By  
      * calling this method multiple times it iterates through the  
      * available rules.  
      *  
      * @returns  pointer address to the next MIDI rule or NULL if end reached  
      * @see      GetFirstMidiRule()  
3166       */       */
3167      MidiRule* Instrument::GetNextMidiRule() {      MidiRule* Instrument::GetMidiRule(int i) {
3168          MidiRulesIterator++;          return pMidiRules[i];
         return MidiRulesIterator != MidiRules.end() ? *MidiRulesIterator : NULL;  
3169      }      }
3170    
3171    
# Line 3413  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 3410  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
3410          pSamples->erase(iter);          pSamples->erase(iter);
3411          delete pSample;          delete pSample;
3412    
3413            SampleList::iterator tmp = SamplesIterator;
3414          // remove all references to the sample          // remove all references to the sample
3415          for (Instrument* instrument = GetFirstInstrument() ; instrument ;          for (Instrument* instrument = GetFirstInstrument() ; instrument ;
3416               instrument = GetNextInstrument()) {               instrument = GetNextInstrument()) {
# Line 3427  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger Line 3425  MidiRuleCtrlTrigger::MidiRuleCtrlTrigger
3425                  }                  }
3426              }              }
3427          }          }
3428            SamplesIterator = tmp; // restore iterator
3429      }      }
3430    
3431      void File::LoadSamples() {      void File::LoadSamples() {

Legend:
Removed from v.1627  
changed lines
  Added in v.1950

  ViewVC Help
Powered by ViewVC