view base/package.lisp @ 288:d1e5bbcc5ea4

Rationalise base and geerdes classes, constructors and methods. Ignore-this: d9d4d88566a6d110844d91d4c70513cd Towards a more standardised interface. Some of these changes (generalised constructors and reader functions) are necessary for amuse-database-admin functionality and some other CHARM-like things. darcs-hash:20090716154406-16a00-8a9b4fb1fc1f5ba75af66a1bbd87e1bb68e02493.gz
author j.forth <j.forth@gold.ac.uk>
date Thu, 16 Jul 2009 16:44:06 +0100
parents c2e50459efab
children fb27101cde2b
line wrap: on
line source
(cl:defpackage #:amuse
  (:use #:common-lisp)
  (:export #:amuse-object
           #:constituent
	   #:composition
           #:standard-constituent
	   #:standard-composition
	   #:monody
           #:standard-monody
	   #:identifier
	   #:composition-identifier
	   #:constituent-identifier
	   #:moment
	   #:period
	   #:anchored-period
	   #:pitch
	   #:pitch-interval
	   #:standard-moment
	   #:standard-period
	   #:standard-anchored-period
	   #:frequency-pitch
	   #:chromatic-pitch 
	   #:diatonic-pitch   
	   #:chromatic-pitch-interval
           #:diatonic-pitch-interval
	   #:pitched-event
	   #:standard-pitched-event
	   #:chromatic-pitched-event
	   #:standard-chromatic-pitched-event
	   #:diatonic-pitched-event
	   #:standard-diatonic-pitched-event
	   #:percussive-event
	   #:standard-percussive-event
	   #:time-signature
	   #:time-signature-period
	   #:standard-time-signature
	   #:standard-time-signature-period
	   #:key-signature
	   #:key-signature-period
	   #:standard-key-signature
	   #:standard-key-signature-period
           #:midi-key-signature
           #:midi-key-signature-period
	   #:tempo
	   #:tempo-period
	   #:standard-tempo
	   #:standard-tempo-period
	   #:get-composition
	   #:get-constituents
	   #:time-signatures
	   #:tempi
	   #:key-signatures
	   #:midi-pitch-number
	   #:pitch-class
	   #:span
	   #:duration
	   #:timepoint
	   #:cut-off
	   #:beat-units-per-bar
	   #:time-signature-numerator
	   #:beat-units
	   #:time-signature-denominator
	   #:tactus-duration
	   #:key-signature-sharps
           #:key-signature-mode
	   #:bpm
	   #:microseconds-per-crotchet
	   #:anchored-period
	   #:period
	   #:moment
	   #:onset
	   #:time+
	   #:time-
	   #:time>
	   #:time<
	   #:time=
	   #:time>=
	   #:time<=
	   #:time/=
	   #:duration>
	   #:duration<
	   #:duration=
	   #:duration>=
	   #:duration<=
	   #:duration/=
	   #:duration*
	   #:duration/
	   #:pitch+
	   #:pitch-
	   #:pitch>
	   #:pitch<
	   #:pitch=
	   #:pitch>=
	   #:pitch<=
	   #:pitch/=
	   #:interval>
	   #:interval<
	   #:interval=
	   #:interval>=
	   #:interval<=
	   #:interval/=
	   #:meets
	   #:before
	   #:overlaps
	   #:during
	   #:starts
	   #:ends
	   #:subinterval
	   #:disjoint
	   #:period=
	   #:find-overlapping
	   #:period-intersection
	   #:inter-onset-interval
	   #:get-applicable-time-signatures
	   #:get-applicable-tempi
	   #:get-applicable-key-signatures
	   #:make-moment
	   #:make-period
	   #:make-anchored-period
	   #:make-standard-moment
	   #:make-standard-period
	   #:make-standard-anchored-period
	   #:make-chromatic-pitch
	   #:make-diatonic-pitch
	   #:make-chromatic-pitch-interval
	   #:make-chromatic-pitched-event
	   #:make-standard-time-signature
	   #:make-standard-time-signature-period
	   #:make-standard-key-signature
	   #:make-standard-key-signature-period
	   #:make-midi-key-signature
	   #:make-midi-key-signature-period
	   #:make-standard-tempo
	   #:make-standard-tempo-period
           #:time-signature-equal
           #:key-signature-equal
           #:tempo-equal
	   #:insufficient-information
	   #:undefined-action
           #:asa-pitch-string  
           #:asa-interval-string  
           #:diatonic-pitch-name 
           #:middle-c 
           #:make-mips-pitch
           #:make-mips-pitch-interval
           #:octave
           #:diatonic-pitch-octave 
           #:diatonic-pitch-accidental
           #:ensure-monody
           #:crotchet
           #:diatonic-pitch-cp
           #:diatonic-pitch-mp
	   #:current-beat
	   #:current-bar
	   ;; condition restart options
	   #:use-whole-bar
	   #:use-crotchet-beat
	   #:guess

	   #:%list-slot-sequence-data
	   #:list-slot-sequence
	   #:move-to-first-bar
	   #:copy-event
	   #:voice
	   #:event-identifier
	   #:id
	   #:event-id
	   #:composition-id
	   #:interval
	   #:event
	   ))