/[svn]/libgig/trunk/src/DLS.h
ViewVC logotype

Diff of /libgig/trunk/src/DLS.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 823 by schoenebeck, Fri Dec 23 01:38:50 2005 UTC revision 1416 by schoenebeck, Sun Oct 14 12:06:32 2007 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file loader library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2005 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 90  Line 90 
90  # define CHUNK_ID_IENG  0x474E4549  # define CHUNK_ID_IENG  0x474E4549
91  # define CHUNK_ID_IGNR  0x524E4749  # define CHUNK_ID_IGNR  0x524E4749
92  # define CHUNK_ID_IKEY  0x59454B49  # define CHUNK_ID_IKEY  0x59454B49
93  # define CHUNK_ID_IMED  0x44525049  # define CHUNK_ID_IMED  0x44454D49
94  # define CHUNK_ID_INAM  0x4D414E49  # define CHUNK_ID_INAM  0x4D414E49
95  # define CHUNK_ID_IPRD  0x44525049  # define CHUNK_ID_IPRD  0x44525049
96  # define CHUNK_ID_ISBJ  0x4A425349  # define CHUNK_ID_ISBJ  0x4A425349
# Line 112  Line 112 
112  # define CHUNK_ID_ART2  0x32747261  # define CHUNK_ID_ART2  0x32747261
113  #endif // WORDS_BIGENDIAN  #endif // WORDS_BIGENDIAN
114    
115  #define WAVE_FORMAT_PCM                 0x0001  #define DLS_WAVE_FORMAT_PCM                     0x0001
116    
117  //TODO: no support for conditional chunks <cdl> yet  //TODO: no support for conditional chunks <cdl> yet
118    
# Line 224  namespace DLS { Line 224  namespace DLS {
224    
225      /** Defines Sample Loop Points. */      /** Defines Sample Loop Points. */
226      struct sample_loop_t {      struct sample_loop_t {
227          uint32_t Size;          uint32_t Size;       ///< For internal usage only: usually reflects exactly @c sizeof(sample_loop_t), otherwise if the value is larger then the DLS format was extended!
228          uint32_t LoopType;          uint32_t LoopType;   ///< Defines how the waveform samples will be looped (appropriate loop types for the gig format are defined by gig::loop_type_t).
229          uint32_t LoopStart;          uint32_t LoopStart;  ///< The start value specifies the offset (in sample points) in the waveform data of the first sample point to be played in the loop.
230          uint32_t LoopLength;          uint32_t LoopLength; ///< Length of the looping area (in sample points).
231      };      };
232    
233      // just symbol prototyping      // just symbol prototyping
# Line 315  namespace DLS { Line 315  namespace DLS {
315              String Source;           ///< <ISRC-ck>. Identifies the name of the person or organization who supplied the original subject of the file.              String Source;           ///< <ISRC-ck>. Identifies the name of the person or organization who supplied the original subject of the file.
316              String SourceForm;       ///< <ISRF-ck>. Identifies the original form of the material that was digitized, such as record, sampling CD, TV sound track. This is not neccessarily the same as <i>Medium</i>.              String SourceForm;       ///< <ISRF-ck>. Identifies the original form of the material that was digitized, such as record, sampling CD, TV sound track. This is not neccessarily the same as <i>Medium</i>.
317              String Commissioned;     ///< <ICMS-ck>. Lists the name of the person or organization that commissioned the subject of the file, e.g., Pope Julian II.              String Commissioned;     ///< <ICMS-ck>. Lists the name of the person or organization that commissioned the subject of the file, e.g., Pope Julian II.
318                String Subject;          ///< <ISBJ-ck>. Describes the contents of the file.
319                bool UseFixedLengthStrings; ///< @deprecated Not used anymore, use SetFixedStringLengths() instead.
320    
321                struct string_length_t {
322                    uint32_t chunkId;
323                    int      length;
324                };
325    
326              Info(RIFF::List* list);              Info(RIFF::List* list);
327                void SetFixedStringLengths(const string_length_t* lengths);
328              virtual ~Info();              virtual ~Info();
329              virtual void UpdateChunks();              virtual void UpdateChunks();
330          private:          private:
331              RIFF::List* pResourceListChunk;              RIFF::List*            pResourceListChunk;
332                const string_length_t* pFixedStringLengths; ///< List of IDs and string lengths for strings that should be stored in a fixed length format. This is used for gig files, not for ordinary DLS files.
333    
334              void LoadString(uint32_t ChunkID, RIFF::List* lstINFO, String& s);              static void LoadString(uint32_t ChunkID, RIFF::List* lstINFO, String& s);
335              void SaveString(uint32_t ChunkID, RIFF::List* lstINFO, const String& s, const String& sDefault);              void SaveString(uint32_t ChunkID, RIFF::List* lstINFO, const String& s, const String& sDefault);
336      };      };
337    
# Line 334  namespace DLS { Line 343  namespace DLS {
343    
344              Resource* GetParent() { return pParent; };              Resource* GetParent() { return pParent; };
345              virtual void UpdateChunks();              virtual void UpdateChunks();
346                void GenerateDLSID();
347          protected:          protected:
348              Resource* pParent;              Resource* pParent;
349              RIFF::List* pResourceList;              RIFF::List* pResourceList;
# Line 347  namespace DLS { Line 357  namespace DLS {
357          public:          public:
358              uint8_t        UnityNote;              uint8_t        UnityNote;
359              int16_t        FineTune;              int16_t        FineTune;
360              int32_t        Gain;              int32_t        Gain; ///< @deprecated Don't alter directly, use SetGain() instead!
361              bool           NoSampleDepthTruncation;              bool           NoSampleDepthTruncation;
362              bool           NoSampleCompression;              bool           NoSampleCompression;
363              uint32_t       SampleLoops;  ///< Reflects the number of sample loops.              uint32_t       SampleLoops;  ///< Reflects the number of sample loops.
364              sample_loop_t* pSampleLoops; ///< Points to the beginning of a sample loop array, or is NULL if there are no loops defined.              sample_loop_t* pSampleLoops; ///< Points to the beginning of a sample loop array, or is NULL if there are no loops defined.
365    
366                void AddSampleLoop(sample_loop_t* pLoopDef);
367                void DeleteSampleLoop(sample_loop_t* pLoopDef);
368                virtual void SetGain(int32_t gain);
369              virtual void UpdateChunks();              virtual void UpdateChunks();
370          protected:          protected:
371              RIFF::List*    pParentList;              RIFF::List*    pParentList;
# Line 372  namespace DLS { Line 385  namespace DLS {
385       */       */
386      class Sample : public Resource {      class Sample : public Resource {
387          public:          public:
388              uint16_t      FormatTag;             ///< Format ID of the waveform data (should be WAVE_FORMAT_PCM for DLS1 compliant files, this is also the default value if Sample was created with Instrument::AddSample()).              uint16_t      FormatTag;             ///< Format ID of the waveform data (should be DLS_WAVE_FORMAT_PCM for DLS1 compliant files, this is also the default value if Sample was created with Instrument::AddSample()).
389              uint16_t      Channels;              ///< Number of channels represented in the waveform data, e.g. 1 for mono, 2 for stereo (defaults to 1=mono if Sample was created with Instrument::AddSample() previously).              uint16_t      Channels;              ///< Number of channels represented in the waveform data, e.g. 1 for mono, 2 for stereo (defaults to 1=mono if Sample was created with Instrument::AddSample() previously).
390              uint32_t      SamplesPerSecond;      ///< Sampling rate at which each channel should be played (defaults to 44100 if Sample was created with Instrument::AddSample() previously).              uint32_t      SamplesPerSecond;      ///< Sampling rate at which each channel should be played (defaults to 44100 if Sample was created with Instrument::AddSample() previously).
391              uint32_t      AverageBytesPerSecond; ///< The average number of bytes per second at which the waveform data should be transferred (Playback software can estimate the buffer size using this value).              uint32_t      AverageBytesPerSecond; ///< The average number of bytes per second at which the waveform data should be transferred (Playback software can estimate the buffer size using this value).
# Line 404  namespace DLS { Line 417  namespace DLS {
417      /** Defines <i>Region</i> information of an <i>Instrument</i>. */      /** Defines <i>Region</i> information of an <i>Instrument</i>. */
418      class Region : public Resource, public Articulator, public Sampler {      class Region : public Resource, public Articulator, public Sampler {
419          public:          public:
420              range_t     KeyRange;              range_t     KeyRange; ///< @deprecated Only read, don't write! Use SetKeyRange() instead.
421              range_t     VelocityRange;              range_t     VelocityRange;
422              uint16_t    KeyGroup;              uint16_t    KeyGroup;
423              uint16_t    Layer;              uint16_t    Layer;
# Line 416  namespace DLS { Line 429  namespace DLS {
429    
430              Sample*     GetSample();              Sample*     GetSample();
431              void        SetSample(Sample* pSample);              void        SetSample(Sample* pSample);
432                virtual void SetKeyRange(uint16_t Low, uint16_t High);
433              virtual void UpdateChunks();              virtual void UpdateChunks();
434          protected:          protected:
435              RIFF::List* pCkRegion;              RIFF::List* pCkRegion;
# Line 459  namespace DLS { Line 473  namespace DLS {
473              virtual void LoadRegions();              virtual void LoadRegions();
474              virtual ~Instrument();              virtual ~Instrument();
475              friend class File;              friend class File;
476                friend class Region;
477            private:
478                void MoveRegion(Region* pSrc, Region* pDst);
479      };      };
480    
481      /** Parses DLS Level 1 and 2 compliant files and provides abstract access to the data. */      /** Parses DLS Level 1 and 2 compliant files and provides abstract access to the data. */
# Line 486  namespace DLS { Line 503  namespace DLS {
503              typedef std::list<Instrument*> InstrumentList;              typedef std::list<Instrument*> InstrumentList;
504    
505              RIFF::File*              pRIFF;              RIFF::File*              pRIFF;
506                std::list<RIFF::File*>   ExtensionFiles;
507              SampleList*              pSamples;              SampleList*              pSamples;
508              SampleList::iterator     SamplesIterator;              SampleList::iterator     SamplesIterator;
509              InstrumentList*          pInstruments;              InstrumentList*          pInstruments;
# Line 505  namespace DLS { Line 523  namespace DLS {
523              void __UpdateWavePoolTable();              void __UpdateWavePoolTable();
524      };      };
525    
526      /** Will be thrown whenever a DLS specific error occurs while trying to access a DLS File. */      /**
527         * Will be thrown whenever a DLS specific error occurs while trying to
528         * access a DLS File. Note: In your application you should better catch
529         * for RIFF::Exception rather than this one, except you explicitly want
530         * to catch and handle DLS::Exception and RIFF::Exception independently,
531         * which usually shouldn't be necessary though.
532         */
533      class Exception : public RIFF::Exception {      class Exception : public RIFF::Exception {
534          public:          public:
535              Exception(String Message);              Exception(String Message);

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

  ViewVC Help
Powered by ViewVC