5 fet_begingroup("flags")
8 % Flags pointing down overlap with the notehead (in x-direction), so
9 % the down-flag can be bigger
10 upflag_width# = .750 black_notehead_width# + stemthickness#/2;
11 downflag_width# = .833 black_notehead_width# + stemthickness#/2;
13 right_upflag_space# = .2 upflag_width#;
14 right_downflag_space# = .2 downflag_width#;
17 % Flags pointing down cannot overlap with the notehead in y-direction,
18 % so they have less slant.
20 % Because of optical illusion, the utmost flag (bottom for
21 % down-pointing, top for up-pointing) should be smaller than the other
22 % flags. Adobe Sonata doesn't do this correctly. (Instead they have
23 % an extension flag, which looks less elegant)
26 save hip_thickness, foot_thickness;
27 hip_thickness# = 1.3 stemthickness#;
28 foot_thickness# = hip_thickness#;
31 % Inspired by Adobe Sonata and [Wanske]
32 % for example, see POSTSCRIPT Language -- program design,
33 % page 119, and [Wanske], p 41,42
35 def draw_flag(expr center, flare,
36 dims, hip_depth, foot_wid, hip_thickness, foot_thickness)=
41 x2r - x2l = hip_thickness;
42 penpos3(foot_thickness, 0) ;
45 z2r = center + (xpart dims, -ypart(dims) * hip_depth);
46 z3r = center + (xpart(dims) * foot_wid, -ypart dims);
48 outer_path := z3r{curl 0} .. z2r{up} .. {up}z1r;
52 ..tension 1.1 .. z2l{down} ..
53 {curl 0} simple_serif(z3l, z3r, 80) &
54 outer_path & z1r -- cycle;
58 % TODO: calc intersectpoint
59 % TODO: calc incision_depth
61 def add_flag(expr yoff, flare, hip_wid_multiplier,
63 intersectpoint, hip_thickness, foot_thickness) =
65 save prev_center, prev_xextreme, prev_yextreme;
66 save rel_foot, ip, center, incision_depth;
67 save prev_hipwid, prev_footdep, prev_hipdep, wid, dep, hip_dep;
68 save hip_dep_ratio, foot_wid_ratio;
69 pair prev_center, center, foot, prev_xextreme, prev_yextreme;
72 incision_depth = 1.013;
73 prev_center = point 2 of outer_path;
74 prev_xextreme = point 1 of outer_path;
75 prev_yextreme = point 0 of outer_path;
76 prev_hipwid = xpart (prev_xextreme - prev_center);
77 prev_footdep = -ypart (prev_yextreme - prev_center);
78 prev_hipdep = -ypart(prev_xextreme - prev_center);
79 ip = point intersectpoint of outer_path;
81 wid = prev_hipwid * hip_wid_multiplier;
82 hip_dep = prev_hipdep * hip_dep_multiplier;
84 center = prev_center + (0,yoff);
85 rel_foot = incision_depth [(wid, hip_dep), ip - center];
86 dep = -ypart(rel_foot);
87 foot_wid_ratio = xpart(rel_foot ) / wid;
88 hip_dep_ratio = hip_dep / dep;
90 draw_flag(center, flare,
91 (wid, dep), hip_dep_ratio, foot_wid_ratio,
92 hip_thickness, foot_thickness);
96 fet_beginchar("8th Flag (up)", "u3", "eighthflag")
98 hip_depth_ratio, hip_width,
99 foot_depth, foot_width_ratio;
101 flare# = 1.0 staff_space#;
102 hip_depth_ratio = .72;
103 foot_width_ratio = .8;
104 hip_width# = upflag_width# - hip_thickness#/2;
106 foot_depth# = 3 staff_space#;
108 set_char_box(stemthickness# /2, hip_width#
109 + stemthickness#/2 + right_upflag_space#,
110 foot_depth# + foot_thickness#/2, stemthickness#/2)
112 define_pixels(flare, hip_width, hip_thickness,
113 foot_depth, foot_thickness);
114 draw_flag((stemthickness/2,0), flare,
115 (hip_width, foot_depth),
116 hip_depth_ratio, foot_width_ratio, hip_thickness, foot_thickness);
118 pickup pencircle scaled stemthickness;
119 draw (0, 0) .. (0,-2 staff_space);
122 fet_beginchar("16th Flag (up)", "u4", "sixteenthflag")
124 hip_depth_ratio, hip_width,
125 foot_depth, foot_width_ratio;
126 save flagspace, total_depth, flag_count;
127 total_depth# = 3.5 staff_space#;
129 flare# = .85 staff_space#;
130 flagspace# = .85 staff_space#;
131 hip_depth_ratio = .72 ;
132 hip_width# = upflag_width# - hip_thickness#/2;
133 flagspace# + foot_depth# = total_depth#;
135 foot_width_ratio = .8;
137 set_char_box(stemthickness# /2, hip_width#
138 + stemthickness#/2 + right_upflag_space#,
139 total_depth# + foot_thickness#/2, stemthickness#/2)
141 define_pixels(flare, hip_width, hip_thickness,
143 foot_depth, foot_thickness);
144 draw_flag((stemthickness/2,- flagspace), flare,
145 (hip_width, foot_depth),
146 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
148 add_flag(flagspace, flare,
149 .97, 1.00, 1.25, hip_thickness, foot_thickness);
151 pickup pencircle scaled stemthickness;
152 draw (0, 0) .. (0,-2 staff_space);
156 fet_beginchar("32nd Flag (up)", "u5", "thirtysecondflag")
158 hip_depth_ratio, hip_width,
159 foot_depth, foot_width_ratio;
160 save flagspace, total_depth, flag_count;
162 total_depth#=4.25 staff_space#;
163 flare# = .85 staff_space#;
164 flagspace# = .87 staff_space#;
165 hip_depth_ratio = .72 ;
166 hip_width# = upflag_width# - hip_thickness#/2;
167 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
169 foot_width_ratio = .8;
171 set_char_box(stemthickness# /2, hip_width#
172 + stemthickness#/2 + right_upflag_space#,
173 total_depth# + foot_thickness#/2, stemthickness#/2)
175 define_pixels(flare, hip_width, hip_thickness,
177 foot_depth, foot_thickness);
179 draw_flag((stemthickness/2,- 2 flagspace), flare,
180 (hip_width, foot_depth),
181 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
183 add_flag(flagspace, flare,
184 .97, 1.00, 1.25, hip_thickness, foot_thickness);
186 add_flag(flagspace, flare,
187 .95, 1.05, 1.25, hip_thickness, foot_thickness);
189 pickup pencircle scaled stemthickness;
190 draw (0, 0) .. (0,-2 staff_space);
193 fet_beginchar("64th Flag (up)", "u6", "sixtyfourthflag")
195 hip_depth_ratio, hip_width,
196 foot_depth, foot_width_ratio;
197 save flagspace, total_depth, flag_count;
200 flare# = .85 staff_space#;
201 flagspace# = .9 staff_space#;
202 hip_depth_ratio = .72 ;
203 hip_width# = upflag_width# - hip_thickness#/2;
204 total_depth# = 5.25 staff_space#;
205 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
207 foot_width_ratio = .8;
209 set_char_box(stemthickness# /2, hip_width#
210 + stemthickness#/2 + right_upflag_space#,
211 total_depth# + foot_thickness#/2, stemthickness#/2)
213 define_pixels(flare, hip_width, hip_thickness,
215 foot_depth, foot_thickness);
217 draw_flag((stemthickness/2,- (flag_count-1)* flagspace), flare,
218 (hip_width, foot_depth),
219 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
221 add_flag(flagspace, flare,
222 .97, 1.00, 1.3, hip_thickness, foot_thickness);
224 add_flag(flagspace, flare,
225 1.00, 1.00, 1.25, hip_thickness, foot_thickness);
226 add_flag(flagspace, flare,
227 .95, 1.05, 1.25, hip_thickness, foot_thickness);
228 pickup pencircle scaled stemthickness;
229 draw (0, 0) .. (0,-2 staff_space);
232 fet_beginchar("grace dash (up)", "ugrace", "gracedash")
234 hip_depth_ratio, hip_width,
237 flare# = 1.0 staff_space#;
238 hip_depth_ratio = .72;
239 hip_width# = upflag_width# - hip_thickness#/2;
241 foot_depth# = 3 staff_space#;
243 define_pixels(flare, hip_width, hip_thickness,
244 foot_depth, foot_thickness);
246 set_char_box(hip_width# * hip_depth_ratio,
247 hip_width# + stemthickness#/2 + right_upflag_space#,
248 foot_depth# * hip_depth_ratio, -flare#)
250 pickup pencircle scaled 1.5 stemthickness;
255 fet_beginchar("8th (down)", "d3", "deighthflag")
257 hip_depth_ratio, hip_width,
258 foot_depth, foot_width_ratio;
259 save flagspace, total_depth, flag_count;
262 flare# = .99 staff_space#;
263 flagspace# = .9 staff_space#;
264 hip_depth_ratio = .72 ;
265 hip_width# = downflag_width# - hip_thickness#/2;
266 total_depth# = 2.85 staff_space#;
267 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
269 foot_width_ratio = .8;
271 set_char_box(stemthickness# /2, hip_width#
272 + stemthickness#/2 + right_downflag_space#,
273 total_depth# + foot_thickness#/2, stemthickness#/2)
275 define_pixels(flare, hip_width, hip_thickness,
277 foot_depth, foot_thickness);
279 draw_flag((stemthickness/2,- (flag_count-1) *flagspace), flare,
280 (hip_width, foot_depth),
281 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
284 pickup pencircle scaled stemthickness;
285 draw (0, 0) .. (0,-2 staff_space);
289 fet_beginchar("16th (down)", "d4", "dsixteenthflag")
291 hip_depth_ratio, hip_width,
292 foot_depth, foot_width_ratio;
293 save flagspace, total_depth, flag_count;
296 flare# = .8 staff_space#;
297 flagspace# = .9 staff_space#;
298 hip_depth_ratio = .85 ;
299 hip_width# = downflag_width# - hip_thickness#/2;
300 total_depth# = 3.0 staff_space#;
301 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
303 foot_width_ratio = .95;
305 set_char_box(stemthickness# /2, hip_width#
306 + stemthickness#/2 + right_downflag_space#,
307 total_depth# + foot_thickness#/2, stemthickness#/2)
309 define_pixels(flare, hip_width, hip_thickness,
311 foot_depth, foot_thickness);
313 draw_flag((stemthickness/2,- (flag_count-1) *flagspace), flare,
314 (hip_width, foot_depth),
315 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
316 add_flag(flagspace, flare,
317 .95, 1.00, 1.25, hip_thickness, foot_thickness);
321 pickup pencircle scaled stemthickness;
322 draw (0, 0) .. (0,-2 staff_space);
326 fet_beginchar("32nd (down)", "d5", "dthirtysecondflag")
328 hip_depth_ratio, hip_width,
329 foot_depth, foot_width_ratio;
330 save flagspace, total_depth, flag_count;
333 flare# = .84 staff_space#;
334 flagspace# = .9 staff_space#;
335 hip_depth_ratio = .85 ;
336 hip_width# = downflag_width# - hip_thickness#/2;
337 total_depth# = 3.85 staff_space#;
338 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
340 foot_width_ratio = .95;
342 set_char_box(stemthickness# /2, hip_width#
343 + stemthickness#/2 + right_downflag_space#,
344 total_depth# + foot_thickness#/2, stemthickness#/2)
346 define_pixels(flare, hip_width, hip_thickness,
348 foot_depth, foot_thickness);
350 draw_flag((stemthickness/2,- (flag_count-1) *flagspace), flare,
351 (hip_width, foot_depth),
352 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
353 add_flag(flagspace, flare,
354 .97, 1.00, 1.25, hip_thickness, foot_thickness);
356 add_flag(flagspace, flare,
357 .95, 1.05, 1.25, hip_thickness, foot_thickness);
361 pickup pencircle scaled stemthickness;
362 draw (0, 0) .. (0,-2 staff_space);
365 fet_beginchar("64th (down)", "d6", "dsixtyfourthflag")
367 hip_depth_ratio, hip_width,
368 foot_depth, foot_width_ratio;
369 save flagspace, total_depth, flag_count;
372 flare# = .8 staff_space#;
373 flagspace# = .9 staff_space#;
374 hip_depth_ratio = .85 ;
375 hip_width# = downflag_width# - hip_thickness#/2;
376 total_depth# = 4.35 staff_space#;
377 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
379 foot_width_ratio = .98;
381 set_char_box(stemthickness# /2, hip_width#
382 + stemthickness#/2 + right_downflag_space#,
383 total_depth# + foot_thickness#/2, stemthickness#/2)
385 define_pixels(flare, hip_width, hip_thickness,
387 foot_depth, foot_thickness);
389 draw_flag((stemthickness/2,- (flag_count-1) *flagspace), flare,
390 (hip_width, foot_depth),
391 hip_depth_ratio,foot_width_ratio, hip_thickness, foot_thickness);
392 add_flag(flagspace, flare,
393 .97, 1.20, 1.175, hip_thickness, foot_thickness);
394 add_flag(flagspace, flare,
395 .97, 1.10, 1.175, hip_thickness, foot_thickness);
397 add_flag(.98 flagspace, flare,
398 .91, 1.05, 1.2, hip_thickness, foot_thickness);
402 pickup pencircle scaled stemthickness;
403 draw (0, 0) .. (0,-2 staff_space);
408 fet_beginchar("grace dash (down)", "dgrace", "dgracedash")
409 save flare, hip_depth_ratio, hip_width, foot_depth;
410 save flagspace, total_depth, flag_count;
413 flare# = .99 staff_space#;
414 flagspace# = .9 staff_space#;
415 hip_depth_ratio = .72 ;
416 hip_width# = downflag_width# - hip_thickness#/2;
417 total_depth# = 2.85 staff_space#;
418 (flag_count-1) * flagspace# + foot_depth# = total_depth#;
420 foot_width_ratio = .8;
422 define_pixels(flare, hip_width, hip_thickness,
423 flagspace, foot_depth);
425 set_char_box(hip_width# * hip_depth_ratio,
426 hip_width# + stemthickness#/2 + right_downflag_space#,
427 foot_depth# * hip_depth_ratio, -flare#)
429 pickup pencircle scaled 1.5 stemthickness;
430 draw (-b, -d) .. (w,h);
437 % Stem characters so we can compose metronome markings with Feta
441 fet_beginchar("stem (up)", "stem", "stem")
442 set_char_box(stemthickness#/2, stemthickness#/2, 0, 3.5staff_space#);
443 pickup pencircle scaled stemthickness;
444 draw (0, 0.2staff_space) .. (0, 3.5staff_space);
448 fet_beginchar("stem (down)", "dstem", "dstem")
449 set_char_box(stemthickness#/2, stemthickness#/2, 3.5staff_space#, 0);
450 pickup pencircle scaled stemthickness;
451 draw (0, -0.2staff_space) .. (0, -3.5staff_space);
455 fet_endgroup("flags");