Module: Music::Transcription::Parsing::Articulation

Includes:
Treetop::Runtime
Included in:
ArticulationParser, Note
Defined in:
lib/music-transcription/parsing/articulation_parsing.rb

Defined Under Namespace

Modules: Legato0, Portato0, Slur0, Staccatissimo0, Staccato0, Tenuto0

Instance Method Summary collapse

Instance Method Details

#_nt_articulationObject



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
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 15

def _nt_articulation
  start_index = index
  if node_cache[:articulation].has_key?(index)
    cached = node_cache[:articulation][index]
    if cached
      node_cache[:articulation][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  i0 = index
  r1 = _nt_slur
  if r1
    r1 = SyntaxNode.new(input, (index-1)...index) if r1 == true
    r0 = r1
  else
    r2 = _nt_legato
    if r2
      r2 = SyntaxNode.new(input, (index-1)...index) if r2 == true
      r0 = r2
    else
      r3 = _nt_tenuto
      if r3
        r3 = SyntaxNode.new(input, (index-1)...index) if r3 == true
        r0 = r3
      else
        r4 = _nt_portato
        if r4
          r4 = SyntaxNode.new(input, (index-1)...index) if r4 == true
          r0 = r4
        else
          r5 = _nt_staccato
          if r5
            r5 = SyntaxNode.new(input, (index-1)...index) if r5 == true
            r0 = r5
          else
            r6 = _nt_staccatissimo
            if r6
              r6 = SyntaxNode.new(input, (index-1)...index) if r6 == true
              r0 = r6
            else
              @index = i0
              r0 = nil
            end
          end
        end
      end
    end
  end

  node_cache[:articulation][start_index] = r0

  r0
end

#_nt_legatoObject



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 108

def _nt_legato
  start_index = index
  if node_cache[:legato].has_key?(index)
    cached = node_cache[:legato][index]
    if cached
      node_cache[:legato][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?("|", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Legato0)
    @index += match_len
  else
    terminal_parse_failure("|")
    r0 = nil
  end

  node_cache[:legato][start_index] = r0

  r0
end

#_nt_portatoObject



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 170

def _nt_portato
  start_index = index
  if node_cache[:portato].has_key?(index)
    cached = node_cache[:portato][index]
    if cached
      node_cache[:portato][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?("%", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Portato0)
    @index += match_len
  else
    terminal_parse_failure("%")
    r0 = nil
  end

  node_cache[:portato][start_index] = r0

  r0
end

#_nt_slurObject



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 77

def _nt_slur
  start_index = index
  if node_cache[:slur].has_key?(index)
    cached = node_cache[:slur][index]
    if cached
      node_cache[:slur][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?("=", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Slur0)
    @index += match_len
  else
    terminal_parse_failure("=")
    r0 = nil
  end

  node_cache[:slur][start_index] = r0

  r0
end

#_nt_staccatissimoObject



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 232

def _nt_staccatissimo
  start_index = index
  if node_cache[:staccatissimo].has_key?(index)
    cached = node_cache[:staccatissimo][index]
    if cached
      node_cache[:staccatissimo][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?("'", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Staccatissimo0)
    @index += match_len
  else
    terminal_parse_failure("'")
    r0 = nil
  end

  node_cache[:staccatissimo][start_index] = r0

  r0
end

#_nt_staccatoObject



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 201

def _nt_staccato
  start_index = index
  if node_cache[:staccato].has_key?(index)
    cached = node_cache[:staccato][index]
    if cached
      node_cache[:staccato][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?(".", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Staccato0)
    @index += match_len
  else
    terminal_parse_failure(".")
    r0 = nil
  end

  node_cache[:staccato][start_index] = r0

  r0
end

#_nt_tenutoObject



139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 139

def _nt_tenuto
  start_index = index
  if node_cache[:tenuto].has_key?(index)
    cached = node_cache[:tenuto][index]
    if cached
      node_cache[:tenuto][index] = cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  if (match_len = has_terminal?("_", false, index))
    r0 = instantiate_node(SyntaxNode,input, index...(index + match_len))
    r0.extend(Tenuto0)
    @index += match_len
  else
    terminal_parse_failure("_")
    r0 = nil
  end

  node_cache[:tenuto][start_index] = r0

  r0
end

#rootObject



11
12
13
# File 'lib/music-transcription/parsing/articulation_parsing.rb', line 11

def root
  @root ||= :articulation
end