From ml13 at onlinehome.de Tue Nov 15 16:39:03 2005 From: ml13 at onlinehome.de (ml13 at onlinehome.de) Date: Tue, 15 Nov 2005 17:39:03 +0100 Subject: [fomus-devel] :note In-Reply-To: <42EA7C44.30505@uiuc.edu> References: <42EA7C44.30505@uiuc.edu> Message-ID: Hi, I must admit I havent quite followed fomus development for the last weeks.... But looking on the cvs logs, I can see that you're still quite involved... Have you actually posted your project, in order to find co-developers? I have updated to the latest cvs tody and I am having some problems with the :note slot. I will allow myself to post some snippets, below, which I suppose to be syntactically correct (?). Actually some (if not all) of them used to be working before, so are you again working on the accidental stuff? I am doing this on openmcl: (progn (fomus-init :backend '(:lilypond )) (fomus-newpart 1 :name "Cello" :instr :cello) (fomus-newnote 1 :off 0 :dur 0.3 :note 61) (fomus-newnote 1 :off 0.3 :dur 1 :note 62) (fomus-exec)) (progn (fomus-init :backend '(:lilypond )) (fomus-newpart 1 :name "Cello" :instr :cello) (fomus-newnote 1 :off 0 :dur 0.3 :note 'c4) (fomus-newnote 1 :off 0.3 :dur 1 :note 'd4) (fomus-exec)) (progn (fomus-init :backend '(:lilypond )) (fomus-newpart 1 :name "Cello" :instr :cello) (fomus-newnote 1 :off 0 :dur 0.3 :note '(c4 n)) (fomus-newnote 1 :off 0.3 :dur 1 :note '(ds4 s)) (fomus-exec)) One thats actually working is this: (progn (fomus-init :auto-accidentals nil :backend '(:lilypond)) (fomus-newpart 1 :name "Cello" :instr :cello) (fomus-newnote 1 :off 0 :dur 0.3 :note (list 61 1)) (fomus-newnote 1 :off 0.3 :dur 1 :note (list 61 -1)) (fomus-exec)) Regards, Kilian Sprotte From dpsenick at uiuc.edu Thu Nov 17 02:25:27 2005 From: dpsenick at uiuc.edu (David Psenicka) Date: Wed, 16 Nov 2005 20:25:27 -0600 Subject: [fomus-devel] :note In-Reply-To: References: <42EA7C44.30505@uiuc.edu> Message-ID: <437BEA17.3020902@uiuc.edu> I just fixed a list of bugs, most of them related to note spellings, percussion instruments and system brackets--all of your examples worked for me in openmcl and cmucl, so I might have fixed the problem already. If the latest CVS update still causes problems, send me the debug file that is generated ("/tmp/fomus.dbg" is the default setting) so that I can replicate the problem exactly. Lately I've only had time to fix bugs here and there (there are still a lot of them floating around)--by mid Jan. I think I'll have the rest of the big features in place that I wanted to put in (CMN & MusicXML backends, polymeters, speed improvements, key signatures, fixes for Windows users, a few other things). I'll bump up the version to something greater than 0.1 and make an official release once I've done some extensive testing on all this. At that point I think it will be easier for other developers to join the project or add their own algorithms--until then I'll still be changing a lot of things around as I finish these things. -David ml13 at onlinehome.de wrote: > Hi, > > I must admit I havent quite followed fomus development for the last > weeks.... But looking on the cvs logs, I can see that you're still > quite involved... Have you actually posted your project, in order to > find co-developers? > > I have updated to the latest cvs tody and I am having some problems > with the :note slot. I will allow myself to post some snippets, > below, which I suppose to be syntactically correct (?). > > Actually some (if not all) of them used to be working before, so are > you again working on the accidental stuff? > >