OpenMusic-Library zur regelbasierten Harmonie und Stimmführung.
Lorenz Lehmann
28.03.24 3aae4ab2c334a2df7772480e74950b15758904cd
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
;======================================
;OM-Lead, 2022-2023
;
;Library for Rule-based Voice-Leading
;Author: Lorenz Lehmann
;Supervision: Marlon Schumacher
;======================================
 
 
 
 
(in-package :omlead)
 
(om::defmethod! gen-sequence (harmonies first-harmony number-of-harmonies error-out single-voice-progress voice-pair-progress)
 
:icon 030719979
 
:numouts 1
 
 
 
(let ((external-list (list first-harmony))
      (harmonies (if (atom (caar harmonies)) (list (list harmonies) 'hold) harmonies))
      (error-out (if (or (find 'hold error-out) (find 'circular error-out)) error-out (list (list error-out) 'hold)))
      (single-voice-progress (cond ((null single-voice-progress) nil) 
                                   ((atom (caar single-voice-progress)) (list single-voice-progress)) 
                                   (t single-voice-progress)))
      (voice-pair-progress (cond ((null voice-pair-progress) nil) 
                                 ((atom (caaar voice-pair-progress)) (list voice-pair-progress)) 
                                 (t voice-pair-progress))))
 
 
 
(loop for counter to (- number-of-harmonies 2)
        do (let* ((first (car external-list))
                  (temp-harmonies (cond ((eq 'circular (car (last harmonies))) (circular-list (car harmonies) counter))
                                  (t (hold-list (car harmonies) counter))))
                  (temp-error (cond ((eq 'circular (car (last error-out))) (circular-list (car error-out) counter))
                                  (t (hold-list (car error-out) counter))))
                  (temp-harmonies (if single-voice-progress (remove nil (loop for voice-box in single-voice-progress
                                                                              append (loop for second in temp-harmonies
                                                                                           collect (if (funcall (if (eq 'circular (third voice-box)) 
                                                                                                                    (circular-list (second voice-box) counter)
                                                                                                                  (hold-list (second voice-box) counter))
                                                                                                                (first voice-box) first second) second) )) ) temp-harmonies))
                  (temp-harmonies (if voice-pair-progress (remove nil (loop for pair-box in voice-pair-progress
                                                                            append (loop for second in temp-harmonies
                                                                                         collect (if (funcall (if (eq 'circular (third pair-box)) 
                                                                                                                  (circular-list (second pair-box) counter)
                                                                                                                (hold-list (second pair-box) counter))
                                                                                                             (first pair-box) first second) second) )) ) temp-harmonies )))
 
 
 
             (if (null temp-harmonies) 
(push temp-error external-list) (push (nth-random temp-harmonies) external-list))))
 
             (reverse external-list)))
 
 
 
 
                        
 
               
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
;;;;;;;;;;;;;;;;;;;;;apply-boxes;;;;;;;;;;;;;;;;;;;;;;;;
 
(om::defmethod! single-voice-progress (ids  rules (mode symbol))
                :icon 0307199710
                :initvals '(nil nil 'circular)
                :menuins '((2 (("circular" 'circular) ("hold" 'hold))))
                (list (list! ids) 
                      (list! rules) 
                      mode))
 
(om::defmethod! voice-pair-progress (ids  rules (mode symbol))
                :icon 0307199712
                :initvals '(nil nil 'circular)
                :menuins '((2 (("circular" 'circular) ("hold" 'hold))))
                (list (if (atom (car ids)) (list ids) ids) 
                      (list! rules) 
                      mode))
 
(om::defmethod! choose-error-out (error-value (mode symbol))
                :icon 0307199715
                :initvals '(nil 'hold)
                :menuins '((1 (("circular" 'circular) ("hold" 'hold))))
(list (if (atom (car error-value)) (list error-value) error-value) mode))
 
(om::defmethod! choose-harmonies (harmonies (mode symbol))
                :icon 0307199715
                :initvals '(nil 'hold)
                :menuins '((1 (("circular" 'circular) ("hold" 'hold))))
(list (if (atom (car harmonies)) (list harmonies) harmonies) mode))
 
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
;;;;;;;;;;;;;;;;;;;;;;;;;svp-rules;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
(om::defmethod! avoid-interval (voice first second)
                :icon 0307199711
                (cond ((or (equal (nth voice first) choose-error-out) (equal (nth voice second) choose-error-out)) t)  
                      ((equal (nth voice first) (nth voice second)) nil)
                      (t t)))
 
 
 
 
 
 
(om::defmethod! voice-interval (ids first second intervals (mode symbol))
                :icon 0307199711
                :menuins '((4 (("only" 'only) ("except" 'except))))
 
                (if (eq mode 'only) (tester_oml 
                                     (lambda (y) (find y intervals)) 
                                     (mapcar (lambda (x) (nth x (mapcar '- second first))) ids))
                  (tester_oml 
                                     (lambda (y) (not (find y intervals))) 
                                     (mapcar (lambda (x) (nth x (mapcar '- second first))) ids))))
                
 
 
 
 
 
 
 
(defun find_oml (item liste &optional (start 0))
 
(cond ((null liste) start)
       ((eq (car liste) item) (find_oml item (cdr liste) (1+ start)))
       (t (find_oml item (cdr liste) start))))
 
 
 
 
 
 
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
;;;;;;;;;;;;;;;;;;;;;;;;;vpp-rules;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(om::defmethod! oblique-motion (ids first second)
                :icon 0307199713
                (tester_oml (lambda (x) (eq t x)) (loop for voice-pair in ids
                                                        collect (let ((deltas (mapcar (lambda (x) (nth x (mapcar '- second first)))
                                                                                      voice-pair)))
                                                                  
                                                                  (and (condition_oml (lambda (x) (= x 0)) deltas)
                                                                       (condition_oml (lambda (x) (/= x 0)) deltas))))))
                            
 
(om::defmethod! contrary-motion (ids first second)
                :icon 0307199713
                (tester_oml (lambda (x) (eq t x)) (loop for voice-pair in ids
                                                        collect (let ((deltas (mapcar (lambda (x) (nth x (mapcar '- second first)))
                                                                                      voice-pair)))
                                                                  
                                                                  (eq (condition_oml (lambda (x) (> x 0)) deltas)
                                                                      (condition_oml (lambda (x) (< x 0)) deltas))))))
 
 
 
(om::defmethod! similar-motion (ids first second)
                :icon 0307199713
                (tester_oml (lambda (x) (eq t x)) (loop for voice-pair in ids
                                                        collect (let ((deltas (mapcar (lambda (x) (nth x (mapcar '- second first)))
                                                                                voice-pair)))
                                                                  
                                                                  (or (tester_oml (lambda (x) (> x 0)) deltas)
                                                                      (tester_oml (lambda (x) (< x 0)) deltas))))))
 
(om::defmethod! parallel-motion (ids first second)
                :icon 0307199713
                (tester_oml (lambda (x) (eq t x)) (loop for voice-pair in ids
                                                        collect (let ((deltas (mapcar (lambda (x) (nth x (mapcar '- second first)))
                                                                                      voice-pair)))
                                                                  (reduce '= deltas)))))
 
 
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
;;;;;;;;;;;;;;;end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
 
 
;;;;;;;;;;;;;;;;;;Hilfsfunktionen;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
 
(defun condition_oml (test liste)
(cond ((null liste) nil)
((funcall test (car liste)) t)
(t (condition_oml test (cdr liste)))
))
 
(defun list! (item)
(cond ((atom item) (list item))
      (t item)))
 
 
(defun apply-rule_oml (harmonies rule first choose-error-out)
(let ((database harmonies))                                                                             
 
(loop for function in rule 
        do (loop for harmony in database
                   do (if (funcall (cadr function) (car function) first harmony choose-error-out) nil (setf database (delete harmony database)))))
 
(if (null database) choose-error-out
(nth (random (length database)) database))))
 
(defun hold_oml (items)
(append (butlast items) (setf (cdr (last items)) (last items))))
 
 
(defun mat-trans_oml (list)
(loop for y in (let (count-list)
                 (dotimes (i (length (car list))) 
                   (setq count-list (cons i count-list))) (nreverse count-list))
collect (loop for x in list collect (nth y x)) 
 
))
 
 
(defun my-recursive-fun (dur-list minimum divisor-list)
 
(let ((divisor (om::nth-random (car divisor-list))))
(cond 
 ((null dur-list) dur-list)
 ((>= (/ (car dur-list) divisor) minimum) 
 
  (append (my-recursive-fun (om::repeat-n (/ (car dur-list) divisor) divisor) minimum (om::repeat-n (car divisor-list) divisor))
          (my-recursive-fun (cdr dur-list) minimum (cdr divisor-list))))
 (t (append (list (car dur-list)) (my-recursive-fun (cdr dur-list) minimum (cdr divisor-list)))))))
 
 
 
(defun posn-match_oml (list positions)
  (cond ((null positions) '())
        ((atom positions) (nth positions list))
        (t (append (list (posn-match_oml list (car positions)))
                   (if (posn-match_oml list (cdr positions))
                       (posn-match_oml list (cdr positions))
                     '())))))
 
 
(defun subs-posn_oml (list position item)
  (loop for a from 0 
        for b in list 
        collect (if (= a position) item b)))
 
 
(defun subs-posn (lis1 posn val)
 
  (let ((copy (copy-list lis1)))
    (if (listp posn)
        (loop for item in posn
              for i = 0 then (+ i 1) do
              (setf (nth item copy) (if (listp val) (nth i val) val)))
      (setf (nth posn copy) val))
    copy))
 
 
(defun oml- (list atom)
(mapcar (lambda (it) (- it atom)) list))
 
 
(defun find-dups_oml (liste)
(car 
(remove nil
(mapcar #'(lambda (l c) (eq l c)) liste  (cdr liste)))))
 
(defun nth-random (list)
  (nth (random (length list)) list))
 
 
 
(defun circular-list (liste counter &key (start 0))
 
(cond 
 ((= counter 0) (nth start liste))
 ((< start (1- (length liste))) (circular-list liste (1- counter) :start (1+ start)))
      (t (circular-list liste (1- counter) :start 0))))
 
 
 
(defun hold-list (liste counter)
(if (> counter (1- (length liste)))
    (car (last liste))
  (nth counter liste)))