home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / audio / fugue.README < prev    next >
Encoding:
Text File  |  1990-05-31  |  2.7 KB  |  62 lines

  1. This is Fugue, a language for sound synthesis and composition.
  2.  
  3. Fugue was developed by Roger Dannenberg, Chris Fraley, and George Polly
  4.     at Carnegie Mellon University.
  5.  
  6. Fugue is Copyright (c) 1990, Carnegie Mellon University.  It is derived in
  7.     part from XLISP, Copyright (c) 1988, David Betz, and in
  8.     part from Canon, Copyright (c) 1988, Roger B. Danneberg.
  9.  
  10. Fugue may be used freely for non-commercial use, but you may not redistribute
  11.     modifications without permission.  I am very interested in developing
  12.     Fugue further, and I solicit your help.  Please contact me at
  13.     Roger.Dannenberg@cs.cmu.edu if you are interested in extending Fugue.
  14.  
  15. Documentation: Unfortunately, learning Fugue is hampered by poor documentation.
  16.     I suggest you read the following papers (contact me if your library
  17.     does not have these):
  18.  
  19.     Dannenberg, "The Canon Score Language", Computer Music Journal,
  20.         13(1) (Spring 1989), pp. 47-56.
  21.         This talks about behavioral abstraction and the basic
  22.         temporal control mechanisms.  Canon deals with MIDI while
  23.         Fugue deals with sounds, but otherwise the languages are
  24.         very similar.  Fugue does not allow time-varying 
  25.         transformations (yet) as does Canonl.
  26.  
  27.     Dannenberg and Fraley, "Fugue: A Signal Manipulation System with
  28.         Lazy Evaluation and Behavioral Abstraction", Proceedings
  29.         of the 1989 ICMC, pp. 76-79.
  30.         This is the only Fugue paper so far, but due to page
  31.         limitations, this is pretty much just an extended introduction.
  32.  
  33.     Betz. XLISP: An Object-oriented Lisp.  Version 2.0.  (Manual for
  34.         XLISP is in doc/xlisp20.doc as an ascii file.)
  35.         This tells you all about XLisp.  Fugue was created by
  36.         extending XLisp with a new data type (sound) and many
  37.         new functions, but generic lisp manipulation and arithmetic
  38.         functions are all described here.
  39.  
  40.     doc/lisp.doc -- this file describes functions for sound manipulation
  41.         in Fugue.
  42.  
  43.     doc/*.doc -- there are a number of other short documentation files
  44.         in this directory.  Look them over.  Someday, these will
  45.         all be organized into one manual (I hope).
  46.  
  47.     test/ex/demo*.lsp -- you should run these one by one and study the
  48.         code.  These examples demonstrate much of what Fugue can
  49.         do in an number of simple examples.
  50.  
  51. Running Fugue: Once you get Fugue installed, go to the fugue/test directory
  52.     and type "../xl".  You should get a banner and a prompt.  Try typing
  53.     (load "ex/demo1").  I usually run emacs in another window so I switch
  54.     between editing code and trying things out interactively.  You can
  55.     also spawn a shell within emacs and run Fugue there.
  56.  
  57.     Fugue is not really set up for multiple users, especially since
  58.     init.lsp expects to find "../fugue.lsp".  You might want to change
  59.     this path to an absolute one to make it easier to run Fugue from
  60.     any directory.
  61.  
  62.