/[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 3115 by schoenebeck, Sat Apr 15 20:17:05 2017 UTC revision 3323 by schoenebeck, Thu Jul 20 22:09:54 2017 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-2016 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2017 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 24  Line 24 
24  #include "gig.h"  #include "gig.h"
25    
26  #include "helper.h"  #include "helper.h"
27    #include "Serialization.h"
28    
29  #include <algorithm>  #include <algorithm>
30  #include <math.h>  #include <math.h>
# Line 55  Line 56 
56  #define GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(x)    ((x & 0x03) << 3)  #define GIG_EG_CTR_DECAY_INFLUENCE_ENCODE(x)    ((x & 0x03) << 3)
57  #define GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(x)  ((x & 0x03) << 5)  #define GIG_EG_CTR_RELEASE_INFLUENCE_ENCODE(x)  ((x & 0x03) << 5)
58    
59    #define SRLZ(member) \
60        archive->serializeMember(*this, member, #member);
61    
62  namespace gig {  namespace gig {
63    
64  // *************** Internal functions for sample decompression ***************  // *************** Internal functions for sample decompression ***************
# Line 315  namespace { Line 319  namespace {
319    
320    
321    
322    // *************** leverage_ctrl_t ***************
323    // *
324    
325        void leverage_ctrl_t::serialize(Serialization::Archive* archive) {
326            SRLZ(type);
327            SRLZ(controller_number);
328        }
329    
330    
331    
332    // *************** crossfade_t ***************
333    // *
334    
335        void crossfade_t::serialize(Serialization::Archive* archive) {
336            SRLZ(in_start);
337            SRLZ(in_end);
338            SRLZ(out_start);
339            SRLZ(out_end);
340        }
341    
342    
343    
344    // *************** eg_opt_t ***************
345    // *
346    
347        eg_opt_t::eg_opt_t() {
348            AttackCancel     = true;
349            AttackHoldCancel = true;
350            DecayCancel      = true;
351            ReleaseCancel    = true;
352        }
353    
354        void eg_opt_t::serialize(Serialization::Archive* archive) {
355            SRLZ(AttackCancel);
356            SRLZ(AttackHoldCancel);
357            SRLZ(DecayCancel);
358            SRLZ(ReleaseCancel);
359        }
360    
361    
362    
363  // *************** Sample ***************  // *************** Sample ***************
364  // *  // *
365    
# Line 1685  namespace { Line 1730  namespace {
1730              VCFType                         = vcf_type_lowpass;              VCFType                         = vcf_type_lowpass;
1731              memset(DimensionUpperLimits, 127, 8);              memset(DimensionUpperLimits, 127, 8);
1732          }          }
1733            // format extension for EG behavior options, these will *NOT* work with
1734            // Gigasampler/GigaStudio !
1735            RIFF::Chunk* lsde = _3ewl->GetSubChunk(CHUNK_ID_LSDE);
1736            if (lsde) {
1737                unsigned char byte = lsde->ReadUint8();
1738                EGOptions.AttackCancel     = byte & 1;
1739                EGOptions.AttackHoldCancel = byte & (1 << 1);
1740                EGOptions.DecayCancel      = byte & (1 << 2);
1741                EGOptions.ReleaseCancel    = byte & (1 << 3);
1742            }
1743    
1744          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,          pVelocityAttenuationTable = GetVelocityTable(VelocityResponseCurve,
1745                                                       VelocityResponseDepth,                                                       VelocityResponseDepth,
# Line 1790  namespace { Line 1845  namespace {
1845          }          }
1846      }      }
1847    
1848        void DimensionRegion::serialize(Serialization::Archive* archive) {
1849            // in case this class will become backward incompatible one day,
1850            // then set a version and minimum version for this class like:
1851            //archive->setVersion(*this, 2);
1852            //archive->setMinVersion(*this, 1);
1853    
1854            SRLZ(VelocityUpperLimit);
1855            SRLZ(EG1PreAttack);
1856            SRLZ(EG1Attack);
1857            SRLZ(EG1Decay1);
1858            SRLZ(EG1Decay2);
1859            SRLZ(EG1InfiniteSustain);
1860            SRLZ(EG1Sustain);
1861            SRLZ(EG1Release);
1862            SRLZ(EG1Hold);
1863            SRLZ(EG1Controller);
1864            SRLZ(EG1ControllerInvert);
1865            SRLZ(EG1ControllerAttackInfluence);
1866            SRLZ(EG1ControllerDecayInfluence);
1867            SRLZ(EG1ControllerReleaseInfluence);
1868            SRLZ(LFO1Frequency);
1869            SRLZ(LFO1InternalDepth);
1870            SRLZ(LFO1ControlDepth);
1871            SRLZ(LFO1Controller);
1872            SRLZ(LFO1FlipPhase);
1873            SRLZ(LFO1Sync);
1874            SRLZ(EG2PreAttack);
1875            SRLZ(EG2Attack);
1876            SRLZ(EG2Decay1);
1877            SRLZ(EG2Decay2);
1878            SRLZ(EG2InfiniteSustain);
1879            SRLZ(EG2Sustain);
1880            SRLZ(EG2Release);
1881            SRLZ(EG2Controller);
1882            SRLZ(EG2ControllerInvert);
1883            SRLZ(EG2ControllerAttackInfluence);
1884            SRLZ(EG2ControllerDecayInfluence);
1885            SRLZ(EG2ControllerReleaseInfluence);
1886            SRLZ(LFO2Frequency);
1887            SRLZ(LFO2InternalDepth);
1888            SRLZ(LFO2ControlDepth);
1889            SRLZ(LFO2Controller);
1890            SRLZ(LFO2FlipPhase);
1891            SRLZ(LFO2Sync);
1892            SRLZ(EG3Attack);
1893            SRLZ(EG3Depth);
1894            SRLZ(LFO3Frequency);
1895            SRLZ(LFO3InternalDepth);
1896            SRLZ(LFO3ControlDepth);
1897            SRLZ(LFO3Controller);
1898            SRLZ(LFO3Sync);
1899            SRLZ(VCFEnabled);
1900            SRLZ(VCFType);
1901            SRLZ(VCFCutoffController);
1902            SRLZ(VCFCutoffControllerInvert);
1903            SRLZ(VCFCutoff);
1904            SRLZ(VCFVelocityCurve);
1905            SRLZ(VCFVelocityScale);
1906            SRLZ(VCFVelocityDynamicRange);
1907            SRLZ(VCFResonance);
1908            SRLZ(VCFResonanceDynamic);
1909            SRLZ(VCFResonanceController);
1910            SRLZ(VCFKeyboardTracking);
1911            SRLZ(VCFKeyboardTrackingBreakpoint);
1912            SRLZ(VelocityResponseCurve);
1913            SRLZ(VelocityResponseDepth);
1914            SRLZ(VelocityResponseCurveScaling);
1915            SRLZ(ReleaseVelocityResponseCurve);
1916            SRLZ(ReleaseVelocityResponseDepth);
1917            SRLZ(ReleaseTriggerDecay);
1918            SRLZ(Crossfade);
1919            SRLZ(PitchTrack);
1920            SRLZ(DimensionBypass);
1921            SRLZ(Pan);
1922            SRLZ(SelfMask);
1923            SRLZ(AttenuationController);
1924            SRLZ(InvertAttenuationController);
1925            SRLZ(AttenuationControllerThreshold);
1926            SRLZ(ChannelOffset);
1927            SRLZ(SustainDefeat);
1928            SRLZ(MSDecode);
1929            //SRLZ(SampleStartOffset);
1930            SRLZ(SampleAttenuation);
1931            SRLZ(EGOptions);
1932    
1933            // derived attributes from DLS::Sampler
1934            SRLZ(FineTune);
1935            SRLZ(Gain);
1936        }
1937    
1938      /**      /**
1939       * Updates the respective member variable and updates @c SampleAttenuation       * Updates the respective member variable and updates @c SampleAttenuation
1940       * which depends on this value.       * which depends on this value.
# Line 2090  namespace { Line 2235  namespace {
2235          if (chunksize >= 148) {          if (chunksize >= 148) {
2236              memcpy(&pData[140], DimensionUpperLimits, 8);              memcpy(&pData[140], DimensionUpperLimits, 8);
2237          }          }
2238    
2239            // format extension for EG behavior options, these will *NOT* work with
2240            // Gigasampler/GigaStudio !
2241            RIFF::Chunk* lsde = pParentList->GetSubChunk(CHUNK_ID_LSDE);
2242            if (!lsde) {
2243                // only add this "LSDE" chunk if the EG options do not match the
2244                // default EG behavior
2245                eg_opt_t defaultOpt;
2246                if (memcmp(&EGOptions, &defaultOpt, sizeof(eg_opt_t))) {
2247                    lsde = pParentList->AddSubChunk(CHUNK_ID_LSDE, 1);
2248                    // move LSDE chunk to the end of parent list
2249                    pParentList->MoveSubChunk(lsde, (RIFF::Chunk*)NULL);
2250                }
2251            }
2252            if (lsde) {
2253                unsigned char* pByte = (unsigned char*) lsde->LoadChunkData();
2254                *pByte =
2255                    (EGOptions.AttackCancel     ? 1 : 0) |
2256                    (EGOptions.AttackHoldCancel ? (1<<1) : 0) |
2257                    (EGOptions.DecayCancel      ? (1<<2) : 0) |
2258                    (EGOptions.ReleaseCancel    ? (1<<3) : 0);
2259            }
2260      }      }
2261    
2262      double* DimensionRegion::GetReleaseVelocityTable(curve_type_t releaseVelocityResponseCurve, uint8_t releaseVelocityResponseDepth) {      double* DimensionRegion::GetReleaseVelocityTable(curve_type_t releaseVelocityResponseCurve, uint8_t releaseVelocityResponseDepth) {
# Line 2504  namespace { Line 2671  namespace {
2671    
2672              // unknown controller type              // unknown controller type
2673              default:              default:
2674                  throw gig::Exception("Unknown leverage controller type.");                  decodedcontroller.type = leverage_ctrl_t::type_none;
2675                    decodedcontroller.controller_number = 0;
2676                    printf("Warning: Unknown leverage controller type (0x%x).\n", EncodedController);
2677                    break;
2678          }          }
2679          return decodedcontroller;          return decodedcontroller;
2680      }      }
# Line 4298  namespace { Line 4468  namespace {
4468          return pGroup;          return pGroup;
4469      }      }
4470    
4471        /**
4472         * Make a (semi) deep copy of the Script object given by @a orig
4473         * and assign it to this object. Note: the ScriptGroup this Script
4474         * object belongs to remains untouched by this call.
4475         *
4476         * @param orig - original Script object to be copied from
4477         */
4478        void Script::CopyAssign(const Script* orig) {
4479            Name        = orig->Name;
4480            Compression = orig->Compression;
4481            Encoding    = orig->Encoding;
4482            Language    = orig->Language;
4483            Bypass      = orig->Bypass;
4484            data        = orig->data;
4485        }
4486    
4487      void Script::RemoveAllScriptReferences() {      void Script::RemoveAllScriptReferences() {
4488          File* pFile = pGroup->pFile;          File* pFile = pGroup->pFile;
4489          for (int i = 0; pFile->GetInstrument(i); ++i) {          for (int i = 0; pFile->GetInstrument(i); ++i) {
# Line 5613  namespace { Line 5799  namespace {
5799              mGroups[pFile->GetSample(i)->GetGroup()]->AddSample(s);              mGroups[pFile->GetSample(i)->GetGroup()]->AddSample(s);
5800              mSamples[pFile->GetSample(i)] = s;              mSamples[pFile->GetSample(i)] = s;
5801          }          }
5802            
5803            // clone script groups and their scripts
5804            for (int iGroup = 0; pFile->GetScriptGroup(iGroup); ++iGroup) {
5805                ScriptGroup* sg = pFile->GetScriptGroup(iGroup);
5806                ScriptGroup* dg = AddScriptGroup();
5807                dg->Name = "COPY" + ToString(iCallCount) + "_" + sg->Name;
5808                for (int iScript = 0; sg->GetScript(iScript); ++iScript) {
5809                    Script* ss = sg->GetScript(iScript);
5810                    Script* ds = dg->AddScript();
5811                    ds->CopyAssign(ss);
5812                }
5813            }
5814    
5815          //BUG: For some reason this method only works with this additional          //BUG: For some reason this method only works with this additional
5816          //     Save() call in between here.          //     Save() call in between here.
5817          //          //
# Line 6330  namespace { Line 6528  namespace {
6528  // *************** Exception ***************  // *************** Exception ***************
6529  // *  // *
6530    
6531      Exception::Exception(String Message) : DLS::Exception(Message) {      Exception::Exception() : DLS::Exception() {
6532        }
6533    
6534        Exception::Exception(String format, ...) : DLS::Exception() {
6535            va_list arg;
6536            va_start(arg, format);
6537            Message = assemble(format, arg);
6538            va_end(arg);
6539        }
6540    
6541        Exception::Exception(String format, va_list arg) : DLS::Exception() {
6542            Message = assemble(format, arg);
6543      }      }
6544    
6545      void Exception::PrintMessage() {      void Exception::PrintMessage() {

Legend:
Removed from v.3115  
changed lines
  Added in v.3323

  ViewVC Help
Powered by ViewVC