Jump to content

Featured Replies

Posted

like this (?)...

 

;;; mapping to MAJOR

(setf sort-seq (integer-to-pitch (flatten (gen-sort (rnd-order (gen-integer 24)) :type 'selection))))

(def-score example-score
           (:key-signature 'atonal
                           :time-signature '(4 4)
                           :tempo 90
                           :layout (treble-layout 'seq))
  
  (seq :omn (make-omn :pitch (setf n (tonality-map '(major :map step :root 'c4) sort-seq))
                      :length (gen-repeat (length (flatten n)) '(t)))))


;;; mapping to MESSIAEN-mode

(setf sort-seq (integer-to-pitch (flatten (gen-sort (rnd-order (gen-integer 24)) :type 'insertion))))

(def-score example-score
           (:key-signature 'atonal
                           :time-signature '(4 4)
                           :tempo 90
                           :layout (treble-layout 'seq))
  
  (seq :omn (make-omn :pitch (setf n (tonality-map '(messiaen-mode5 :map step :root 'c4) sort-seq))
                      :length (gen-repeat (length (flatten n)) '(t)))))


;;; mapping to a XENAKIS-SIEVE -> how can i do that with TONALITY-MAP? (but not necessary)

(setf sieve (gen-sieve '((c4 g7) (c1 g7)) '((2 1 12) (3 5)) :type :pitch))
(setf sort-seq (flatten (gen-sort (rnd-order (gen-integer (length sieve))) :type 'insertion :sort '?)))

(def-score example-score
           (:key-signature 'atonal
                           :time-signature '(4 4)
                           :tempo 90
                           :layout (treble-layout 'seq))
  
  (seq :omn (make-omn :pitch (setf n (loop 
                                       for i in sort-seq
                                       collect (nth i sieve)))
                      :length (gen-repeat (length (flatten n)) '(t)))))

 

You can use the :span :pitch option if the master is the pitch:

 

Example:

 

(make-omn
 :pitch (tonality-map '(messiaen-mode5 :map step :root 'c4) sort-seq)
 :length '(t)
 :span :pitch)

(make-omn
 :pitch (loop for i in sort-seq collect (nth i sieve))
 :length '(t)
 :span :pitch)


 

 

Create an account or sign in to comment


Copyright © 2014-2025 Opusmodus™ Ltd. All rights reserved.
Product features, specifications, system requirements and availability are subject to change without notice.
Opusmodus, the Opusmodus logo, and other Opusmodus trademarks are either registered trademarks or trademarks of Opusmodus Ltd.
All other trademarks contained herein are the property of their respective owners.

Powered by Invision Community

Important Information

Terms of Use Privacy Policy