aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/lib/makeplugin/plugin_description_template.rb
blob: 3b990b2f80aba97186eb32f82a37ccbd07d597b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright (c) 2021 Harald Eilertsen
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


module MakePlugin
  class PluginDescriptionTemplate
    def initialize(root, plugin_info)
      @root = root
      @pi = plugin_info
    end

    def filename
      "#{@pi.name}.ttl"
    end

    def render
      IO.read(File.join(@root, 'Plugin.ttl'))
        .gsub('@Plugin@', @pi.name)
        .gsub('@plugin@', @pi.slug)
        .gsub('@NCtrlPorts@', @pi.n_ctrl_ports.to_s)
        .gsub('@TTLPortDefs@', self.make_lv2_port_defs)
        .gsub('@TTLPluginType@', @pi.type)
    end

    private

    def make_ctrl_port(n, ctrl_port)
      %Q{        a lv2:InputPort , lv2:ControlPort ;
        lv2:index #{n} ;
        lv2:symbol "#{ctrl_port[:sym]}" ;
        lv2:name "#{ctrl_port[:name]}" ;
        lv2:default 0.5 ;
        lv2:minimum 0.0 ;
        lv2:maximum 1.0 ;}
    end

    def make_lv2_port_defs
      num = @pi.n_ctrl_ports
      ctrlports = @pi.ctrl_ports
        .map.with_index { |p, n| make_ctrl_port(n, p) }
        .join("\n    ] , [\n")

      ctrlports + %Q{
    ] , [
        a lv2:InputPort , lv2:AudioPort ;
        lv2:index #{num} ;
        lv2:symbol "in_l" ;
        lv2:name "In left" ;
    ] , [
        a lv2:InputPort , lv2:AudioPort ;
        lv2:index #{num + 1} ;
        lv2:symbol "in_r" ;
        lv2:name "In right" ;
    ] , [
        a lv2:OutputPort , lv2:AudioPort ;
        lv2:index #{num + 2} ;
        lv2:symbol "out_l" ;
        lv2:name "Out left" ;
    ] , [
        a lv2:OutputPort , lv2:AudioPort ;
        lv2:index #{num + 3} ;
        lv2:symbol "out_r" ;
        lv2:name "Out right" ;}
    end
  end
end