]> git.donarmstrong.com Git - lilypond.git/blob - tex/lily-ps-defs.tex
release: 0.1.43
[lilypond.git] / tex / lily-ps-defs.tex
1 %
2 % WARNING: don't leave blank lines in the PS-code; they are
3 % transformed into \par 
4 %
5
6 %
7 % Should put in a lily-ps.ps header?
8 %
9 %
10
11 %
12 % header info (macros/defs, etc) should go into a \special{! ... }, 
13 % note the ! sign.  See dvips.info for details.
14 %
15
16 % Use of 
17 % /foo { operatorname } bind def
18 %
19 % ``compiles'' operatorname binding in the body of foo, making
20 % the code faster, and more reliable (less flexible)
21
22
23 % transplant a TeX dimension into the PS output.
24 \def\PSsetTeXdimen#1{\expandafter\special{! /#1 (\the\csname #1\endcsname) deftexdimen}}
25
26 \def\turnOnPostScript{
27 \def\embeddedps##1{%
28         % This sets CTM so that you get to the currentpoint
29         % by executing a 0 0 moveto
30         \special{ps: @beginspecial @setspecial ##1 @endspecial}       
31 }
32
33 %
34 % width, slope, height 
35 %
36 \special{! % round cappings
37 1 setlinecap
38 /draw_beam
39 {
40         2 div /beam_thick exch def
41         /beam_slope exch def
42         /beam_wd exch def
43         beam_slope beam_wd mul /beam_ht exch def
44         0 beam_thick neg moveto 
45         beam_wd beam_ht rlineto 
46         0 beam_thick 2 mul rlineto
47         0 beam_thick lineto
48         closepath fill
49 } bind def
50 % PS helper: convert (0.2pt) to the token 0.2
51 /settexdimen {  /thestring exch def
52         thestring 0 thestring length 2 sub
53         getinterval
54         token
55         pop exch pop } 
56 def
57 %
58 /deftexdimen {
59         settexdimen
60         def     
61 } def
62 }
63
64
65 \PSsetTeXdimen{staffrulethickness}
66 \PSsetTeXdimen{staffheight}
67 \special{! %
68 /draw_decresc
69         {
70                 staffrulethickness setlinewidth
71                 /cresc_cont exch def
72                 /cresc_ht exch def
73                 /cresc_wd exch def
74 %
75                 cresc_wd cresc_cont moveto
76                 0 cresc_ht lineto
77                 stroke
78                 cresc_wd cresc_cont neg moveto
79                 0 cresc_ht neg lineto
80                 stroke
81         }
82         bind def
83         /draw_cresc
84         {
85                 /cresc_cont exch def
86                 /cresc_ht exch def
87                 /cresc_wd exch def
88 %
89                 0 cresc_cont moveto
90                 cresc_wd cresc_ht lineto
91                 stroke
92                 0 cresc_cont neg moveto
93                 cresc_wd cresc_ht neg lineto
94                 stroke
95         }
96         bind def
97  /lily_distance {
98         1 copy mul exch 1 copy mul add sqrt
99  } bind def
100  /draw_plet
101         {
102                 staffrulethickness setlinewidth
103                 /dir exch def
104                 /plet_dy exch def
105                 /plet_dx exch def
106                 staffheight 2 div /plet_gapx exch def
107                 plet_dy plet_dx div plet_gapx mul /plet_gapy exch def
108                 staffheight 4 div dir mul /plet_h exch def
109 %
110                 0 0 moveto
111                 0 plet_h lineto 
112                 plet_dx plet_gapx sub 2 div 
113                         plet_dy plet_gapy sub 2 div plet_h add lineto
114                 plet_dx plet_gapx add 2 div 
115                         plet_dy plet_gapy add 2 div plet_h add moveto
116                 plet_dx plet_dy plet_h add lineto
117                 plet_dx plet_dy lineto
118                 stroke
119         }
120         bind def
121  staffheight 2 div
122  /slurhtlimit exch def
123  /slurratio 0.3333 def
124  %
125  %  (b*ratio)/(1 + b / htlimit)
126  /getslurcontrol 
127  { 
128         slurhtlimit 90 div /slur_alpha exch def
129         slurratio 60 div slur_alpha div  /slur_beta  exch def
130         slur_beta mul 1 atan slur_alpha mul
131  } bind def
132  staffrulethickness 1.5 mul  /slur_thick exch def
133  /draw_slur
134  {
135         staffrulethickness setlinewidth
136         0 0 moveto
137         /slur_dir exch def
138         /slur_dy exch def
139         /slur_dx exch def
140         slur_dy slur_dx lily_distance /slur_b  exch def
141         slur_b getslurcontrol 
142         slur_dir mul /slur_ht exch def
143         slur_b getslurcontrol /slur_indent exch def       
144 %
145         slur_dy slur_dx atan rotate
146         slur_indent slur_ht
147         slur_b slur_indent sub slur_ht
148         slur_b 0
149         rcurveto        
150  %
151         slur_indent neg slur_ht slur_dir slur_thick mul  sub
152         slur_indent slur_b sub slur_ht slur_dir slur_thick mul  sub
153         slur_b neg  0
154         rcurveto
155  %
156         gsave
157                 fill
158         grestore
159         stroke
160  } bind def}}
161
162
163
164
165 \def\turnOnExperimentalFeatures{
166 % draw a slur in embedded postscript
167 \special{ps:
168 }}