aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/Template
Commit message (Collapse)AuthorAgeFilesLines
* LV2: Fix manifest.ttl plugin templateHarald Eilertsen2021-03-271-7/+1
| | | | | This makes the generated plugin manifest.ttl.in file suitable to append to the bundle manifest.ttl.in file.
* LV2: add activate method to plugin template headerHarald Eilertsen2021-03-271-0/+1
|
* LV2/makeplugin: Pick up var init from plugin cpp file.Harald Eilertsen2021-03-271-0/+5
|
* LV2/makeplugin: Get variable decls from plugin header.Harald Eilertsen2021-03-271-0/+1
|
* LV2: makeplugin use cheatsheet db for plugin type mapping.Harald Eilertsen2020-08-021-1/+1
| | | | | | Only the 'Saturation' type is mapped to lv2::DistortionPlugin for now, but this is easy to expand as we go. I'll update this for each new plugin type that's ported for now.
* LV2: makeplugin create control port defs in ttl.Harald Eilertsen2020-08-021-27/+1
| | | | | | It has no way (yet) of knowing the specifics of the ports, so for now it will only create he correct number of ports, assign their symbols ('A', 'B' etc.) and corresponding index.
* LV2: makeplugin script not handles number of control ports.Harald Eilertsen2020-07-222-2/+2
| | | | | | | | If specified, the correct number will be put in the class declaration, and the correct number of params will be assigned to their respecive param instance variables. The ttl file is not updated with this info yet.
* LV2: Add template plugin and script.Harald Eilertsen2020-07-214-0/+107
To ease booting up a new plugin. The script just reads the template files, replaces the placeholders with the new plugin name, and writes them out as the proper plugin files in the right directory. Primitive, but does the job. The script should work with any version of ruby.