OpenMusic-Library zur regelbasierten Harmonie und Stimmführung.
Lorenz Lehmann
28.03.24 28dae6acba357fecd7aca30f025a1d4e626b568c
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
(in-package :omlead)
 
 
 
;;;;;;GEN-HARMONIES;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
(om::defmethod! gen-harmonies (pitch-sets trans-scale ranges expand-harmonies filter-harmonies)
                :icon 030719978
   
;++++++++++++++++++++++    transposition    ++++++++++++++++++++++++++++++++++++++++++++++++
             (let* ((scale 
                       
                          (cond 
                           
                           ((numberp (car trans-scale )) 
                            trans-scale)
                           
                            
                            (t  (let ((fundamental (second trans-scale))
                                      (negativ (third trans-scale))
                                      (positiv (fourth trans-scale))
                                      (mode (fifth trans-scale))
                                      (range-min (list-min_oml (flat_oml ranges)))
                                      (range-max (list-max_oml (flat_oml ranges))))
                                  
                                  (append
                                   
                                   
                                   ;;;;;;;;;;;;;;;;;;negativ
                                   (reverse (loop for counter
                                               for i = (if (or (eq 'hold mode) (eq 'hold-mirror mode)) 
                                                      (hold-list negativ counter) (circular-list negativ counter))  ;;endless down-list
                                         sum i into total
                                         until (> range-min (- fundamental total))
                                         collect (- fundamental total)
                                         ))
                                   
                                   (list fundamental)
                                   
                                   ;;;;;;;;;;;;;;;;;;positiv
                                   
                                   (loop for counter
                                      for i = (if (or (eq 'hold mode) (eq 'hold-mirror mode)) 
                                                      (hold-list positiv counter) (circular-list positiv counter)) ;;endless up-list
                                         sum i into total
                                         until (< range-max (+ fundamental total))
                                         collect (+ fundamental total)))))))
 
                          (harmonies (loop for pitch-set in pitch-sets
                                           append (loop for pitch in scale 
                                                        collect (mapcar (lambda (x) (+ x pitch)) pitch-set))))
 
;++++++++++++++++     adapt-collection-to-voice-ranges     ++++++++++++++++++++++++++++++++++++++++++++++++++++
 
 
                       (harmonies (remove nil (loop for harmony in (remove-duplicates harmonies :test #'equal)
                               collect (if (find -1  (mapcar (lambda (pitch range) 
                                                             (if (and (<= pitch (list-max_oml range)) (>= pitch (list-min_oml range))) pitch -1)) 
                                                           harmony ranges)) nil harmony))))
 
 
;++++++++++++++++     expand-harmonies     ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                       
                       (expand-harmonies (if (atom (caar expand-harmonies)) (list expand-harmonies) expand-harmonies))
                       
                       (harmonies
                        (if (car expand-harmonies)
                            (let ((harmony-list (list harmonies)))
                              
                              
                              (loop for expand-box in expand-harmonies
                                do (loop for rule in (second expand-box)
                                                   do (loop for harmony in (car harmony-list)
                                                            if (tester_oml 
                                                                (lambda (x) (and (<= (list-min_oml (third expand-box)) x) (>= (list-max_oml (third expand-box)) x)))
                                                                  harmony)
                                                              append 
                                                               
                                                                    (mapcar (lambda (y) 
                                                                              (if (tester_oml (lambda (x) (and (<= (list-min_oml (flat_oml ranges)) x) (>= (list-max_oml (flat_oml ranges)) x))) y)
                                                                                  y nil))
                                                                              (funcall rule (first expand-box) harmony)) into temp-harmonies
                                                                          else append harmony into temp-harmonies
                                                              finally (fill harmony-list (remove nil temp-harmonies)))))
                                           (car harmony-list))
                          harmonies))
 
 
;++++++++++++++++     filter-harmonies     ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
                       (filter-harmonies (if (atom (caar filter-harmonies)) (list filter-harmonies) filter-harmonies))
                       
                       (harmonies 
                        (if (car filter-harmonies)
                            (remove nil (loop for filter-box in filter-harmonies 
                                              append (loop for rule in (second filter-box)
                                                           append (loop for harmony in harmonies
                                                                        collect (if (tester_oml 
                                                                                     (lambda (x) (and (<= (list-min_oml (third filter-box)) x) (>= (list-max_oml (third filter-box)) x)))
                                                                                     harmony)
                                                                                    (if (funcall rule (first filter-box) harmony) harmony) harmony)))))
                                    
                                    harmonies))
           
;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
)
 
 
harmonies))
                
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
 
 
 
;%%%%%%%%%%%%%%%TRANS-SCALE%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 
(om::defmethod! trans-scale (fundamental scale (mode symbol))
                :icon 0307199714
                :initvals '(nil nil 'absolute)
                :menuins '((2 (("absolute" 'absolute) ("circular" 'circular) ("hold" 'hold) 
                               ("circular-mirror" 'circular-mirror) ("hold-mirror" 'hold-mirror))))
 
(cond
        ((null scale) 
         (list fundamental))
 
       ((eq 'absolute mode) 
        (append (list fundamental) (loop for i in scale 
                                         sum i into total
                                         collect (+ fundamental total))))
 
       ((eq 'circular mode)
        (list nil fundamental (reverse scale) scale mode))
 
       ((eq 'hold mode)
        (list nil fundamental (reverse scale) scale mode))
 
       ((eq 'circular-mirror mode) 
        (list nil fundamental (reverse (reverse scale))  scale mode))
       
       ((eq 'hold-mirror mode)
        (list nil fundamental (reverse (reverse scale)) scale mode)))) 
 
 
;#LL: double reverse in  is the only way to avoid an endless loop in the main-function
 
 
;%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 
 
                
;--------------------------RULES-------------------------------------------------------------------------------------------------------------------------------        
 
 
(om::defmethod! filter-doubles (ids harmony)
                :icon 030719977
(if (= (length (remove-duplicates harmony)) (length harmony)) t)
)
 
(om::defmethod! permutations (ids harmony)
                :icon 030719975
                (let ((ids (list! ids)))
                  (mapcar (lambda (x) (subs-posn harmony ids x))
                          (permutations_oml (mapcar (lambda (x) (nth x harmony)) ids))
                          )))
 
(om::defmethod! registrations (ids harmony register-list)
                :icon 030719975
                
                (let ((voices (mapcar (lambda (x) (nth x harmony)) ids)))
                  
                  (mapcar (lambda (x) (subs-posn harmony ids x))
                          
                          (loop for registration in (variations_oml register-list (length ids)) 
                                collect (mapcar (lambda (x y) (+ x y)) voices registration)))))
 
 
;-------------------------------------------------------------------------------------------------------------------------------------------------------------------       
                
 
 
 
 
 
;:::::::::::::::::::::::::::APPLY-BOXES:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::        
 
(om::defmethod! filter-harmonies (ids rules rule-range)
:icon 030719976
(list (list! ids) (list! rules) rule-range)
)
 
(om::defmethod! expand-harmonies (ids rules rule-range)
:icon 030719974
(list (list! ids) (list! rules) rule-range)
)
 
;:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::   
 
 
 
 
 
 
 
;;;;;;;;HELPFUNCTIONS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
(defun list-max_oml (list)
  (reduce #'max list))
 
 
 
(defun list-min_oml (list)
(reduce #'min list))
 
 
 
 
(defun sum_oml (liste &optional (start 0))
 (cond ((null liste) start)
       (t (sum_oml (cdr liste) (+ start (car liste))))))
 
 
 
 
 
(defun circular_oml (items) 
(setf (cdr (last items)) items)
items)
 
 
 
 
 
(defun flat_oml (liste)
  (cond 
         ((null (cdr liste))
          (if (atom (car liste)) 
              liste
            (flat_oml (car liste))))
 
         ((and (listp (car liste)) (not (listp (cadr liste))))
          (append (car liste)
                  (flat_oml (cdr liste))))
 
         ((and (not (listp (car liste))) (not (listp (cadr liste))))
          (append (list (car liste)) 
                  (flat_oml (cdr liste))))
 
         ((and (listp (car liste)) (listp (cadr liste)))
               (append (car liste)
                       (flat_oml (cdr liste))))
 
         ((and (not (listp (car liste))) (listp (cadr liste)))
               (append (list (car liste))
                       (flat_oml (cdr liste))))))
 
 
 
 
 
 
 
(defun get-pos_oml (positions seq)
  (let ((positions (if (atom positions) (list positions) positions)))
    (mapcar #'(lambda (it) (nth it seq)) seq)))
    
 
 
 
(defun permutations_oml (bag)
 
(if (null bag)
'(())
(mapcan #'(lambda (e)
            (mapcar #' (lambda (p) (cons e p))
                    (permutations_oml (remove e bag :count 1 :test #'eq))))
        bag)))
 
 
 
 
(defun modulo_oml (pos liste)
(append
(nthcdr pos liste)
(butlast liste (- (length liste) pos))))
 
 
 
 
 
(defun register-permut_oml (register-list)
(remove-duplicates
                           (om::flat 
                            (loop for r in register-list
                                  collect 
                                  (mapcar #'(lambda (l) (permutations_oml 
                                                         (append (make-list l :initial-element r) 
                                                                 (make-list (- (length register-list) l) :initial-element 0)))) 
                                          (loop for x from 1 to (length register-list)
                                                collect x))) 2) :test 'equal))
 
 
 
 
(defun find-pos_oml (item seq)
  (remove nil (loop for s in seq
        for x
        collect (if (equal item s) x))))
 
 
 
 
(defun sum_oml (liste)
  (if (null (cdr liste))
      (car liste)
    (+ (car liste)
       (sum_oml (cdr liste)))))
 
 
 
 
(defun variations_oml (liste pcl)
  (let* ((liste (remove-duplicates liste))
         (liste (make-list pcl :initial-element liste)))
    (apply #'alexandria:map-product #'list liste)))
 
 
 
 
 
(defun find-dups_oml (lst)
  (cond ((null lst) '())
        ((member (car lst) (cdr lst)) (cons (car lst) (find-dups_oml (cdr lst))))
        (t (find-dups_oml (cdr lst)))))
 
 
 
 
 
(defun tester_oml (test list)
 
(cond 
((null list) t)
((funcall test (car list)) (tester_oml test (cdr list)))
(t nil)
 
))
 
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
(let ((a '(1)))
  (delete 1 a))