<feed xmlns='http://www.w3.org/2005/Atom'>
<title>fm-synth/note_compiler, branch compiled_notes</title>
<subtitle>a phase modulation synthesizer 
</subtitle>
<id>https://windfis.ch/git/fm-synth/atom?h=compiled_notes</id>
<link rel='self' href='https://windfis.ch/git/fm-synth/atom?h=compiled_notes'/>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/'/>
<updated>2011-01-09T16:50:20+00:00</updated>
<entry>
<title>Improved note-compiler: optimizing output now works properly</title>
<updated>2011-01-09T16:50:20+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-09T16:46:26+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=80fdc1e39d864f05f271c8035715ab4c155a2002'/>
<id>urn:sha1:80fdc1e39d864f05f271c8035715ab4c155a2002</id>
<content type='text'>
Previously, output was always considered as non-const, even if is was
zero and without any controller-influence, because output had always
pfactor-influence. Now, a pfactor-influenced output which is constant
zero is considered as still constant, because pfactor*0 is always 0.
</content>
</entry>
<entry>
<title>Added some of the bugfixes to the note_compiler and removed use_pfactor</title>
<updated>2011-01-08T17:27:40+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-08T17:27:40+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=d84da6cdfb9027a67b8ab50fe2c23374acc3b245'/>
<id>urn:sha1:d84da6cdfb9027a67b8ab50fe2c23374acc3b245</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Improved note-compiler and added TODO-entries</title>
<updated>2011-01-07T17:40:47+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-07T17:40:47+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=f76e20a3486b31945fd35f6b1a0bd517d6dc176e'/>
<id>urn:sha1:f76e20a3486b31945fd35f6b1a0bd517d6dc176e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Added a rudimentary CLI to the note compiler + bugfix</title>
<updated>2011-01-06T22:31:51+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-06T22:31:51+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=892c323f7851c76bf678369987c5c7a361626ea2'/>
<id>urn:sha1:892c323f7851c76bf678369987c5c7a361626ea2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>The synthesizer can now load the compiled notes</title>
<updated>2011-01-06T19:16:19+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-06T19:16:19+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=e78131ccbbcb81da94e5992f788c6ea291a2050d'/>
<id>urn:sha1:e78131ccbbcb81da94e5992f788c6ea291a2050d</id>
<content type='text'>
There are still issues:
 - filtertest.prog.so: output_note-message which is not true
 - huge size of the .so (48K are too much!)
</content>
</entry>
<entry>
<title>Finished note-compiler, seems to work. TODO: CLI</title>
<updated>2011-01-05T17:40:20+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-05T17:25:04+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=e8382521c1a35ad59efea5e8cebb915a67c0008e'/>
<id>urn:sha1:e8382521c1a35ad59efea5e8cebb915a67c0008e</id>
<content type='text'>
The note-compiler now also generates code for set_param, and
a function has been added which returns a pointer to a newly
created object (important for loading from a shared object).
There's also a destroyer function.

TODO:
 - write a CLI for the note-compiler
 - let the note-compiler issue the build-commands on his own
 - make the synth load instruments from shared objects
</content>
</entry>
<entry>
<title>Note-compiler is _mostly_ complete; plus some tiny bugfixes</title>
<updated>2011-01-05T14:50:41+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-05T14:47:55+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=3d95a25600b5cab8a7e5245b7a581bd8c8939276'/>
<id>urn:sha1:3d95a25600b5cab8a7e5245b7a581bd8c8939276</id>
<content type='text'>
The note-compiler can read a program-definition and emits a cpp-file
which implements that definition. This implementation is optimized.
HOWEVER, the compiler still does not emit a set_param() function. this
will lead to a linker error because the function is not implemented
(but defined). After adding an empty implementation by hand the emitted
compiles well, and also seems to work when used in the synth.

TODO:
 - implement set_param()
 - compiler must emit a loader-function (which returns a new Note)
 - use that loader function in the synth
</content>
</entry>
<entry>
<title>Replace class Parser with function parse()</title>
<updated>2011-01-01T16:02:53+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-01T16:02:53+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=5e731c349b63a557b2e705ce3cd741f90c62c694'/>
<id>urn:sha1:5e731c349b63a557b2e705ce3cd741f90c62c694</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update and move todo-list</title>
<updated>2011-01-01T15:39:35+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2011-01-01T15:39:35+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=d9fd174884bf999fa53216b2cc307379fe9b1084'/>
<id>urn:sha1:d9fd174884bf999fa53216b2cc307379fe9b1084</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add initial code for the note-compiler</title>
<updated>2010-12-31T15:33:17+00:00</updated>
<author>
<name>Florian Jung</name>
<email>flo@thinkpad.(none)</email>
</author>
<published>2010-12-31T15:33:17+00:00</published>
<link rel='alternate' type='text/html' href='https://windfis.ch/git/fm-synth/commit/?id=ff2f14ab35cf1cb2ded11b4ae86d24dda738b445'/>
<id>urn:sha1:ff2f14ab35cf1cb2ded11b4ae86d24dda738b445</id>
<content type='text'>
The note-compiler now has a Parser class which knows about possible
parameter changes (by controller, velocity or simply user definition).
Furthermore, several files were adapted (by stripping unneeded code,
adding the bool foo_const variables etc.).

Small fix in util.c which causes extract_var("foo") to return "foo"
instead of "".

Fixes in both Makefiles.
</content>
</entry>
</feed>
