view implementations/midi/constructors.lisp @ 60:8cc40d2b12fd

ps13/gsharp integration darcs-hash:20070623085234-dc3a5-aede858c11bb5e5b8c73a0ec4319d3b54163beff.gz
author c.rhodes <c.rhodes@gold.ac.uk>
date Sat, 23 Jun 2007 09:52:34 +0100
parents 5bec705db9d6
children 70c716a6eb72
line wrap: on
line source
(cl:in-package #:amuse-midi)

(defun make-midi-pitched-event (pitch-number velocity patch
				channel track onset duration)
  (make-instance 'midi-pitched-event
		 :number pitch-number
		 :velocity velocity
		 :patch patch
		 :channel channel
		 :track track
		 :time onset
		 :interval duration))

(defun make-midi-percussive-event (pitch-number velocity patch
				   channel track onset duration)
  (make-instance 'midi-percussive-event
		 :sound pitch-number
		 :velocity velocity
		 :patch patch
		 :channel channel
		 :track track
		 :time onset
		 :interval duration))