]> git.donarmstrong.com Git - lilypond.git/blob - ps/music-drawing-routines.ps
Gets rid of bezier-sandwich stencil
[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 /draw_circle % filled? radius thickness draw_circle
154 {
155         setlinewidth    % f? r
156         currentpoint    % f? r x0 y0
157         3 2 roll        % f? x0 y0 r
158         dup 0 rmoveto
159         0 360 arc closepath
160                 { stroke_and_fill }
161                 { stroke }
162         ifelse
163 } bind def
164
165 /draw_ellipse % filled? x-radius y-radius thickness draw_ellipse
166 {
167   setlinewidth % f? x-r y-r
168   /savematrix matrix currentmatrix def
169   scale % f?
170   currentpoint
171   1 0 rmoveto
172   1 0 360  arc closepath
173   savematrix setmatrix
174              { stroke_and_fill}
175              { stroke }
176   ifelse
177 } bind def
178
179 /draw_partial_ellipse % filled connect x-radius y-radius startangle endangle thickness draw_partial_ellipse
180 % Note that filled is not boolean to permit for different graylevels (ie for trill keys)
181 {
182   gsave
183   currentpoint translate
184   /thickness exch def
185   /endangle exch def
186   /startangle exch def
187   /y_radius exch def
188   /x_radius exch def
189   /endrad x_radius y_radius mul
190     x_radius x_radius mul
191     endangle cos endangle cos mul mul
192     y_radius y_radius mul
193     endangle sin endangle sin mul mul add sqrt div def
194   /endangle endangle sin endrad mul y_radius div
195     endangle cos endrad mul x_radius div atan def
196   /startrad x_radius y_radius mul
197     x_radius x_radius mul
198       startangle cos startangle cos mul mul
199     y_radius y_radius mul
200       startangle sin startangle sin mul mul add sqrt div def
201   /startangle startangle sin startrad mul y_radius div
202     startangle cos startrad mul x_radius div atan def
203   /connect exch def
204   /filled exch def
205   /savematrix matrix currentmatrix def
206   thickness setlinewidth
207   x_radius y_radius scale
208   startangle cos startangle sin moveto
209   0 0 1 startangle
210     startangle endangle eq { endangle 360 add } { endangle } ifelse
211     arc
212   connect {
213     startangle cos startangle sin moveto endangle cos endangle sin lineto }
214     if
215   savematrix setmatrix filled { stroke_and_fill } { stroke } ifelse
216   grestore
217 } bind def
218
219 /draw_line % dx dy x1 y1 thickness draw_line
220 {
221         setlinewidth % dx dy x1 y1
222         1 setlinecap
223         1 setlinejoin
224         rmoveto % dx dy
225         rlineto
226         stroke
227 } bind def
228
229 /draw_dashed_line % dx dy thickness dashpattern offset draw_dashed_line
230 {
231         1 setlinecap
232         1 setlinejoin
233         setdash % dx dy thickness
234         setlinewidth %dx dy
235         rlineto
236         stroke
237         [] 0 setdash % reset dash pattern
238 } bind def
239
240 /print_glyphs % w dx dy glyph print_glyphs
241 {
242         {
243                 currentpoint %w dx dy glyph x0 y0
244                 5 2 roll %w x0 y0 dx dy glyph
245                 3 1 roll %w x0 y0 glyph dx dy
246                 rmoveto %w x0 y0 glyph
247                 glyphshow %w x0 y0
248                 moveto %w
249                 0 rmoveto
250         }repeat
251 }bind def
252 %end music-drawing-routines.ps