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