1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
|
;;;; This file is part of LilyPond, the GNU music typesetter.
;;;;
;;;; Copyright (C) 2010--2015 Mike Solomon <mikesol@stanfordalumni.org>
;;;; Clarinet drawings copied from diagrams created by
;;;; Gilles Thibault <gilles.thibault@free.fr>
;;;;
;;;; LilyPond is free software: you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation, either version 3 of the License, or
;;;; (at your option) any later version.
;;;;
;;;; LilyPond is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;;; GNU General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU General Public License
;;;; along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
(define HOLE-FILL-LIST '((R . 3) (1q . 5) (1h . 7) (3q . 11) (F . 13)))
;; Utility functions
(define-public (symbol-concatenate . names)
"Like @code{string-concatenate}, but for symbols."
(string->symbol (string-concatenate (map symbol->string names))))
(define-public (function-chain arg function-list)
"Applies a list of functions in @var{function-list} to @var{arg}.
Each element of @var{function-list} is structured @code{(cons function
'(arg2 arg3 ...))}. If function takes arguments besides @var{arg}, they
are provided in @var{function-list}.
Example: Executing @samp{(function-chain 1 `((,+ 1) (,- 2) (,+ 3) (,/)))}
returns @samp{1/3}."
(fold
(lambda (fun arg) (apply (car fun) arg (cdr fun)))
arg
function-list))
(define (assoc-keys alist)
"Gets the keys of an alist."
(map car alist))
(define (assoc-values alist)
"Gets the values of an alist."
(map cdr alist))
(define (get-slope-offset p1 p2)
"Gets the slope and offset for p1 and p2.
For example:
@code{(get-slope-offset '(1 . 2) '(3 . -5.1))}
@code{(-3.55 . 5.55)}"
(let*
((slope (/ (- (cdr p1) (cdr p2)) (- (car p1) (car p2))))
(offset (- (cdr p1) (* slope (car p1)))))
`(,slope . ,offset)))
(define (is-square? x input-list)
"Returns true if x is the square of a value in input-list."
(pair? (memv (inexact->exact (sqrt x)) input-list)))
(define (true-entry? input-list)
"Is there a true entry in @code{input-list}?"
(any identity input-list))
(define (entry-greater-than-x? input-list x)
"Is there an entry greater than @code{x} in @code{input-list}?"
(member x input-list <))
(define (n-true-entries input-list)
"Returns number of true entries in @code{input-list}."
(count identity input-list))
(define (bezier-head-for-stencil bezier cut-point)
"Prepares a split-bezier to be used in a connected path stencil."
(list-tail (flatten-list (car (split-bezier bezier cut-point))) 2))
;; Translators for keys
;; Translates a "normal" key (open, closed, trill)
(define (key-fill-translate fill)
(cond
((= fill 1) #f)
((= fill 2) #f)
((= fill (expt (assoc-get 'F HOLE-FILL-LIST) 2)) 0.5)
((= fill (assoc-get 'F HOLE-FILL-LIST)) #t)))
;; Similar to above, but trans vs opaque doesn't matter
(define (text-fill-translate fill)
(cond
((< fill 3) 1.0)
((= fill (expt (assoc-get 'F HOLE-FILL-LIST) 2)) 0.5)
((= fill (assoc-get 'F HOLE-FILL-LIST)) 0.0)))
;; Emits a list for the central-column-hole maker
;; (not-full?, 1-quarter-full?, 1-half-full?, 3-quarters-full?, full?)
;; Multiple values, such as (#t #f #f #t #f), mean a trill between
;; not-full and 3-quarters-full
(define (process-fill-value fill)
(let* ((avals (list-tail (assoc-values HOLE-FILL-LIST) 1)))
(append `(,(or (< fill 3) (is-square? fill avals)))
(map (lambda (x) (= 0 (remainder fill x))) avals))))
;; Color a stencil gray
(define (gray-colorize stencil)
(apply ly:stencil-in-color stencil (x11-color 'grey)))
;; A connected path stencil that is surrounded by proc
(define (rich-path-stencil ls x-stretch y-stretch proc)
(lambda (radius thick fill layout props)
(let*
((fill-translate (key-fill-translate fill))
(gray? (eqv? fill-translate 0.5)))
(ly:stencil-add
((if gray? gray-colorize identity)
(proc
(make-connected-path-stencil
ls
thick
(* x-stretch radius)
(* y-stretch radius)
#f
(if gray? #t fill-translate))))
(if (not gray?)
empty-stencil
((rich-path-stencil ls x-stretch y-stretch proc)
radius
thick
1
layout
props))))))
;; A connected path stencil without a surrounding proc
(define (standard-path-stencil ls x-stretch y-stretch)
(rich-path-stencil ls x-stretch y-stretch identity))
;; An ellipse stencil that is surrounded by a proc
(define (rich-pe-stencil x-stretch y-stretch start end proc)
(lambda (radius thick fill layout props)
(let*
((fill-translate (key-fill-translate fill))
(gray? (eqv? fill-translate 0.5)))
(ly:stencil-add
((if gray? gray-colorize identity)
(proc
(make-partial-ellipse-stencil
(* x-stretch radius)
(* y-stretch radius)
start
end
thick
#t
(if gray? #t fill-translate))))
(if (not gray?)
empty-stencil
((rich-pe-stencil x-stretch y-stretch start end proc)
radius
thick
1
layout
props))))))
(define (rich-e-stencil x-stretch y-stretch proc)
(lambda (radius thick fill layout props)
(let*
((fill-translate (key-fill-translate fill))
(gray? (eqv? fill-translate 0.5)))
(ly:stencil-add
((if gray? gray-colorize identity)
(proc
(make-ellipse-stencil
(* x-stretch radius)
(* y-stretch radius)
thick
(if gray? #t fill-translate))))
(if (not gray?)
empty-stencil
((rich-e-stencil x-stretch y-stretch proc)
radius
thick
1
layout
props))))))
;; An ellipse stencil without a surrounding proc
(define (standard-e-stencil x-stretch y-stretch)
(rich-e-stencil x-stretch y-stretch identity))
;; Translates all possible representations of symbol.
;; If simple? then the only representations are open, closed, and trill.
;; Otherwise, there can be various levels of "closure" on the holes
;; ring? allows for a ring around the holes as well
(define (make-symbol-alist symbol simple? ring?)
(delete `(,(symbol-concatenate symbol 'T 'F) .
,(expt (assoc-get 'F HOLE-FILL-LIST) 2))
`((,symbol . ,(assoc-get 'F HOLE-FILL-LIST))
(,(symbol-concatenate symbol 'T) .
,(expt (assoc-get 'F HOLE-FILL-LIST) 2))
,@(if simple?
'()
(append-map
(lambda (x)
`((,(symbol-concatenate symbol (car x) 'T)
. ,(expt (cdr x) 2))
(,(symbol-concatenate symbol 'T (car x))
. ,(* (cdr x) (assoc-get 'F HOLE-FILL-LIST)))
(,(symbol-concatenate symbol (car x))
. ,(cdr x))
,@(append-map
(lambda (y)
(map (lambda (a b)
`(,(symbol-concatenate symbol
(car a)
'T
(car b))
. ,(* (cdr a) (cdr b))))
`(,x ,y) `(,y ,x)))
(cdr (member x HOLE-FILL-LIST)))))
(if ring? HOLE-FILL-LIST (cdr HOLE-FILL-LIST)))))))
;;; Commands for text layout
;; Draws a circle around markup if (= trigger 0.5)
(define-markup-command
(conditional-circle-markup layout props trigger in-markup)
(number? markup?)
(interpret-markup layout props
(if (eqv? trigger 0.5)
(markup #:circle (markup in-markup))
(markup in-markup))))
;; Makes a list of named-keys
(define (make-name-keylist input-list key-list font-size)
(map (lambda (x y)
(if (< x 1)
(markup #:conditional-circle-markup
x
(make-concat-markup
(list
(markup #:abs-fontsize font-size (car y))
(if (and (< x 1) (cdr y))
(if (eqv? (cdr y) 1)
(markup
#:abs-fontsize
font-size
#:raise
1
#:fontsize
-2
#:sharp)
(markup
#:abs-fontsize
font-size
#:raise
1
#:fontsize
-2
#:flat))
(markup #:null)))))
(markup #:null)))
input-list key-list))
;; Makes a list of number-keys
(define (make-number-keylist input-list key-list font-size)
(map (lambda (x y)
(if (< x 1)
(markup
#:conditional-circle-markup
x
(markup #:abs-fontsize font-size #:number y))
(markup #:null)))
input-list
key-list))
;; Creates a named-key list with a certain alignment
(define (aligned-text-stencil-function dir hv)
(lambda (key-name-list radius fill-list layout props)
(interpret-markup
layout
props
(make-general-align-markup
X
dir
((if hv make-concat-markup make-center-column-markup)
(make-name-keylist
(map text-fill-translate fill-list)
key-name-list
(* 12 radius)))))))
(define number-column-stencil
(lambda (key-name-list radius fill-list layout props)
(interpret-markup
layout
props
(make-general-align-markup
Y
CENTER
(make-general-align-markup
X
RIGHT
(make-override-markup
'(baseline-skip . 0)
(make-column-markup
(make-number-keylist
(map text-fill-translate fill-list)
key-name-list
(* radius 8)))))))))
;; Utility function for the left-hand keys
(define lh-woodwind-text-stencil
(aligned-text-stencil-function LEFT #t))
;; Utility function for the right-hand keys
(define rh-woodwind-text-stencil
(aligned-text-stencil-function RIGHT #t))
(define octave-woodwind-text-stencil
(aligned-text-stencil-function CENTER #f))
;;; Draw rules
(define (rich-group-draw-rule alist target-part change-part)
(if
(entry-greater-than-x?
(map (lambda (key) (assoc-get key alist)) target-part) 3)
(map-selected-alist-keys (lambda (x) (if (= x 0) 1 x)) change-part alist)
alist))
(define (bassoon-midline-rule alist target-part)
(if
(entry-greater-than-x?
(map (lambda (key) (assoc-get key alist)) target-part) 0)
(map-selected-alist-keys (lambda (x) 1) '((hidden . long-midline)) alist)
(map-selected-alist-keys (lambda (x) 1) '((hidden . midline)) alist)))
(define (group-draw-rule alist target-part)
(rich-group-draw-rule alist target-part target-part))
(define (group-automate-rule alist change-part)
(map-selected-alist-keys (lambda (x) (if (= x 0) 1 x)) change-part alist))
(define (apply-group-draw-rule-series alist target-part-list)
(if (null? target-part-list)
alist
(apply-group-draw-rule-series
(group-draw-rule alist (car target-part-list))
(cdr target-part-list))))
;; Extra-offset rules
(define (rich-group-extra-offset-rule alist target-part change-part eos)
(if
(entry-greater-than-x?
(map (lambda (key) (assoc-get key alist)) target-part) 0)
(map-selected-alist-keys (lambda (x) eos) change-part alist)
alist))
(define (group-extra-offset-rule alist target-part eos)
(rich-group-extra-offset-rule alist target-part target-part eos))
(define (uniform-extra-offset-rule alist eos)
(map-selected-alist-keys
(lambda (x) (if (pair? x) x eos))
(assoc-keys alist)
alist))
;;; General drawing commands
;; Used all the time for a dividing line
(define (midline-stencil radius thick fill layout props)
(make-line-stencil (* thick 2) (* -0.80 radius) 0 (* 0.80 radius) 0))
(define (long-midline-stencil radius thick fill layout props)
(make-line-stencil (* thick 2) (* -5.75 radius) 0 (* 0.75 radius) 0))
;; Used all the time for a small, between-hole key
(define little-elliptical-key-stencil (standard-e-stencil 0.75 0.2))
;; Used for several upper keys in the clarinet and sax
(define (upper-key-stencil tailw tailh bodyw bodyh)
(let*
((xmove (lambda (x) (+ tailw (+ 0.2 (* bodyw (- x 0.2))))))
(ymove (lambda (x) (+ (- tailh) (+ -0.05 (* bodyh (+ x 0.05)))))))
(standard-path-stencil
`((,(xmove 0.7)
,(ymove -0.2)
,(xmove 1.0)
,(ymove -1.0)
,(xmove 0.5)
,(ymove -1.0))
(,(xmove 0.2)
,(ymove -1.0)
,(xmove 0.2)
,(ymove -0.2)
,(xmove 0.3)
,(ymove -0.1))
(,(+ 0.2 tailw)
,(- -0.05 tailh)
,(+ 0.1 (/ tailw 2))
,(- -0.025 (/ tailh 2))
0.0
0.0))
1.0
1.0)))
;; Utility function for the column-hole maker.
;; Returns the left and right degrees for the drawing of a given
;; fill level (1-quarter, 1-half, etc...)
(define (degree-first-true fill-list left? reverse?)
(define (dfl-crawler fill-list os-list left?)
(if (car fill-list)
((if left? car cdr) (car os-list))
(dfl-crawler (cdr fill-list) (cdr os-list) left?)))
(dfl-crawler
((if reverse? reverse identity) fill-list)
((if reverse? reverse identity)
'((0 . 0) (215 . 325) (180 . 0) (145 . 35) (90 . 90)))
left?))
;; Gets the position of the first (or last if reverse?) element of a list.
(define (position-true-endpoint in-list reverse?)
(define (pte-crawler in-list n)
(if (car in-list)
n
(pte-crawler (cdr in-list) (+ n 1))))
((if reverse? - +)
(if reverse? (length in-list) 0)
(pte-crawler ((if reverse? reverse identity) in-list) 0)))
;; Huge, kind-of-ugly maker of a circle in a column.
;; I think this is the clearest way to write it, though...
(define (column-circle-stencil radius thick fill layout props)
(let* ((fill-list (process-fill-value fill)))
(cond
((and
(list-ref fill-list 0)
(not (true-entry? (list-tail fill-list 1)))) ; is it empty?
((standard-e-stencil 1.0 1.0) radius thick fill layout props))
((and
(list-ref fill-list 4)
(not (true-entry? (list-head fill-list 4)))) ; is it full?
((standard-e-stencil 1.0 1.0) radius thick fill layout props))
((and
(list-ref fill-list 0)
(list-ref fill-list 4)) ; is it a trill between empty and full?
((standard-e-stencil 1.0 1.0) radius thick fill layout props))
(else ;If none of these, it is partially full.
(ly:stencil-add
((rich-pe-stencil 1.0 1.0 0 360 identity)
radius
thick
(if (list-ref fill-list 4)
(expt (assoc-get 'F HOLE-FILL-LIST) 2)
1)
layout
props)
((rich-pe-stencil
1.0
1.0
(degree-first-true fill-list #t #t)
(degree-first-true fill-list #f #t)
identity)
radius
thick
(if
(true-entry?
(list-head fill-list (position-true-endpoint fill-list #t)))
(expt (assoc-get 'F HOLE-FILL-LIST) 2)
(assoc-get 'F HOLE-FILL-LIST))
layout
props)
(if
(= 2 (n-true-entries (list-tail fill-list 1))) ; trill?
((rich-pe-stencil
1.0
1.0
(degree-first-true fill-list #t #f)
(degree-first-true fill-list #f #f)
identity)
radius
thick
(assoc-get 'F HOLE-FILL-LIST)
layout
props)
empty-stencil))))))
(define (variable-column-circle-stencil scaler)
(lambda (radius thick fill layout props)
(column-circle-stencil (* radius scaler) thick fill layout props)))
;; A stencil for ring-column circles that combines two of the above
(define (ring-column-circle-stencil radius thick fill layout props)
(if (= 0 (remainder fill (assoc-get 'R HOLE-FILL-LIST)))
(ly:stencil-add
((if
(= fill (expt (assoc-get 'R HOLE-FILL-LIST) 2))
gray-colorize
identity)
((standard-e-stencil
(* (+ (- 1.0 (* 2 thick)) (/ thick 2)))
(* (+ (- 1.0 (* 2 thick)) (/ thick 2))))
radius
(* (* 4 radius) thick)
1
layout
props))
((standard-e-stencil 1.0 1.0) radius thick 1 layout props)
(column-circle-stencil
(+ (* (- 1.0 (* 4 thick)) radius) (/ thick 2))
thick
(*
(if (= 0 (remainder fill (assoc-get 'F HOLE-FILL-LIST)))
(assoc-get 'F HOLE-FILL-LIST)
1)
(if (= fill (expt (assoc-get 'R HOLE-FILL-LIST) 2))
(/ fill (expt (assoc-get 'R HOLE-FILL-LIST) 2))
(/ fill (assoc-get 'R HOLE-FILL-LIST))))
layout
props))
(column-circle-stencil radius thick fill layout props)))
;;; Flute family stencils
(define flute-lh-b-key-stencil
(standard-path-stencil
'((0 1.3)
(0 1.625 -0.125 1.75 -0.25 1.75)
(-0.55 1.75 -0.55 0.95 -0.25 0.7)
(0 0.4 0 0.125 0 0))
2
1.55))
(define flute-lh-bes-key-stencil
(standard-path-stencil
'((0 1.3)
(0 1.625 -0.125 1.75 -0.25 1.75)
(-0.55 1.75 -0.55 0.95 -0.25 0.7)
(0 0.4 0 0.125 0 0))
2.0
1.3))
(define (flute-lh-gis-rh-bes-key-stencil deg)
(rich-path-stencil
'((0.1 0.1 0.2 0.4 0.3 0.6)
(0.3 1.0 0.8 1.0 0.8 0.7)
(0.8 0.3 0.5 0.3 0 0))
1.0
1.0
(lambda (stencil) (ly:stencil-rotate stencil deg 0 0))))
(define flute-lh-gis-key-stencil (flute-lh-gis-rh-bes-key-stencil 0))
(define flute-rh-bes-key-stencil (flute-lh-gis-rh-bes-key-stencil 200))
(define flute-rh-d-key-stencil little-elliptical-key-stencil)
(define flute-rh-dis-key-stencil little-elliptical-key-stencil)
(define flute-rh-ees-key-stencil
(standard-path-stencil
'((0.8 0) (1.1 0 1.1 0.75 0.7 0.75) (0.5 0.75) (0.15 0.75 0.1 0.2 0 0))
-2.38
1.4))
(define (piccolo-rh-x-key-stencil radius thick fill layout props)
(interpret-markup
layout
props
(make-general-align-markup
Y
DOWN
(make-concat-markup
(make-name-keylist
`(,(text-fill-translate fill))
'(("X" . #f))
(* 9 radius))))))
(define flute-lower-row-stretch 1.4)
(define flute-rh-cis-key-stencil
(standard-path-stencil
'((0 0.75) (-0.8 0.75 -0.8 0 0 0))
flute-lower-row-stretch
flute-lower-row-stretch))
(define flute-rh-c-key-stencil
(standard-path-stencil
'((0 0.75) (0.4 0.75) (0.4 0) (0 0))
flute-lower-row-stretch
flute-lower-row-stretch))
(define flute-rh-b-key-stencil
(standard-path-stencil
'((0 0.75) (0.25 0.75) (0.25 0) (0 0))
flute-lower-row-stretch
flute-lower-row-stretch))
(define flute-rh-gz-key-stencil
(rich-path-stencil
'((0.1 0.1 0.4 0.2 0.6 0.3)
(1.0 0.3 1.0 0.8 0.7 0.8)
(0.3 0.8 0.3 0.5 0 0))
flute-lower-row-stretch
flute-lower-row-stretch
(lambda (stencil) (ly:stencil-rotate stencil 160 0 0))))
;;; Shared oboe/clarinet stencils
(define (oboe-lh-gis-lh-low-b-key-stencil gis?)
(let*
((x 1.2)
(y 0.4)
(scaling-factor 1.7)
(up-part
(car
(split-bezier
`((0.0 . 0.0) (0.0 . ,y) (,x . ,y) (,x . 0.0))
0.8)))
(down-part
(cdr
(split-bezier
`((,x . 0.0) (,x . ,(- y)) (0.0 . ,(- y)) (0.0 . 0.0))
0.2))))
(if gis?
(standard-path-stencil
(append
(append
`((0.25 ,(/ y -2) 0.75 ,(/ y -2) 1.0 0.0))
(map (lambda (l)
(flatten-list
(map (lambda (x)
(coord-translate
(coord-rotate x (atan (/ y (* 2 0.25))))
'(1.0 . 0)))
l)))
`(((0 . ,y) (,x . ,y) (,x . 0))
((,x . ,(- y)) (0 . ,(- y)) (0 . 0)))))
`((0.75 ,(/ y -2) 0.25 ,(/ y -2) 0.0 0.0)))
scaling-factor
scaling-factor)
(standard-path-stencil
(map (lambda (l)
(flatten-list
(map (lambda (x)
(coord-rotate x (atan (/ y (* 2 0.25)))))
l)))
`(,(list-tail up-part 1)
,(list-head down-part 1)
,(list-tail down-part 1)))
(- scaling-factor)
(- scaling-factor)))))
(define oboe-lh-gis-key-stencil (oboe-lh-gis-lh-low-b-key-stencil #t))
(define oboe-lh-low-b-key-stencil (oboe-lh-gis-lh-low-b-key-stencil #f))
(define (oboe-lh-ees-lh-bes-key-stencil ees?)
(standard-path-stencil
`((0 1.5)
(0 1.625 -0.125 1.75 -0.25 1.75)
(-0.5 1.75 -0.5 0.816 -0.25 0.5)
(0 0.25 0 0.125 0 0)
(0 ,(if ees? -0.6 -0.3)))
(* (if ees? -1.0 1.0) -1.8)
1.8))
(define oboe-lh-ees-key-stencil (oboe-lh-ees-lh-bes-key-stencil #t))
(define oboe-lh-bes-key-stencil (oboe-lh-ees-lh-bes-key-stencil #f))
;;; Oboe family stencils
(define (oboe-lh-octave-key-stencil long?)
(let* ((h (if long? 1.4 1.2)))
(standard-path-stencil
`((-0.4 0 -0.4 1.0 -0.1 1.0)
(-0.1 ,h)
(0.1 ,h)
(0.1 1.0)
(0.4 1.0 0.4 0 0 0))
2.0
2.0)))
(define oboe-lh-I-key-stencil (oboe-lh-octave-key-stencil #f))
(define oboe-lh-II-key-stencil (oboe-lh-octave-key-stencil #f))
(define oboe-lh-III-key-stencil (oboe-lh-octave-key-stencil #t))
(define oboe-lh-b-key-stencil (standard-e-stencil 0.6 0.8))
(define oboe-lh-d-key-stencil little-elliptical-key-stencil)
(define oboe-lh-cis-key-stencil little-elliptical-key-stencil)
(define oboe-lh-f-key-stencil (standard-e-stencil 0.5 1.0))
(define oboe-rh-a-key-stencil (standard-e-stencil 1.0 0.45))
(define oboe-rh-gis-key-stencil (standard-e-stencil 0.45 1.2))
(define oboe-rh-d-key-stencil little-elliptical-key-stencil)
(define oboe-rh-f-key-stencil little-elliptical-key-stencil)
(define (oboe-rh-c-rh-ees-key-stencil c?)
(rich-path-stencil
'((1.0 0.0 1.0 0.70 1.5 0.70)
(2.25 0.70 2.25 -0.4 1.5 -0.4)
(1.0 -0.4 1.0 0 0 0)
(-0.15 0))
2.0
1.4
(lambda (stencil) (ly:stencil-rotate stencil (if c? 170 180) 0 0))))
(define oboe-rh-banana-key-stencil oboe-rh-gis-key-stencil)
(define oboe-rh-c-key-stencil (oboe-rh-c-rh-ees-key-stencil #t))
(define oboe-rh-cis-key-stencil
(rich-path-stencil
'((0.6 0.0 0.6 0.50 1.25 0.50)
(2.25 0.50 2.25 -0.4 1.25 -0.4)
(0.6 -0.4 0.6 0 0 0))
-0.9
1.0
(lambda (stencil) (ly:stencil-rotate stencil 0 0 0))))
(define oboe-rh-ees-key-stencil (oboe-rh-c-rh-ees-key-stencil #f))
;;; Clarinet family stencils
(define clarinet-lh-thumb-key-stencil
(variable-column-circle-stencil 0.9))
(define clarinet-lh-R-key-stencil
(let* ((halfbase (cos (/ PI 10)))
(height (*
halfbase
(/ (sin (/ (* 4 PI) 10)) (cos (/ (* 4 PI) 10))))))
(standard-path-stencil
`(
(0 ,(/ -4.0 3.0) -2.0 ,(/ -4.0 3.0) -2.0 0.0)
(-1.5 ,(* 0.5 height) -1.25 ,(* 0.75 height) -1.0 ,height)
(-0.75 ,(* 0.75 height) -0.5 ,(* 0.5 height) 0.0 0.0))
0.9
0.9)))
(define (clarinet-lh-a-key-stencil radius thick fill layout props)
(let* ((width 0.4) (height 0.75) (linelen 0.45))
(ly:stencil-add
((standard-e-stencil width height) radius thick fill layout props)
(ly:stencil-translate
(make-line-stencil thick 0 0 0 (* linelen radius))
(cons 0 (* height radius))))))
(define clarinet-lh-gis-key-stencil (upper-key-stencil 0.0 0.0 1.3 2.0))
(define clarinet-lh-ees-key-stencil little-elliptical-key-stencil)
(define clarinet-lh-cis-key-stencil oboe-lh-gis-key-stencil)
(define clarinet-lh-f-key-stencil oboe-lh-low-b-key-stencil)
(define clarinet-lh-e-key-stencil oboe-lh-ees-key-stencil)
(define clarinet-lh-fis-key-stencil oboe-lh-bes-key-stencil)
(define clarinet-lh-d-key-stencil (standard-e-stencil 1.0 0.4))
(define clarinet-rh-low-c-key-stencil
(standard-path-stencil
'((0.0 1.5)
(0.0 2.5 -1.0 2.5 -1.0 0.75)
(-1.0 0.1 0.0 0.25 0.0 0.3)
(0.0 0.0))
0.8
0.8))
(define clarinet-rh-low-cis-key-stencil
(standard-path-stencil
'((0.0 1.17)
(0.0 1.67 -1.0 1.67 -1.0 0.92)
(-1.0 0.47 0.0 0.52 0.0 0.62)
(0.0 0.0))
0.8
0.8))
(define clarinet-rh-low-d-key-stencil
(standard-path-stencil
'((0.0 1.05)
(0.0 1.55 -1.0 1.55 -1.0 0.8)
(-1.0 0.35 0.0 0.4 0.0 0.5)
(0.0 0.0))
0.8
0.8))
(define clarinet-rh-one-key-stencil (standard-e-stencil 0.5 0.25))
(define clarinet-rh-two-key-stencil clarinet-rh-one-key-stencil)
(define clarinet-rh-three-key-stencil clarinet-rh-one-key-stencil)
(define clarinet-rh-four-key-stencil clarinet-rh-one-key-stencil)
(define clarinet-rh-b-key-stencil little-elliptical-key-stencil)
;; cl low-rh values
(define CL-RH-HAIR 0.09)
(define CL-RH-H-STRETCH 2.7)
(define CL-RH-V-STRETCH 0.9)
;; TODO
;; there is some unnecessary information duplication here.
;; need a way to control all of the below stencils so that if one
;; changes, all change...
(define clarinet-rh-fis-key-stencil
(standard-path-stencil
`(,(bezier-head-for-stencil
'((0.0 . 0.0) (0.0 . -1.0) (1.0 . -1.0) (1.0 . 0.0))
0.5)
,(bezier-head-for-stencil
'((0.5 . -0.75) (0.5 . 0.25) (1.5 . 0.25) (1.5 . -0.75))
0.5)
(1.0 1.0 0.0 1.0 0.0 0.0))
CL-RH-H-STRETCH
CL-RH-V-STRETCH))
(define clarinet-rh-gis-key-stencil
(standard-path-stencil
'((0.0 1.0 1.0 1.0 1.0 0.0) (1.0 -1.0 0.0 -1.0 0.0 0.0))
CL-RH-H-STRETCH
CL-RH-V-STRETCH))
(define clarinet-rh-e-key-stencil
(standard-path-stencil
`(,(bezier-head-for-stencil
'((0.0 . 0.0) (0.0 . -1.0) (1.0 . -1.0) (1.0 . 0.0))
0.5)
,(bezier-head-for-stencil
'((0.5 . -0.75) (0.5 . 0.25) (1.5 . 0.25) (1.5 . -0.75))
0.5)
,(bezier-head-for-stencil
`((1.0 . 0.0) (,(/ 1 3) . 0.0) (,(/ 1 3) . 1.5) (1.0 . 1.5))
0.5)
,(bezier-head-for-stencil
`((0.5 . 0.75) (,(/ -1 6) . 0.75) (,(/ -1 6) . -0.75) (0.5 . -0.75))
0.5))
CL-RH-H-STRETCH
CL-RH-V-STRETCH))
(define clarinet-rh-f-key-stencil clarinet-rh-gis-key-stencil)
(define bass-clarinet-rh-ees-key-stencil
(standard-path-stencil
`(,(bezier-head-for-stencil
'((0.0 . 0.0) (0.0 . -1.0) (1.0 . -1.0) (1.0 . 0.0))
0.5)
,(bezier-head-for-stencil
'((0.5 . -0.75) (0.5 . 0.25) (1.5 . 0.25) (1.5 . -0.75))
0.5)
(1.0 1.0 0.0 1.0 0.0 0.0))
CL-RH-H-STRETCH
(- CL-RH-V-STRETCH)))
(define low-bass-clarinet-rh-ees-key-stencil clarinet-rh-e-key-stencil)
(define clarinet-rh-d-key-stencil clarinet-rh-gis-key-stencil)
;;; Saxophone family stencils
(define saxophone-lh-ees-key-stencil (upper-key-stencil 0.0 0.0 1.3 2.0))
(define saxophone-lh-f-key-stencil (upper-key-stencil 0.0 0.0 1.3 2.0))
(define saxophone-lh-d-key-stencil (upper-key-stencil 0.0 0.0 1.3 2.0))
(define saxophone-lh-front-f-key-stencil (standard-e-stencil 0.7 0.7))
(define saxophone-lh-bes-key-stencil (standard-e-stencil 0.5 0.5))
(define saxophone-lh-T-key-stencil (standard-e-stencil 0.75 0.75))
(define saxophone-lh-gis-key-stencil
(standard-path-stencil
'((0.0 0.4)
(0.0 0.8 3.0 0.8 3.0 0.4)
(3.0 0.0)
(3.0 -0.4 0.0 -0.4 0.0 0.0))
0.8
0.8))
(define (saxophone-lh-b-cis-key-stencil flip?)
(standard-path-stencil
'((0.0 1.0)
(0.4 1.0 0.8 0.9 1.35 0.8)
(1.35 0.0)
(0.0 0.0))
(* (if flip? -1 1) 0.8)
0.8))
(define saxophone-lh-cis-key-stencil (saxophone-lh-b-cis-key-stencil #t))
(define saxophone-lh-b-key-stencil (saxophone-lh-b-cis-key-stencil #f))
(define saxophone-lh-low-bes-key-stencil
(standard-path-stencil
'((3.0 0.0) (3.0 -1.5 0.0 -1.5 0.0 0.0))
0.8
0.8))
(define (saxophone-rh-side-key-stencil width height)
(standard-path-stencil
`((0.0 ,height)
(0.05 ,(+ height 0.05) 0.1 ,(+ height 0.1) 0.15 ,(+ height 0.15))
(,(- width 0.15) ,(+ height 0.15))
(,(- width 0.1)
,(+ height 0.1)
,(- width 0.05)
,(+ height 0.05)
,width
,height)
(,width 0.0)
(,(- width 0.05) -0.05 ,(- width 0.1) -0.1 ,(- width 0.15) -0.15)
(0.15 -0.15)
(0.1 -0.1 0.05 -0.05 0.0 0.0))
1.0
1.0))
(define saxophone-rh-e-key-stencil (saxophone-rh-side-key-stencil 0.9 1.2))
(define saxophone-rh-c-key-stencil (saxophone-rh-side-key-stencil 0.9 0.6))
(define saxophone-rh-bes-key-stencil (saxophone-rh-side-key-stencil 0.9 0.45))
(define saxophone-rh-high-fis-key-stencil
(standard-path-stencil
(append
'((0.0 1.0) (0.0 1.4 0.6 1.4 0.6 1.0) (0.6 0.0))
(map (lambda (l)
(flatten-list
(map (lambda (x)
(coord-rotate x (atan (* -1 (/ PI 6)))))
l)))
'(((0.6 . -1.0))
((0.6 . -1.4) (0.0 . -1.4) (0.0 . -1.0))
((0.0 . 0.0)))))
0.75
0.75))
(define saxophone-rh-fis-key-stencil (standard-e-stencil 1.0 0.5))
(define saxophone-rh-ees-key-stencil (standard-e-stencil 1.2 0.5))
(define saxophone-rh-low-c-key-stencil
(standard-path-stencil
'((3.0 0.0) (3.0 -1.5 0.0 -1.5 0.0 0.0))
0.8
0.8))
(define (saxophone-lh-low-a-key-stencil radius thick fill layout props)
(interpret-markup
layout
props
(make-general-align-markup
Y
DOWN
(make-concat-markup
(make-name-keylist
`(,(text-fill-translate fill))
'(("lowA" . #f))
(* 9 radius))))))
;;; Bassoon family stencils
(define (bassoon-bend-info-maker height gap cut)
(let* (
(first-bezier
(flatten-list
(car
(split-bezier
`((0.0 . ,(+ height gap))
(0.0 . ,(+ height (+ gap 1.0)))
(1.0 . ,(+ height (+ gap 2.0)))
(2.0 . ,(+ height (+ gap 2.0))))
cut))))
(second-bezier
(flatten-list
(reverse
(car
(split-bezier
`((1.0 . ,height)
(1.0 . ,(+ 0.5 height))
(1.5 . ,(+ 1.0 height))
(2.0 . ,(+ 1.0 height)))
cut)))))
(slope-offset1
(get-slope-offset
`(,(list-ref first-bezier 4) . ,(list-ref first-bezier 5))
`(,(list-ref first-bezier 6) . ,(list-ref first-bezier 7))))
(slope-offset2
(get-slope-offset
`(,(list-ref second-bezier 0) . ,(list-ref second-bezier 1))
`(,(list-ref second-bezier 2) . ,(list-ref second-bezier 3)))))
(list first-bezier second-bezier slope-offset1 slope-offset2)))
(define
(make-tilted-portion
first-bezier
second-bezier
slope-offset1
slope-offset2
keylen
bezier?)
(append
`((,(+ keylen (list-ref first-bezier 6))
,(+
(*
(car slope-offset1)
(+ keylen (list-ref first-bezier 6))) (cdr slope-offset1))))
((if bezier? (lambda (x) `(,(concatenate x))) identity)
`((,(+ (+ keylen 1.75) (list-ref first-bezier 6))
,(+
(*
(car slope-offset1)
(+ (+ keylen 1.75) (list-ref first-bezier 6)))
(cdr slope-offset1)))
(,(+ (+ keylen 1.75) (list-ref second-bezier 0))
,(+
(*
(car slope-offset2)
(+ (+ keylen 1.75) (list-ref second-bezier 0)))
(cdr slope-offset2)))
(,(+ keylen (list-ref second-bezier 0))
,(+
(* (car slope-offset2) (+ keylen (list-ref second-bezier 0)))
(cdr slope-offset2)))))
`(,(list-head second-bezier 2))))
(define (rich-bassoon-uber-key-stencil height gap cut keylen d1 d2 proc bezier?)
(let* ((info-list (bassoon-bend-info-maker height gap cut))
(first-bezier (car info-list))
(second-bezier (cadr info-list))
(slope-offset1 (caddr info-list))
(slope-offset2 (cadddr info-list)))
(rich-path-stencil
(append
`((0.0 ,(+ height gap))
,(list-tail first-bezier 2))
(make-tilted-portion
first-bezier
second-bezier
slope-offset1
slope-offset2
keylen
bezier?)
`(,(list-tail second-bezier 2)
(1.0 0.0)
(0.0 0.0)))
d1
d2
proc)))
(define (bassoon-uber-key-stencil height gap cut keylen d1 d2)
(rich-bassoon-uber-key-stencil height gap cut keylen d1 d2 identity #t))
(define bassoon-cc-one-key-stencil (standard-e-stencil 1.5 0.8))
(define bassoon-lh-he-key-stencil little-elliptical-key-stencil)
(define bassoon-lh-hees-key-stencil little-elliptical-key-stencil)
(define bassoon-lh-ees-key-stencil
(rich-e-stencil
1.2
0.6
(lambda (stencil) (ly:stencil-rotate stencil 30 0 0))))
(define bassoon-lh-cis-key-stencil
(rich-e-stencil
1.0
0.5
(lambda (stencil) (ly:stencil-rotate stencil 30 0 0))))
(define bassoon-lh-lbes-key-stencil
(bassoon-uber-key-stencil 1.0 0.5 0.7 0.5 0.6 -0.6))
(define bassoon-lh-lb-key-stencil
(bassoon-uber-key-stencil 2.0 0.5 0.9 1.2 0.6 -0.6))
(define bassoon-lh-lc-key-stencil
(rich-pe-stencil 1.0 1.0 135 315 identity))
(define bassoon-lh-ld-key-stencil
(standard-path-stencil
'((-0.8 4.0 1.4 4.0 0.6 0.0)
(0.5 -0.5 0.5 -0.8 0.6 -1.0)
(0.7 -1.2 0.8 -1.3 0.8 -1.8)
(0.5 -1.8)
(0.5 -1.4 0.4 -1.2 0.3 -1.1)
(0.2 -1.0 0.1 -0.5 0.0 0.0))
1.0
1.0))
(define bassoon-lh-d-flick-key-stencil
(let ((height 3.0))
(standard-path-stencil
`((0.0 ,height)
(0.2 ,(+ height 1.6) 0.8 ,(+ height 1.8) 1.0 ,(+ height 1.8))
(1.4 ,(+ height 1.8) 1.9 ,(+ height 1.3) 1.9 ,(+ height 1.0))
(1.9 ,(+ height 0.7) 1.0 ,(+ height 0.4) 0.8 ,(+ height 0.3))
(0.6 ,(+ height 0.2) 0.4 ,(+ height 0.1) 0.4 ,(- height 0.1))
(0.4 0.0)
(0.0 0.0))
-1.0
-1.0)))
(define bassoon-lh-c-flick-key-stencil
(let ((height 3.0))
(standard-path-stencil
`((0.0 ,height)
(0.0 ,(+ height 1.6) 0.4 ,(+ height 1.8) 0.5 ,(+ height 1.8))
(0.7 ,(+ height 1.8) 0.9 ,(+ height 1.3) 0.9 ,(+ height 1.0))
(0.9 ,(+ height 0.5) 0.7 ,(+ height 0.4) 0.6 ,(+ height 0.3))
(0.5 ,(+ height 0.2) 0.4 ,(+ height 0.1) 0.4 ,(- height 0.1))
(0.4 0.0)
(0.0 0.0))
-1.0
-1.0)))
(define bassoon-lh-a-flick-key-stencil
(bassoon-uber-key-stencil 5.0 1.0 0.3 0.6 -0.5 -0.5))
(define bassoon-lh-thumb-cis-key-stencil
(bassoon-uber-key-stencil 1.5 1.5 0.6 0.6 -0.6 0.6))
(define bassoon-lh-whisper-key-stencil (variable-column-circle-stencil 0.7))
(define bassoon-rh-cis-key-stencil
(rich-bassoon-uber-key-stencil
1.1
1.5
0.9
0.3
0.5
0.5
(lambda (stencil) (ly:stencil-rotate stencil -76 0 0))
#t))
(define bassoon-rh-bes-key-stencil little-elliptical-key-stencil)
(define bassoon-rh-fis-key-stencil
(rich-bassoon-uber-key-stencil 0.5 1.0 0.8 1.5 -0.7 0.7 identity #f))
(define bassoon-rh-f-key-stencil
(let* ((height 0.5) (gap 1.0) (cut 0.8) (keylen 1.5)
(info-list (bassoon-bend-info-maker height gap cut))
(first-bezier (car info-list))
(second-bezier (cadr info-list))
(slope-offset1 (caddr info-list))
(slope-offset2 (cadddr info-list)))
(standard-path-stencil
(append
(map
(lambda (l)
(map
-
l
(apply circular-list (list-tail first-bezier 6))))
(make-tilted-portion
first-bezier
second-bezier
slope-offset1
slope-offset2
keylen
#t))
'((0.0 0.0)))
-0.7
0.7)))
(define bassoon-rh-gis-key-stencil
(bassoon-uber-key-stencil 0.3 1.0 0.8 1.0 -0.7 0.7))
(define bassoon-rh-thumb-bes-key-stencil
(bassoon-uber-key-stencil 1.0 1.0 0.9 1.0 0.7 0.7))
(define bassoon-rh-thumb-e-key-stencil (variable-column-circle-stencil 0.7))
(define bassoon-rh-thumb-fis-key-stencil
(bassoon-uber-key-stencil 1.0 1.2 0.9 1.0 0.7 0.7))
(define bassoon-rh-thumb-gis-key-stencil
(bassoon-uber-key-stencil 1.2 0.8 0.9 0.4 0.7 0.7))
|