dmusicf.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:80k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /************************************************************************
  2. *                                                                       *
  3. *   dmusicf.h -- This module defines the DirectMusic file formats       *
  4. *                                                                       *
  5. *   Copyright (c) 1998-1999 Microsoft Corporation
  6. *                                                                       *
  7. ************************************************************************/
  8. #ifndef _DMUSICF_
  9. #define _DMUSICF_
  10. #include <windows.h>
  11. #define COM_NO_WINDOWS_H
  12. #include <objbase.h>
  13. #include <mmsystem.h>
  14. #include <pshpack8.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. interface IDirectMusicCollection;
  19. #ifndef __cplusplus 
  20. typedef interface IDirectMusicCollection IDirectMusicCollection;
  21. #endif
  22. /* Common chunks */
  23. #define DMUS_FOURCC_GUID_CHUNK        mmioFOURCC('g','u','i','d')
  24. #define DMUS_FOURCC_INFO_LIST         mmioFOURCC('I','N','F','O')
  25. #define DMUS_FOURCC_UNFO_LIST         mmioFOURCC('U','N','F','O')
  26. #define DMUS_FOURCC_UNAM_CHUNK        mmioFOURCC('U','N','A','M')
  27. #define DMUS_FOURCC_UART_CHUNK        mmioFOURCC('U','A','R','T')
  28. #define DMUS_FOURCC_UCOP_CHUNK        mmioFOURCC('U','C','O','P')
  29. #define DMUS_FOURCC_USBJ_CHUNK        mmioFOURCC('U','S','B','J')
  30. #define DMUS_FOURCC_UCMT_CHUNK        mmioFOURCC('U','C','M','T')
  31. #define DMUS_FOURCC_CATEGORY_CHUNK    mmioFOURCC('c','a','t','g')
  32. #define DMUS_FOURCC_VERSION_CHUNK     mmioFOURCC('v','e','r','s')
  33. /* The following structures are used by the Tracks, and are the packed structures */
  34. /* that are passed to the Tracks inside the IStream. */
  35. typedef struct _DMUS_IO_SEQ_ITEM
  36. {
  37.     MUSIC_TIME    mtTime;
  38.     MUSIC_TIME    mtDuration;
  39.     DWORD         dwPChannel;
  40.     short         nOffset; 
  41.     BYTE          bStatus;
  42.     BYTE          bByte1;
  43.     BYTE          bByte2;
  44. } DMUS_IO_SEQ_ITEM;
  45. typedef struct _DMUS_IO_CURVE_ITEM
  46. {
  47.     MUSIC_TIME  mtStart;
  48.     MUSIC_TIME  mtDuration;
  49.     MUSIC_TIME  mtResetDuration;
  50.     DWORD       dwPChannel;
  51.     short       nOffset;
  52.     short       nStartValue;
  53.     short       nEndValue;
  54.     short       nResetValue;
  55.     BYTE        bType;
  56.     BYTE        bCurveShape;
  57.     BYTE        bCCData;
  58.     BYTE        bFlags;
  59.     /* Following was added for DX8. */
  60.     WORD        wParamType;      /* RPN or NRPN parameter number. */
  61.     WORD        wMergeIndex;     /* Allows multiple parameters to be merged (pitchbend, volume, and expression.) */
  62. } DMUS_IO_CURVE_ITEM;
  63. typedef struct _DMUS_IO_TEMPO_ITEM
  64. {
  65.     MUSIC_TIME    lTime;
  66.     double        dblTempo;
  67. } DMUS_IO_TEMPO_ITEM;
  68. typedef struct _DMUS_IO_SYSEX_ITEM
  69. {
  70.     MUSIC_TIME    mtTime;
  71.     DWORD         dwPChannel;
  72.     DWORD         dwSysExLength;
  73. } DMUS_IO_SYSEX_ITEM;
  74. typedef DMUS_CHORD_KEY DMUS_CHORD_PARAM; /* DMUS_CHORD_KEY defined in dmusici.h */
  75. typedef struct _DMUS_RHYTHM_PARAM
  76. {
  77.     DMUS_TIMESIGNATURE  TimeSig;
  78.     DWORD               dwRhythmPattern;
  79. } DMUS_RHYTHM_PARAM;
  80. typedef struct _DMUS_TEMPO_PARAM
  81. {
  82.     MUSIC_TIME  mtTime;
  83.     double      dblTempo;
  84. } DMUS_TEMPO_PARAM;
  85. typedef struct _DMUS_MUTE_PARAM
  86. {
  87.     DWORD   dwPChannel;
  88.     DWORD   dwPChannelMap;
  89.     BOOL    fMute;
  90. } DMUS_MUTE_PARAM;
  91. /* Style chunks */
  92. #define DMUS_FOURCC_STYLE_FORM            mmioFOURCC('D','M','S','T')
  93. #define DMUS_FOURCC_STYLE_CHUNK           mmioFOURCC('s','t','y','h')
  94. #define DMUS_FOURCC_PART_LIST             mmioFOURCC('p','a','r','t')
  95. #define DMUS_FOURCC_PART_CHUNK            mmioFOURCC('p','r','t','h')
  96. #define DMUS_FOURCC_NOTE_CHUNK            mmioFOURCC('n','o','t','e')
  97. #define DMUS_FOURCC_CURVE_CHUNK           mmioFOURCC('c','r','v','e')
  98. #define DMUS_FOURCC_MARKER_CHUNK          mmioFOURCC('m','r','k','r')
  99. #define DMUS_FOURCC_RESOLUTION_CHUNK      mmioFOURCC('r','s','l','n')
  100. #define DMUS_FOURCC_ANTICIPATION_CHUNK    mmioFOURCC('a','n','p','n')
  101. #define DMUS_FOURCC_PATTERN_LIST          mmioFOURCC('p','t','t','n')
  102. #define DMUS_FOURCC_PATTERN_CHUNK         mmioFOURCC('p','t','n','h')
  103. #define DMUS_FOURCC_RHYTHM_CHUNK          mmioFOURCC('r','h','t','m')
  104. #define DMUS_FOURCC_PARTREF_LIST          mmioFOURCC('p','r','e','f')
  105. #define DMUS_FOURCC_PARTREF_CHUNK         mmioFOURCC('p','r','f','c')
  106. #define DMUS_FOURCC_STYLE_PERS_REF_LIST   mmioFOURCC('p','r','r','f')
  107. #define DMUS_FOURCC_MOTIFSETTINGS_CHUNK   mmioFOURCC('m','t','f','s')
  108. /* Flags used by variations: these make up the DWORDs in dwVariationChoices.               */
  109. /* These flags determine the types of chords supported by a given variation in DirectMusic */
  110. /* mode.  The first seven flags (bits 1-7) are set if the variation supports major chords  */
  111. /* rooted in scale positions, so, e.g., if bits 1, 2, and 4 are set, the variation         */
  112. /* supports major chords rooted in the tonic, second, and fourth scale positions.  The     */
  113. /* next seven flags serve the same purpose, but for minor chords, and the following seven  */
  114. /* flags serve the same purpose for chords that are not major or minor (e.g., SUS 4        */
  115. /* chords).  Bits 22, 23, and 24 are set if the variation supports chords rooted in the    */
  116. /* scale, chords rooted sharp of scale tones, and chords rooted flat of scale tones,       */
  117. /* respectively.  For example, to support a C# minor chord in the scale of C Major,        */
  118. /* bits 8 (for tonic minor) and 24 (for sharp) need to be set.  Bits 25, 26, an 27 handle  */
  119. /* chords that are triads, 6th or 7th chords, and chords with extensions, respectively.    */
  120. /* bits 28 and 29 handle chords that are followed by tonic and dominant chords,            */
  121. /* respectively.                                                                           */
  122. #define DMUS_VARIATIONF_MAJOR        0x0000007F /* Seven positions in the scale - major chords. */    
  123. #define DMUS_VARIATIONF_MINOR        0x00003F80 /* Seven positions in the scale - minor chords. */    
  124. #define DMUS_VARIATIONF_OTHER        0x001FC000 /* Seven positions in the scale - other chords. */    
  125. #define DMUS_VARIATIONF_ROOT_SCALE   0x00200000 /* Handles chord roots in the scale. */         
  126. #define DMUS_VARIATIONF_ROOT_FLAT    0x00400000 /* Handles flat chord roots (based on scale notes). */         
  127. #define DMUS_VARIATIONF_ROOT_SHARP   0x00800000 /* Handles sharp chord roots (based on scale notes). */         
  128. #define DMUS_VARIATIONF_TYPE_TRIAD   0x01000000 /* Handles simple chords - triads. */  
  129. #define DMUS_VARIATIONF_TYPE_6AND7   0x02000000 /* Handles simple chords - 6 and 7. */  
  130. #define DMUS_VARIATIONF_TYPE_COMPLEX 0x04000000 /* Handles complex chords. */  
  131. #define DMUS_VARIATIONF_DEST_TO1     0x08000000 /* Handles transitions to 1 chord. */  
  132. #define DMUS_VARIATIONF_DEST_TO5     0x10000000 /* Handles transitions to 5 chord. */  
  133. #define DMUS_VARIATIONF_DEST_OTHER   0x40000000 /* Handles transitions to chords other than 1 . */  
  134. /* legacy mask for variation modes */
  135. #define DMUS_VARIATIONF_MODES        0xE0000000
  136. /* Bits 29 and 31 of the variation flags are the Mode bits.  If both are 0, it's IMA. */  
  137. /* If bit 29 is 1, it's Direct Music. */
  138. #define DMUS_VARIATIONF_MODES_EX     (0x20000000 | 0x80000000)
  139. #define DMUS_VARIATIONF_IMA25_MODE   0x00000000
  140. #define DMUS_VARIATIONF_DMUS_MODE    0x20000000
  141. /* Set this if the part uses marker events */
  142. #define DMUS_PARTF_USE_MARKERS       0x1
  143. /* Set this if the part is allowed to switch only on chord-aligned markers */
  144. #define DMUS_PARTF_ALIGN_CHORDS      0x2
  145. /* These specify if the marker event signals whether to stop a variation or start a 
  146. pattern/variation (or both), and whether new variations must align with a chord */
  147. #define DMUS_MARKERF_START            0x1
  148. #define DMUS_MARKERF_STOP             0x2
  149. #define DMUS_MARKERF_CHORD_ALIGN      0x4
  150. /* if this flag is set, variation settings in a playing pattern-based track's state data will 
  151. persist in the track after it stops playing */
  152. #define DMUS_PATTERNF_PERSIST_CONTROL 0x1
  153. /* These specify possible values for DMUS_IO_PARTREF.bRandomVariation
  154.    all but DMUS_VARIATIONT_SEQUENTIAL and DMUS_VARIATIONT_RANDOM are dx8. */
  155. typedef enum enumDMUS_VARIATIONT_TYPES
  156. {
  157.     DMUS_VARIATIONT_SEQUENTIAL       = 0, /* Play sequential starting with variation 1. */
  158.     DMUS_VARIATIONT_RANDOM           = 1, /* Play randomly. */
  159.     DMUS_VARIATIONT_RANDOM_START     = 2, /* Play sequential starting with a random variation. */
  160.     DMUS_VARIATIONT_NO_REPEAT        = 3, /* Play randomly, but don't play the same variation twice. */
  161.     DMUS_VARIATIONT_RANDOM_ROW       = 4  /* Play randomly as a row: don't repeat any variation until all have played. */
  162. } DMUS_VARIATIONT_TYPES;
  163. #pragma pack(2)
  164. typedef struct _DMUS_IO_TIMESIG
  165. {
  166.     /* Time signatures define how many beats per measure, which note receives */
  167.     /* the beat, and the grid resolution. */
  168.     BYTE    bBeatsPerMeasure;   /* beats per measure (top of time sig) */
  169.     BYTE    bBeat;              /* what note receives the beat (bottom of time sig.) */
  170.                                 /* we can assume that 0 means 256th note */
  171.     WORD    wGridsPerBeat;      /* grids per beat */
  172. } DMUS_IO_TIMESIG;
  173. typedef struct _DMUS_IO_STYLE
  174. {
  175.     DMUS_IO_TIMESIG     timeSig;        /* Styles have a default Time Signature */
  176.     double              dblTempo;   
  177. } DMUS_IO_STYLE;
  178. typedef struct _DMUS_IO_VERSION
  179. {
  180.     DWORD               dwVersionMS;        /* Version # high-order 32 bits */
  181.     DWORD               dwVersionLS;        /* Version # low-order 32 bits  */
  182. } DMUS_IO_VERSION;
  183. typedef struct _DMUS_IO_PATTERN
  184. {
  185.     DMUS_IO_TIMESIG     timeSig;           /* Patterns can override the Style's Time sig. */
  186.     BYTE                bGrooveBottom;     /* bottom of groove range */
  187.     BYTE                bGrooveTop;        /* top of groove range */
  188.     WORD                wEmbellishment;    /* Fill, Break, Intro, End, Normal, Motif */
  189.     WORD                wNbrMeasures;      /* length in measures */
  190.     BYTE                bDestGrooveBottom; /* bottom of groove range for next pattern */
  191.     BYTE                bDestGrooveTop;    /* top of groove range for next pattern */
  192.     DWORD               dwFlags;           /* various flags */
  193. } DMUS_IO_PATTERN;
  194. typedef struct _DMUS_IO_STYLEPART
  195. {
  196.     DMUS_IO_TIMESIG     timeSig;        /* can override pattern's */
  197.     DWORD               dwVariationChoices[32]; /* MOAW choice bitfield */
  198.     GUID                guidPartID;     /* identifies the part */
  199.     WORD                wNbrMeasures;   /* length of the Part */
  200.     BYTE                bPlayModeFlags; /* see PLAYMODE flags */
  201.     BYTE                bInvertUpper;   /* inversion upper limit */
  202.     BYTE                bInvertLower;   /* inversion lower limit */
  203.     BYTE                bPad[3];        /* for DWORD alignment */
  204.     DWORD               dwFlags;        /* various flags */ 
  205. } DMUS_IO_STYLEPART;
  206. typedef struct _DMUS_IO_PARTREF
  207. {
  208.     GUID    guidPartID;         /* unique ID for matching up with parts */
  209.     WORD    wLogicalPartID;     /* corresponds to port/device/midi channel OBSOLETE */
  210.     BYTE    bVariationLockID;   /* parts with the same ID lock variations. */
  211.                                 /* high bit is used to identify master Part */
  212.     BYTE    bSubChordLevel;     /* tells which sub chord level this part wants */
  213.     BYTE    bPriority;          /* 256 priority levels. Parts with lower priority */
  214.                                 /* aren't played first when a device runs out of */
  215.                                 /* notes */
  216.     BYTE    bRandomVariation;   /* when set, matching variations play in random order */
  217.                                 /* when clear, matching variations play sequentially */
  218.     WORD    wPad;               /* not used */
  219.     DWORD   dwPChannel;         /* replaces wLogicalPartID */
  220. } DMUS_IO_PARTREF;
  221. typedef struct _DMUS_IO_STYLENOTE
  222. {
  223.     MUSIC_TIME  mtGridStart;    /* when this note occurs */
  224.     DWORD       dwVariation;    /* variation bits */
  225.     MUSIC_TIME  mtDuration;     /* how long this note lasts */
  226.     short       nTimeOffset;    /* offset from mtGridStart */
  227.     WORD        wMusicValue;    /* Position in scale. */
  228.     BYTE        bVelocity;      /* Note velocity. */
  229.     BYTE        bTimeRange;     /* Range to randomize start time. */
  230.     BYTE        bDurRange;      /* Range to randomize duration. */
  231.     BYTE        bVelRange;      /* Range to randomize velocity. */
  232.     BYTE        bInversionID;   /* Identifies inversion group to which this note belongs */
  233.     BYTE        bPlayModeFlags; /* Can override part */
  234.     /* Following exists only under DX8 and on */
  235.     BYTE        bNoteFlags;     /* values from DMUS_NOTEF_FLAGS */
  236. } DMUS_IO_STYLENOTE;
  237. typedef struct _DMUS_IO_STYLECURVE
  238. {
  239.     MUSIC_TIME  mtGridStart;    /* when this curve occurs */
  240.     DWORD       dwVariation;    /* variation bits */
  241.     MUSIC_TIME  mtDuration;     /* how long this curve lasts */
  242.     MUSIC_TIME  mtResetDuration;/* how long after the end of the curve to reset the curve */
  243.     short       nTimeOffset;    /* offset from mtGridStart */
  244.     short       nStartValue;    /* curve's start value */
  245.     short       nEndValue;      /* curve's end value */
  246.     short       nResetValue;    /* the value to which to reset the curve */
  247.     BYTE        bEventType;     /* type of curve */
  248.     BYTE        bCurveShape;    /* shape of curve */
  249.     BYTE        bCCData;        /* CC# */
  250.     BYTE        bFlags;         /* Bit 1=TRUE means to send nResetValue. Otherwise, don't.
  251.                                    Other bits are reserved. */
  252.     /*  Following was added for DX8. */
  253.     WORD        wParamType;      /* RPN or NRPN parameter number. */
  254.     WORD        wMergeIndex;     /* Allows multiple parameters to be merged (pitchbend, volume, and expression.) */
  255. } DMUS_IO_STYLECURVE;
  256. typedef struct _DMUS_IO_STYLEMARKER
  257. {
  258.     MUSIC_TIME  mtGridStart;    /* when this marker occurs */
  259.     DWORD       dwVariation;    /* variation bits */
  260.     WORD        wMarkerFlags;   /* how the marker is used */
  261. } DMUS_IO_STYLEMARKER;
  262. typedef struct _DMUS_IO_STYLERESOLUTION
  263. {
  264.     DWORD    dwVariation;       /* variation bits */
  265.     WORD     wMusicValue;       /* Position in scale. */
  266.     BYTE     bInversionID;      /* Identifies inversion group to which this note belongs */
  267.     BYTE     bPlayModeFlags;    /* Can override part */
  268. } DMUS_IO_STYLERESOLUTION;
  269. typedef struct _DMUS_IO_STYLE_ANTICIPATION
  270. {
  271.     MUSIC_TIME    mtGridStart;   /* when this anticipation occurs */
  272.     DWORD         dwVariation;   /* variation bits */
  273.     short         nTimeOffset;   /* offset from mtGridStart */
  274.     BYTE          bTimeRange;    /* Range to randomize start time. */
  275. } DMUS_IO_STYLE_ANTICIPATION;
  276. typedef struct _DMUS_IO_MOTIFSETTINGS
  277. {
  278.     DWORD       dwRepeats;      /* Number of repeats. By default, 0. */
  279.     MUSIC_TIME  mtPlayStart;    /* Start of playback. By default, 0. */
  280.     MUSIC_TIME  mtLoopStart;    /* Start of looping portion. By default, 0. */
  281.     MUSIC_TIME  mtLoopEnd;      /* End of loop. Must be greater than mtLoopStart. Or, 0, indicating loop full motif.  */
  282.     DWORD       dwResolution;   /* Default resolution. */
  283. } DMUS_IO_MOTIFSETTINGS;
  284. #pragma pack()
  285. /*
  286. RIFF
  287. (
  288.     'DMST'          // Style
  289.     <styh-ck>       // Style header chunk
  290.     <guid-ck>       // Every Style has a GUID
  291.     [<UNFO-list>]   // Name, author, copyright info., comments
  292.     [<vers-ck>]     // version chunk
  293.     <part-list>...  // Array of parts in the Style, used by patterns
  294.     <pttn-list>...  // Array of patterns in the Style
  295.     <DMBD-form>...  // Array of bands in the Style
  296.     [<prrf-list>]...// Optional array of chord map references in the Style
  297. )
  298.     // <styh-ck>
  299.     styh
  300.     (
  301.         <DMUS_IO_STYLE>
  302.     )
  303.     // <guid-ck>
  304.     guid
  305.     (
  306.         <GUID>
  307.     )
  308.     // <vers-ck>
  309.     vers
  310.     (
  311.         <DMUS_IO_VERSION>
  312.     )
  313.     // <part-list>
  314.     LIST
  315.     (
  316.         'part'
  317.         <prth-ck>       // Part header chunk
  318.         [<UNFO-list>]   // Name, author, copyright info., comments
  319.         [<note-ck>]     // Optional chunk containing an array of notes in Part
  320.         [<crve-ck>]     // Optional chunk containing an array of curves in Part
  321.         [<mrkr-ck>]     // Optional chunk containing an array of markers in Part
  322.         [<rsln-ck>]     // Optional chunk containing an array of variation resolutions in Part
  323.         [<anpn-ck>]     // Optional chunk containing an array of resolution anticipations in Part
  324.     )
  325.         // <orth-ck>
  326.         prth
  327.         (
  328.             <DMUS_IO_STYLEPART>
  329.         )
  330.         // <note-ck>
  331.         'note'
  332.         (
  333.             // sizeof DMUS_IO_STYLENOTE:DWORD
  334.             <DMUS_IO_STYLENOTE>...
  335.         )
  336.         // <crve-ck>
  337.         'crve'
  338.         (
  339.             // sizeof DMUS_IO_STYLECURVE:DWORD
  340.             <DMUS_IO_STYLECURVE>...
  341.         )
  342.         // <mrkr-ck>
  343.         'mrkr'
  344.         (
  345.             // sizeof DMUS_IO_STYLEMARKER:DWORD
  346.             <DMUS_IO_STYLEMARKER>...
  347.         )
  348.         // <rsln-ck>
  349.         'rsln'
  350.         (
  351.             // sizeof DMUS_IO_STYLERESOLUTION:DWORD
  352.             <DMUS_IO_STYLERESOLUTION>...
  353.         )
  354.         // <anpn-ck>
  355.         'anpn'
  356.         (
  357.             // sizeof DMUS_IO_STYLE_ANTICIPATION:DWORD
  358.             <DMUS_IO_STYLE_ANTICIPATION>...
  359.         )
  360.     // <pttn-list>
  361.     LIST
  362.     (
  363.         'pttn'
  364.         <ptnh-ck>       // Pattern header chunk
  365.         <rhtm-ck>       // Chunk containing an array of rhythms for chord matching
  366.         [<UNFO-list>]   // Name, author, copyright info., comments
  367.         [<mtfs-ck>]     // Motif settings chunk
  368.         [<DMBD-form>]   // Optional band to be associated with the pattern (for motifs)
  369.         <pref-list>...  // Array of part reference id's
  370.     )
  371.         // <ptnh-ck>
  372.         ptnh
  373.         (
  374.             <DMUS_IO_PATTERN>
  375.         )
  376.         // <rhtm-ck>
  377.         'rhtm'
  378.         (
  379.             // DWORD's representing rhythms for chord matching based on number
  380.             // of measures in the pattern
  381.         )
  382.         // pref-list
  383.         LIST
  384.         (
  385.             'pref'
  386.             <prfc-ck>   // part ref chunk
  387.         )
  388.         // <prfc-ck>
  389.         prfc
  390.         (
  391.             <DMUS_IO_PARTREF>
  392.         )
  393.         // <mtfs-ck>
  394.         mtfs
  395.         (
  396.             <DMUS_IO_MOTIFSETTINGS>
  397.         )
  398.     // <prrf-list>
  399.     LIST
  400.     (
  401.         'prrf'
  402.         <DMRF-list>... // Array of Chordmap references
  403.     )
  404. */
  405. /* Pattern chunk, for use in Pattern tracks */
  406. #define DMUS_FOURCC_PATTERN_FORM        mmioFOURCC('D','M','P','T')
  407. /*
  408. RIFF
  409. (
  410.     'DMPT'          // Pattern
  411.     <styh-ck>       // Style header chunk
  412.     <pttn-list>     // The pattern, in single pattern format (includes DMUS_FOURCC_PART_LIST chunks)
  413. )
  414. */
  415. /* Chord and command file formats */
  416. /* These specify possible values for DMUS_IO_COMMAND.bRepeatMode (dx8) */
  417. typedef enum enumDMUS_PATTERNT_TYPES
  418. {
  419.     DMUS_PATTERNT_RANDOM           = 0, /* Play randomly. (dx7 behavior) */
  420.     DMUS_PATTERNT_REPEAT           = 1, /* Repeat last pattern. */
  421.     DMUS_PATTERNT_SEQUENTIAL       = 2, /* Play sequential starting with first matching pattern. */
  422.     DMUS_PATTERNT_RANDOM_START     = 3, /* Play sequential starting with a random pattern. */
  423.     DMUS_PATTERNT_NO_REPEAT        = 4, /* Play randomly, but don't play the same pattern twice. */
  424.     DMUS_PATTERNT_RANDOM_ROW       = 5  /* Play randomly as a row: don't repeat any pattern until all have played. */
  425. } DMUS_PATTERNT_TYPES;
  426. #define DMUS_FOURCC_CHORDTRACK_LIST         mmioFOURCC('c','o','r','d')
  427. #define DMUS_FOURCC_CHORDTRACKHEADER_CHUNK  mmioFOURCC('c','r','d','h')
  428. #define DMUS_FOURCC_CHORDTRACKBODY_CHUNK    mmioFOURCC('c','r','d','b')
  429. #define DMUS_FOURCC_COMMANDTRACK_CHUNK      mmioFOURCC('c','m','n','d')
  430. typedef struct _DMUS_IO_CHORD
  431. {
  432.     WCHAR       wszName[16];    /* Name of the chord */
  433.     MUSIC_TIME  mtTime;         /* Time of this chord */
  434.     WORD        wMeasure;       /* Measure this falls on */
  435.     BYTE        bBeat;          /* Beat this falls on */
  436.     BYTE        bFlags;         /* Various flags */
  437. } DMUS_IO_CHORD;
  438. typedef struct _DMUS_IO_SUBCHORD
  439. {
  440.     DWORD   dwChordPattern;     /* Notes in the subchord */
  441.     DWORD   dwScalePattern;     /* Notes in the scale */
  442.     DWORD   dwInversionPoints;  /* Where inversions can occur */
  443.     DWORD   dwLevels;           /* Which levels are supported by this subchord */
  444.     BYTE    bChordRoot;         /* Root of the subchord */
  445.     BYTE    bScaleRoot;         /* Root of the scale */
  446. } DMUS_IO_SUBCHORD;
  447. typedef struct _DMUS_IO_COMMAND
  448. {
  449.     MUSIC_TIME  mtTime;         /* Time of this command */
  450.     WORD        wMeasure;       /* Measure this falls on */
  451.     BYTE        bBeat;          /* Beat this falls on */
  452.     BYTE        bCommand;       /* Command type (see #defines below) */
  453.     BYTE        bGrooveLevel;   /* Groove level (0 if command is not a groove) */
  454.     BYTE        bGrooveRange;   /* Groove range  */
  455.     BYTE        bRepeatMode;    /* Used to control selection of patterns with same groove level  */
  456. } DMUS_IO_COMMAND;
  457. /*
  458.     // <cord-list>
  459.     LIST
  460.     (
  461.         'cord'
  462.         <crdh-ck>
  463.         <crdb-ck>       // Chord body chunk
  464.     )
  465.         // <crdh-ck>
  466.         crdh
  467.         (
  468.             // Scale: dword (upper 8 bits for root, lower 24 for scale)
  469.         )
  470.         // <crdb-ck>
  471.         crdb
  472.         (
  473.             // sizeof DMUS_IO_CHORD:dword
  474.             <DMUS_IO_CHORD>
  475.             // # of DMUS_IO_SUBCHORDS:dword
  476.             // sizeof DMUS_IO_SUBCHORDS:dword
  477.             // a number of <DMUS_IO_SUBCHORD>
  478.         )
  479.     // <cmnd-list>
  480.     'cmnd'
  481.     (
  482.         //sizeof DMUS_IO_COMMAND: DWORD
  483.         <DMUS_IO_COMMAND>...
  484.     )
  485. */
  486. /*  File io for DirectMusic Tool and ToolGraph objects
  487. */
  488. /* RIFF ids: */
  489. #define DMUS_FOURCC_TOOLGRAPH_FORM  mmioFOURCC('D','M','T','G')
  490. #define DMUS_FOURCC_TOOL_LIST       mmioFOURCC('t','o','l','l')
  491. #define DMUS_FOURCC_TOOL_FORM       mmioFOURCC('D','M','T','L')
  492. #define DMUS_FOURCC_TOOL_CHUNK      mmioFOURCC('t','o','l','h')
  493. /* io structures: */
  494. typedef struct _DMUS_IO_TOOL_HEADER
  495. {
  496.     GUID        guidClassID;    /* Class id of tool. */
  497.     long        lIndex;         /* Position in graph. */
  498.     DWORD       cPChannels;     /* Number of items in channels array. */
  499.     FOURCC      ckid;           /* chunk ID of tool's data chunk if 0 fccType valid. */
  500.     FOURCC      fccType;        /* list type if NULL ckid valid. */
  501.     DWORD       dwPChannels[1]; /* Array of PChannels, size determined by cPChannels. */
  502. } DMUS_IO_TOOL_HEADER;
  503. /*
  504. RIFF
  505. (
  506.     'DMTG'          // DirectMusic ToolGraph chunk
  507.     [<guid-ck>]     // GUID for ToolGraph
  508.     [<vers-ck>]     // Optional version info
  509.     [<UNFO-list>]   // Name, author, copyright info., comments
  510.     <toll-list>     // List of Tools
  511. )
  512.     // <guid-ck>
  513.     'guid'
  514.     (
  515.         <GUID>
  516.     )
  517.     // <vers-ck>
  518.     vers
  519.     (
  520.         <DMUS_IO_VERSION>
  521.     )
  522.     // <toll-list>
  523.     LIST
  524.     (
  525.         'toll'          // Array of tools
  526.         <DMTL-form>...  // Each tool is encapsulated in a RIFF chunk
  527.     )
  528. // <DMTL-form>      Tools are embedded in a graph. Theoretically, they can be saved as individual files too.
  529. RIFF
  530. (
  531.     'DMTL'
  532.     <tolh-ck>
  533.     [<data>]        // Tool data. Must be a RIFF readable chunk.
  534. )
  535.     // <tolh-ck>            // Tool header chunk
  536.     (
  537.         'tolh'
  538.         <DMUS_IO_TOOL_HEADER>   // Tool header
  539.     )
  540. */
  541. /*  The AudioPath file carries everything for describing a specific audio path,
  542.     including Tool Graph and Buffer Descriptor.
  543.     This can even be used for configuring a complete performance.
  544. */
  545. #define DMUS_FOURCC_AUDIOPATH_FORM  mmioFOURCC('D','M','A','P')
  546. /*
  547. RIFF
  548. (
  549.     'DMAP'          // DirectMusic AudioPath chunk
  550.     [<guid-ck>]     // GUID for this Audio Path configuration
  551.     [<vers-ck>]     // Optional version info
  552.     [<UNFO-list>]   // Name, author, copyright info., comments
  553.     [<DMTG-form>]   // Optional ToolGraph
  554.     [<pcsl-list>]   // Optional list of port configurations
  555.     [<dbfl-list>]...// Optional array of Dsound buffer descriptors
  556. )
  557. */
  558. #define DMUS_FOURCC_PORTCONFIGS_LIST    mmioFOURCC('p','c','s','l')
  559. #define DMUS_FOURCC_PORTCONFIG_LIST     mmioFOURCC('p','c','f','l')
  560. #define DMUS_FOURCC_PORTCONFIG_ITEM     mmioFOURCC('p','c','f','h')
  561. #define DMUS_FOURCC_PORTPARAMS_ITEM     mmioFOURCC('p','p','r','h')
  562. #define DMUS_FOURCC_DSBUFFER_LIST       mmioFOURCC('d','b','f','l')
  563. #define DMUS_FOURCC_DSBUFFATTR_ITEM     mmioFOURCC('d','d','a','h')
  564. #define DMUS_FOURCC_PCHANNELS_LIST      mmioFOURCC('p','c','h','l')
  565. #define DMUS_FOURCC_PCHANNELS_ITEM      mmioFOURCC('p','c','h','h')
  566. typedef struct _DMUS_IO_PORTCONFIG_HEADER
  567. {
  568.     GUID    guidPort;           /* GUID of requested port. */
  569.     DWORD   dwPChannelBase;     /* PChannel that this should start on. */
  570.     DWORD   dwPChannelCount;    /* How many channels. */
  571.     DWORD   dwFlags;            /* Various flags. */
  572. } DMUS_IO_PORTCONFIG_HEADER;
  573. #define DMUS_PORTCONFIGF_DRUMSON10  1   /* This port configured for drums on channel 10. */
  574. #define DMUS_PORTCONFIGF_USEDEFAULT 2   /* Use the default port. */
  575. /* Each portconfig has one or more pchannel to buffer mappings. Each buffer
  576.    is identified by a guid. Each pchannel can map to one or more buffers.
  577.    This is defined with one or more DMUS_IO_PCHANNELTOBUFFER_HEADER
  578.    structures. Each defines a range of PChannels and the set of buffers
  579.    that they connect to. 
  580. */
  581. typedef struct _DMUS_IO_PCHANNELTOBUFFER_HEADER
  582. {
  583.     DWORD   dwPChannelBase;     /* PChannel that this should start on. */
  584.     DWORD   dwPChannelCount;    /* How many PChannels. */
  585.     DWORD   dwBufferCount;      /* How many buffers do these connect to. */
  586.     DWORD   dwFlags;            /* Various flags. Currently reserved for future use. Must be 0. */
  587. } DMUS_IO_PCHANNELTOBUFFER_HEADER;
  588. /* Each buffer is represented by an DSBC form. This is wrapped by the 
  589.    DMUS_IO_BUFFER_ATTRIBUTES_HEADER which identifies how to use the
  590.    buffer. In particular, it indicates whether this gets dynamically duplicated
  591.    or all references to this should share the same instance. 
  592.    To resolve references, the unique GUID of the buffer is also stored
  593.    in this structure. 
  594. */
  595.    
  596. typedef struct _DMUS_IO_BUFFER_ATTRIBUTES_HEADER
  597. {
  598.     GUID    guidBufferID;       /* Each buffer config has a unique ID. */
  599.     DWORD   dwFlags;            /* Various flags. */
  600. } DMUS_IO_BUFFER_ATTRIBUTES_HEADER;
  601. /* DMUS_IO_BUFFER_ATTRIBUTES_HEADER.dwFlags: */
  602. #define DMUS_BUFFERF_SHARED     1   /* Share this with other audio paths, instead of creating unique copies. */
  603. #define DMUS_BUFFERF_DEFINED    2   /* Use one of the standard predefined buffers (see GUID_Buffer... in dmusici.h.) */
  604. #define DMUS_BUFFERF_MIXIN      8   /* This is a mixin buffer. */
  605. /*
  606. LIST
  607. (
  608.     'pcsl'          // Array of port configurations
  609.     <pcfl-list>...  // One or more port configurations, each in a list chunk
  610. )
  611. LIST
  612. (
  613.     'pcfl'          // List container for one port configuration.
  614.     <pcfh-ck>       // Portconfig header chunk.
  615.     <pprh-ck>       // Port params, to be used to create the port.
  616.     [<dbfl-list>]...// Optional array of Dsound buffer descriptors
  617.     [<pchl-list>]   // Optional list of pchannel to buffer assignments
  618. )
  619.     // <pcfh-ck>            // Port config header chunk
  620.     (
  621.         'pcfh'
  622.         <DMUS_IO_PORTCONFIG_HEADER>   // Port config header
  623.     )
  624.     // <pprh-ck>            // Port params header chunk
  625.     (
  626.         'pprh'
  627.         <DMUS_PORTPARAMS8>   // Port params header
  628.     )
  629. LIST
  630. (
  631.     'pchl'          // List container for one or more pchannel to buffer assignments.
  632.     <pchh-ck>...    // One or more pchannel to buffer assignment headers and data.
  633.     // <pchh-ck>
  634.     (
  635.         'pchh'
  636.         <DMUS_IO_PCHANNELTOBUFFER_HEADER>   // Description of PChannels
  637.         <GUID>...                           // Array of GUIDs defining the buffers they all connect to.
  638.     )
  639. )
  640. LIST
  641. (
  642.     'dbfl'          // List container for one buffer and buffer attributes header.
  643.     <ddah-ck>       // Buffer attributes header. 
  644.     [<DSBC-form>]   // Buffer configuration. Not required when header uses a predefined buffer type.
  645.     // <ddah-ck>
  646.     (
  647.         'ddah'
  648.         <DMUS_IO_BUFFER_ATTRIBUTES_HEADER>   // Buffer attributes.
  649.     )
  650. )
  651. */
  652. /*  File io for DirectMusic Band Track object */
  653. /* RIFF ids: */
  654. #define DMUS_FOURCC_BANDTRACK_FORM  mmioFOURCC('D','M','B','T')
  655. #define DMUS_FOURCC_BANDTRACK_CHUNK mmioFOURCC('b','d','t','h')
  656. #define DMUS_FOURCC_BANDS_LIST      mmioFOURCC('l','b','d','l')
  657. #define DMUS_FOURCC_BAND_LIST       mmioFOURCC('l','b','n','d')
  658. #define DMUS_FOURCC_BANDITEM_CHUNK  mmioFOURCC('b','d','i','h')
  659. #define DMUS_FOURCC_BANDITEM_CHUNK2 mmioFOURCC('b','d','2','h')
  660. /* io structures */
  661. typedef struct _DMUS_IO_BAND_TRACK_HEADER
  662. {
  663.     BOOL bAutoDownload;     /* Determines if Auto-Download is enabled. */
  664. } DMUS_IO_BAND_TRACK_HEADER;
  665. typedef struct _DMUS_IO_BAND_ITEM_HEADER
  666. {
  667.     MUSIC_TIME lBandTime;   /* Position in track list. */
  668. } DMUS_IO_BAND_ITEM_HEADER;
  669. typedef struct _DMUS_IO_BAND_ITEM_HEADER2
  670. {
  671.     MUSIC_TIME lBandTimeLogical;   /* Position in track list. Time in the music with which band change is associated. */
  672.     MUSIC_TIME lBandTimePhysical;  /* Precise time band change will take effect. Should be close to logical time. */
  673. } DMUS_IO_BAND_ITEM_HEADER2;
  674. /*
  675. RIFF
  676. (
  677.     'DMBT'          // DirectMusic Band Track form-type
  678.     [<bdth-ck>]     // Band track header
  679.     [<guid-ck>]     // GUID for band track
  680.     [<vers-ck>]     // Optional version info
  681.     [<UNFO-list>]   // Name, author, copyright info., comments
  682.     <lbdl-list>     // List of Band items
  683. )
  684.     // <bnth-ck>
  685.     'bdth'
  686.     (
  687.         <DMUS_IO_BAND_TRACK_HEADER>
  688.     )
  689.     // <guid-ck>
  690.     'guid'
  691.     (
  692.         <GUID>
  693.     )
  694.     // <vers-ck>
  695.     vers
  696.     (
  697.         <DMUS_IO_VERSION>
  698.     )
  699.     // <lbdl-list>
  700.     LIST
  701.     (
  702.         'lbdl'
  703.         <lbnd-list>...  // Array of bands, each encapsulated in a list chunk
  704.     )
  705.         // <lbnd-list>
  706.         LIST
  707.         (
  708.             'lbnd'
  709.             <bdih-ck> or <bd2h-ck>  // bdih is a legacy format.  bd2h is preferred for new content.
  710.             <DMBD-form> // Band
  711.         )
  712.             // <bdih-ck> or <bd2h-ck>       // band item header
  713.             (
  714.                 <DMUS_IO_BAND_ITEM_HEADER> or <DMUS_IO_BAND_ITEM_HEADER2> // Band item header
  715.             )
  716. */      
  717. /*  File io for DirectMusic Band object
  718. */
  719. /* RIFF ids: */
  720. #define DMUS_FOURCC_BAND_FORM           mmioFOURCC('D','M','B','D')
  721. #define DMUS_FOURCC_INSTRUMENTS_LIST    mmioFOURCC('l','b','i','l')
  722. #define DMUS_FOURCC_INSTRUMENT_LIST     mmioFOURCC('l','b','i','n')
  723. #define DMUS_FOURCC_INSTRUMENT_CHUNK    mmioFOURCC('b','i','n','s')
  724. /* Flags for DMUS_IO_INSTRUMENT
  725.  */
  726. #define DMUS_IO_INST_PATCH          (1 << 0)        /* dwPatch is valid. */
  727. #define DMUS_IO_INST_BANKSELECT     (1 << 1)        /* dwPatch contains a valid Bank Select MSB and LSB part */
  728. #define DMUS_IO_INST_ASSIGN_PATCH   (1 << 3)        /* dwAssignPatch is valid */
  729. #define DMUS_IO_INST_NOTERANGES     (1 << 4)        /* dwNoteRanges is valid */
  730. #define DMUS_IO_INST_PAN            (1 << 5)        /* bPan is valid */
  731. #define DMUS_IO_INST_VOLUME         (1 << 6 )       /* bVolume is valid */
  732. #define DMUS_IO_INST_TRANSPOSE      (1 << 7)        /* nTranspose is valid */
  733. #define DMUS_IO_INST_GM             (1 << 8)        /* Instrument is from GM collection */
  734. #define DMUS_IO_INST_GS             (1 << 9)        /* Instrument is from GS collection */
  735. #define DMUS_IO_INST_XG             (1 << 10)       /* Instrument is from XG collection */
  736. #define DMUS_IO_INST_CHANNEL_PRIORITY (1 << 11)     /* dwChannelPriority is valid */
  737. #define DMUS_IO_INST_USE_DEFAULT_GM_SET (1 << 12)   /* Always use the default GM set for this patch,  */
  738.                                                     /* don't rely on the synth caps stating GM or GS in hardware. */
  739. #define DMUS_IO_INST_PITCHBENDRANGE (1 << 13)     /* nPitchBendRange is valid */
  740. /* io structures */
  741. typedef struct _DMUS_IO_INSTRUMENT
  742. {
  743.     DWORD   dwPatch;            /* MSB, LSB and Program change to define instrument */
  744.     DWORD   dwAssignPatch;      /* MSB, LSB and Program change to assign to instrument when downloading */
  745.     DWORD   dwNoteRanges[4];    /* 128 bits; one for each MIDI note instrument needs to able to play */
  746.     DWORD   dwPChannel;         /* PChannel instrument plays on */
  747.     DWORD   dwFlags;            /* DMUS_IO_INST_ flags */
  748.     BYTE    bPan;               /* Pan for instrument */
  749.     BYTE    bVolume;            /* Volume for instrument */
  750.     short   nTranspose;         /* Number of semitones to transpose notes */
  751.     DWORD   dwChannelPriority;  /* Channel priority */
  752.     short   nPitchBendRange;    /* Number of semitones shifted by pitch bend */
  753. } DMUS_IO_INSTRUMENT;
  754. /*
  755. // <DMBD-form> bands can be embedded in other forms
  756. RIFF
  757. (
  758.     'DMBD'          // DirectMusic Band chunk
  759.     [<guid-ck>]     // GUID for band
  760.     [<vers-ck>]     // Optional version info
  761.     [<UNFO-list>]   // Name, author, copyright info., comments
  762.     <lbil-list>     // List of Instruments
  763. )
  764.     // <guid-ck>
  765.     'guid'
  766.     (
  767.         <GUID>
  768.     )
  769.     // <vers-ck>
  770.     vers
  771.     (
  772.         <DMUS_IO_VERSION>
  773.     )
  774.     // <lbil-list>
  775.     LIST
  776.     (
  777.         'lbil'          // Array of instruments
  778.         <lbin-list>...  // Each instrument is encapsulated in a list
  779.     )
  780.         // <lbin-list>
  781.         LIST
  782.         (
  783.             'lbin'
  784.             <bins-ck>
  785.             [<DMRF-list>]       // Optional reference to DLS Collection file.
  786.         )
  787.             // <bins-ck>            // Instrument chunk
  788.             (
  789.                 'bins'
  790.                 <DMUS_IO_INSTRUMENT>    // Instrument header
  791.             )
  792. */      
  793. /* This RIFF id and io struct have been added to allow wave files (and the wave object) to 
  794.    differentiate between streaming and one-shot waves, and to give a prefetch for streaming
  795.    waves  */
  796. #define DMUS_FOURCC_WAVEHEADER_CHUNK   mmioFOURCC('w','a','v','h')
  797. typedef struct _DMUS_IO_WAVE_HEADER
  798. {
  799.     REFERENCE_TIME  rtReadAhead;    /* How far ahead in the stream wave data will be read (in REFERENCE_TIME).  Ignored for one-shot waves.  */
  800.     DWORD           dwFlags;        /* Various flags, including whether this is a streaming wave and whether it can be invalidated. */
  801. } DMUS_IO_WAVE_HEADER;
  802. /*  File io for Wave track */
  803. /* RIFF ids: */
  804. #define DMUS_FOURCC_WAVETRACK_LIST      mmioFOURCC('w','a','v','t')
  805. #define DMUS_FOURCC_WAVETRACK_CHUNK     mmioFOURCC('w','a','t','h')
  806. #define DMUS_FOURCC_WAVEPART_LIST       mmioFOURCC('w','a','v','p')
  807. #define DMUS_FOURCC_WAVEPART_CHUNK      mmioFOURCC('w','a','p','h')
  808. #define DMUS_FOURCC_WAVEITEM_LIST       mmioFOURCC('w','a','v','i')
  809. #define DMUS_FOURCC_WAVE_LIST           mmioFOURCC('w','a','v','e')
  810. #define DMUS_FOURCC_WAVEITEM_CHUNK      mmioFOURCC('w','a','i','h')
  811. /* This flag is included in DMUS_IO_WAVE_TRACK_HEADER.dwFlags.  If set, the track will get its 
  812.    variations from a pattern track, via GetParam(GUID_Variations). */
  813. #define DMUS_WAVETRACKF_SYNC_VAR   0x1
  814. /* This is also included in DMUS_IO_WAVE_TRACK_HEADER.dwFlags.  If set, variation control 
  815.    information will persist from one playback instance to the next.*/
  816. #define DMUS_WAVETRACKF_PERSIST_CONTROL 0x2
  817. typedef struct _DMUS_IO_WAVE_TRACK_HEADER
  818. {
  819.     long        lVolume;        /* Gain, in 1/100th of dB, to be applied to all waves.  Note:  All gain values should be negative. */
  820.     DWORD       dwFlags;        /* Flags, including whether this track syncs to a pattern track for its variations. */
  821. } DMUS_IO_WAVE_TRACK_HEADER;
  822. typedef struct _DMUS_IO_WAVE_PART_HEADER
  823. {
  824.     long            lVolume;        /* Gain, in 1/100th of dB, to be applied to all waves in wave part.  Note:  All gain values should be negative. */
  825.     DWORD           dwVariations;   /* Variation mask for which of 32 variations */
  826.     DWORD           dwPChannel;     /* PChannel */
  827.     DWORD           dwLockToPart;   /* Part ID to lock to. */
  828.     DWORD           dwFlags;        /* Flags, including stuff for managing how variations are chosen (in low-order nibble) */
  829.     DWORD           dwIndex;        /* Index for distinguishing multiple parts on the same PChannel*/
  830. } DMUS_IO_WAVE_PART_HEADER;
  831. typedef struct _DMUS_IO_WAVE_ITEM_HEADER
  832. {
  833.     long            lVolume;        /* Gain, in 1/100th of dB.  Note:  All gain values should be negative. */
  834.     long            lPitch;         /* Pitch offset in 1/100th of a semitone. */
  835.     DWORD           dwVariations;   /* Variation flags for which of 32 variations this wave belongs to. */
  836.     REFERENCE_TIME  rtTime;         /* Start time, in REFERENCE_TIME, if clock time track, or MUSIC_TIME for music time track. */
  837.     REFERENCE_TIME  rtStartOffset;  /* Distance into wave to start playback, in reference time units. */
  838.     REFERENCE_TIME  rtReserved;     /* Reserved field. */
  839.     REFERENCE_TIME  rtDuration;     /* Duration, in REFERENCE_TIME or MUSIC_TIME, depending on track timing format. */
  840.     MUSIC_TIME      mtLogicalTime;  /* If in music track format, this indicates the musical boundary where this belongs. Otherwise, ignored. */
  841.     DWORD           dwLoopStart;    /* Start point for a looping wave. */
  842.     DWORD           dwLoopEnd;      /* End point for a looping wave. */
  843.     DWORD           dwFlags;        /* Various flags, including whether this is a streaming wave and whether it can be invalidated. */
  844. } DMUS_IO_WAVE_ITEM_HEADER;
  845. /*
  846. LIST
  847. {
  848.     'wavt'          // Wave track chunk
  849.     <wath-ck>       // Wave track header
  850.     <wavp-list>...  // Array of Wave Parts
  851. }
  852.     // <wath-ck>
  853.     'wath'
  854.     {
  855.         <DMUS_IO_WAVE_TRACK_HEADER>
  856.     }
  857.     //  <wavp-list>
  858.     LIST
  859.     {
  860.         'wavp'
  861.         <waph-ck>       //  Wave Part Header
  862.         <wavi-list>     //  List of wave items
  863.     }
  864.         //  <waph-ck>
  865.         'waph'
  866.         {
  867.             <DMUS_IO_WAVE_PART_HEADER>
  868.         }
  869.         //  <wavi-list>
  870.         LIST
  871.         {
  872.             'wavi'
  873.             <wave-list>...  //  Array of waves; each wave is encapsulated in a list
  874.         }
  875.             //  <wave-list>
  876.             LIST
  877.             {
  878.                 'wave'
  879.                 <waih-ck>       //  Wave item header
  880.                 <DMRF-list>     //  Reference to wave object
  881.             }
  882.                 //  <waih-ck>
  883.                 'waih'
  884.                 {
  885.                     <DMUS_IO_WAVE_ITEM_HEADER>
  886.                 }
  887. */
  888. /*  File io for DirectMusic Container file. This embeds a set of related files. And,
  889.     in turn, it can be embedded within a segment or script file.
  890. */
  891. #define DMUS_FOURCC_CONTAINER_FORM          mmioFOURCC('D','M','C','N')
  892. #define DMUS_FOURCC_CONTAINER_CHUNK         mmioFOURCC('c','o','n','h')
  893. #define DMUS_FOURCC_CONTAINED_ALIAS_CHUNK   mmioFOURCC('c','o','b','a')
  894. #define DMUS_FOURCC_CONTAINED_OBJECT_CHUNK  mmioFOURCC('c','o','b','h')
  895. #define DMUS_FOURCC_CONTAINED_OBJECTS_LIST  mmioFOURCC('c','o','s','l')
  896. #define DMUS_FOURCC_CONTAINED_OBJECT_LIST   mmioFOURCC('c','o','b','l')
  897. typedef struct _DMUS_IO_CONTAINER_HEADER
  898. {
  899.     DWORD       dwFlags;        /* Flags. */
  900. } DMUS_IO_CONTAINER_HEADER;
  901. #define DMUS_CONTAINER_NOLOADS  (1 << 1)   /* Contained items are not loaded when the container is loaded.
  902.                                               Entries will be created in the loader (via SetObject) but
  903.                                               the actual objects will not be created until they are
  904.                                               specifically loaded at a later time. */
  905. typedef struct _DMUS_IO_CONTAINED_OBJECT_HEADER
  906. {
  907.     GUID        guidClassID;    /* Class id of object. */
  908.     DWORD       dwFlags;        /* Flags, for example DMUS_CONTAINED_OBJF_KEEP. */
  909.     FOURCC      ckid;           /* chunk ID of track's data chunk if 0 fccType valid. */
  910.     FOURCC      fccType;        /* list type if NULL ckid valid */
  911.         /* Note that LIST:DMRF may be used for ckid and fccType in order to reference an
  912.            object instead of embedding it within the container. */
  913. } DMUS_IO_CONTAINED_OBJECT_HEADER;
  914. #define DMUS_CONTAINED_OBJF_KEEP    1   /* Keep the object cached in the loader after the container is released. */
  915. /*
  916. RIFF
  917. (
  918.     'DMCN'          // DirectMusic Container chunk
  919.     <conh-ck>       // Container header chunk
  920.     [<guid-ck>]     // GUID for container
  921.     [<vers-ck>]     // Optional version info
  922.     [<UNFO-list>]   // Name, author, copyright info., comments
  923.     <cosl-list>     // List of objects.
  924. )
  925.     // <conh-ck>        
  926.     'conh'
  927.     (
  928.         <DMUS_IO_CONTAINER_HEADER>
  929.     )
  930.     
  931.     // <guid-ck>
  932.     'guid'
  933.     (
  934.         <GUID>
  935.     )
  936.     // <vers-ck>
  937.     vers
  938.     (
  939.         <DMUS_IO_VERSION>
  940.     )
  941.     LIST
  942.     (
  943.         'cosl'          // Array of embedded objects.
  944.         <cobl-list>...  // Each object is encapsulated in a LIST chunk
  945.     )
  946.     // <cobl-list>      // Encapsulates one object
  947.     LIST
  948.     (
  949.         'cobl'
  950.         [<coba-ck>]         // Alias.  An alternative name by which this object is known
  951.                             // within the container.
  952.         <cobh-ck>           // Required header, includes CLASS ID for object.
  953.         [<data>] or <DMRF>  // Object data of the type specified in <cobh-ck>.
  954.                             // If DMRF, it is a reference of where to find the object.
  955.                             // Otherwise, it could be any RIFF readable chunk in the
  956.                             //    exact same format as a file.  The object will load
  957.                             //    itself from this data.
  958.     )
  959.     // <coba-ck>
  960.     'coba'
  961.     (
  962.         // Alias, stored as NULL terminated string of WCHARs
  963.     )
  964.     // <cobh-ck>
  965.     'cobh'
  966.     (
  967.         <DMUS_IO_CONTAINED_OBJECT_HEADER>
  968.     )
  969. */
  970. /*  File io for DirectMusic Segment object */
  971. /* RIFF ids: */
  972. #define DMUS_FOURCC_SEGMENT_FORM        mmioFOURCC('D','M','S','G')
  973. #define DMUS_FOURCC_SEGMENT_CHUNK       mmioFOURCC('s','e','g','h')
  974. #define DMUS_FOURCC_TRACK_LIST          mmioFOURCC('t','r','k','l')
  975. #define DMUS_FOURCC_TRACK_FORM          mmioFOURCC('D','M','T','K')
  976. #define DMUS_FOURCC_TRACK_CHUNK         mmioFOURCC('t','r','k','h')
  977. #define DMUS_FOURCC_TRACK_EXTRAS_CHUNK  mmioFOURCC('t','r','k','x')
  978. /* io structures:*/
  979. typedef struct _DMUS_IO_SEGMENT_HEADER
  980. {
  981.     DWORD       dwRepeats;      /* Number of repeats. By default, 0. */
  982.     MUSIC_TIME  mtLength;       /* Length, in music time. */
  983.     MUSIC_TIME  mtPlayStart;    /* Start of playback. By default, 0. */
  984.     MUSIC_TIME  mtLoopStart;    /* Start of looping portion. By default, 0. */
  985.     MUSIC_TIME  mtLoopEnd;      /* End of loop. Must be greater than dwPlayStart. Or, 0, indicating loop full segment. */
  986.     DWORD       dwResolution;   /* Default resolution. */
  987.     /* Following added for DX8: */
  988.     REFERENCE_TIME rtLength;    /* Length, in reference time (overrides music time length.) */
  989.     DWORD       dwFlags;
  990.     DWORD       dwReserved;     /* Reserved. */
  991. } DMUS_IO_SEGMENT_HEADER;
  992. #define DMUS_SEGIOF_REFLENGTH   1  /* Use the time in rtLength for the segment length. */
  993. typedef struct _DMUS_IO_TRACK_HEADER
  994. {
  995.     GUID        guidClassID;    /* Class id of track. */
  996.     DWORD       dwPosition;     /* Position in track list. */
  997.     DWORD       dwGroup;        /* Group bits for track. */
  998.     FOURCC      ckid;           /* chunk ID of track's data chunk. */
  999.     FOURCC      fccType;        /* list type if ckid is RIFF or LIST */ 
  1000. } DMUS_IO_TRACK_HEADER;
  1001. /*  Additional parameters for the track header chunk, introduced in DX8 and
  1002.     on, are stored in a separate chunk. */
  1003. typedef struct _DMUS_IO_TRACK_EXTRAS_HEADER
  1004. {
  1005.     DWORD       dwFlags;        /* DX8 Added flags for control tracks. */
  1006.     DWORD       dwPriority;     /* Priority for composition. */
  1007. } DMUS_IO_TRACK_EXTRAS_HEADER;
  1008. /*
  1009. RIFF
  1010. (
  1011.     'DMSG'          // DirectMusic Segment chunk
  1012.     <segh-ck>       // Segment header chunk
  1013.     [<guid-ck>]     // GUID for segment
  1014.     [<vers-ck>]     // Optional version info
  1015.     [<UNFO-list>]   // Name, author, copyright info., comments
  1016.     [<DMCN-form>]   // Optional container of objects embedded in file. Must precede tracklist.
  1017.     <trkl-list>     // List of Tracks
  1018.     [<DMTG-form>]   // Optional ToolGraph
  1019.     [<DMAP-form>]   // Optional Audio Path
  1020. )
  1021.     // <segh-ck>        
  1022.     'segh'
  1023.     (
  1024.         <DMUS_IO_SEGMENT_HEADER>
  1025.     )
  1026.     
  1027.     // <guid-ck>
  1028.     'guid'
  1029.     (
  1030.         <GUID>
  1031.     )
  1032.     // <vers-ck>
  1033.     vers
  1034.     (
  1035.         <DMUS_IO_VERSION>
  1036.     )
  1037.     // <trkl-list>
  1038.     LIST
  1039.     (
  1040.         'trkl'          // Array of tracks
  1041.         <DMTK-form>...  // Each track is encapsulated in a RIFF chunk
  1042.     )
  1043.     // <DMTK-form>      // Tracks can be embedded in a segment or stored as separate files.
  1044.     RIFF
  1045.     (
  1046.         'DMTK'
  1047.         <trkh-ck>
  1048.         [<trkx-ck>]     // Optional track flags. 
  1049.         [<guid-ck>]     // Optional GUID for track object instance (not to be confused with Class id in track header)
  1050.         [<vers-ck>]     // Optional version info
  1051.         [<UNFO-list>]   // Optional name, author, copyright info., comments
  1052.         [<data>]        // Track data. Must be a RIFF readable chunk.
  1053.     )
  1054.     // <trkh-ck>            // Track header chunk
  1055.     (
  1056.         'trkh'
  1057.         <DMUS_IO_TRACK_HEADER>  // Track header
  1058.     )
  1059.     // <trkx-ck>            // Track flags chunk
  1060.     (
  1061.         'trkx'
  1062.         <DMUS_IO_TRACK_EXTRAS_HEADER>  // DX8 Track flags header
  1063.     )
  1064. */
  1065. /*  File io for DirectMusic Song object */
  1066. /*  Note: Song file format is not supported in DX8. */
  1067. /* RIFF ids: */
  1068. #define DMUS_FOURCC_SONG_FORM           mmioFOURCC('D','M','S','O') /* Entire song. */
  1069. #define DMUS_FOURCC_SONG_CHUNK          mmioFOURCC('s','n','g','h') /* Song header info. */
  1070. #define DMUS_FOURCC_SONGSEGMENTS_LIST   mmioFOURCC('s','e','g','l') /* List of embedded segments. */
  1071. #define DMUS_FOURCC_SONGSEGMENT_LIST    mmioFOURCC('s','s','g','l') /* Container for a segment or segment reference. */
  1072. #define DMUS_FOURCC_TOOLGRAPHS_LIST     mmioFOURCC('t','l','g','l') /* List of embedded tool graphs. */
  1073. #define DMUS_FOURCC_SEGREFS_LIST        mmioFOURCC('s','r','s','l') /* List of segment references. */
  1074. #define DMUS_FOURCC_SEGREF_LIST         mmioFOURCC('s','g','r','l') /* Container for a segment reference. */
  1075. #define DMUS_FOURCC_SEGREF_CHUNK        mmioFOURCC('s','g','r','h') /* Segment reference header. */
  1076. #define DMUS_FOURCC_SEGTRANS_CHUNK      mmioFOURCC('s','t','r','h') /* Set of transitions to this segment. */
  1077. #define DMUS_FOURCC_TRACKREFS_LIST      mmioFOURCC('t','r','s','l') /* Set of track references within the segment reference. */
  1078. #define DMUS_FOURCC_TRACKREF_LIST       mmioFOURCC('t','k','r','l') /* Container for a track reference. */
  1079. #define DMUS_FOURCC_TRACKREF_CHUNK      mmioFOURCC('t','k','r','h') /* Track reference header. */
  1080. /* io structures:*/
  1081. typedef struct _DMUS_IO_SONG_HEADER
  1082. {
  1083.     DWORD       dwFlags;
  1084.     DWORD       dwStartSegID;   /* Id of the segment that starts playback. */
  1085. } DMUS_IO_SONG_HEADER;
  1086. typedef struct _DMUS_IO_SEGREF_HEADER
  1087. {
  1088.     DWORD       dwID;           /* Each has a unique ID. Must be less than DMUS_SONG_MAXSEGID. */
  1089.     DWORD       dwSegmentID;    /* Optional segment to link to. */
  1090.     DWORD       dwToolGraphID;  /* Optional tool graph to use for processing. */
  1091.     DWORD       dwFlags;        /* Various control flags. Currently reserved for future use. Must be 0. */
  1092.     DWORD       dwNextPlayID;   /* ID of next segment, to chain segments into a song. */
  1093. } DMUS_IO_SEGREF_HEADER;
  1094. typedef struct _DMUS_IO_TRACKREF_HEADER
  1095. {
  1096.     DWORD       dwSegmentID;    /* Which segment to find this in. */
  1097.     DWORD       dwFlags;        /* Reference control flags. */
  1098. } DMUS_IO_TRACKREF_HEADER;
  1099. /*  Transition definition chunk defines a transition, using an optional transition template
  1100.     segment.
  1101. */
  1102. typedef struct _DMUS_IO_TRANSITION_DEF
  1103. {
  1104.     DWORD       dwSegmentID;        /* Segment the transition goes to. */
  1105.     DWORD       dwTransitionID;     /* Template segment to use for the transition. */
  1106.     DWORD       dwPlayFlags;        /* Flags to use for transition. */
  1107. } DMUS_IO_TRANSITION_DEF;
  1108. #define DMUS_SONG_MAXSEGID      0x7FFFFFFF  /* Segment ids can not go higher than this. */
  1109. #define DMUS_SONG_ANYSEG        0x80000000  /* Special ID to indicate any segment. */
  1110. #define DMUS_SONG_NOSEG         0xFFFFFFFF  /* Special ID to indicate no segment. */
  1111. #define DMUS_SONG_NOFROMSEG     0x80000001  /* Special ID for dwSegmentID to indicate transition from nothing (or outside the song) into this segment. */
  1112. /*
  1113. RIFF
  1114. (
  1115.     'DMSO'          // DirectMusic Song chunk
  1116.     <sngh-ck>       // Song header chunk
  1117.     [<guid-ck>]     // GUID for song
  1118.     [<vers-ck>]     // Optional version info
  1119.     [<UNFO-list>]   // Name, author, copyright info., comments
  1120.     [<DMCN-form>]   // Optional container of objects embedded in file. Must precede segment list.
  1121.     <segl-list>     // List of Segments
  1122.     [<tlgl-list>]   // Optional list of ToolGraphs
  1123.     [<DMAP-form>]   // Optional Audio Path - to be shared by all segments in song.
  1124.     <srsl-list>     // List of segment references.
  1125. )
  1126.     // <sngh-ck>        
  1127.     'sngh'
  1128.     (
  1129.         <DMUS_IO_SONG_HEADER>
  1130.     )
  1131.     
  1132.     // <segl-list>
  1133.     LIST
  1134.     (
  1135.         'segl'          // Array of segments
  1136.         <ssgl-list>...  // Each segment is wrapped in this.
  1137.     )
  1138.     // <ssgl-list>
  1139.     LIST
  1140.     (
  1141.         'ssgl'          // Segment container.
  1142.         [DMSG-form]     // Each segment is either a full embedded segment RIFF form.
  1143.         [DMRF-list]     // Or a reference to an external segment.
  1144.     )
  1145.     // <tlgl-list>
  1146.     LIST
  1147.     (
  1148.         'tlgl'          // Array of toolgraphs
  1149.         <DMTG-form>...  // Each toolgraph is a full RIFF form.
  1150.     )
  1151.     // <srsl-list>
  1152.     LIST
  1153.     (
  1154.         'srsl'          // Array of segment references
  1155.         <sgrl-list>...  // Each segment reference is contained in a RIFF list.
  1156.     )
  1157.     // <sgrl-list>      // Segment reference container.
  1158.     LIST
  1159.     (
  1160.         'sgrl'
  1161.         <sgrh-ck>       // Segment reference header chunk.
  1162.         <segh-ck>       // Segment header chunk. Defines the segment. 
  1163.         <UNFO-list>     // Name, author, etc. Primarily for name, though, which is required for Song->GetSegment().
  1164.         [<strh-ck>]     // Segment transition chunk. Defines how to do transitions from other segments.
  1165.         [<trsl-list>]   // List of track references, to create a segment from tracks in multiple segments.
  1166.     )
  1167.     // <sgrh-ck>        // Segment reference header chunk
  1168.     (
  1169.         'sgrh'
  1170.         <DMUS_IO_SEGREF_HEADER>  // Segment reference header
  1171.     )
  1172.     // <strh-ck>        // Segment transition chunk. 
  1173.     (
  1174.         'strh'
  1175.         <DMUS_IO_TRANSITION_DEF>    // Default transition.
  1176.         <DMUS_IO_TRANSITION_DEF>... // Additional transitions.
  1177.     )
  1178.     // <trsl-list>      // Array of track references
  1179.     (
  1180.         'trsl'
  1181.         <tkrl-list>...  // Each track reference is multiple chunks in a tkrl list.
  1182.     )
  1183.     // <tkrl-list>      // Track reference container
  1184.     (
  1185.         'tkrl'
  1186.         <tkrh-ck>       // Track reference header chunk.
  1187.         <trkh-ck>       // Normal track header chunk.
  1188.         [<trkx-ck>]     // Optional track flags. 
  1189.     )
  1190.     // <tkrh-ck>        // Track reference header chunk
  1191.     (
  1192.         'tkrh'
  1193.         <DMUS_IO_TRACKREF_HEADER>  // Track reference header
  1194.     )
  1195. */
  1196. /*  File io for DirectMusic reference chunk. 
  1197.     This is used to embed a reference to an object.
  1198. */
  1199. /*  RIFF ids: */
  1200. #define DMUS_FOURCC_REF_LIST        mmioFOURCC('D','M','R','F')
  1201. #define DMUS_FOURCC_REF_CHUNK       mmioFOURCC('r','e','f','h')
  1202. #define DMUS_FOURCC_DATE_CHUNK      mmioFOURCC('d','a','t','e')
  1203. #define DMUS_FOURCC_NAME_CHUNK      mmioFOURCC('n','a','m','e')
  1204. #define DMUS_FOURCC_FILE_CHUNK      mmioFOURCC('f','i','l','e')
  1205. typedef struct _DMUS_IO_REFERENCE
  1206. {
  1207.     GUID    guidClassID;    /* Class id is always required. */
  1208.     DWORD   dwValidData;    /* Flags. */
  1209. } DMUS_IO_REFERENCE;
  1210. /*
  1211. LIST
  1212. (
  1213.     'DMRF'          // DirectMusic Reference chunk
  1214.     <refh-ck>       // Reference header chunk
  1215.     [<guid-ck>]     // Optional object GUID.
  1216.     [<date-ck>]     // Optional file date.
  1217.     [<name-ck>]     // Optional name.
  1218.     [<file-ck>]     // Optional file name.
  1219.     [<catg-ck>]     // Optional category name.
  1220.     [<vers-ck>]     // Optional version info.
  1221. )
  1222.     // <refh-ck>
  1223.     'refh'
  1224.     (
  1225.         <DMUS_IO_REFERENCE>
  1226.     )
  1227.     // <guid-ck>
  1228.     'guid'
  1229.     (
  1230.         <GUID>
  1231.     )
  1232.     // <date-ck>
  1233.     date
  1234.     (
  1235.         <FILETIME>
  1236.     )
  1237.     // <name-ck>
  1238.     name
  1239.     (
  1240.         // Name, stored as NULL terminated string of WCHARs
  1241.     )
  1242.     // <file-ck>
  1243.     file
  1244.     (
  1245.         // File name, stored as NULL terminated string of WCHARs
  1246.     )
  1247.     // <catg-ck>
  1248.     catg
  1249.     (
  1250.         // Category name, stored as NULL terminated string of WCHARs
  1251.     )
  1252.     // <vers-ck>
  1253.     vers
  1254.     (
  1255.         <DMUS_IO_VERSION>
  1256.     )
  1257. */
  1258. /* Chord Maps */
  1259. /* runtime chunks */
  1260. #define DMUS_FOURCC_CHORDMAP_FORM       mmioFOURCC('D','M','P','R')
  1261. #define DMUS_FOURCC_IOCHORDMAP_CHUNK    mmioFOURCC('p','e','r','h')
  1262. #define DMUS_FOURCC_SUBCHORD_CHUNK      mmioFOURCC('c','h','d','t')
  1263. #define DMUS_FOURCC_CHORDENTRY_CHUNK    mmioFOURCC('c','h','e','h')
  1264. #define DMUS_FOURCC_SUBCHORDID_CHUNK    mmioFOURCC('s','b','c','n')
  1265. #define DMUS_FOURCC_IONEXTCHORD_CHUNK   mmioFOURCC('n','c','r','d')
  1266. #define DMUS_FOURCC_NEXTCHORDSEQ_CHUNK  mmioFOURCC('n','c','s','q')
  1267. #define DMUS_FOURCC_IOSIGNPOST_CHUNK    mmioFOURCC('s','p','s','h')
  1268. #define DMUS_FOURCC_CHORDNAME_CHUNK     mmioFOURCC('I','N','A','M')
  1269. /* runtime list chunks */
  1270. #define DMUS_FOURCC_CHORDENTRY_LIST     mmioFOURCC('c','h','o','e')
  1271. #define DMUS_FOURCC_CHORDMAP_LIST       mmioFOURCC('c','m','a','p')
  1272. #define DMUS_FOURCC_CHORD_LIST          mmioFOURCC('c','h','r','d')
  1273. #define DMUS_FOURCC_CHORDPALETTE_LIST   mmioFOURCC('c','h','p','l')
  1274. #define DMUS_FOURCC_CADENCE_LIST        mmioFOURCC('c','a','d','e')
  1275. #define DMUS_FOURCC_SIGNPOSTITEM_LIST   mmioFOURCC('s','p','s','t')
  1276. #define DMUS_FOURCC_SIGNPOST_LIST       mmioFOURCC('s','p','s','q')
  1277. /* values for dwChord field of DMUS_IO_PERS_SIGNPOST */
  1278. /* DMUS_SIGNPOSTF_ flags are also used in templates (DMUS_IO_SIGNPOST) */
  1279. #define DMUS_SIGNPOSTF_A        1      
  1280. #define DMUS_SIGNPOSTF_B        2
  1281. #define DMUS_SIGNPOSTF_C        4
  1282. #define DMUS_SIGNPOSTF_D        8
  1283. #define DMUS_SIGNPOSTF_E        0x10
  1284. #define DMUS_SIGNPOSTF_F        0x20
  1285. #define DMUS_SIGNPOSTF_LETTER   (DMUS_SIGNPOSTF_A | DMUS_SIGNPOSTF_B | DMUS_SIGNPOSTF_C | DMUS_SIGNPOSTF_D | DMUS_SIGNPOSTF_E | DMUS_SIGNPOSTF_F)
  1286. #define DMUS_SIGNPOSTF_1        0x100
  1287. #define DMUS_SIGNPOSTF_2        0x200
  1288. #define DMUS_SIGNPOSTF_3        0x400
  1289. #define DMUS_SIGNPOSTF_4        0x800
  1290. #define DMUS_SIGNPOSTF_5        0x1000
  1291. #define DMUS_SIGNPOSTF_6        0x2000
  1292. #define DMUS_SIGNPOSTF_7        0x4000
  1293. #define DMUS_SIGNPOSTF_ROOT     (DMUS_SIGNPOSTF_1 | DMUS_SIGNPOSTF_2 | DMUS_SIGNPOSTF_3 | DMUS_SIGNPOSTF_4 | DMUS_SIGNPOSTF_5 | DMUS_SIGNPOSTF_6 | DMUS_SIGNPOSTF_7)
  1294. #define DMUS_SIGNPOSTF_CADENCE  0x8000
  1295. /* values for dwFlags field of DMUS_IO_CHORDMAP */
  1296. #define DMUS_CHORDMAPF_VERSION8  1   /* Chordmap is version 8 or above. */
  1297. /* values for dwChord field of DMUS_IO_PERS_SIGNPOST */
  1298. #define DMUS_SPOSTCADENCEF_1  2   /* Use the first cadence chord. */
  1299. #define DMUS_SPOSTCADENCEF_2  4   /* Use the second cadence chord. */
  1300. /* run time data structs */
  1301. typedef struct _DMUS_IO_CHORDMAP
  1302. {
  1303.     WCHAR   wszLoadName[20];
  1304.     DWORD   dwScalePattern;
  1305.     DWORD   dwFlags;           /* Various flags. Only lower 16 bits are significant. */
  1306. } DMUS_IO_CHORDMAP;
  1307. typedef struct _DMUS_IO_CHORDMAP_SUBCHORD
  1308. {
  1309.     DWORD   dwChordPattern;
  1310.     DWORD   dwScalePattern;
  1311.     DWORD   dwInvertPattern;
  1312.     BYTE    bChordRoot;
  1313.     BYTE    bScaleRoot;
  1314.     WORD    wCFlags;
  1315.     DWORD   dwLevels;   /* parts or which subchord levels this chord supports */
  1316. } DMUS_IO_CHORDMAP_SUBCHORD;
  1317. /* Legacy name... */
  1318. typedef DMUS_IO_CHORDMAP_SUBCHORD DMUS_IO_PERS_SUBCHORD;
  1319. typedef struct _DMUS_IO_CHORDENTRY
  1320. {
  1321.     DWORD   dwFlags;
  1322.     WORD    wConnectionID;  /* replaces runtime "pointer to this" */
  1323. } DMUS_IO_CHORDENTRY;
  1324. typedef struct _DMUS_IO_NEXTCHORD
  1325. {
  1326.     DWORD   dwFlags;
  1327.     WORD    nWeight;
  1328.     WORD    wMinBeats;
  1329.     WORD    wMaxBeats;
  1330.     WORD    wConnectionID;  /* points to an ioChordEntry */
  1331. } DMUS_IO_NEXTCHORD;
  1332. typedef struct _DMUS_IO_CHORDMAP_SIGNPOST
  1333. {
  1334.     DWORD   dwChords;   /* 1bit per group */
  1335.     DWORD   dwFlags;
  1336. } DMUS_IO_CHORDMAP_SIGNPOST;
  1337. /* Legacy name... */
  1338. typedef DMUS_IO_CHORDMAP_SIGNPOST DMUS_IO_PERS_SIGNPOST;
  1339. /*
  1340. RIFF
  1341. (
  1342.     'DMPR'
  1343.     <perh-ck>           // Chord map header chunk
  1344.     [<guid-ck>]         // guid chunk
  1345.     [<vers-ck>]         // version chunk (two DWORDS)
  1346.     [<UNFO-list>]       // Unfo chunk
  1347.     <chdt-ck>           // subchord database
  1348.     <chpl-list>         // chord palette
  1349.     <cmap-list>         // chord map
  1350.     <spsq-list>         // signpost list
  1351.  )
  1352. <cmap-list> ::= LIST('cmap' <choe-list> )
  1353. <choe-list> ::= LIST('choe'
  1354.                                 <cheh-ck>   // chord entry data
  1355.                                 <chrd-list> // chord definition
  1356.                                 <ncsq-ck>   // connecting(next) chords
  1357.                      )
  1358. <chrd-list> ::= LIST('chrd' 
  1359.                                 <INAM-ck>   // name of chord in wide char format
  1360.                                 <sbcn-ck>   // list of subchords composing chord
  1361.                     )
  1362. <chpl-list> ::= LIST('chpl' 
  1363.                                 <chrd-list> ... // chord definition
  1364.                     )
  1365. <spsq-list> ::== LIST('spsq' <spst-list> ... )
  1366. <spst-list> ::= LIST('spst'
  1367.                              <spsh-ck>
  1368.                              <chrd-list>
  1369.                              [<cade-list>]
  1370.                     )
  1371. <cade-list> ::= LIST('cade' <chrd-list> ...)
  1372. <perh-ck> ::= perh(<DMUS_IO_CHORDMAP>)
  1373. <chdt-ck> ::= chdt(<cbChordSize::WORD>
  1374.                    <DMUS_IO_PERS_SUBCHORD> ... )
  1375. <cheh-ck> ::= cheh(<DMUS_IO_CHORDENTRY>)
  1376. <sbcn-ck> ::= sbcn(<cSubChordID:WORD> ...)
  1377. <ncsq-ck> ::= ncsq(<wNextChordSize:WORD> 
  1378.                    <DMUS_IO_NEXTCHORD>...)
  1379. <spsh-ck> ::= spsh(<DMUS_IO_PERS_SIGNPOST>)
  1380. */
  1381. /*  File io for DirectMusic Script object */
  1382. /* RIFF ids: */
  1383. #define DMUS_FOURCC_SCRIPT_FORM             mmioFOURCC('D','M','S','C')
  1384. #define DMUS_FOURCC_SCRIPT_CHUNK            mmioFOURCC('s','c','h','d')
  1385. #define DMUS_FOURCC_SCRIPTVERSION_CHUNK     mmioFOURCC('s','c','v','e')
  1386. #define DMUS_FOURCC_SCRIPTLANGUAGE_CHUNK    mmioFOURCC('s','c','l','a')
  1387. #define DMUS_FOURCC_SCRIPTSOURCE_CHUNK      mmioFOURCC('s','c','s','r')
  1388. /* io structures:*/
  1389. typedef struct _DMUS_IO_SCRIPT_HEADER
  1390. {
  1391.     DWORD       dwFlags; /* DMUS_SCRIPTIOF_ flags */
  1392. } DMUS_IO_SCRIPT_HEADER;
  1393. #define DMUS_SCRIPTIOF_LOAD_ALL_CONTENT       (1 << 0)
  1394.     /* If set, when the script loads it will also load all the content in its container. */
  1395. #define DMUS_SCRIPTIOF_DOWNLOAD_ALL_SEGMENTS  (1 << 1)
  1396.     /* If set and LOAD_ALL_CONTENT is also set, when the script initializes it will also download all the segments in its container.
  1397.        If set and LOAD_ALL_CONTENT is not set, when the script calls segment.Load on a segment then the segment will also be downloaded.
  1398.        If not set, the script must manually download and unload by calling segment.DownloadSoundData and segment.UnloadSoundData. */
  1399. /*
  1400. RIFF
  1401. (
  1402.     'DMSC'              // DirectMusic Script chunk
  1403.     <schd-ck>           // Script header chunk
  1404.     [<guid-ck>]         // GUID for script
  1405.     [<vers-ck>]         // Optional version info
  1406.     [<UNFO-list>]       // Name, author, copyright info., comments
  1407.     <scve-ck>           // Version of DirectMusic this script was authored to run against
  1408.     <DMCN-form>         // Container of content referenced by the script.
  1409.     <scla-ck>           // ActiveX scripting language in which the script is written
  1410.     <scsr-ck> or <DMRF> // The script's source code.
  1411.                         // If scsr-ck, the source is embedding in the chunk.
  1412.                         // If DMRF, it is a reference of where to find a text file with the source.
  1413.                         //    Class id (guidClassID in DMUS_IO_REFERENCE) must be GUID_NULL because
  1414.                         //    this text file is not a DirectMusic object in its own right.
  1415. )
  1416.     // <schd-ck>
  1417.     'schd'
  1418.     (
  1419.         <DMUS_FOURCC_SCRIPT_CHUNK>
  1420.     )
  1421.     
  1422.     // <guid-ck>
  1423.     'guid'
  1424.     (
  1425.         <GUID>
  1426.     )
  1427.     // <vers-ck>
  1428.     vers
  1429.     (
  1430.         <DMUS_IO_VERSION>
  1431.     )
  1432.     // <scve-ck>
  1433.     scve
  1434.     (
  1435.         <DMUS_IO_VERSION>
  1436.     )
  1437.     'scla'
  1438.     (
  1439.         // Language name, stored as NULL terminated string of WCHARs
  1440.     )
  1441.     'scsr'
  1442.     (
  1443.         // Source code, stored as NULL terminated string of WCHARs
  1444.     )
  1445. */
  1446. /* Signpost tracks */
  1447. #define DMUS_FOURCC_SIGNPOST_TRACK_CHUNK     mmioFOURCC( 's', 'g', 'n', 'p' )
  1448. typedef struct _DMUS_IO_SIGNPOST
  1449. {
  1450.     MUSIC_TIME  mtTime;
  1451.     DWORD       dwChords;
  1452.     WORD        wMeasure;
  1453. } DMUS_IO_SIGNPOST;
  1454. /*
  1455.     // <sgnp-list>
  1456.     'sgnp'
  1457.     (
  1458.         //sizeof DMUS_IO_SIGNPOST: DWORD
  1459.         <DMUS_IO_SIGNPOST>...
  1460.     )
  1461. */
  1462. #define DMUS_FOURCC_MUTE_CHUNK  mmioFOURCC('m','u','t','e')
  1463. typedef struct _DMUS_IO_MUTE
  1464. {
  1465.     MUSIC_TIME  mtTime;
  1466.     DWORD       dwPChannel;
  1467.     DWORD       dwPChannelMap;
  1468. } DMUS_IO_MUTE;
  1469. /*
  1470.     // <mute-list>
  1471.     'mute'
  1472.     (
  1473.         //sizeof DMUS_IO_MUTE:DWORD
  1474.         <DMUS_IO_MUTE>...
  1475.     )
  1476. */
  1477. /* Used for both style and chord map tracks */
  1478. #define DMUS_FOURCC_TIME_STAMP_CHUNK    mmioFOURCC('s', 't', 'm', 'p')
  1479. /* Style tracks */
  1480. #define DMUS_FOURCC_STYLE_TRACK_LIST    mmioFOURCC('s', 't', 't', 'r')
  1481. #define DMUS_FOURCC_STYLE_REF_LIST      mmioFOURCC('s', 't', 'r', 'f')
  1482. /*
  1483.     // <sttr-list>
  1484.     LIST('sttr'
  1485.     (
  1486.         <strf-list>...  // Array of Style references
  1487.     )
  1488.     // <strf-list>
  1489.     LIST('strf'
  1490.     (
  1491.         <stmp-ck>
  1492.         <DMRF>
  1493.     )
  1494.   // <stmp-ck>
  1495.   'stmp'
  1496.   (
  1497.     // time:DWORD
  1498.   )
  1499. */
  1500. /* Chord map tracks */
  1501. #define DMUS_FOURCC_PERS_TRACK_LIST mmioFOURCC('p', 'f', 't', 'r')
  1502. #define DMUS_FOURCC_PERS_REF_LIST   mmioFOURCC('p', 'f', 'r', 'f')
  1503. /*
  1504.     // <pftr-list>
  1505.     LIST('pftr'
  1506.     (
  1507.         <pfrf-list>...  // Array of Chord map references
  1508.     )
  1509.     // <pfrf-list>
  1510.     LIST('pfrf'
  1511.     (
  1512.         <stmp-ck>
  1513.         <DMRF>
  1514.     )
  1515.   // <stmp-ck>
  1516.   'stmp'
  1517.   (
  1518.     // time:DWORD
  1519.   )
  1520. */
  1521. #define DMUS_FOURCC_TEMPO_TRACK     mmioFOURCC('t','e','t','r')
  1522. /*
  1523.     // tempo array
  1524.     'tetr'
  1525.     (
  1526.         // sizeof DMUS_IO_TEMPO_ITEM: DWORD
  1527.         <DMUS_IO_TEMPO_ITEM>...
  1528.     )
  1529.  */
  1530. #define DMUS_FOURCC_SEQ_TRACK       mmioFOURCC('s','e','q','t')
  1531. #define DMUS_FOURCC_SEQ_LIST        mmioFOURCC('e','v','t','l')
  1532. #define DMUS_FOURCC_CURVE_LIST      mmioFOURCC('c','u','r','l')
  1533. /*
  1534.     // sequence track
  1535.     'seqt'
  1536.     (
  1537.         // sequence array
  1538.         'evtl'
  1539.         (
  1540.             // sizeof DMUS_IO_SEQ_ITEM: DWORD
  1541.             <DMUS_IO_SEQ_ITEM>...
  1542.         )
  1543.         // curve array
  1544.         'curl'
  1545.         (
  1546.             // sizeof DMUS_IO_CURVE_ITEM: DWORD
  1547.             <DMUS_IO_CURVE_ITEM>...
  1548.         )
  1549.     )
  1550. */
  1551. #define DMUS_FOURCC_SYSEX_TRACK     mmioFOURCC('s','y','e','x')
  1552. /*
  1553.     // sysex track
  1554.     'syex'
  1555.     (
  1556.         {
  1557.             <DMUS_IO_SYSEX_ITEM>
  1558.             <BYTE>...    // Array of bytes, length defined in the DMUS_IO_SYSEXITEM structure
  1559.         }...
  1560.     )
  1561. */
  1562. #define DMUS_FOURCC_TIMESIGNATURE_TRACK mmioFOURCC('t','i','m','s')
  1563. typedef struct _DMUS_IO_TIMESIGNATURE_ITEM
  1564. {
  1565.     MUSIC_TIME    lTime;
  1566.     BYTE          bBeatsPerMeasure;   /* beats per measure (top of time sig) */
  1567.     BYTE          bBeat;              /* what note receives the beat (bottom of time sig.) */
  1568.                                       /* we can assume that 0 means 256th note */
  1569.     WORD          wGridsPerBeat;      /* grids per beat */
  1570. } DMUS_IO_TIMESIGNATURE_ITEM;
  1571. /*  DX6 time signature track
  1572.     
  1573.     'tims'
  1574.     (
  1575.         // size of DMUS_IO_TIMESIGNATURE_ITEM : DWORD
  1576.         <DMUS_IO_TIMESIGNATURE_ITEM>...
  1577.     )
  1578. */
  1579. /*  DX8 Time signature track. The track has been updated from DX7 to support a list of
  1580.     RIFF chunks. This will allow the time signature track to expand in the future.
  1581. */
  1582. #define DMUS_FOURCC_TIMESIGTRACK_LIST   mmioFOURCC('T','I','M','S')
  1583. #define DMUS_FOURCC_TIMESIG_CHUNK       DMUS_FOURCC_TIMESIGNATURE_TRACK
  1584. /*
  1585. LIST
  1586. (
  1587.     'TIMS'          // Time Signature Track list-type
  1588.     <tims-ck>       // Chunk containing an array of time signatures
  1589. )
  1590.     'tims'
  1591.     (
  1592.         // size of DMUS_IO_TIMESIGNATURE_ITEM : DWORD
  1593.         <DMUS_IO_TIMESIGNATURE_ITEM>...
  1594.     )
  1595.  
  1596. */
  1597. /*  DX8 Marker track. This is used to store valid start points and other
  1598.     flow control parameters that may come later. For example, if we want
  1599.     to implement more sophisticated looping and branching constructs, they
  1600.     would live in this track.
  1601. */
  1602. #define DMUS_FOURCC_MARKERTRACK_LIST    mmioFOURCC('M','A','R','K')
  1603. #define DMUS_FOURCC_VALIDSTART_CHUNK    mmioFOURCC('v','a','l','s')
  1604. #define DMUS_FOURCC_PLAYMARKER_CHUNK    mmioFOURCC('p','l','a','y')
  1605. /* io structures */
  1606. typedef struct _DMUS_IO_VALID_START
  1607. {
  1608.     MUSIC_TIME mtTime;      /* Time of a legal start. */
  1609. } DMUS_IO_VALID_START;
  1610. typedef struct _DMUS_IO_PLAY_MARKER
  1611. {
  1612.     MUSIC_TIME mtTime;      /* Time of a next legal play point marker. */
  1613. } DMUS_IO_PLAY_MARKER;
  1614. /*
  1615. LIST
  1616. (
  1617.     'MARK'          // Marker Track list-type
  1618.     [<vals-ck>]     // Chunk containing an array of start points
  1619.     [<play-ck>]     // Chunk containing an array of play start markers
  1620. )
  1621.     'vals'
  1622.     (
  1623.         // size of DMUS_IO_VALID_START : DWORD
  1624.         <DMUS_IO_VALID_START>...
  1625.     )
  1626.     'play'
  1627.     (
  1628.         // size of DMUS_IO_PLAY_MARKER : DWORD
  1629.         <DMUS_IO_PLAY_MARKER>...
  1630.     )
  1631.   
  1632. */
  1633. /* segment trigger tracks */
  1634. /* RIFF ids: */
  1635. #define DMUS_FOURCC_SEGTRACK_LIST                   mmioFOURCC('s','e','g','t')
  1636. #define DMUS_FOURCC_SEGTRACK_CHUNK                  mmioFOURCC('s','g','t','h')
  1637. #define DMUS_FOURCC_SEGMENTS_LIST                   mmioFOURCC('l','s','g','l')
  1638. #define DMUS_FOURCC_SEGMENT_LIST                    mmioFOURCC('l','s','e','g')
  1639. #define DMUS_FOURCC_SEGMENTITEM_CHUNK               mmioFOURCC('s','g','i','h')
  1640. #define DMUS_FOURCC_SEGMENTITEMNAME_CHUNK           mmioFOURCC('s','n','a','m')
  1641. /* io structures */
  1642. typedef struct _DMUS_IO_SEGMENT_TRACK_HEADER
  1643. {
  1644.     DWORD dwFlags; /* Reserved leave as 0. */
  1645. } DMUS_IO_SEGMENT_TRACK_HEADER;
  1646. typedef struct _DMUS_IO_SEGMENT_ITEM_HEADER
  1647. {
  1648.     MUSIC_TIME      lTimeLogical;    /* Position in track list. Time in the music with which the event is associated. */
  1649.     MUSIC_TIME      lTimePhysical;   /* Precise time event will be triggered. Should be close to logical time. */
  1650.     DWORD           dwPlayFlags;     /* Flags for PlaySegment(). */
  1651.     DWORD           dwFlags;         /* Flags. */
  1652. } DMUS_IO_SEGMENT_ITEM_HEADER;
  1653. /* values for dwflags field of DMUS_IO_SEGMENT_ITEM_HEADER */
  1654. #define DMUS_SEGMENTTRACKF_MOTIF                 1        /* interpret DMRF as link to style, and use snam as the name of a motif within the style */
  1655. /*
  1656. LIST
  1657. (
  1658.     'segt'          // DirectMusic Segment Trigger Track form-type
  1659.     [<sgth-ck>]     // Segment track header
  1660.     <lsgl-list>     // List of Segment Lists
  1661. )
  1662.     // <sgth-ck>
  1663.     'sgth'
  1664.     (
  1665.         <DMUS_IO_SEGMENT_TRACK_HEADER>
  1666.     )
  1667.     // <lsgl-list>
  1668.     LIST
  1669.     (
  1670.         'lsgl'          // Array of segments
  1671.         <lseg-list>...  // Each segment is encapsulated in a list (that way it can still be riff parsed.)
  1672.     )
  1673.         // <lseg-list>
  1674.         LIST
  1675.         (
  1676.             'lseg'
  1677.             <sgih-ck>
  1678.             <DMRF-list>    // Link to a segment or style file.
  1679.             [<snam-ck>]    // Name field.  Used with DMUS_SEGMENTTRACKF_MOTIF flag.
  1680.         )
  1681.             // <sgih-ck>            // segment item header
  1682.             (
  1683.                 <DMUS_IO_SEGMENT_ITEM_HEADER>  // Segment item header
  1684.             )
  1685.             // <snam-ck>
  1686.             (
  1687.                 // Name, stored as NULL terminated string of WCHARs
  1688.             )
  1689. */      
  1690. /* Script track. */
  1691. /* RIFF ids: */
  1692. #define DMUS_FOURCC_SCRIPTTRACK_LIST                mmioFOURCC('s','c','r','t')
  1693. #define DMUS_FOURCC_SCRIPTTRACKEVENTS_LIST          mmioFOURCC('s','c','r','l')
  1694. #define DMUS_FOURCC_SCRIPTTRACKEVENT_LIST           mmioFOURCC('s','c','r','e')
  1695. #define DMUS_FOURCC_SCRIPTTRACKEVENTHEADER_CHUNK    mmioFOURCC('s','c','r','h')
  1696. #define DMUS_FOURCC_SCRIPTTRACKEVENTNAME_CHUNK      mmioFOURCC('s','c','r','n')
  1697. /* Flags for DMUS_IO_SCRIPTTRACK_TIMING
  1698.  */
  1699. #define DMUS_IO_SCRIPTTRACKF_PREPARE (1 << 0)        /* Fire event in advance of time stamp, at Prepare time.  This is the default because it leaves the script time to change the music happening at the target time. */
  1700. #define DMUS_IO_SCRIPTTRACKF_QUEUE   (1 << 1)        /* Fire event just before time stamp, at Queue time. */
  1701. #define DMUS_IO_SCRIPTTRACKF_ATTIME  (1 << 2)        /* Fire event right at the time stamp. */
  1702. typedef struct _DMUS_IO_SCRIPTTRACK_EVENTHEADER
  1703. {
  1704.     DWORD dwFlags;              /* various bits (see DMUS_IO_SCRIPTTRACKF_*) */
  1705.     MUSIC_TIME lTimeLogical;    /* Position in track list. Time in the music with which the event is associated. */
  1706.     MUSIC_TIME lTimePhysical;   /* Precise time event will be triggered. Should be close to logical time. */
  1707. } DMUS_IO_SCRIPTTRACK_EVENTHEADER;
  1708. /*
  1709.     // Script Track
  1710.     // <scrt-list>
  1711.     LIST
  1712.     (
  1713.         <scrl-list>       // List of script events
  1714.     )
  1715.         // <scrl-list>
  1716.         LIST
  1717.         (
  1718.             <scre-list>...    // Array of event descriptions
  1719.         )
  1720.             // <scre-list>
  1721.             LIST
  1722.             (
  1723.                 <scrh-ck>         // Event header chunk
  1724.                 <DMRF>
  1725.                 <scrn-ck>         // Routine name
  1726.             )
  1727.                 'scrh'
  1728.                 (
  1729.                     <DMUS_IO_SCRIPTTRACK_EVENTHEADER>
  1730.                 )
  1731.                 'scrn'
  1732.                 (
  1733.                     // Name, stored as NULL terminated string of WCHARs
  1734.                 )
  1735. */
  1736. /* Lyrics/Notification track. */
  1737. /* RIFF ids: */
  1738. #define DMUS_FOURCC_LYRICSTRACK_LIST                mmioFOURCC('l','y','r','t')
  1739. #define DMUS_FOURCC_LYRICSTRACKEVENTS_LIST          mmioFOURCC('l','y','r','l')
  1740. #define DMUS_FOURCC_LYRICSTRACKEVENT_LIST           mmioFOURCC('l','y','r','e')
  1741. #define DMUS_FOURCC_LYRICSTRACKEVENTHEADER_CHUNK    mmioFOURCC('l','y','r','h')
  1742. #define DMUS_FOURCC_LYRICSTRACKEVENTTEXT_CHUNK      mmioFOURCC('l','y','r','n')
  1743. typedef struct _DMUS_IO_LYRICSTRACK_EVENTHEADER
  1744. {
  1745.     DWORD dwFlags;              /* Reserved leave as 0. */
  1746.     DWORD dwTimingFlags;        /* Combination DMUS_PMSGF_TOOL_* flags.  Determines the precise timing of when the notification happens. Invalid with the flag DMUS_PMSGF_REFTIME, DMUS_PMSGF_MUSICTIME, DMUS_PMSGF_TOOL_FLUSH, or DMUS_PMSGF_LOCKTOREFTIME. */
  1747.     MUSIC_TIME lTimeLogical;    /* Position in track list. Time in the music with which the event is associated. */
  1748.     MUSIC_TIME lTimePhysical;   /* Precise time event will be triggered. Should be close to logical time. */
  1749. } DMUS_IO_LYRICSTRACK_EVENTHEADER;
  1750. /*
  1751.     // Lyrics/Notification Track
  1752.     // <lyrt-list>
  1753.     LIST
  1754.     (
  1755.         <lyrl-list>       // List of notification events
  1756.     )
  1757.         // <lyrl-list>
  1758.         LIST
  1759.         (
  1760.             <lyre-list>...    // Array of event descriptions
  1761.         )
  1762.             // <lyre-list>
  1763.             LIST
  1764.             (
  1765.                 <lyrh-ck>         // Event header chunk
  1766.                 <lyrn-ck>         // Notification text
  1767.             )
  1768.                 'lyrh'
  1769.                 (
  1770.                     <DMUS_IO_LYRICSTRACK_EVENTHEADER>
  1771.                 )
  1772.                 'lyrn'
  1773.                 (
  1774.                     // Name, stored as NULL terminated string of WCHARs
  1775.                 )
  1776. */
  1777. /* Parameter control track */
  1778. /* RIFF ids: */
  1779. #define DMUS_FOURCC_PARAMCONTROLTRACK_TRACK_LIST            mmioFOURCC('p','r','m','t')
  1780. #define DMUS_FOURCC_PARAMCONTROLTRACK_OBJECT_LIST           mmioFOURCC('p','r','o','l')
  1781. #define DMUS_FOURCC_PARAMCONTROLTRACK_OBJECT_CHUNK          mmioFOURCC('p','r','o','h')
  1782. #define DMUS_FOURCC_PARAMCONTROLTRACK_PARAM_LIST            mmioFOURCC('p','r','p','l')
  1783. #define DMUS_FOURCC_PARAMCONTROLTRACK_PARAM_CHUNK           mmioFOURCC('p','r','p','h')
  1784. #define DMUS_FOURCC_PARAMCONTROLTRACK_CURVES_CHUNK          mmioFOURCC('p','r','c','c')
  1785. typedef struct _DMUS_IO_PARAMCONTROLTRACK_OBJECTHEADER
  1786. {
  1787.     DWORD dwFlags;              /* Reserved.  Must be zero. */
  1788.     GUID guidTimeFormat;        /* Time format to set the object to.  Must be GUID_TIME_REFERNCE or GUID_TIME_MUSIC from medparam.h. */
  1789.     /* Path for finding the object. These fields correspond to the first five parameters of IDirectMusicSegmentState::GetObjectInPath. */
  1790.     DWORD dwPChannel;
  1791.     DWORD dwStage;
  1792.     DWORD dwBuffer;
  1793.     GUID guidObject;
  1794.     DWORD dwIndex;
  1795. } DMUS_IO_PARAMCONTROLTRACK_OBJECTHEADER;
  1796. typedef struct _DMUS_IO_PARAMCONTROLTRACK_PARAMHEADER
  1797. {
  1798.     DWORD dwFlags;              /* Reserved.  Must be zero. */
  1799.     DWORD dwIndex;              /* Index number of the parameter on the object */
  1800. } DMUS_IO_PARAMCONTROLTRACK_PARAMHEADER;
  1801. typedef struct _DMUS_IO_PARAMCONTROLTRACK_CURVEINFO
  1802. {
  1803.     MUSIC_TIME  mtStartTime;
  1804.     MUSIC_TIME  mtEndTime;
  1805.     float       fltStartValue;
  1806.     float       fltEndValue;
  1807.     DWORD       dwCurveType;   /* One of the items from the MP_CURVE_TYPE enum in medparam.h */
  1808.     DWORD       dwFlags;       /* A combination of the MPF_ENVLP_* constants in medparam.h */
  1809. } DMUS_IO_PARAMCONTROLTRACK_CURVEINFO;
  1810. /*
  1811.     // <prmt-list>
  1812.     LIST
  1813.     (
  1814.         <prol-list>...   // one for each object
  1815.     )
  1816.         // <prol-list>
  1817.         LIST
  1818.         (
  1819.             <proh-ck>       // object header chunk
  1820.             <prpl-list>...  // one for each parameter
  1821.         )
  1822.             // <proh-ck>
  1823.             proh
  1824.             (
  1825.                 <DMUS_IO_PARAMCONTROLTRACK_OBJECTHEADER>
  1826.             )
  1827.             // <prpl-list>
  1828.             LIST
  1829.             (
  1830.                 <prph-ck>       // parameter header chunk
  1831.                 <prcc-ck>       // chunk containing an array of curves
  1832.             )
  1833.                 // <prph-ck>
  1834.                 prph
  1835.                 (
  1836.                     <DMUS_IO_PARAMCONTROLTRACK_PARAMHEADER>
  1837.                 )
  1838.                 // <prcc-ck>
  1839.                 prcc
  1840.                 (
  1841.                     // sizeof DMUS_IO_PARAMCONTROLTRACK_CURVEINFO:DWORD
  1842.                     <DMUS_IO_PARAMCONTROLTRACK_CURVEINFO>... // curves, sorted in order of mtTime
  1843.                 )
  1844. */
  1845. /* Melody formulation track */
  1846. /* Note: Melody formulation file format is not supported in DX8. */
  1847. typedef DMUS_CONNECTION_RULE DMUS_IO_CONNECTION_RULE; /* defined in dmusici.h */
  1848. typedef DMUS_MELODY_FRAGMENT DMUS_IO_MELODY_FRAGMENT; /* defined in dmusici.h */
  1849. #define DMUS_FOURCC_MELODYFORM_TRACK_LIST     mmioFOURCC( 'm', 'f', 'r', 'm' )
  1850. #define DMUS_FOURCC_MELODYFORM_HEADER_CHUNK   mmioFOURCC( 'm', 'l', 'f', 'h' )
  1851. #define DMUS_FOURCC_MELODYFORM_BODY_CHUNK     mmioFOURCC( 'm', 'l', 'f', 'b' )
  1852. typedef struct _DMUS_IO_MELFORM
  1853. {
  1854.     DWORD        dwPlaymode;       /* NOT CURRENTLY USED - MUST BE 0 */   
  1855. } DMUS_IO_MELFORM;
  1856. /*
  1857.     // <mfrm-list>
  1858.     LIST
  1859.     (
  1860.         'mfrm'
  1861.         <mlfh-ck>       // Melody formulation header chunk
  1862.         <mlfb-ck>       // Melody formulation body chunk
  1863.     )
  1864.     // <mlfb-ck>
  1865.     'mlfb'
  1866.     (
  1867.         <DMUS_IO_MELFORM>
  1868.     )
  1869.   // <mlfb-ck>
  1870.     'mlfb'
  1871.     (
  1872.         //sizeof DMUS_IO_MELODY_FRAGMENT: DWORD
  1873.         <DMUS_IO_MELODY_FRAGMENT>...
  1874.     )
  1875. */
  1876. #if (DIRECTSOUND_VERSION >= 0x0800)
  1877. /* DirectSoundBufferConfig FX Map */
  1878. /* RIFF ids: */
  1879. #define DMUS_FOURCC_DSBC_FORM       mmioFOURCC('D','S','B','C')
  1880. #define DMUS_FOURCC_DSBD_CHUNK      mmioFOURCC('d','s','b','d')
  1881. #define DMUS_FOURCC_BSID_CHUNK      mmioFOURCC('b','s','i','d')
  1882. #define DMUS_FOURCC_DS3D_CHUNK      mmioFOURCC('d','s','3','d')
  1883. #define DMUS_FOURCC_DSBC_LIST       mmioFOURCC('f','x','l','s')
  1884. #define DMUS_FOURCC_DSFX_FORM       mmioFOURCC('D','S','F','X')
  1885. #define DMUS_FOURCC_DSFX_CHUNK      mmioFOURCC('f','x','h','r')
  1886. #define DMUS_FOURCC_DSFX_DATA       mmioFOURCC('d','a','t','a')
  1887. /* io structures */
  1888. typedef struct _DSOUND_IO_DSBUFFERDESC
  1889. {
  1890.     DWORD dwFlags;        /* DirectSound buffer creation flags */
  1891.     WORD nChannels;       /* No. of channels (rest of buffer format is determined by owning sink) */
  1892.     LONG lVolume;         /* Initial pan; only used if CTRLVOLUME is specified */
  1893.     LONG lPan;            /* Initial pan; only used if CTRLPAN is specified */
  1894.     DWORD dwReserved;     /* Reserved - must be 0 */
  1895. } DSOUND_IO_DSBUFFERDESC;
  1896. typedef struct _DSOUND_IO_DSBUSID
  1897. {
  1898.     DWORD busid[1];       /* Array size determined from chunk size */
  1899. } DSOUND_IO_DSBUSID;
  1900. typedef struct _DSOUND_IO_3D
  1901. {
  1902.     GUID guid3DAlgorithm; /* GUID identifying the 3D algorithm to use (defined in dsound.h) */
  1903.     DS3DBUFFER ds3d;      /* Initial 3D parameters */
  1904. } DSOUND_IO_3D;
  1905. typedef struct _DSOUND_IO_DXDMO_HEADER
  1906. {
  1907.     DWORD dwEffectFlags;  /* Effect creation flags - equivalent to DSEFFECTDESC::dwFlags */
  1908.     GUID guidDSFXClass;   /* GUID identifying the effect to use - corresponds to a COM CLSID */
  1909.     GUID guidReserved;    /* Reserved - must be the null GUID */
  1910.     GUID guidSendBuffer;  /* GUID identifying the buffer to send to if this is a send effect */
  1911.     DWORD dwReserved;     /* Reserved - must be 0 */
  1912. } DSOUND_IO_DXDMO_HEADER;
  1913. typedef struct _DSOUND_IO_DXDMO_DATA
  1914. {
  1915.     DWORD data[1];      /* Array size determined by the DMO involved */
  1916. } DSOUND_IO_DXDMO_DATA;
  1917. /*
  1918. RIFF
  1919. (
  1920.     'DSBC'          // DirectSoundBufferConfig chunk
  1921.     [<guid-ck>]     // GUID identifier for this DirectSoundBufferConfig
  1922.     [<vers-ck>]     // Optional version info
  1923.     [<UNFO-list>]   // Name, author, copyright info., comments
  1924.     <dsbd-ck>       // DirectSound Buffer descriptor chunk
  1925.     [<bsid-ck>]     // Optional bus id array
  1926.     [<ds3d-ck>]     // Optional 3d Parameters
  1927.     [<fxls-list>]   // Optional list of FX descriptors
  1928. )
  1929.     // <guid-ck>
  1930.     'guid'
  1931.     (
  1932.         <GUID>
  1933.     )
  1934.     // <vers-ck>
  1935.     'vers'
  1936.     (
  1937.         <DMUS_IO_VERSION>
  1938.     )
  1939.     // <dsbd-ck>
  1940.     'dsbd'
  1941.     (
  1942.         <DSOUND_IO_DSBUFFERDESC>  // Creation parameters and initial settings for the buffer
  1943.     )
  1944.     // <bsid-ck>
  1945.     'bsid'
  1946.     (
  1947.         <DSOUND_IO_DSBUSID>  // The size of DSOUND_IO_DSBUSID is determined by the chunk size 
  1948.     )
  1949.     // <ds3d-ck>
  1950.     'ds3d'
  1951.     (
  1952.         <DSOUND_IO_3D>  // Initial 3D buffer parameters: position, etc.
  1953.     )
  1954.     // <fx-list>
  1955.     LIST
  1956.     (
  1957.         'fxls'          // Array of DMO creation parameter blocks
  1958.         <DSFX-form>...  // Each DMO is encapsulated in a RIFF chunk
  1959.     )
  1960. // <DSFX-form>          // DMOs can be embedded in a buffer configuration or stored as separate files
  1961. RIFF
  1962. (
  1963.     'DSFX'
  1964.     <fxhr-ck>           // FX header chunk
  1965.     [<data-ck>]         // FX initial settings chunk
  1966. )
  1967.     // <fxhr-ck>
  1968.     'fxhr'
  1969.     (
  1970.         <DSOUND_IO_DXDMO_HEADER>
  1971.     )
  1972.     // <data-ck>
  1973.     'data'
  1974.     (
  1975.         <DSOUND_IO_DXDMO_DATA>  // Opaque data block used by the DMO to load itself.
  1976.         // For our standard included DMOs, this is simply the structure accepted by
  1977.         // the DMO's SetAllParameters() method - e.g. struct DSFXChorus for Chorus.
  1978.     )
  1979. */
  1980. #endif
  1981. #ifdef __cplusplus
  1982. }; /* extern "C" */
  1983. #endif
  1984. #include <poppack.h>
  1985. #endif /* #ifndef _DMUSICF_ */