1 %!PS-Adobe-1.0: music-drawing-routines.ps
3 % Functions for direct and embedded PostScript
5 % Careful with double % as comment prefix.
6 % Any %%X comment is interpreted as DSC comments.
8 % TODO: use dicts or prefixes to prevent namespace pollution.
11 {pop} {userdict /pdfmark /cleartomark load put} ifelse
23 /Rect [ llx lly urx ury ]
38 % llx lly urx ury page
47 /Rect [ llx lly urx ury ]
56 % from adobe tech note 5002.
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
75 count op_count sub {pop} repeat % Clean up stacks
76 countdictstack dict_count sub {end} repeat
87 /vector_add { % x1 y1 x2 y2 vector_add x1+x2 y1+y2
96 /draw_round_box % width height x y blot
100 setlinewidth % w h x y
102 2 copy 0 ne exch 0 ne and
106 currentpoint % w h x1 y1
118 currentpoint % w h x1 y1
124 /draw_polygon % fill? x(n) y(n) x(n-1) y(n-1) ... x(0) y(0) n blot
126 setlinewidth %set to blot
137 { polygon_x polygon_y vector_add lineto } repeat % n times
146 /draw_circle % filled? radius thickness draw_circle
149 currentpoint % f? r x0 y0
150 3 2 roll % f? x0 y0 r
158 /draw_ellipse % filled? x-radius y-radius thickness draw_ellipse
160 setlinewidth % f? x-r y-r
161 /savematrix matrix currentmatrix def
165 1 0 360 arc closepath
172 /draw_partial_ellipse % filled connect x-radius y-radius startangle endangle thickness draw_partial_ellipse
173 % Note that filled is not boolean to permit for different graylevels (ie for trill keys)
176 currentpoint translate
182 /endrad x_radius y_radius mul
183 x_radius x_radius mul
184 endangle cos endangle cos mul mul
185 y_radius y_radius mul
186 endangle sin endangle sin mul mul add sqrt div def
187 /endangle endangle sin endrad mul y_radius div
188 endangle cos endrad mul x_radius div atan def
189 /startrad x_radius y_radius mul
190 x_radius x_radius mul
191 startangle cos startangle cos mul mul
192 y_radius y_radius mul
193 startangle sin startangle sin mul mul add sqrt div def
194 /startangle startangle sin startrad mul y_radius div
195 startangle cos startrad mul x_radius div atan def
198 /savematrix matrix currentmatrix def
199 thickness setlinewidth
200 x_radius y_radius scale
201 startangle cos startangle sin moveto
203 startangle endangle eq { endangle 360 add } { endangle } ifelse
206 startangle cos startangle sin moveto endangle cos endangle sin lineto }
208 savematrix setmatrix filled { stroke_and_fill } { stroke } ifelse
212 /draw_line % dx dy x1 y1 thickness draw_line
214 setlinewidth % dx dy x1 y1
222 /draw_dashed_line % dx dy thickness dashpattern offset draw_dashed_line
226 setdash % dx dy thickness
230 [] 0 setdash % reset dash pattern
233 /print_glyphs % w dx dy glyph print_glyphs
236 currentpoint %w dx dy glyph x0 y0
237 5 2 roll %w x0 y0 dx dy glyph
238 3 1 roll %w x0 y0 glyph dx dy
239 rmoveto %w x0 y0 glyph
245 %end music-drawing-routines.ps