/[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 1524 by schoenebeck, Sun Nov 25 17:29:37 2007 UTC revision 1869 by persson, Sun Mar 22 11:13:25 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 1834  namespace { Line 1837  namespace {
1837    
1838          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth          const uint16_t eg3depth = (EG3Depth >= 0) ? EG3Depth
1839                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */                                                    : uint16_t(((-EG3Depth) - 1) ^ 0xffff); /* binary complementary for negatives */
1840          pData[116] = eg3depth;          store16(&pData[116], eg3depth);
1841    
1842          // next 2 bytes unknown          // next 2 bytes unknown
1843    
# Line 2923  namespace { Line 2926  namespace {
2926      }      }
2927    
2928    
2929    // *************** MidiRule ***************
2930    // *
2931    
2932    MidiRuleCtrlTrigger::MidiRuleCtrlTrigger(RIFF::Chunk* _3ewg) {
2933        _3ewg->SetPos(36);
2934        Triggers = _3ewg->ReadUint8();
2935        _3ewg->SetPos(40);
2936        ControllerNumber = _3ewg->ReadUint8();
2937        _3ewg->SetPos(46);
2938        for (int i = 0 ; i < Triggers ; i++) {
2939            pTriggers[i].TriggerPoint = _3ewg->ReadUint8();
2940            pTriggers[i].Descending = _3ewg->ReadUint8();
2941            pTriggers[i].VelSensitivity = _3ewg->ReadUint8();
2942            pTriggers[i].Key = _3ewg->ReadUint8();
2943            pTriggers[i].NoteOff = _3ewg->ReadUint8();
2944            pTriggers[i].Velocity = _3ewg->ReadUint8();
2945            pTriggers[i].OverridePedal = _3ewg->ReadUint8();
2946            _3ewg->ReadUint8();
2947        }
2948    }
2949    
2950    
2951  // *************** Instrument ***************  // *************** Instrument ***************
2952  // *  // *
# Line 2944  namespace { Line 2968  namespace {
2968          PianoReleaseMode = false;          PianoReleaseMode = false;
2969          DimensionKeyRange.low = 0;          DimensionKeyRange.low = 0;
2970          DimensionKeyRange.high = 0;          DimensionKeyRange.high = 0;
2971            pMidiRules = new MidiRule*[3];
2972            pMidiRules[0] = NULL;
2973    
2974          // Loading          // Loading
2975          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);          RIFF::List* lart = insList->GetSubList(LIST_TYPE_LART);
# Line 2958  namespace { Line 2984  namespace {
2984                  PianoReleaseMode       = dimkeystart & 0x01;                  PianoReleaseMode       = dimkeystart & 0x01;
2985                  DimensionKeyRange.low  = dimkeystart >> 1;                  DimensionKeyRange.low  = dimkeystart >> 1;
2986                  DimensionKeyRange.high = _3ewg->ReadUint8();                  DimensionKeyRange.high = _3ewg->ReadUint8();
2987    
2988                    if (_3ewg->GetSize() > 32) {
2989                        // read MIDI rules
2990                        int i = 0;
2991                        _3ewg->SetPos(32);
2992                        uint8_t id1 = _3ewg->ReadUint8();
2993                        uint8_t id2 = _3ewg->ReadUint8();
2994    
2995                        if (id1 == 4 && id2 == 16) {
2996                            pMidiRules[i++] = new MidiRuleCtrlTrigger(_3ewg);
2997                        }
2998                        //TODO: all the other types of rules
2999    
3000                        pMidiRules[i] = NULL;
3001                    }
3002              }              }
3003          }          }
3004    
# Line 2994  namespace { Line 3035  namespace {
3035      }      }
3036    
3037      Instrument::~Instrument() {      Instrument::~Instrument() {
3038            delete[] pMidiRules;
3039      }      }
3040    
3041      /**      /**
# Line 3108  namespace { Line 3150  namespace {
3150          UpdateRegionKeyTable();          UpdateRegionKeyTable();
3151      }      }
3152    
3153        /**
3154         * Returns a MIDI rule of the instrument.
3155         *
3156         * The list of MIDI rules, at least in gig v3, always contains at
3157         * most two rules. The second rule can only be the DEF filter
3158         * (which currently isn't supported by libgig).
3159         *
3160         * @param i - MIDI rule number
3161         * @returns   pointer address to MIDI rule number i or NULL if there is none
3162         */
3163        MidiRule* Instrument::GetMidiRule(int i) {
3164            return pMidiRules[i];
3165        }
3166    
3167    
3168  // *************** Group ***************  // *************** Group ***************
# Line 3351  namespace { Line 3406  namespace {
3406          pSamples->erase(iter);          pSamples->erase(iter);
3407          delete pSample;          delete pSample;
3408    
3409            SampleList::iterator tmp = SamplesIterator;
3410          // remove all references to the sample          // remove all references to the sample
3411          for (Instrument* instrument = GetFirstInstrument() ; instrument ;          for (Instrument* instrument = GetFirstInstrument() ; instrument ;
3412               instrument = GetNextInstrument()) {               instrument = GetNextInstrument()) {
# Line 3365  namespace { Line 3421  namespace {
3421                  }                  }
3422              }              }
3423          }          }
3424            SamplesIterator = tmp; // restore iterator
3425      }      }
3426    
3427      void File::LoadSamples() {      void File::LoadSamples() {

Legend:
Removed from v.1524  
changed lines
  Added in v.1869

  ViewVC Help
Powered by ViewVC