home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 1.7 KB | 69 lines | [TEXT/ScoM] |
- MOTIVE PROGRAMMING
-
- (defmethod ++ ((motive motive) &rest motives)
- (prog (collect new-values)
- (setq motives (cons motive motives))
- (dolist (class *motive-classes*)
- (setq collect nil)
- (dolist (motive motives)
- (setq collect (append (reverse (slot-value motive class)) collect)))
- (push (ccl::make-keyword class) new-values)
- (push (reverse collect) new-values))
- (return (apply 'make-instance (cons 'motive (print (nreverse new-values)))))))
-
- Motives should now be in right order. Notice that the zones are on the
- motives and you do not need them in default.
-
- (create-tonality t1 '(a 4 b 4 c 5 d 5 d# 5 f 5 g 5))
-
- (def-motive pr1
- length '(3/4 1/4 1/4 1/2)
- symbol '(d c b a)
- zone '(7/4)
- )
-
- (def-motive pr2
- length '(1/4 1/4 1/4 5/4)
- symbol '(c b -b a)
- zone '(8/4)
- )
-
- (def-motive pr3
- length '(1/4 1/4 1/2 1/2 1/4 5/4)
- symbol '(-b -c -d -c -b a)
- zone '(12/4)
- )
-
- (def-section sect-a
- default
- channel 8
- tonality (activate-tonality (t1 a 5))
- velocity '(64)
- vlna
- motive (++ pr1 pr2 pr3)
- )
-
- (play-file-p "Tiger Song"
- all-instruments '(sect-a)
- )
-
- Using
-
- motive (list pr1 pr2 pr3)
-
- leads error because it makes non-flat zone list. I'll correct it
- later. It works when you remove zones from motives and write zone
- separately
-
- zone '(7/4 8/4 12/4)
- motive (list pr1 pr2 pr3)
-
- Notice also that your example was giving motive for each zone
- to be recycled if the zone length is larger than the amount of
- the length of the motive. This means that with the same zone lengths
- the result would be the same as appending motives with ++. This
- means that if you want to connect motives together you can just
- use ++. See def-zone and def-symbol etc for description of zone
- sublists.
-
-