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

Annotation of /libgig/trunk/src/DLS.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 928 - (hide annotations) (download)
Tue Oct 24 19:32:47 2006 UTC (17 years, 5 months ago) by persson
File size: 61287 byte(s)
* added DLS INFO string Subject and fixed string Media
* fixed SamplePeriod calculation

1 schoenebeck 2 /***************************************************************************
2     * *
3     * libgig - C++ cross-platform Gigasampler format file loader library *
4     * *
5 schoenebeck 384 * Copyright (C) 2003-2005 by Christian Schoenebeck *
6     * <cuse@users.sourceforge.net> *
7 schoenebeck 2 * *
8     * This library is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This library is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this library; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #include "DLS.h"
25    
26 schoenebeck 800 #include <time.h>
27    
28     #include "helper.h"
29    
30     // macros to decode connection transforms
31     #define CONN_TRANSFORM_SRC(x) ((x >> 10) & 0x000F)
32     #define CONN_TRANSFORM_CTL(x) ((x >> 4) & 0x000F)
33     #define CONN_TRANSFORM_DST(x) (x & 0x000F)
34     #define CONN_TRANSFORM_BIPOLAR_SRC(x) (x & 0x4000)
35     #define CONN_TRANSFORM_BIPOLAR_CTL(x) (x & 0x0100)
36     #define CONN_TRANSFORM_INVERT_SRC(x) (x & 0x8000)
37     #define CONN_TRANSFORM_INVERT_CTL(x) (x & 0x0200)
38    
39     // macros to encode connection transforms
40     #define CONN_TRANSFORM_SRC_ENCODE(x) ((x & 0x000F) << 10)
41     #define CONN_TRANSFORM_CTL_ENCODE(x) ((x & 0x000F) << 4)
42     #define CONN_TRANSFORM_DST_ENCODE(x) (x & 0x000F)
43     #define CONN_TRANSFORM_BIPOLAR_SRC_ENCODE(x) ((x) ? 0x4000 : 0)
44     #define CONN_TRANSFORM_BIPOLAR_CTL_ENCODE(x) ((x) ? 0x0100 : 0)
45     #define CONN_TRANSFORM_INVERT_SRC_ENCODE(x) ((x) ? 0x8000 : 0)
46     #define CONN_TRANSFORM_INVERT_CTL_ENCODE(x) ((x) ? 0x0200 : 0)
47    
48 persson 918 #define DRUM_TYPE_MASK 0x80000000
49 schoenebeck 800
50     #define F_RGN_OPTION_SELFNONEXCLUSIVE 0x0001
51    
52     #define F_WAVELINK_PHASE_MASTER 0x0001
53     #define F_WAVELINK_MULTICHANNEL 0x0002
54    
55     #define F_WSMP_NO_TRUNCATION 0x0001
56     #define F_WSMP_NO_COMPRESSION 0x0002
57    
58     #define MIDI_BANK_COARSE(x) ((x & 0x00007F00) >> 8) // CC0
59     #define MIDI_BANK_FINE(x) (x & 0x0000007F) // CC32
60     #define MIDI_BANK_MERGE(coarse, fine) ((((uint16_t) coarse) << 7) | fine) // CC0 + CC32
61     #define MIDI_BANK_ENCODE(coarse, fine) (((coarse & 0x0000007F) << 8) | (fine & 0x0000007F))
62    
63 schoenebeck 2 namespace DLS {
64    
65     // *************** Connection ***************
66     // *
67    
68     void Connection::Init(conn_block_t* Header) {
69     Source = (conn_src_t) Header->source;
70     Control = (conn_src_t) Header->control;
71     Destination = (conn_dst_t) Header->destination;
72     Scale = Header->scale;
73     SourceTransform = (conn_trn_t) CONN_TRANSFORM_SRC(Header->transform);
74     ControlTransform = (conn_trn_t) CONN_TRANSFORM_CTL(Header->transform);
75     DestinationTransform = (conn_trn_t) CONN_TRANSFORM_DST(Header->transform);
76     SourceInvert = CONN_TRANSFORM_INVERT_SRC(Header->transform);
77     SourceBipolar = CONN_TRANSFORM_BIPOLAR_SRC(Header->transform);
78     ControlInvert = CONN_TRANSFORM_INVERT_CTL(Header->transform);
79     ControlBipolar = CONN_TRANSFORM_BIPOLAR_CTL(Header->transform);
80     }
81    
82 schoenebeck 800 Connection::conn_block_t Connection::ToConnBlock() {
83     conn_block_t c;
84     c.source = Source;
85     c.control = Control;
86     c.destination = Destination;
87     c.scale = Scale;
88     c.transform = CONN_TRANSFORM_SRC_ENCODE(SourceTransform) |
89     CONN_TRANSFORM_CTL_ENCODE(ControlTransform) |
90     CONN_TRANSFORM_DST_ENCODE(DestinationTransform) |
91     CONN_TRANSFORM_INVERT_SRC_ENCODE(SourceInvert) |
92     CONN_TRANSFORM_BIPOLAR_SRC_ENCODE(SourceBipolar) |
93     CONN_TRANSFORM_INVERT_CTL_ENCODE(ControlInvert) |
94     CONN_TRANSFORM_BIPOLAR_CTL_ENCODE(ControlBipolar);
95     return c;
96     }
97 schoenebeck 2
98    
99 schoenebeck 800
100 schoenebeck 2 // *************** Articulation ***************
101     // *
102    
103 schoenebeck 800 /** @brief Constructor.
104     *
105     * Expects an 'artl' or 'art2' chunk to be given where the articulation
106     * connections will be read from.
107     *
108     * @param artl - pointer to an 'artl' or 'art2' chunk
109     * @throws Exception if no 'artl' or 'art2' chunk was given
110     */
111     Articulation::Articulation(RIFF::Chunk* artl) {
112     pArticulationCk = artl;
113     if (artl->GetChunkID() != CHUNK_ID_ART2 &&
114     artl->GetChunkID() != CHUNK_ID_ARTL) {
115     throw DLS::Exception("<artl-ck> or <art2-ck> chunk expected");
116 schoenebeck 2 }
117 schoenebeck 800 HeaderSize = artl->ReadUint32();
118     Connections = artl->ReadUint32();
119     artl->SetPos(HeaderSize);
120 schoenebeck 2
121     pConnections = new Connection[Connections];
122     Connection::conn_block_t connblock;
123 schoenebeck 800 for (uint32_t i = 0; i < Connections; i++) {
124     artl->Read(&connblock.source, 1, 2);
125     artl->Read(&connblock.control, 1, 2);
126     artl->Read(&connblock.destination, 1, 2);
127     artl->Read(&connblock.transform, 1, 2);
128     artl->Read(&connblock.scale, 1, 4);
129 schoenebeck 2 pConnections[i].Init(&connblock);
130     }
131     }
132    
133     Articulation::~Articulation() {
134     if (pConnections) delete[] pConnections;
135     }
136    
137 schoenebeck 800 /**
138     * Apply articulation connections to the respective RIFF chunks. You
139     * have to call File::Save() to make changes persistent.
140     */
141     void Articulation::UpdateChunks() {
142     const int iEntrySize = 12; // 12 bytes per connection block
143     pArticulationCk->Resize(HeaderSize + Connections * iEntrySize);
144     uint8_t* pData = (uint8_t*) pArticulationCk->LoadChunkData();
145 persson 918 memcpy(&pData[0], &HeaderSize, 2);
146     memcpy(&pData[2], &Connections, 2);
147 schoenebeck 800 for (uint32_t i = 0; i < Connections; i++) {
148     Connection::conn_block_t c = pConnections[i].ToConnBlock();
149 persson 918 memcpy(&pData[HeaderSize + i * iEntrySize], &c.source, 2);
150     memcpy(&pData[HeaderSize + i * iEntrySize + 2], &c.control, 2);
151     memcpy(&pData[HeaderSize + i * iEntrySize + 4], &c.destination, 2);
152     memcpy(&pData[HeaderSize + i * iEntrySize + 6], &c.transform, 2);
153     memcpy(&pData[HeaderSize + i * iEntrySize + 8], &c.scale, 4);
154 schoenebeck 800 }
155     }
156 schoenebeck 2
157    
158 schoenebeck 800
159 schoenebeck 2 // *************** Articulator ***************
160     // *
161    
162     Articulator::Articulator(RIFF::List* ParentList) {
163     pParentList = ParentList;
164     pArticulations = NULL;
165     }
166    
167     Articulation* Articulator::GetFirstArticulation() {
168     if (!pArticulations) LoadArticulations();
169     if (!pArticulations) return NULL;
170     ArticulationsIterator = pArticulations->begin();
171     return (ArticulationsIterator != pArticulations->end()) ? *ArticulationsIterator : NULL;
172     }
173    
174     Articulation* Articulator::GetNextArticulation() {
175     if (!pArticulations) return NULL;
176     ArticulationsIterator++;
177     return (ArticulationsIterator != pArticulations->end()) ? *ArticulationsIterator : NULL;
178     }
179    
180     void Articulator::LoadArticulations() {
181     // prefer articulation level 2
182     RIFF::List* lart = pParentList->GetSubList(LIST_TYPE_LAR2);
183     if (!lart) lart = pParentList->GetSubList(LIST_TYPE_LART);
184     if (lart) {
185 schoenebeck 800 uint32_t artCkType = (lart->GetListType() == LIST_TYPE_LAR2) ? CHUNK_ID_ART2
186     : CHUNK_ID_ARTL;
187     RIFF::Chunk* art = lart->GetFirstSubChunk();
188 schoenebeck 2 while (art) {
189 schoenebeck 800 if (art->GetChunkID() == artCkType) {
190 schoenebeck 2 if (!pArticulations) pArticulations = new ArticulationList;
191     pArticulations->push_back(new Articulation(art));
192     }
193 schoenebeck 800 art = lart->GetNextSubChunk();
194 schoenebeck 2 }
195     }
196     }
197    
198     Articulator::~Articulator() {
199     if (pArticulations) {
200     ArticulationList::iterator iter = pArticulations->begin();
201     ArticulationList::iterator end = pArticulations->end();
202     while (iter != end) {
203     delete *iter;
204     iter++;
205     }
206     delete pArticulations;
207     }
208     }
209    
210 schoenebeck 800 /**
211     * Apply all articulations to the respective RIFF chunks. You have to
212     * call File::Save() to make changes persistent.
213     */
214     void Articulator::UpdateChunks() {
215 schoenebeck 804 if (pArticulations) {
216     ArticulationList::iterator iter = pArticulations->begin();
217     ArticulationList::iterator end = pArticulations->end();
218     for (; iter != end; ++iter) {
219     (*iter)->UpdateChunks();
220     }
221 schoenebeck 800 }
222     }
223 schoenebeck 2
224    
225 schoenebeck 800
226 schoenebeck 2 // *************** Info ***************
227     // *
228    
229 schoenebeck 800 /** @brief Constructor.
230     *
231     * Initializes the info strings with values provided by a INFO list chunk.
232     *
233     * @param list - pointer to a list chunk which contains a INFO list chunk
234     */
235 schoenebeck 2 Info::Info(RIFF::List* list) {
236 persson 918 UseFixedLengthStrings = false;
237 schoenebeck 800 pResourceListChunk = list;
238 schoenebeck 2 if (list) {
239     RIFF::List* lstINFO = list->GetSubList(LIST_TYPE_INFO);
240     if (lstINFO) {
241     LoadString(CHUNK_ID_INAM, lstINFO, Name);
242     LoadString(CHUNK_ID_IARL, lstINFO, ArchivalLocation);
243     LoadString(CHUNK_ID_ICRD, lstINFO, CreationDate);
244     LoadString(CHUNK_ID_ICMT, lstINFO, Comments);
245     LoadString(CHUNK_ID_IPRD, lstINFO, Product);
246     LoadString(CHUNK_ID_ICOP, lstINFO, Copyright);
247     LoadString(CHUNK_ID_IART, lstINFO, Artists);
248     LoadString(CHUNK_ID_IGNR, lstINFO, Genre);
249     LoadString(CHUNK_ID_IKEY, lstINFO, Keywords);
250     LoadString(CHUNK_ID_IENG, lstINFO, Engineer);
251     LoadString(CHUNK_ID_ITCH, lstINFO, Technician);
252     LoadString(CHUNK_ID_ISFT, lstINFO, Software);
253     LoadString(CHUNK_ID_IMED, lstINFO, Medium);
254     LoadString(CHUNK_ID_ISRC, lstINFO, Source);
255     LoadString(CHUNK_ID_ISRF, lstINFO, SourceForm);
256     LoadString(CHUNK_ID_ICMS, lstINFO, Commissioned);
257 persson 928 LoadString(CHUNK_ID_ISBJ, lstINFO, Subject);
258 schoenebeck 2 }
259     }
260     }
261    
262 schoenebeck 823 Info::~Info() {
263     }
264    
265 schoenebeck 800 /** @brief Load given INFO field.
266     *
267     * Load INFO field from INFO chunk with chunk ID \a ChunkID from INFO
268     * list chunk \a lstINFO and save value to \a s.
269     */
270     void Info::LoadString(uint32_t ChunkID, RIFF::List* lstINFO, String& s) {
271     RIFF::Chunk* ck = lstINFO->GetSubChunk(ChunkID);
272     if (ck) {
273 persson 839 const char* str = (char*)ck->LoadChunkData();
274     int size = ck->GetSize();
275     int len;
276     for (len = 0 ; len < size ; len++)
277     if (str[len] == '\0') break;
278     s.assign(str, len);
279 schoenebeck 800 ck->ReleaseChunkData();
280     }
281     }
282 schoenebeck 2
283 schoenebeck 800 /** @brief Apply given INFO field to the respective chunk.
284     *
285     * Apply given info value to info chunk with ID \a ChunkID, which is a
286     * subchunk of INFO list chunk \a lstINFO. If the given chunk already
287 schoenebeck 804 * exists, value \a s will be applied. Otherwise if it doesn't exist yet
288     * and either \a s or \a sDefault is not an empty string, such a chunk
289     * will be created and either \a s or \a sDefault will be applied
290     * (depending on which one is not an empty string, if both are not an
291     * empty string \a s will be preferred).
292 schoenebeck 800 *
293     * @param ChunkID - 32 bit RIFF chunk ID of INFO subchunk
294     * @param lstINFO - parent (INFO) RIFF list chunk
295     * @param s - current value of info field
296     * @param sDefault - default value
297 persson 918 * @param size - wanted size of the INFO chunk. This is ignored if UseFixedLengthStrings is false.
298 schoenebeck 800 */
299 persson 918 void Info::SaveString(uint32_t ChunkID, RIFF::List* lstINFO, const String& s, const String& sDefault, int size) {
300 schoenebeck 800 RIFF::Chunk* ck = lstINFO->GetSubChunk(ChunkID);
301     if (ck) { // if chunk exists already, use 's' as value
302 persson 918 if (!UseFixedLengthStrings) size = s.size() + 1;
303     ck->Resize(size);
304 schoenebeck 800 char* pData = (char*) ck->LoadChunkData();
305 persson 918 strncpy(pData, s.c_str(), size);
306 schoenebeck 804 } else if (s != "" || sDefault != "") { // create chunk
307     const String& sToSave = (s != "") ? s : sDefault;
308 persson 918 if (!UseFixedLengthStrings) size = sToSave.size() + 1;
309     ck = lstINFO->AddSubChunk(ChunkID, size);
310 schoenebeck 800 char* pData = (char*) ck->LoadChunkData();
311 persson 918 strncpy(pData, sToSave.c_str(), size);
312 schoenebeck 800 }
313     }
314 schoenebeck 2
315 schoenebeck 800 /** @brief Update chunks with current info values.
316     *
317     * Apply current INFO field values to the respective INFO chunks. You
318     * have to call File::Save() to make changes persistent.
319     */
320     void Info::UpdateChunks() {
321     if (!pResourceListChunk) return;
322    
323     // make sure INFO list chunk exists
324     RIFF::List* lstINFO = pResourceListChunk->GetSubList(LIST_TYPE_INFO);
325    
326 persson 918 String defaultName = "";
327     String defaultCreationDate = "";
328     String defaultSoftware = "";
329     String defaultComments = "";
330 schoenebeck 800
331 persson 918 uint32_t resourceType = pResourceListChunk->GetListType();
332    
333     if (!lstINFO) {
334     lstINFO = pResourceListChunk->AddSubList(LIST_TYPE_INFO);
335    
336     // assemble default values
337     defaultName = "NONAME";
338    
339     if (resourceType == RIFF_TYPE_DLS) {
340     // get current date
341     time_t now = time(NULL);
342     tm* pNowBroken = localtime(&now);
343     char buf[11];
344     strftime(buf, 11, "%F", pNowBroken);
345     defaultCreationDate = buf;
346    
347     defaultComments = "Created with " + libraryName() + " " + libraryVersion();
348     }
349     if (resourceType == RIFF_TYPE_DLS || resourceType == LIST_TYPE_INS)
350     {
351     defaultSoftware = libraryName() + " " + libraryVersion();
352     }
353     }
354    
355 schoenebeck 800 // save values
356 persson 918
357     // (the string size values are for gig files; they are only
358     // used if UseFixedLengthStrings is set to true)
359     SaveString(CHUNK_ID_INAM, lstINFO, Name, defaultName,
360     resourceType == RIFF_TYPE_DLS ? 128 : 64);
361     SaveString(CHUNK_ID_IARL, lstINFO, ArchivalLocation, String(""), 256);
362     SaveString(CHUNK_ID_ICRD, lstINFO, CreationDate, defaultCreationDate, 128);
363     SaveString(CHUNK_ID_ICMT, lstINFO, Comments, defaultComments, 1024);
364     SaveString(CHUNK_ID_IPRD, lstINFO, Product, String(""), 128);
365     SaveString(CHUNK_ID_ICOP, lstINFO, Copyright, String(""), 128);
366     SaveString(CHUNK_ID_IART, lstINFO, Artists, String(""), 128);
367     SaveString(CHUNK_ID_IGNR, lstINFO, Genre, String(""), 128);
368     SaveString(CHUNK_ID_IKEY, lstINFO, Keywords, String(""), 128);
369     SaveString(CHUNK_ID_IENG, lstINFO, Engineer, String(""), 128);
370     SaveString(CHUNK_ID_ITCH, lstINFO, Technician, String(""), 128);
371     SaveString(CHUNK_ID_ISFT, lstINFO, Software, defaultSoftware,
372     resourceType == LIST_TYPE_INS ?
373     (Software == "" ? defaultSoftware.length() : Software.length()) : 128);
374     SaveString(CHUNK_ID_IMED, lstINFO, Medium, String(""), 128);
375     SaveString(CHUNK_ID_ISRC, lstINFO, Source, String(""), 128);
376     SaveString(CHUNK_ID_ISRF, lstINFO, SourceForm, String(""), 128);
377     SaveString(CHUNK_ID_ICMS, lstINFO, Commissioned, String(""), 128);
378 persson 928 SaveString(CHUNK_ID_ISBJ, lstINFO, Subject, String(""), 128);
379 schoenebeck 800 }
380    
381    
382    
383 schoenebeck 2 // *************** Resource ***************
384     // *
385    
386 schoenebeck 800 /** @brief Constructor.
387     *
388     * Initializes the 'Resource' object with values provided by a given
389     * INFO list chunk and a DLID chunk (the latter optional).
390     *
391     * @param Parent - pointer to parent 'Resource', NULL if this is
392     * the toplevel 'Resource' object
393     * @param lstResource - pointer to an INFO list chunk
394     */
395 schoenebeck 2 Resource::Resource(Resource* Parent, RIFF::List* lstResource) {
396     pParent = Parent;
397 schoenebeck 800 pResourceList = lstResource;
398 schoenebeck 2
399     pInfo = new Info(lstResource);
400    
401     RIFF::Chunk* ckDLSID = lstResource->GetSubChunk(CHUNK_ID_DLID);
402     if (ckDLSID) {
403     pDLSID = new dlsid_t;
404 schoenebeck 11 ckDLSID->Read(&pDLSID->ulData1, 1, 4);
405     ckDLSID->Read(&pDLSID->usData2, 1, 2);
406     ckDLSID->Read(&pDLSID->usData3, 1, 2);
407     ckDLSID->Read(pDLSID->abData, 8, 1);
408 schoenebeck 2 }
409     else pDLSID = NULL;
410     }
411    
412     Resource::~Resource() {
413     if (pDLSID) delete pDLSID;
414     if (pInfo) delete pInfo;
415     }
416    
417 schoenebeck 800 /** @brief Update chunks with current Resource data.
418     *
419     * Apply Resource data persistently below the previously given resource
420     * list chunk. This will currently only include the INFO data. The DLSID
421     * will not be applied at the moment (yet).
422     *
423     * You have to call File::Save() to make changes persistent.
424     */
425     void Resource::UpdateChunks() {
426     pInfo->UpdateChunks();
427     //TODO: save DLSID
428     }
429 schoenebeck 2
430    
431 schoenebeck 800
432 schoenebeck 2 // *************** Sampler ***************
433     // *
434    
435     Sampler::Sampler(RIFF::List* ParentList) {
436 schoenebeck 800 pParentList = ParentList;
437 schoenebeck 2 RIFF::Chunk* wsmp = ParentList->GetSubChunk(CHUNK_ID_WSMP);
438 schoenebeck 800 if (wsmp) {
439     uiHeaderSize = wsmp->ReadUint32();
440     UnityNote = wsmp->ReadUint16();
441     FineTune = wsmp->ReadInt16();
442     Gain = wsmp->ReadInt32();
443     SamplerOptions = wsmp->ReadUint32();
444     SampleLoops = wsmp->ReadUint32();
445     } else { // 'wsmp' chunk missing
446     uiHeaderSize = 0;
447     UnityNote = 64;
448     FineTune = 0; // +- 0 cents
449     Gain = 0; // 0 dB
450     SamplerOptions = F_WSMP_NO_COMPRESSION;
451     SampleLoops = 0;
452     }
453 schoenebeck 2 NoSampleDepthTruncation = SamplerOptions & F_WSMP_NO_TRUNCATION;
454     NoSampleCompression = SamplerOptions & F_WSMP_NO_COMPRESSION;
455     pSampleLoops = (SampleLoops) ? new sample_loop_t[SampleLoops] : NULL;
456 schoenebeck 800 if (SampleLoops) {
457     wsmp->SetPos(uiHeaderSize);
458     for (uint32_t i = 0; i < SampleLoops; i++) {
459     wsmp->Read(pSampleLoops + i, 4, 4);
460     if (pSampleLoops[i].Size > sizeof(sample_loop_t)) { // if loop struct was extended
461     wsmp->SetPos(pSampleLoops[i].Size - sizeof(sample_loop_t), RIFF::stream_curpos);
462     }
463 schoenebeck 2 }
464     }
465     }
466    
467     Sampler::~Sampler() {
468     if (pSampleLoops) delete[] pSampleLoops;
469     }
470    
471 schoenebeck 800 /**
472     * Apply all sample player options to the respective RIFF chunk. You
473     * have to call File::Save() to make changes persistent.
474     */
475     void Sampler::UpdateChunks() {
476     // make sure 'wsmp' chunk exists
477     RIFF::Chunk* wsmp = pParentList->GetSubChunk(CHUNK_ID_WSMP);
478     if (!wsmp) {
479     uiHeaderSize = 20;
480     wsmp = pParentList->AddSubChunk(CHUNK_ID_WSMP, uiHeaderSize + SampleLoops * 16);
481     }
482     uint8_t* pData = (uint8_t*) wsmp->LoadChunkData();
483     // update headers size
484 persson 918 memcpy(&pData[0], &uiHeaderSize, 4);
485 schoenebeck 800 // update respective sampler options bits
486     SamplerOptions = (NoSampleDepthTruncation) ? SamplerOptions | F_WSMP_NO_TRUNCATION
487     : SamplerOptions & (~F_WSMP_NO_TRUNCATION);
488     SamplerOptions = (NoSampleCompression) ? SamplerOptions | F_WSMP_NO_COMPRESSION
489     : SamplerOptions & (~F_WSMP_NO_COMPRESSION);
490 schoenebeck 919 memcpy(&pData[4], &UnityNote, 2);
491     memcpy(&pData[6], &FineTune, 2);
492     memcpy(&pData[8], &Gain, 4);
493     memcpy(&pData[12], &SamplerOptions, 4);
494     memcpy(&pData[16], &SampleLoops, 4);
495 schoenebeck 800 // update loop definitions
496     for (uint32_t i = 0; i < SampleLoops; i++) {
497     //FIXME: this does not handle extended loop structs correctly
498 persson 918 memcpy(&pData[uiHeaderSize + i * 16], pSampleLoops + i, 4 * 4);
499 schoenebeck 800 }
500     }
501 schoenebeck 2
502    
503 schoenebeck 800
504 schoenebeck 2 // *************** Sample ***************
505     // *
506    
507 schoenebeck 800 /** @brief Constructor.
508     *
509     * Load an existing sample or create a new one. A 'wave' list chunk must
510     * be given to this constructor. In case the given 'wave' list chunk
511     * contains a 'fmt' and 'data' chunk, the format and sample data will be
512     * loaded from there, otherwise default values will be used and those
513     * chunks will be created when File::Save() will be called later on.
514     *
515     * @param pFile - pointer to DLS::File where this sample is
516     * located (or will be located)
517     * @param waveList - pointer to 'wave' list chunk which is (or
518     * will be) associated with this sample
519     * @param WavePoolOffset - offset of this sample data from wave pool
520     * ('wvpl') list chunk
521     */
522 schoenebeck 2 Sample::Sample(File* pFile, RIFF::List* waveList, unsigned long WavePoolOffset) : Resource(pFile, waveList) {
523 schoenebeck 800 pWaveList = waveList;
524 schoenebeck 2 ulWavePoolOffset = WavePoolOffset - LIST_HEADER_SIZE;
525     pCkFormat = waveList->GetSubChunk(CHUNK_ID_FMT);
526     pCkData = waveList->GetSubChunk(CHUNK_ID_DATA);
527 schoenebeck 800 if (pCkFormat) {
528     // common fields
529     FormatTag = pCkFormat->ReadUint16();
530     Channels = pCkFormat->ReadUint16();
531     SamplesPerSecond = pCkFormat->ReadUint32();
532     AverageBytesPerSecond = pCkFormat->ReadUint32();
533     BlockAlign = pCkFormat->ReadUint16();
534     // PCM format specific
535     if (FormatTag == WAVE_FORMAT_PCM) {
536     BitDepth = pCkFormat->ReadUint16();
537 persson 928 FrameSize = (BitDepth / 8) * Channels;
538 schoenebeck 800 } else { // unsupported sample data format
539     BitDepth = 0;
540     FrameSize = 0;
541     }
542     } else { // 'fmt' chunk missing
543     FormatTag = WAVE_FORMAT_PCM;
544     BitDepth = 16;
545     Channels = 1;
546     SamplesPerSecond = 44100;
547     AverageBytesPerSecond = (BitDepth / 8) * SamplesPerSecond * Channels;
548     FrameSize = (BitDepth / 8) * Channels;
549     BlockAlign = FrameSize;
550 schoenebeck 2 }
551 schoenebeck 800 SamplesTotal = (pCkData) ? (FormatTag == WAVE_FORMAT_PCM) ? pCkData->GetSize() / FrameSize
552     : 0
553     : 0;
554 schoenebeck 2 }
555    
556 schoenebeck 800 /** @brief Destructor.
557     *
558     * Removes RIFF chunks associated with this Sample and frees all
559     * memory occupied by this sample.
560     */
561     Sample::~Sample() {
562     RIFF::List* pParent = pWaveList->GetParent();
563     pParent->DeleteSubChunk(pWaveList);
564     }
565    
566     /** @brief Load sample data into RAM.
567     *
568     * In case the respective 'data' chunk exists, the sample data will be
569     * loaded into RAM (if not done already) and a pointer to the data in
570     * RAM will be returned. If this is a new sample, you have to call
571     * Resize() with the desired sample size to create the mandatory RIFF
572     * chunk for the sample wave data.
573     *
574     * You can call LoadChunkData() again if you previously scheduled to
575     * enlarge the sample data RIFF chunk with a Resize() call. In that case
576     * the buffer will be enlarged to the new, scheduled size and you can
577     * already place the sample wave data to the buffer and finally call
578     * File::Save() to enlarge the sample data's chunk physically and write
579     * the new sample wave data in one rush. This approach is definitely
580     * recommended if you have to enlarge and write new sample data to a lot
581     * of samples.
582     *
583     * <b>Caution:</b> the buffer pointer will be invalidated once
584     * File::Save() was called. You have to call LoadChunkData() again to
585     * get a new, valid pointer whenever File::Save() was called.
586     *
587     * @returns pointer to sample data in RAM, NULL in case respective
588     * 'data' chunk does not exist (yet)
589     * @throws Exception if data buffer could not be enlarged
590     * @see Resize(), File::Save()
591     */
592 schoenebeck 2 void* Sample::LoadSampleData() {
593 schoenebeck 800 return (pCkData) ? pCkData->LoadChunkData() : NULL;
594 schoenebeck 2 }
595    
596 schoenebeck 800 /** @brief Free sample data from RAM.
597     *
598     * In case sample data was previously successfully loaded into RAM with
599     * LoadSampleData(), this method will free the sample data from RAM.
600     */
601 schoenebeck 2 void Sample::ReleaseSampleData() {
602 schoenebeck 800 if (pCkData) pCkData->ReleaseChunkData();
603 schoenebeck 2 }
604    
605 schoenebeck 800 /** @brief Returns sample size.
606     *
607     * Returns the sample wave form's data size (in sample points). This is
608     * actually the current, physical size (converted to sample points) of
609     * the RIFF chunk which encapsulates the sample's wave data. The
610     * returned value is dependant to the current FrameSize value.
611     *
612     * @returns number of sample points or 0 if FormatTag != WAVE_FORMAT_PCM
613     * @see FrameSize, FormatTag
614     */
615     unsigned long Sample::GetSize() {
616     if (FormatTag != WAVE_FORMAT_PCM) return 0;
617     return (pCkData) ? pCkData->GetSize() / FrameSize : 0;
618     }
619    
620     /** @brief Resize sample.
621     *
622     * Resizes the sample's wave form data, that is the actual size of
623     * sample wave data possible to be written for this sample. This call
624     * will return immediately and just schedule the resize operation. You
625     * should call File::Save() to actually perform the resize operation(s)
626     * "physically" to the file. As this can take a while on large files, it
627     * is recommended to call Resize() first on all samples which have to be
628     * resized and finally to call File::Save() to perform all those resize
629     * operations in one rush.
630     *
631     * The actual size (in bytes) is dependant to the current FrameSize
632     * value. You may want to set FrameSize before calling Resize().
633     *
634     * <b>Caution:</b> You cannot directly write to enlarged samples before
635     * calling File::Save() as this might exceed the current sample's
636     * boundary!
637     *
638     * Also note: only WAVE_FORMAT_PCM is currently supported, that is
639     * FormatTag must be WAVE_FORMAT_PCM. Trying to resize samples with
640     * other formats will fail!
641     *
642     * @param iNewSize - new sample wave data size in sample points (must be
643     * greater than zero)
644     * @throws Excecption if FormatTag != WAVE_FORMAT_PCM
645     * @throws Exception if \a iNewSize is less than 1
646     * @see File::Save(), FrameSize, FormatTag
647     */
648     void Sample::Resize(int iNewSize) {
649     if (FormatTag != WAVE_FORMAT_PCM) throw Exception("Sample's format is not WAVE_FORMAT_PCM");
650     if (iNewSize < 1) throw Exception("Sample size must be at least one sample point");
651     const int iSizeInBytes = iNewSize * FrameSize;
652     pCkData = pWaveList->GetSubChunk(CHUNK_ID_DATA);
653     if (pCkData) pCkData->Resize(iSizeInBytes);
654     else pCkData = pWaveList->AddSubChunk(CHUNK_ID_DATA, iSizeInBytes);
655     }
656    
657 schoenebeck 2 /**
658     * Sets the position within the sample (in sample points, not in
659     * bytes). Use this method and <i>Read()</i> if you don't want to load
660     * the sample into RAM, thus for disk streaming.
661     *
662 schoenebeck 800 * Also note: only WAVE_FORMAT_PCM is currently supported, that is
663     * FormatTag must be WAVE_FORMAT_PCM. Trying to reposition the sample
664     * with other formats will fail!
665     *
666 schoenebeck 2 * @param SampleCount number of sample points
667     * @param Whence to which relation \a SampleCount refers to
668 schoenebeck 800 * @returns new position within the sample, 0 if
669     * FormatTag != WAVE_FORMAT_PCM
670     * @throws Exception if no data RIFF chunk was created for the sample yet
671     * @see FrameSize, FormatTag
672 schoenebeck 2 */
673     unsigned long Sample::SetPos(unsigned long SampleCount, RIFF::stream_whence_t Whence) {
674     if (FormatTag != WAVE_FORMAT_PCM) return 0; // failed: wave data not PCM format
675 schoenebeck 800 if (!pCkData) throw Exception("No data chunk created for sample yet, call Sample::Resize() to create one");
676 schoenebeck 2 unsigned long orderedBytes = SampleCount * FrameSize;
677     unsigned long result = pCkData->SetPos(orderedBytes, Whence);
678     return (result == orderedBytes) ? SampleCount
679     : result / FrameSize;
680     }
681    
682     /**
683     * Reads \a SampleCount number of sample points from the current
684     * position into the buffer pointed by \a pBuffer and increments the
685     * position within the sample. Use this method and <i>SetPos()</i> if you
686     * don't want to load the sample into RAM, thus for disk streaming.
687     *
688     * @param pBuffer destination buffer
689     * @param SampleCount number of sample points to read
690     */
691     unsigned long Sample::Read(void* pBuffer, unsigned long SampleCount) {
692     if (FormatTag != WAVE_FORMAT_PCM) return 0; // failed: wave data not PCM format
693 schoenebeck 11 return pCkData->Read(pBuffer, SampleCount, FrameSize); // FIXME: channel inversion due to endian correction?
694 schoenebeck 2 }
695    
696 schoenebeck 800 /** @brief Write sample wave data.
697     *
698     * Writes \a SampleCount number of sample points from the buffer pointed
699     * by \a pBuffer and increments the position within the sample. Use this
700     * method to directly write the sample data to disk, i.e. if you don't
701     * want or cannot load the whole sample data into RAM.
702     *
703     * You have to Resize() the sample to the desired size and call
704     * File::Save() <b>before</b> using Write().
705     *
706     * @param pBuffer - source buffer
707     * @param SampleCount - number of sample points to write
708     * @throws Exception if current sample size is too small
709     * @see LoadSampleData()
710     */
711     unsigned long Sample::Write(void* pBuffer, unsigned long SampleCount) {
712     if (FormatTag != WAVE_FORMAT_PCM) return 0; // failed: wave data not PCM format
713     if (GetSize() < SampleCount) throw Exception("Could not write sample data, current sample size to small");
714     return pCkData->Write(pBuffer, SampleCount, FrameSize); // FIXME: channel inversion due to endian correction?
715     }
716 schoenebeck 2
717 schoenebeck 800 /**
718     * Apply sample and its settings to the respective RIFF chunks. You have
719     * to call File::Save() to make changes persistent.
720     *
721     * @throws Exception if FormatTag != WAVE_FORMAT_PCM or no sample data
722     * was provided yet
723     */
724     void Sample::UpdateChunks() {
725     if (FormatTag != WAVE_FORMAT_PCM)
726     throw Exception("Could not save sample, only PCM format is supported");
727     // we refuse to do anything if not sample wave form was provided yet
728     if (!pCkData)
729     throw Exception("Could not save sample, there is no sample data to save");
730     // update chunks of base class as well
731     Resource::UpdateChunks();
732     // make sure 'fmt' chunk exists
733     RIFF::Chunk* pCkFormat = pWaveList->GetSubChunk(CHUNK_ID_FMT);
734     if (!pCkFormat) pCkFormat = pWaveList->AddSubChunk(CHUNK_ID_FMT, 16); // assumes PCM format
735     uint8_t* pData = (uint8_t*) pCkFormat->LoadChunkData();
736     // update 'fmt' chunk
737 persson 918 memcpy(&pData[0], &FormatTag, 2);
738     memcpy(&pData[2], &Channels, 2);
739     memcpy(&pData[4], &SamplesPerSecond, 4);
740     memcpy(&pData[8], &AverageBytesPerSecond, 4);
741     memcpy(&pData[12], &BlockAlign, 2);
742     memcpy(&pData[14], &BitDepth, 2); // assuming PCM format
743 schoenebeck 800 }
744 schoenebeck 2
745 schoenebeck 800
746    
747 schoenebeck 2 // *************** Region ***************
748     // *
749    
750     Region::Region(Instrument* pInstrument, RIFF::List* rgnList) : Resource(pInstrument, rgnList), Articulator(rgnList), Sampler(rgnList) {
751     pCkRegion = rgnList;
752    
753 schoenebeck 800 // articulation informations
754 schoenebeck 2 RIFF::Chunk* rgnh = rgnList->GetSubChunk(CHUNK_ID_RGNH);
755 schoenebeck 800 if (rgnh) {
756     rgnh->Read(&KeyRange, 2, 2);
757     rgnh->Read(&VelocityRange, 2, 2);
758     FormatOptionFlags = rgnh->ReadUint16();
759     KeyGroup = rgnh->ReadUint16();
760     // Layer is optional
761     if (rgnh->RemainingBytes() >= sizeof(uint16_t)) {
762     rgnh->Read(&Layer, 1, sizeof(uint16_t));
763     } else Layer = 0;
764     } else { // 'rgnh' chunk is missing
765     KeyRange.low = 0;
766     KeyRange.high = 127;
767     VelocityRange.low = 0;
768     VelocityRange.high = 127;
769     FormatOptionFlags = F_RGN_OPTION_SELFNONEXCLUSIVE;
770     KeyGroup = 0;
771     Layer = 0;
772 schoenebeck 2 }
773 schoenebeck 800 SelfNonExclusive = FormatOptionFlags & F_RGN_OPTION_SELFNONEXCLUSIVE;
774 schoenebeck 2
775 schoenebeck 800 // sample informations
776 schoenebeck 2 RIFF::Chunk* wlnk = rgnList->GetSubChunk(CHUNK_ID_WLNK);
777 schoenebeck 800 if (wlnk) {
778     WaveLinkOptionFlags = wlnk->ReadUint16();
779     PhaseGroup = wlnk->ReadUint16();
780     Channel = wlnk->ReadUint32();
781     WavePoolTableIndex = wlnk->ReadUint32();
782     } else { // 'wlnk' chunk is missing
783     WaveLinkOptionFlags = 0;
784     PhaseGroup = 0;
785     Channel = 0; // mono
786     WavePoolTableIndex = 0; // first entry in wave pool table
787     }
788     PhaseMaster = WaveLinkOptionFlags & F_WAVELINK_PHASE_MASTER;
789     MultiChannel = WaveLinkOptionFlags & F_WAVELINK_MULTICHANNEL;
790 schoenebeck 2
791     pSample = NULL;
792     }
793    
794 schoenebeck 800 /** @brief Destructor.
795     *
796     * Removes RIFF chunks associated with this Region.
797     */
798 schoenebeck 2 Region::~Region() {
799 schoenebeck 800 RIFF::List* pParent = pCkRegion->GetParent();
800     pParent->DeleteSubChunk(pCkRegion);
801 schoenebeck 2 }
802    
803     Sample* Region::GetSample() {
804     if (pSample) return pSample;
805     File* file = (File*) GetParent()->GetParent();
806     unsigned long soughtoffset = file->pWavePoolTable[WavePoolTableIndex];
807     Sample* sample = file->GetFirstSample();
808     while (sample) {
809     if (sample->ulWavePoolOffset == soughtoffset) return (pSample = sample);
810     sample = file->GetNextSample();
811     }
812     return NULL;
813     }
814    
815 schoenebeck 800 /**
816     * Assign another sample to this Region.
817     *
818     * @param pSample - sample to be assigned
819     */
820     void Region::SetSample(Sample* pSample) {
821     this->pSample = pSample;
822     WavePoolTableIndex = 0; // we update this offset when we Save()
823     }
824 schoenebeck 2
825 schoenebeck 800 /**
826     * Apply Region settings to the respective RIFF chunks. You have to
827     * call File::Save() to make changes persistent.
828     *
829     * @throws Exception - if the Region's sample could not be found
830     */
831     void Region::UpdateChunks() {
832     // make sure 'rgnh' chunk exists
833     RIFF::Chunk* rgnh = pCkRegion->GetSubChunk(CHUNK_ID_RGNH);
834 persson 918 if (!rgnh) rgnh = pCkRegion->AddSubChunk(CHUNK_ID_RGNH, Layer ? 14 : 12);
835 schoenebeck 800 uint8_t* pData = (uint8_t*) rgnh->LoadChunkData();
836     FormatOptionFlags = (SelfNonExclusive)
837     ? FormatOptionFlags | F_RGN_OPTION_SELFNONEXCLUSIVE
838     : FormatOptionFlags & (~F_RGN_OPTION_SELFNONEXCLUSIVE);
839     // update 'rgnh' chunk
840 persson 918 memcpy(&pData[0], &KeyRange, 2 * 2);
841     memcpy(&pData[4], &VelocityRange, 2 * 2);
842     memcpy(&pData[8], &FormatOptionFlags, 2);
843     memcpy(&pData[10], &KeyGroup, 2);
844     if (rgnh->GetSize() >= 14) memcpy(&pData[12], &Layer, 2);
845 schoenebeck 2
846 persson 918 // update chunks of base classes as well (but skip Resource,
847     // as a rgn doesn't seem to have dlid and INFO chunks)
848 schoenebeck 800 Articulator::UpdateChunks();
849     Sampler::UpdateChunks();
850    
851     // make sure 'wlnk' chunk exists
852     RIFF::Chunk* wlnk = pCkRegion->GetSubChunk(CHUNK_ID_WLNK);
853     if (!wlnk) wlnk = pCkRegion->AddSubChunk(CHUNK_ID_WLNK, 12);
854     pData = (uint8_t*) wlnk->LoadChunkData();
855     WaveLinkOptionFlags = (PhaseMaster)
856     ? WaveLinkOptionFlags | F_WAVELINK_PHASE_MASTER
857     : WaveLinkOptionFlags & (~F_WAVELINK_PHASE_MASTER);
858     WaveLinkOptionFlags = (MultiChannel)
859     ? WaveLinkOptionFlags | F_WAVELINK_MULTICHANNEL
860     : WaveLinkOptionFlags & (~F_WAVELINK_MULTICHANNEL);
861     // get sample's wave pool table index
862     int index = -1;
863     File* pFile = (File*) GetParent()->GetParent();
864 schoenebeck 804 if (pFile->pSamples) {
865     File::SampleList::iterator iter = pFile->pSamples->begin();
866     File::SampleList::iterator end = pFile->pSamples->end();
867     for (int i = 0; iter != end; ++iter, i++) {
868     if (*iter == pSample) {
869     index = i;
870     break;
871     }
872 schoenebeck 800 }
873     }
874     if (index < 0) throw Exception("Could not save Region, could not find Region's sample");
875     WavePoolTableIndex = index;
876     // update 'wlnk' chunk
877 persson 918 memcpy(&pData[0], &WaveLinkOptionFlags, 2);
878     memcpy(&pData[2], &PhaseGroup, 2);
879     memcpy(&pData[4], &Channel, 4);
880     memcpy(&pData[8], &WavePoolTableIndex, 4);
881 schoenebeck 800 }
882    
883    
884    
885 schoenebeck 2 // *************** Instrument ***************
886     // *
887    
888 schoenebeck 800 /** @brief Constructor.
889     *
890     * Load an existing instrument definition or create a new one. An 'ins'
891     * list chunk must be given to this constructor. In case this 'ins' list
892     * chunk contains a 'insh' chunk, the instrument data fields will be
893     * loaded from there, otherwise default values will be used and the
894     * 'insh' chunk will be created once File::Save() was called.
895     *
896     * @param pFile - pointer to DLS::File where this instrument is
897     * located (or will be located)
898     * @param insList - pointer to 'ins' list chunk which is (or will be)
899     * associated with this instrument
900     */
901 schoenebeck 2 Instrument::Instrument(File* pFile, RIFF::List* insList) : Resource(pFile, insList), Articulator(insList) {
902     pCkInstrument = insList;
903    
904 schoenebeck 800 midi_locale_t locale;
905 schoenebeck 2 RIFF::Chunk* insh = pCkInstrument->GetSubChunk(CHUNK_ID_INSH);
906 schoenebeck 800 if (insh) {
907     Regions = insh->ReadUint32();
908     insh->Read(&locale, 2, 4);
909     } else { // 'insh' chunk missing
910     Regions = 0;
911     locale.bank = 0;
912     locale.instrument = 0;
913     }
914    
915 schoenebeck 2 MIDIProgram = locale.instrument;
916     IsDrum = locale.bank & DRUM_TYPE_MASK;
917     MIDIBankCoarse = (uint8_t) MIDI_BANK_COARSE(locale.bank);
918     MIDIBankFine = (uint8_t) MIDI_BANK_FINE(locale.bank);
919     MIDIBank = MIDI_BANK_MERGE(MIDIBankCoarse, MIDIBankFine);
920    
921 schoenebeck 800 pRegions = NULL;
922 schoenebeck 2 }
923    
924     Region* Instrument::GetFirstRegion() {
925     if (!pRegions) LoadRegions();
926     if (!pRegions) return NULL;
927     RegionsIterator = pRegions->begin();
928     return (RegionsIterator != pRegions->end()) ? *RegionsIterator : NULL;
929     }
930    
931     Region* Instrument::GetNextRegion() {
932     if (!pRegions) return NULL;
933     RegionsIterator++;
934     return (RegionsIterator != pRegions->end()) ? *RegionsIterator : NULL;
935     }
936    
937     void Instrument::LoadRegions() {
938 schoenebeck 823 if (!pRegions) pRegions = new RegionList;
939 schoenebeck 2 RIFF::List* lrgn = pCkInstrument->GetSubList(LIST_TYPE_LRGN);
940 schoenebeck 823 if (lrgn) {
941     uint32_t regionCkType = (lrgn->GetSubList(LIST_TYPE_RGN2)) ? LIST_TYPE_RGN2 : LIST_TYPE_RGN; // prefer regions level 2
942     RIFF::List* rgn = lrgn->GetFirstSubList();
943     while (rgn) {
944     if (rgn->GetListType() == regionCkType) {
945     pRegions->push_back(new Region(this, rgn));
946     }
947     rgn = lrgn->GetNextSubList();
948 schoenebeck 2 }
949     }
950     }
951    
952 schoenebeck 800 Region* Instrument::AddRegion() {
953 schoenebeck 823 if (!pRegions) LoadRegions();
954 schoenebeck 800 RIFF::List* lrgn = pCkInstrument->GetSubList(LIST_TYPE_LRGN);
955     if (!lrgn) lrgn = pCkInstrument->AddSubList(LIST_TYPE_LRGN);
956     RIFF::List* rgn = lrgn->AddSubList(LIST_TYPE_RGN);
957     Region* pNewRegion = new Region(this, rgn);
958     pRegions->push_back(pNewRegion);
959 schoenebeck 823 Regions = pRegions->size();
960 schoenebeck 800 return pNewRegion;
961     }
962    
963     void Instrument::DeleteRegion(Region* pRegion) {
964 schoenebeck 802 if (!pRegions) return;
965 schoenebeck 800 RegionList::iterator iter = find(pRegions->begin(), pRegions->end(), pRegion);
966     if (iter == pRegions->end()) return;
967     pRegions->erase(iter);
968 schoenebeck 823 Regions = pRegions->size();
969 schoenebeck 800 delete pRegion;
970     }
971    
972     /**
973     * Apply Instrument with all its Regions to the respective RIFF chunks.
974     * You have to call File::Save() to make changes persistent.
975     *
976     * @throws Exception - on errors
977     */
978     void Instrument::UpdateChunks() {
979     // first update base classes' chunks
980     Resource::UpdateChunks();
981     Articulator::UpdateChunks();
982     // make sure 'insh' chunk exists
983     RIFF::Chunk* insh = pCkInstrument->GetSubChunk(CHUNK_ID_INSH);
984     if (!insh) insh = pCkInstrument->AddSubChunk(CHUNK_ID_INSH, 12);
985     uint8_t* pData = (uint8_t*) insh->LoadChunkData();
986     // update 'insh' chunk
987 schoenebeck 804 Regions = (pRegions) ? pRegions->size() : 0;
988 schoenebeck 800 midi_locale_t locale;
989     locale.instrument = MIDIProgram;
990     locale.bank = MIDI_BANK_ENCODE(MIDIBankCoarse, MIDIBankFine);
991     locale.bank = (IsDrum) ? locale.bank | DRUM_TYPE_MASK : locale.bank & (~DRUM_TYPE_MASK);
992     MIDIBank = MIDI_BANK_MERGE(MIDIBankCoarse, MIDIBankFine); // just a sync, when we're at it
993 persson 918 memcpy(&pData[0], &Regions, 4);
994     memcpy(&pData[4], &locale, 2 * 4);
995 schoenebeck 800 // update Region's chunks
996 schoenebeck 804 if (!pRegions) return;
997 schoenebeck 800 RegionList::iterator iter = pRegions->begin();
998     RegionList::iterator end = pRegions->end();
999     for (; iter != end; ++iter) {
1000     (*iter)->UpdateChunks();
1001     }
1002     }
1003    
1004     /** @brief Destructor.
1005     *
1006     * Removes RIFF chunks associated with this Instrument and frees all
1007     * memory occupied by this instrument.
1008     */
1009 schoenebeck 2 Instrument::~Instrument() {
1010     if (pRegions) {
1011     RegionList::iterator iter = pRegions->begin();
1012     RegionList::iterator end = pRegions->end();
1013     while (iter != end) {
1014     delete *iter;
1015     iter++;
1016     }
1017     delete pRegions;
1018     }
1019 schoenebeck 800 // remove instrument's chunks
1020     RIFF::List* pParent = pCkInstrument->GetParent();
1021     pParent->DeleteSubChunk(pCkInstrument);
1022 schoenebeck 2 }
1023    
1024    
1025    
1026     // *************** File ***************
1027     // *
1028    
1029 schoenebeck 800 /** @brief Constructor.
1030     *
1031     * Default constructor, use this to create an empty DLS file. You have
1032     * to add samples, instruments and finally call Save() to actually write
1033     * a DLS file.
1034     */
1035 schoenebeck 802 File::File() : Resource(NULL, pRIFF = new RIFF::File(RIFF_TYPE_DLS)) {
1036 schoenebeck 800 pVersion = new version_t;
1037     pVersion->major = 0;
1038     pVersion->minor = 0;
1039     pVersion->release = 0;
1040     pVersion->build = 0;
1041    
1042     Instruments = 0;
1043     WavePoolCount = 0;
1044     pWavePoolTable = NULL;
1045     pWavePoolTableHi = NULL;
1046     WavePoolHeaderSize = 8;
1047    
1048     pSamples = NULL;
1049     pInstruments = NULL;
1050    
1051     b64BitWavePoolOffsets = false;
1052     }
1053    
1054     /** @brief Constructor.
1055     *
1056     * Load an existing DLS file.
1057     *
1058     * @param pRIFF - pointer to a RIFF file which is actually the DLS file
1059     * to load
1060     * @throws Exception if given file is not a DLS file, expected chunks
1061     * are missing
1062     */
1063 schoenebeck 2 File::File(RIFF::File* pRIFF) : Resource(NULL, pRIFF) {
1064     if (!pRIFF) throw DLS::Exception("NULL pointer reference to RIFF::File object.");
1065     this->pRIFF = pRIFF;
1066    
1067     RIFF::Chunk* ckVersion = pRIFF->GetSubChunk(CHUNK_ID_VERS);
1068     if (ckVersion) {
1069     pVersion = new version_t;
1070 schoenebeck 11 ckVersion->Read(pVersion, 4, 2);
1071 schoenebeck 2 }
1072     else pVersion = NULL;
1073    
1074     RIFF::Chunk* colh = pRIFF->GetSubChunk(CHUNK_ID_COLH);
1075     if (!colh) throw DLS::Exception("Mandatory chunks in RIFF list chunk not found.");
1076     Instruments = colh->ReadUint32();
1077    
1078     RIFF::Chunk* ptbl = pRIFF->GetSubChunk(CHUNK_ID_PTBL);
1079 persson 902 if (!ptbl) { // pool table is missing - this is probably an ".art" file
1080     WavePoolCount = 0;
1081     pWavePoolTable = NULL;
1082     pWavePoolTableHi = NULL;
1083     WavePoolHeaderSize = 8;
1084     b64BitWavePoolOffsets = false;
1085     } else {
1086     WavePoolHeaderSize = ptbl->ReadUint32();
1087     WavePoolCount = ptbl->ReadUint32();
1088     pWavePoolTable = new uint32_t[WavePoolCount];
1089     pWavePoolTableHi = new uint32_t[WavePoolCount];
1090     ptbl->SetPos(WavePoolHeaderSize);
1091 schoenebeck 2
1092 persson 902 // Check for 64 bit offsets (used in gig v3 files)
1093     b64BitWavePoolOffsets = (ptbl->GetSize() - WavePoolHeaderSize == WavePoolCount * 8);
1094     if (b64BitWavePoolOffsets) {
1095     for (int i = 0 ; i < WavePoolCount ; i++) {
1096     pWavePoolTableHi[i] = ptbl->ReadUint32();
1097     pWavePoolTable[i] = ptbl->ReadUint32();
1098     if (pWavePoolTable[i] & 0x80000000)
1099     throw DLS::Exception("Files larger than 2 GB not yet supported");
1100     }
1101     } else { // conventional 32 bit offsets
1102     ptbl->Read(pWavePoolTable, WavePoolCount, sizeof(uint32_t));
1103     for (int i = 0 ; i < WavePoolCount ; i++) pWavePoolTableHi[i] = 0;
1104 schoenebeck 317 }
1105 persson 666 }
1106 schoenebeck 317
1107 schoenebeck 2 pSamples = NULL;
1108     pInstruments = NULL;
1109     }
1110    
1111     File::~File() {
1112     if (pInstruments) {
1113     InstrumentList::iterator iter = pInstruments->begin();
1114     InstrumentList::iterator end = pInstruments->end();
1115     while (iter != end) {
1116     delete *iter;
1117     iter++;
1118     }
1119     delete pInstruments;
1120     }
1121    
1122     if (pSamples) {
1123     SampleList::iterator iter = pSamples->begin();
1124     SampleList::iterator end = pSamples->end();
1125     while (iter != end) {
1126     delete *iter;
1127     iter++;
1128     }
1129     delete pSamples;
1130     }
1131    
1132     if (pWavePoolTable) delete[] pWavePoolTable;
1133 persson 666 if (pWavePoolTableHi) delete[] pWavePoolTableHi;
1134 schoenebeck 2 if (pVersion) delete pVersion;
1135 persson 834 for (std::list<RIFF::File*>::iterator i = ExtensionFiles.begin() ; i != ExtensionFiles.end() ; i++)
1136     delete *i;
1137 schoenebeck 2 }
1138    
1139     Sample* File::GetFirstSample() {
1140     if (!pSamples) LoadSamples();
1141     if (!pSamples) return NULL;
1142     SamplesIterator = pSamples->begin();
1143     return (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL;
1144     }
1145    
1146     Sample* File::GetNextSample() {
1147     if (!pSamples) return NULL;
1148     SamplesIterator++;
1149     return (SamplesIterator != pSamples->end()) ? *SamplesIterator : NULL;
1150     }
1151    
1152     void File::LoadSamples() {
1153 schoenebeck 823 if (!pSamples) pSamples = new SampleList;
1154 schoenebeck 2 RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);
1155     if (wvpl) {
1156     unsigned long wvplFileOffset = wvpl->GetFilePos();
1157     RIFF::List* wave = wvpl->GetFirstSubList();
1158     while (wave) {
1159     if (wave->GetListType() == LIST_TYPE_WAVE) {
1160     unsigned long waveFileOffset = wave->GetFilePos();
1161     pSamples->push_back(new Sample(this, wave, waveFileOffset - wvplFileOffset));
1162     }
1163     wave = wvpl->GetNextSubList();
1164     }
1165     }
1166     else { // Seen a dwpl list chunk instead of a wvpl list chunk in some file (officially not DLS compliant)
1167     RIFF::List* dwpl = pRIFF->GetSubList(LIST_TYPE_DWPL);
1168     if (dwpl) {
1169     unsigned long dwplFileOffset = dwpl->GetFilePos();
1170     RIFF::List* wave = dwpl->GetFirstSubList();
1171     while (wave) {
1172     if (wave->GetListType() == LIST_TYPE_WAVE) {
1173     unsigned long waveFileOffset = wave->GetFilePos();
1174     pSamples->push_back(new Sample(this, wave, waveFileOffset - dwplFileOffset));
1175     }
1176     wave = dwpl->GetNextSubList();
1177     }
1178     }
1179     }
1180     }
1181    
1182 schoenebeck 800 /** @brief Add a new sample.
1183     *
1184     * This will create a new Sample object for the DLS file. You have to
1185     * call Save() to make this persistent to the file.
1186     *
1187     * @returns pointer to new Sample object
1188     */
1189     Sample* File::AddSample() {
1190 schoenebeck 809 if (!pSamples) LoadSamples();
1191 schoenebeck 800 __ensureMandatoryChunksExist();
1192     RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);
1193     // create new Sample object and its respective 'wave' list chunk
1194     RIFF::List* wave = wvpl->AddSubList(LIST_TYPE_WAVE);
1195     Sample* pSample = new Sample(this, wave, 0 /*arbitrary value, we update offsets when we save*/);
1196     pSamples->push_back(pSample);
1197     return pSample;
1198     }
1199    
1200     /** @brief Delete a sample.
1201     *
1202     * This will delete the given Sample object from the DLS file. You have
1203     * to call Save() to make this persistent to the file.
1204     *
1205     * @param pSample - sample to delete
1206     */
1207     void File::DeleteSample(Sample* pSample) {
1208 schoenebeck 802 if (!pSamples) return;
1209 schoenebeck 800 SampleList::iterator iter = find(pSamples->begin(), pSamples->end(), pSample);
1210     if (iter == pSamples->end()) return;
1211     pSamples->erase(iter);
1212     delete pSample;
1213     }
1214    
1215 schoenebeck 2 Instrument* File::GetFirstInstrument() {
1216     if (!pInstruments) LoadInstruments();
1217     if (!pInstruments) return NULL;
1218     InstrumentsIterator = pInstruments->begin();
1219     return (InstrumentsIterator != pInstruments->end()) ? *InstrumentsIterator : NULL;
1220     }
1221    
1222     Instrument* File::GetNextInstrument() {
1223     if (!pInstruments) return NULL;
1224     InstrumentsIterator++;
1225     return (InstrumentsIterator != pInstruments->end()) ? *InstrumentsIterator : NULL;
1226     }
1227    
1228     void File::LoadInstruments() {
1229 schoenebeck 823 if (!pInstruments) pInstruments = new InstrumentList;
1230 schoenebeck 2 RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);
1231     if (lstInstruments) {
1232     RIFF::List* lstInstr = lstInstruments->GetFirstSubList();
1233     while (lstInstr) {
1234     if (lstInstr->GetListType() == LIST_TYPE_INS) {
1235     pInstruments->push_back(new Instrument(this, lstInstr));
1236     }
1237     lstInstr = lstInstruments->GetNextSubList();
1238     }
1239     }
1240     }
1241    
1242 schoenebeck 800 /** @brief Add a new instrument definition.
1243     *
1244     * This will create a new Instrument object for the DLS file. You have
1245     * to call Save() to make this persistent to the file.
1246     *
1247     * @returns pointer to new Instrument object
1248     */
1249     Instrument* File::AddInstrument() {
1250 schoenebeck 809 if (!pInstruments) LoadInstruments();
1251 schoenebeck 800 __ensureMandatoryChunksExist();
1252     RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);
1253     RIFF::List* lstInstr = lstInstruments->AddSubList(LIST_TYPE_INS);
1254     Instrument* pInstrument = new Instrument(this, lstInstr);
1255     pInstruments->push_back(pInstrument);
1256     return pInstrument;
1257     }
1258 schoenebeck 2
1259 schoenebeck 809 /** @brief Delete an instrument.
1260 schoenebeck 800 *
1261     * This will delete the given Instrument object from the DLS file. You
1262     * have to call Save() to make this persistent to the file.
1263     *
1264     * @param pInstrument - instrument to delete
1265     */
1266     void File::DeleteInstrument(Instrument* pInstrument) {
1267 schoenebeck 802 if (!pInstruments) return;
1268 schoenebeck 800 InstrumentList::iterator iter = find(pInstruments->begin(), pInstruments->end(), pInstrument);
1269     if (iter == pInstruments->end()) return;
1270     pInstruments->erase(iter);
1271     delete pInstrument;
1272     }
1273 schoenebeck 2
1274 schoenebeck 800 /**
1275     * Apply all the DLS file's current instruments, samples and settings to
1276     * the respective RIFF chunks. You have to call Save() to make changes
1277     * persistent.
1278     *
1279     * @throws Exception - on errors
1280     */
1281     void File::UpdateChunks() {
1282     // first update base class's chunks
1283     Resource::UpdateChunks();
1284    
1285     // if version struct exists, update 'vers' chunk
1286     if (pVersion) {
1287     RIFF::Chunk* ckVersion = pRIFF->GetSubChunk(CHUNK_ID_VERS);
1288     if (!ckVersion) ckVersion = pRIFF->AddSubChunk(CHUNK_ID_VERS, 8);
1289     uint8_t* pData = (uint8_t*) ckVersion->LoadChunkData();
1290 persson 918 memcpy(pData, pVersion, 2 * 4);
1291 schoenebeck 800 }
1292    
1293     // update 'colh' chunk
1294     Instruments = (pInstruments) ? pInstruments->size() : 0;
1295     RIFF::Chunk* colh = pRIFF->GetSubChunk(CHUNK_ID_COLH);
1296     if (!colh) colh = pRIFF->AddSubChunk(CHUNK_ID_COLH, 4);
1297     uint8_t* pData = (uint8_t*) colh->LoadChunkData();
1298 persson 918 memcpy(pData, &Instruments, 4);
1299 schoenebeck 800
1300     // update instrument's chunks
1301     if (pInstruments) {
1302     InstrumentList::iterator iter = pInstruments->begin();
1303     InstrumentList::iterator end = pInstruments->end();
1304     for (; iter != end; ++iter) {
1305     (*iter)->UpdateChunks();
1306     }
1307     }
1308    
1309     // update 'ptbl' chunk
1310     const int iSamples = (pSamples) ? pSamples->size() : 0;
1311     const int iPtblOffsetSize = (b64BitWavePoolOffsets) ? 8 : 4;
1312     RIFF::Chunk* ptbl = pRIFF->GetSubChunk(CHUNK_ID_PTBL);
1313     if (!ptbl) ptbl = pRIFF->AddSubChunk(CHUNK_ID_PTBL, 1 /*anything, we'll resize*/);
1314     const int iPtblSize = WavePoolHeaderSize + iPtblOffsetSize * iSamples;
1315     ptbl->Resize(iPtblSize);
1316     pData = (uint8_t*) ptbl->LoadChunkData();
1317     WavePoolCount = iSamples;
1318 persson 918 memcpy(&pData[4], &WavePoolCount, 4);
1319 schoenebeck 800 // we actually update the sample offsets in the pool table when we Save()
1320     memset(&pData[WavePoolHeaderSize], 0, iPtblSize - WavePoolHeaderSize);
1321    
1322     // update sample's chunks
1323     if (pSamples) {
1324     SampleList::iterator iter = pSamples->begin();
1325     SampleList::iterator end = pSamples->end();
1326     for (; iter != end; ++iter) {
1327     (*iter)->UpdateChunks();
1328     }
1329     }
1330     }
1331    
1332     /** @brief Save changes to another file.
1333     *
1334     * Make all changes persistent by writing them to another file.
1335     * <b>Caution:</b> this method is optimized for writing to
1336     * <b>another</b> file, do not use it to save the changes to the same
1337     * file! Use Save() (without path argument) in that case instead!
1338     * Ignoring this might result in a corrupted file!
1339     *
1340     * After calling this method, this File object will be associated with
1341     * the new file (given by \a Path) afterwards.
1342     *
1343     * @param Path - path and file name where everything should be written to
1344     */
1345     void File::Save(const String& Path) {
1346     UpdateChunks();
1347     pRIFF->Save(Path);
1348     __UpdateWavePoolTableChunk();
1349     }
1350    
1351     /** @brief Save changes to same file.
1352     *
1353     * Make all changes persistent by writing them to the actual (same)
1354     * file. The file might temporarily grow to a higher size than it will
1355     * have at the end of the saving process.
1356     *
1357     * @throws RIFF::Exception if any kind of IO error occured
1358     * @throws DLS::Exception if any kind of DLS specific error occured
1359     */
1360     void File::Save() {
1361     UpdateChunks();
1362     pRIFF->Save();
1363     __UpdateWavePoolTableChunk();
1364     }
1365    
1366     /**
1367     * Checks if all (for DLS) mandatory chunks exist, if not they will be
1368     * created. Note that those chunks will not be made persistent until
1369     * Save() was called.
1370     */
1371     void File::__ensureMandatoryChunksExist() {
1372     // enusre 'lins' list chunk exists (mandatory for instrument definitions)
1373     RIFF::List* lstInstruments = pRIFF->GetSubList(LIST_TYPE_LINS);
1374     if (!lstInstruments) pRIFF->AddSubList(LIST_TYPE_LINS);
1375     // ensure 'ptbl' chunk exists (mandatory for samples)
1376     RIFF::Chunk* ptbl = pRIFF->GetSubChunk(CHUNK_ID_PTBL);
1377     if (!ptbl) {
1378     const int iOffsetSize = (b64BitWavePoolOffsets) ? 8 : 4;
1379     ptbl = pRIFF->AddSubChunk(CHUNK_ID_PTBL, WavePoolHeaderSize + iOffsetSize);
1380     }
1381     // enusre 'wvpl' list chunk exists (mandatory for samples)
1382     RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);
1383     if (!wvpl) pRIFF->AddSubList(LIST_TYPE_WVPL);
1384     }
1385    
1386     /**
1387     * Updates (persistently) the wave pool table with offsets to all
1388     * currently available samples. <b>Caution:</b> this method assumes the
1389 schoenebeck 804 * 'ptbl' chunk to be already of the correct size and the file to be
1390     * writable, so usually this method is only called after a Save() call.
1391 schoenebeck 800 *
1392     * @throws Exception - if 'ptbl' chunk is too small (should only occur
1393     * if there's a bug)
1394     */
1395     void File::__UpdateWavePoolTableChunk() {
1396     __UpdateWavePoolTable();
1397     RIFF::Chunk* ptbl = pRIFF->GetSubChunk(CHUNK_ID_PTBL);
1398     const int iOffsetSize = (b64BitWavePoolOffsets) ? 8 : 4;
1399     // check if 'ptbl' chunk is large enough
1400 schoenebeck 802 WavePoolCount = (pSamples) ? pSamples->size() : 0;
1401 schoenebeck 800 const unsigned long ulRequiredSize = WavePoolHeaderSize + iOffsetSize * WavePoolCount;
1402     if (ptbl->GetSize() < ulRequiredSize) throw Exception("Fatal error, 'ptbl' chunk too small");
1403 schoenebeck 804 // save the 'ptbl' chunk's current read/write position
1404     unsigned long ulOriginalPos = ptbl->GetPos();
1405 schoenebeck 800 // update headers
1406 schoenebeck 804 ptbl->SetPos(0);
1407     ptbl->WriteUint32(&WavePoolHeaderSize);
1408     ptbl->WriteUint32(&WavePoolCount);
1409 schoenebeck 800 // update offsets
1410 schoenebeck 804 ptbl->SetPos(WavePoolHeaderSize);
1411 schoenebeck 800 if (b64BitWavePoolOffsets) {
1412     for (int i = 0 ; i < WavePoolCount ; i++) {
1413 schoenebeck 804 ptbl->WriteUint32(&pWavePoolTableHi[i]);
1414     ptbl->WriteUint32(&pWavePoolTable[i]);
1415 schoenebeck 800 }
1416     } else { // conventional 32 bit offsets
1417     for (int i = 0 ; i < WavePoolCount ; i++)
1418 schoenebeck 804 ptbl->WriteUint32(&pWavePoolTable[i]);
1419 schoenebeck 800 }
1420 schoenebeck 804 // restore 'ptbl' chunk's original read/write position
1421     ptbl->SetPos(ulOriginalPos);
1422 schoenebeck 800 }
1423    
1424     /**
1425     * Updates the wave pool table with offsets to all currently available
1426     * samples. <b>Caution:</b> this method assumes the 'wvpl' list chunk
1427     * exists already.
1428     */
1429     void File::__UpdateWavePoolTable() {
1430 schoenebeck 802 WavePoolCount = (pSamples) ? pSamples->size() : 0;
1431 schoenebeck 800 // resize wave pool table arrays
1432     if (pWavePoolTable) delete[] pWavePoolTable;
1433     if (pWavePoolTableHi) delete[] pWavePoolTableHi;
1434     pWavePoolTable = new uint32_t[WavePoolCount];
1435     pWavePoolTableHi = new uint32_t[WavePoolCount];
1436 schoenebeck 802 if (!pSamples) return;
1437 schoenebeck 800 // update offsets int wave pool table
1438     RIFF::List* wvpl = pRIFF->GetSubList(LIST_TYPE_WVPL);
1439     uint64_t wvplFileOffset = wvpl->GetFilePos();
1440     if (b64BitWavePoolOffsets) {
1441     SampleList::iterator iter = pSamples->begin();
1442     SampleList::iterator end = pSamples->end();
1443     for (int i = 0 ; iter != end ; ++iter, i++) {
1444 schoenebeck 804 uint64_t _64BitOffset = (*iter)->pWaveList->GetFilePos() - wvplFileOffset - LIST_HEADER_SIZE;
1445 schoenebeck 800 (*iter)->ulWavePoolOffset = _64BitOffset;
1446     pWavePoolTableHi[i] = (uint32_t) (_64BitOffset >> 32);
1447     pWavePoolTable[i] = (uint32_t) _64BitOffset;
1448     }
1449     } else { // conventional 32 bit offsets
1450     SampleList::iterator iter = pSamples->begin();
1451     SampleList::iterator end = pSamples->end();
1452     for (int i = 0 ; iter != end ; ++iter, i++) {
1453 schoenebeck 804 uint64_t _64BitOffset = (*iter)->pWaveList->GetFilePos() - wvplFileOffset - LIST_HEADER_SIZE;
1454 schoenebeck 800 (*iter)->ulWavePoolOffset = _64BitOffset;
1455     pWavePoolTable[i] = (uint32_t) _64BitOffset;
1456     }
1457     }
1458     }
1459    
1460    
1461    
1462 schoenebeck 2 // *************** Exception ***************
1463     // *
1464    
1465     Exception::Exception(String Message) : RIFF::Exception(Message) {
1466     }
1467    
1468     void Exception::PrintMessage() {
1469     std::cout << "DLS::Exception: " << Message << std::endl;
1470     }
1471    
1472 schoenebeck 518
1473     // *************** functions ***************
1474     // *
1475    
1476     /**
1477     * Returns the name of this C++ library. This is usually "libgig" of
1478     * course. This call is equivalent to RIFF::libraryName() and
1479     * gig::libraryName().
1480     */
1481     String libraryName() {
1482     return PACKAGE;
1483     }
1484    
1485     /**
1486     * Returns version of this C++ library. This call is equivalent to
1487     * RIFF::libraryVersion() and gig::libraryVersion().
1488     */
1489     String libraryVersion() {
1490     return VERSION;
1491     }
1492    
1493 schoenebeck 2 } // namespace DLS

  ViewVC Help
Powered by ViewVC