]> git.donarmstrong.com Git - lilypond.git/blob - ps/music-drawing-routines.ps
Gets rid of oval stencil command
[lilypond.git] / ps / music-drawing-routines.ps
1 %!PS-Adobe-1.0: music-drawing-routines.ps
2 %
3 % Functions for direct and embedded PostScript
4
5 % Careful with double % as comment prefix.
6 % Any %%X comment is interpreted as DSC comments.
7
8 % TODO: use dicts or prefixes to prevent namespace pollution.
9
10 /pdfmark where
11 {pop} {userdict /pdfmark /cleartomark load put} ifelse
12
13
14 % llx lly urx ury URI
15 /mark_URI
16 {
17     /uri exch def
18     /ury exch def
19     /urx exch def
20     /lly exch def
21     /llx exch def
22     [
23         /Rect [ llx lly urx ury ]
24         
25         /Border [ 0 0 0 ]
26
27         /Action
28             <<
29                 /Subtype /URI
30                 /URI uri
31             >>
32         /Subtype /Link
33     /ANN
34     pdfmark
35 }
36 bind def
37
38 % llx lly urx ury page
39 /mark_page_link
40 {
41     /page exch def
42     /ury exch def
43     /urx exch def
44     /lly exch def
45     /llx exch def
46     [
47         /Rect [ llx lly urx ury ]
48         /Border [ 0 0 0 ]
49         /Page page
50         /Subtype /Link
51     /ANN
52     pdfmark
53 }
54 bind def
55
56 % from adobe tech note 5002.
57 /BeginEPSF { %def
58     /b4_Inc_state save def % Save state for cleanup
59     /dict_count countdictstack def % Count objects on dict stack
60     /op_count count 1 sub def % Count objects on operand stack
61     userdict begin % Push userdict on dict stack
62     /showpage { } def % Redefine showpage, { } = null proc
63     0 setgray 0 setlinecap % Prepare graphics state
64     1 setlinewidth 0 setlinejoin
65     10 setmiterlimit [ ] 0 setdash newpath
66     /languagelevel where % If level not equal to 1 then
67     {pop languagelevel % set strokeadjust and
68     1 ne % overprint to their defaults.
69       {false setstrokeadjust false setoverprint
70       } if
71     } if
72 } bind def
73
74 /EndEPSF { %def
75   count op_count sub {pop} repeat % Clean up stacks
76   countdictstack dict_count sub {end} repeat
77   b4_Inc_state restore
78 } bind def
79
80 /stroke_and_fill {
81         gsave
82                 stroke
83         grestore
84         fill
85 } bind def
86
87 /vector_add { % x1 y1 x2 y2 vector_add x1+x2 y1+y2
88         exch
89         4 1 roll
90         add
91         3 1 roll
92         add
93         exch
94 } bind def
95
96 /draw_round_box % width height x y blot
97 {
98         dup
99         0.0 gt {
100                 setlinewidth % w h x y
101                 0 setlinecap
102                 1 setlinejoin
103
104                 rmoveto % w h
105                 currentpoint % w h x1 y1
106                 4 2 roll % x1 y1 w h
107                 4 copy
108                 rectfill
109                 rectstroke
110         } {
111                 pop % w h x y
112                 rmoveto % w h
113                 currentpoint % w h x1 y1
114                 4 2 roll % x1 y1 w h
115                 rectfill
116         } ifelse
117 } bind def
118
119 /draw_polygon % fill? x(n) y(n) x(n-1) y(n-1) ... x(0) y(0) n blot
120 {
121         setlinewidth %set to blot
122
123         0 setlinecap
124         1 setlinejoin
125
126         3 1 roll
127         /polygon_x
128         currentpoint
129         /polygon_y exch def
130         def
131         rmoveto % x(0) y(0)
132         { polygon_x polygon_y vector_add lineto } repeat % n times
133         closepath
134         { %fill?
135                 stroke_and_fill
136         }{
137                 stroke
138         } ifelse
139 } bind def
140
141 /draw_repeat_slash % x-width width height draw_repeat_slash
142 {
143         2 index % duplicate x-width
144         1 setlinecap
145         1 setlinejoin
146         
147           0  rlineto % x-width 0
148              rlineto % width height
149         neg 0 rlineto % -x-width 0
150         closepath fill
151 } bind def
152
153 % this is for drawing slurs and barre-indicators.
154 /draw_bezier_sandwich  % x5 y5 x6 y6 x7 y7
155                        % x4 y4
156                        % x1 y1 x2 y2 x3 y3
157                        % x0 y0
158                        % linewidth draw_bezier_sandwich
159 {
160         gsave
161         currentpoint translate
162         % round ending and round beginning
163         1 setlinejoin 1 setlinecap
164         setlinewidth
165         moveto
166         curveto
167         lineto
168         curveto
169         closepath
170         stroke_and_fill
171         grestore
172 } bind def
173
174 /draw_circle % filled? radius thickness draw_circle
175 {
176         setlinewidth    % f? r
177         currentpoint    % f? r x0 y0
178         3 2 roll        % f? x0 y0 r
179         dup 0 rmoveto
180         0 360 arc closepath
181                 { stroke_and_fill }
182                 { stroke }
183         ifelse
184 } bind def
185
186 /draw_ellipse % filled? x-radius y-radius thickness draw_ellipse
187 {
188   setlinewidth % f? x-r y-r
189   /savematrix matrix currentmatrix def
190   scale % f?
191   currentpoint
192   1 0 rmoveto
193   1 0 360  arc closepath
194   savematrix setmatrix
195              { stroke_and_fill}
196              { stroke }
197   ifelse
198 } bind def
199
200 /draw_partial_ellipse % filled connect x-radius y-radius startangle endangle thickness draw_partial_ellipse
201 % Note that filled is not boolean to permit for different graylevels (ie for trill keys)
202 {
203   gsave
204   currentpoint translate
205   /thickness exch def
206   /endangle exch def
207   /startangle exch def
208   /y_radius exch def
209   /x_radius exch def
210   /endrad x_radius y_radius mul
211     x_radius x_radius mul
212     endangle cos endangle cos mul mul
213     y_radius y_radius mul
214     endangle sin endangle sin mul mul add sqrt div def
215   /endangle endangle sin endrad mul y_radius div
216     endangle cos endrad mul x_radius div atan def
217   /startrad x_radius y_radius mul
218     x_radius x_radius mul
219       startangle cos startangle cos mul mul
220     y_radius y_radius mul
221       startangle sin startangle sin mul mul add sqrt div def
222   /startangle startangle sin startrad mul y_radius div
223     startangle cos startrad mul x_radius div atan def
224   /connect exch def
225   /filled exch def
226   /savematrix matrix currentmatrix def
227   thickness setlinewidth
228   x_radius y_radius scale
229   startangle cos startangle sin moveto
230   0 0 1 startangle
231     startangle endangle eq { endangle 360 add } { endangle } ifelse
232     arc
233   connect {
234     startangle cos startangle sin moveto endangle cos endangle sin lineto }
235     if
236   savematrix setmatrix filled { stroke_and_fill } { stroke } ifelse
237   grestore
238 } bind def
239
240 /draw_line % dx dy x1 y1 thickness draw_line
241 {
242         setlinewidth % dx dy x1 y1
243         1 setlinecap
244         1 setlinejoin
245         rmoveto % dx dy
246         rlineto
247         stroke
248 } bind def
249
250 /draw_dashed_line % dx dy thickness dashpattern offset draw_dashed_line
251 {
252         1 setlinecap
253         1 setlinejoin
254         setdash % dx dy thickness
255         setlinewidth %dx dy
256         rlineto
257         stroke
258         [] 0 setdash % reset dash pattern
259 } bind def
260
261 /print_glyphs % w dx dy glyph print_glyphs
262 {
263         {
264                 currentpoint %w dx dy glyph x0 y0
265                 5 2 roll %w x0 y0 dx dy glyph
266                 3 1 roll %w x0 y0 glyph dx dy
267                 rmoveto %w x0 y0 glyph
268                 glyphshow %w x0 y0
269                 moveto %w
270                 0 rmoveto
271         }repeat
272 }bind def
273 %end music-drawing-routines.ps