Mercurial > hg > amuse
view implementations/midi/constructors.lisp @ 31:8e94c41f7103
{base,implementations/midi}/package.lisp: move some exported symbols from
AMUSE to AMUSE-MIDI.
darcs-hash:20061215170058-aa3d6-cd0b2a77f4199f427629c543e61f10565130b409.gz
author | m.pearce <m.pearce@gold.ac.uk> |
---|---|
date | Fri, 15 Dec 2006 17:00:58 +0000 |
parents | fe73cc3f1605 |
children | 5bec705db9d6 |
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)) (defun make-midi-key-signature (sharp-count mode onset duration) (make-instance 'midi-key-signature :sharp-count sharp-count :mode mode :time onset :interval duration))