1 ;;;; This file is part of LilyPond, the GNU music typesetter.
3 ;;;; Copyright (C) 2000--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
5 ;;;; LilyPond is free software: you can redistribute it and/or modify
6 ;;;; it under the terms of the GNU General Public License as published by
7 ;;;; the Free Software Foundation, either version 3 of the License, or
8 ;;;; (at your option) any later version.
10 ;;;; LilyPond is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;;;; GNU General Public License for more details.
15 ;;;; You should have received a copy of the GNU General Public License
16 ;;;; along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;; after Klaus Ignatzek, Die Jazzmethode fuer Klavier 1.
27 ;; The idea is: split chords into
29 ;; ROOT PREFIXES MAIN-NAME ALTERATIONS SUFFIXES ADDITIONS
31 ;; and put that through a layout routine.
33 ;; the split is a procedural process, with lots of set!.
37 ;; todo: naming is confusing: steps (0 based) vs. steps (1 based).
38 (define (pitch-step p)
39 "Musicological notation for an interval. Eg. C to D is 2."
40 (+ 1 (ly:pitch-steps p)))
42 (define (get-step x ps)
43 "Does PS have the X step? Return that step if it does."
46 (if (= (- x 1) (ly:pitch-steps (car ps)))
48 (get-step x (cdr ps)))))
50 (define (replace-step p ps)
51 "Copy PS, but replace the step of P in PS."
54 (let* ((t (replace-step p (cdr ps))))
55 (if (= (ly:pitch-steps p) (ly:pitch-steps (car ps)))
59 (define (remove-step x ps)
60 "Copy PS, but leave out the Xth step."
63 (let* ((t (remove-step x (cdr ps))))
64 (if (= (- x 1) (ly:pitch-steps (car ps)))
69 (define-public (ignatzek-chord-names
70 in-pitches bass inversion
73 (define (remove-uptil-step x ps)
74 "Copy PS, but leave out everything below the Xth step."
77 (if (< (ly:pitch-steps (car ps)) (- x 1))
78 (remove-uptil-step x (cdr ps))
81 (define name-root (ly:context-property context 'chordRootNamer))
83 (let ((nn (ly:context-property context 'chordNoteNamer)))
85 ;; replacing the next line with name-root gives guile-error...? -rz
87 ;; apparently sequence of defines is equivalent to let, not let* ? -hwn
88 (ly:context-property context 'chordRootNamer)
92 (define (is-natural-alteration? p)
93 (= (natural-chord-alteration p) (ly:pitch-alteration p)))
95 (define (ignatzek-format-chord-name
105 "Format for the given (lists of) pitches. This is actually more
106 work than classifying the pitches."
108 (define (filter-main-name p)
109 "The main name: don't print anything for natural 5 or 3."
111 (or (not (ly:pitch? p))
112 (and (is-natural-alteration? p)
113 (or (= (pitch-step p) 5)
114 (= (pitch-step p) 3))))
116 (list (name-step p))))
118 (define (glue-word-to-step word x)
121 (make-simple-markup word)
124 (define (suffix-modifier->markup mod)
125 (if (or (= 4 (pitch-step mod))
126 (= 2 (pitch-step mod)))
127 (glue-word-to-step "sus" mod)
128 (glue-word-to-step "huh" mod)))
130 (define (prefix-modifier->markup mod)
131 (if (and (= 3 (pitch-step mod))
132 (= FLAT (ly:pitch-alteration mod)))
133 (make-simple-markup (if lowercase-root? "" "m"))
134 (make-simple-markup "huh")))
136 (define (filter-alterations alters)
137 "Filter out uninteresting (natural) pitches from ALTERS."
140 (not (is-natural-alteration? p)))
145 (let* ((lst (filter altered? alters))
146 (lp (last-pair alters)))
148 ;; we want the highest also if unaltered
149 (if (and (not (altered? (car lp)))
150 (> (pitch-step (car lp)) 5))
151 (append lst (last-pair alters))
154 (define (name-step pitch)
155 (define (step-alteration pitch)
156 (- (ly:pitch-alteration pitch)
157 (natural-chord-alteration pitch)))
159 (let* ((num-markup (make-simple-markup
160 (number->string (pitch-step pitch))))
161 (args (list num-markup))
162 (total (if (= (ly:pitch-alteration pitch) 0)
163 (if (= (pitch-step pitch) 7)
164 (list (ly:context-property context 'majorSevenSymbol))
166 (cons (accidental->markup (step-alteration pitch)) args))))
168 (make-line-markup total)))
170 (let* ((sep (ly:context-property context 'chordNameSeparator))
171 (root-markup (name-root root lowercase-root?))
172 (add-markups (map (lambda (x) (glue-word-to-step "add" x))
174 (filtered-alterations (filter-alterations alteration-pitches))
175 (alterations (map name-step filtered-alterations))
176 (suffixes (map suffix-modifier->markup suffix-modifiers))
177 (prefixes (map prefix-modifier->markup prefix-modifiers))
178 (main-markups (filter-main-name main-name))
179 (to-be-raised-stuff (markup-join
185 (base-stuff (if (ly:pitch? bass-pitch)
186 (list sep (name-note bass-pitch #f))
192 (conditional-kern-before (markup-join prefixes sep)
193 (and (not (null? prefixes))
194 (= (ly:pitch-alteration root) NATURAL))
195 (ly:context-property context 'chordPrefixSpacer))
196 (make-super-markup to-be-raised-stuff))
198 (make-line-markup base-stuff)))
200 (define (ignatzek-format-exception
208 ,(name-root root lowercase-root?)
211 ,(if (ly:pitch? bass-pitch)
212 (list (ly:context-property context 'chordNameSeparator)
213 (name-note bass-pitch #f))
216 (let* ((root (car in-pitches))
217 (pitches (map (lambda (x) (ly:pitch-diff x root)) (cdr in-pitches)))
219 (and (ly:context-property context 'chordNameLowercaseMinor)
220 (let ((third (get-step 3 pitches)))
221 (and third (= (ly:pitch-alteration third) FLAT)))))
222 (exceptions (ly:context-property context 'chordNameExceptions))
223 (exception (assoc-get pitches exceptions))
229 (if (ly:pitch? inversion)
235 (ignatzek-format-exception root exception bass-note lowercase-root?)
239 ;; handle sus4 and sus2 suffix: if there is a 3 together with
240 ;; sus2 or sus4, then we explicitly say add3.
243 (if (get-step j pitches)
245 (if (get-step 3 pitches)
247 (set! add-steps (cons (get-step 3 pitches) add-steps))
248 (set! pitches (remove-step 3 pitches))))
249 (set! suffixes (cons (get-step j pitches) suffixes)))))
252 ;; do minor-3rd modifier.
253 (if (and (get-step 3 pitches)
254 (= (ly:pitch-alteration (get-step 3 pitches)) FLAT))
255 (set! prefixes (cons (get-step 3 pitches) prefixes)))
257 ;; lazy bum. Should write loop.
259 ((get-step 7 pitches) (set! main-name (get-step 7 pitches)))
260 ((get-step 6 pitches) (set! main-name (get-step 6 pitches)))
261 ((get-step 5 pitches) (set! main-name (get-step 5 pitches)))
262 ((get-step 4 pitches) (set! main-name (get-step 4 pitches)))
263 ((get-step 3 pitches) (set! main-name (get-step 3 pitches))))
265 (let* ((3-diff? (lambda (x y)
266 (= (- (pitch-step y) (pitch-step x)) 2)))
267 (split (split-at-predicate
268 3-diff? (remove-uptil-step 5 pitches))))
269 (set! alterations (append alterations (car split)))
270 (set! add-steps (append add-steps (cdr split)))
271 (set! alterations (delq main-name alterations))
272 (set! add-steps (delq main-name add-steps))
275 ;; chords with natural (5 7 9 11 13) or leading subsequence.
276 ;; etc. are named by the top pitch, without any further
279 (ly:pitch? main-name)
280 (= 7 (pitch-step main-name))
281 (is-natural-alteration? main-name)
282 (pair? (remove-uptil-step 7 alterations))
283 (reduce (lambda (x y) (and x y)) #t
284 (map is-natural-alteration? alterations)))
286 (set! main-name (last alterations))
287 (set! alterations '())))
289 (ignatzek-format-chord-name
290 root prefixes main-name alterations add-steps suffixes bass-note
291 lowercase-root?))))))