annotate implementations/midi/constructors.lisp @ 216:e1842efb1dd4
amuse-database-admin add implementation and dataset functionality
Ignore-this: 787cc01acf2d6a58640fec017de16c17
darcs-hash:20090716145807-16a00-6fe5ad4a2b6252b2c1f3d109a16455bb32243965.gz
committer: Jamie Forth <j.forth@gold.ac.uk>
author |
j.forth <j.forth@gold.ac.uk> |
date |
Thu, 24 Feb 2011 11:23:18 +0000 |
parents |
1f3873585a5d |
children |
e3353261523e |
rev |
line source |
m@25
|
1 (cl:in-package #:amuse-midi)
|
m@25
|
2
|
m@144
|
3 (defun make-midifile-identifier (pathname)
|
m@144
|
4 (make-instance 'midifile-identifier :path pathname))
|
m@144
|
5
|
m@25
|
6 (defun make-midi-pitched-event (pitch-number velocity patch
|
m@25
|
7 channel track onset duration)
|
m@25
|
8 (make-instance 'midi-pitched-event
|
m@25
|
9 :number pitch-number
|
m@25
|
10 :velocity velocity
|
m@25
|
11 :patch patch
|
m@25
|
12 :channel channel
|
m@25
|
13 :track track
|
m@25
|
14 :time onset
|
m@25
|
15 :interval duration))
|
m@25
|
16
|
j@206
|
17 (defun make-midi-percussive-event (sound velocity patch
|
m@25
|
18 channel track onset duration)
|
m@25
|
19 (make-instance 'midi-percussive-event
|
j@206
|
20 :sound sound
|
m@25
|
21 :velocity velocity
|
m@25
|
22 :patch patch
|
m@25
|
23 :channel channel
|
m@25
|
24 :track track
|
m@25
|
25 :time onset
|
m@25
|
26 :interval duration))
|
m@25
|
27
|
m@25
|
28
|