~ubuntu-branches/ubuntu/breezy/muse/breezy

« back to all changes in this revision

Viewing changes to synti/stklib/SKINI11.msg

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2004-02-07 15:18:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040207151822-es27xxkzbcxkebjm
Tags: 0.6.3-1
* New upstream version.
* Added patches:
  + [10_alsa_init_fix] New, from upstream CVS.
    Initialize direction variable when setting Alsa parameters.
  + [10_canvas_translation_fix] New, from upstream CVS.
    Do not translate tooltips twice in canvas popup.
  + [10_checkbox_fix] New, from upstream CVS.
    Use proper set/test methods on metronome checkboxes.
  + [10_html_doc_cleanup] New.
    Fix links and HTML errors in documentation.
  + [20_allow_system_timer] New.
    The new upstream version fails by default if the real-time clock
    could not be accessed (usually the case when not running suid-root).
    This patch reverts the old behaviour of falling back to the more
    inaccurate system timer.
* Updated patches:
  + [11_PIC_fixes_fixup] Rediffed.
* Removed patches:
  + [20_no_atomic_asm] Merged upstream.
* debian/compat: Splice out debhelper compatibility level from rules file.
* debian/control: Build-depend on latest jack release by default.
  Closes: #228788
* debian/control: Bump standards version.
* debian/control: Use auto-generated debconf dependency via misc:Depends.
* debian/control: Minor tweaks to the long description.
* debian/control: Tighten fluidsynth build dependency to sane version.
* debian/muse.doc-base: New. Register HTML documentation with doc-base.
* debian/templates: Tiny rewording, and typo fix.
* debian/templates, debian/po/*: Switch to po-debconf for translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*************************************************************/
2
 
/*                                                           */
3
 
/*    DEFINITION of SKINI Message Types and Special Symbols  */
4
 
/*       Synthesis toolKit Instrument Network Interface      */
5
 
/*                                                           */
6
 
/*    These symbols should have the form __SK_<name>_     */
7
 
/*                                                           */
8
 
/*    Where <name> is the string used in the SKINI stream    */
9
 
/*************************************************************/
10
 
 
11
 
/***** MIDI COMPATIBLE MESSAGES ***/
12
 
/***** STATUS BYTES Have Chan=0  **/
13
 
 
14
 
#define NOPE    -32767
15
 
#define YEP     1
16
 
#define SK_DBL  -32766
17
 
#define SK_INT  -32765
18
 
#define SK_STR  -32764
19
 
 
20
 
#define __SK_NoteOff_                128
21
 
#define __SK_NoteOn_                 144
22
 
#define __SK_PolyPressure_           160
23
 
#define __SK_ControlChange_          176
24
 
#define __SK_ProgramChange_          192
25
 
#define __SK_AfterTouch_             208
26
 
#define __SK_ChannelPressure_        __SK_AfterTouch_
27
 
#define __SK_PitchWheel_             224
28
 
#define __SK_PitchBend_              __SK_PitchWheel_
29
 
 
30
 
#define __SK_Clock_                  248
31
 
#define __SK_SongStart_              250
32
 
#define __SK_Continue_               251
33
 
#define __SK_SongStop_               252
34
 
#define __SK_ActiveSensing_          254
35
 
#define __SK_SystemReset_            255
36
 
 
37
 
#define __SK_Volume_                 7
38
 
#define __SK_ModWheel_               1
39
 
#define __SK_Modulation_             __SK_ModWheel_
40
 
#define __SK_Breath_                 2
41
 
#define __SK_FootControl_            4
42
 
#define __SK_Portamento_             65
43
 
#define __SK_Balance_                8
44
 
#define __SK_Pan_                    10
45
 
#define __SK_Sustain_                64
46
 
#define __SK_Damper_                 __SK_Sustain_
47
 
#define __SK_Expression_             11 
48
 
 
49
 
#define __SK_AfterTouch_Cont_           128
50
 
#define __SK_ModFrequency_          __SK_Expression_
51
 
 
52
 
#define __SK_ProphesyRibbon_         16
53
 
#define __SK_ProphesyWheelUp_        2
54
 
#define __SK_ProphesyWheelDown_      3
55
 
#define __SK_ProphesyPedal_          18
56
 
#define __SK_ProphesyKnob1_          21
57
 
#define __SK_ProphesyKnob2_          22
58
 
 
59
 
/***  Instrument Family Specific **/
60
 
 
61
 
#define __SK_NoiseLevel_             __SK_FootControl_
62
 
 
63
 
#define __SK_PickPosition_           __SK_FootControl_
64
 
#define __SK_StringDamping_          __SK_Expression_
65
 
#define __SK_StringDetune_           __SK_ModWheel_
66
 
#define __SK_BodySize_               __SK_Breath_
67
 
#define __SK_BowPressure_            __SK_Breath_
68
 
#define __SK_BowPosition_            __SK_PickPosition_
69
 
#define __SK_BowBeta_                __SK_BowPosition_
70
 
 
71
 
#define __SK_ReedStiffness_          __SK_Breath_
72
 
#define __SK_ReedRestPos_            __SK_FootControl_
73
 
 
74
 
#define __SK_FluteEmbouchure_        __SK_Breath_
75
 
#define __SK_JetDelay_               __SK_FluteEmbouchure_
76
 
 
77
 
#define __SK_LipTension_             __SK_Breath_
78
 
#define __SK_SlideLength_            __SK_FootControl_
79
 
 
80
 
#define __SK_StrikePosition_         __SK_PickPosition_
81
 
#define __SK_StickHardness_          __SK_Breath_
82
 
 
83
 
#define __SK_TrillDepth_             1051
84
 
#define __SK_TrillSpeed_             1052
85
 
#define __SK_StrumSpeed_             __SK_TrillSpeed_
86
 
#define __SK_RollSpeed_              __SK_TrillSpeed_
87
 
 
88
 
#define __SK_FilterQ_                __SK_Breath_
89
 
#define __SK_FilterFreq_                1062
90
 
#define __SK_FilterSweepRate_        __SK_FootControl_
91
 
 
92
 
#define __SK_ShakerInst_             1071 
93
 
#define __SK_ShakerEnergy_           __SK_Breath_
94
 
#define __SK_ShakerDamping_          __SK_ModFrequency_
95
 
#define __SK_ShakerNumObjects_       __SK_FootControl_
96
 
 
97
 
#define __SK_Strumming_              1090
98
 
#define __SK_NotStrumming_           1091
99
 
#define __SK_Trilling_               1092
100
 
#define __SK_NotTrilling_            1093
101
 
#define __SK_Rolling_                __SK_Strumming_
102
 
#define __SK_NotRolling_             __SK_NotStrumming_
103
 
 
104
 
#define __SK_PlayerSkill_            2001
105
 
#define __SK_Chord_                  2002
106
 
#define __SK_ChordOff_               2003
107
 
 
108
 
#define __SK_SINGER_FilePath_        3000
109
 
#define __SK_SINGER_Frequency_       3001
110
 
#define __SK_SINGER_NoteName_        3002
111
 
#define __SK_SINGER_Shape_           3003
112
 
#define __SK_SINGER_Glot_            3004
113
 
#define __SK_SINGER_VoicedUnVoiced_  3005
114
 
#define __SK_SINGER_Synthesize_      3006
115
 
#define __SK_SINGER_Silence_         3007
116
 
#define __SK_SINGER_VibratoAmt_      __SK_ModWheel_
117
 
#define __SK_SINGER_RndVibAmt_       3008
118
 
#define __SK_SINGER_VibFreq_         __SK_Expression_
119
 
 
120