midilib 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.rdoc +9 -4
- data/Rakefile +2 -6
- data/examples/from_scratch.rb +3 -5
- data/examples/measures_mbt.rb +4 -4
- data/examples/print_program_changes.rb +9 -9
- data/examples/reader2text.rb +188 -188
- data/examples/seq2text.rb +17 -17
- data/examples/split.rb +19 -19
- data/examples/strings.rb +14 -14
- data/examples/transpose.rb +31 -31
- data/html/IO.html +65 -169
- data/html/MIDI.html +138 -256
- data/html/MIDI/ActiveSense.html +89 -178
- data/html/MIDI/ChannelEvent.html +95 -183
- data/html/MIDI/ChannelPressure.html +105 -190
- data/html/MIDI/Clock.html +89 -178
- data/html/MIDI/Continue.html +89 -178
- data/html/MIDI/Controller.html +107 -192
- data/html/MIDI/Event.html +138 -222
- data/html/MIDI/IO.html +45 -157
- data/html/MIDI/IO/MIDIFile.html +596 -568
- data/html/MIDI/IO/SeqReader.html +272 -314
- data/html/MIDI/IO/SeqWriter.html +229 -305
- data/html/MIDI/KeySig.html +129 -211
- data/html/MIDI/MIDI.html +45 -154
- data/html/MIDI/MIDI/MIDI.html +45 -154
- data/html/MIDI/MIDI/MIDI/Array.html +87 -185
- data/html/MIDI/Marker.html +71 -170
- data/html/MIDI/Measure.html +95 -190
- data/html/MIDI/Measures.html +103 -193
- data/html/MIDI/MetaEvent.html +180 -253
- data/html/MIDI/NoteEvent.html +118 -204
- data/html/MIDI/NoteOff.html +95 -183
- data/html/MIDI/NoteOn.html +95 -183
- data/html/MIDI/PitchBend.html +106 -191
- data/html/MIDI/PolyPressure.html +106 -189
- data/html/MIDI/ProgramChange.html +105 -190
- data/html/MIDI/Realtime.html +98 -184
- data/html/MIDI/Sequence.html +246 -311
- data/html/MIDI/SongPointer.html +106 -191
- data/html/MIDI/SongSelect.html +105 -190
- data/html/MIDI/Start.html +89 -178
- data/html/MIDI/Stop.html +89 -178
- data/html/MIDI/SystemCommon.html +71 -170
- data/html/MIDI/SystemExclusive.html +108 -193
- data/html/MIDI/SystemReset.html +89 -178
- data/html/MIDI/Tempo.html +135 -213
- data/html/MIDI/TimeSig.html +135 -214
- data/html/MIDI/Track.html +217 -291
- data/html/MIDI/TuneRequest.html +98 -184
- data/html/MIDI/Utils.html +89 -189
- data/html/README_rdoc.html +237 -257
- data/html/TODO_rdoc.html +64 -139
- data/html/created.rid +14 -14
- data/html/css/fonts.css +167 -0
- data/html/{rdoc.css → css/rdoc.css} +265 -218
- data/html/fonts/Lato-Light.ttf +0 -0
- data/html/fonts/Lato-LightItalic.ttf +0 -0
- data/html/fonts/Lato-Regular.ttf +0 -0
- data/html/fonts/Lato-RegularItalic.ttf +0 -0
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/images/add.png +0 -0
- data/html/images/arrow_up.png +0 -0
- data/html/images/delete.png +0 -0
- data/html/images/tag_blue.png +0 -0
- data/html/index.html +187 -169
- data/html/js/darkfish.js +41 -33
- data/html/js/jquery.js +4 -18
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +20 -5
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +1111 -498
- data/install.rb +43 -32
- data/lib/midilib/consts.rb +407 -407
- data/lib/midilib/event.rb +295 -294
- data/lib/midilib/info.rb +5 -5
- data/lib/midilib/io/midifile.rb +266 -267
- data/lib/midilib/io/seqreader.rb +106 -106
- data/lib/midilib/io/seqwriter.rb +59 -60
- data/lib/midilib/measure.rb +69 -69
- data/lib/midilib/sequence.rb +68 -70
- data/lib/midilib/track.rb +96 -102
- data/lib/midilib/utils.rb +15 -15
- data/test/event_equality.rb +50 -50
- data/test/test_event.rb +120 -122
- data/test/test_io.rb +35 -48
- data/test/test_sequence.rb +60 -60
- data/test/test_track.rb +154 -154
- data/test/test_varlen.rb +23 -25
- metadata +65 -57
data/html/MIDI/ActiveSense.html
CHANGED
@@ -2,199 +2,92 @@
|
|
2
2
|
|
3
3
|
<html>
|
4
4
|
<head>
|
5
|
-
<meta
|
5
|
+
<meta charset="UTF-8">
|
6
6
|
|
7
7
|
<title>class MIDI::ActiveSense - midilib</title>
|
8
8
|
|
9
|
-
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
|
10
|
-
|
11
9
|
<script type="text/javascript">
|
12
10
|
var rdoc_rel_prefix = "../";
|
13
11
|
</script>
|
14
12
|
|
15
|
-
<script
|
16
|
-
<script
|
17
|
-
|
18
|
-
<
|
19
|
-
<
|
20
|
-
|
13
|
+
<script src="../js/jquery.js"></script>
|
14
|
+
<script src="../js/darkfish.js"></script>
|
15
|
+
|
16
|
+
<link href="../css/fonts.css" rel="stylesheet">
|
17
|
+
<link href="../css/rdoc.css" rel="stylesheet">
|
18
|
+
|
21
19
|
|
22
20
|
|
23
|
-
<body id="top" class="class">
|
24
|
-
<nav
|
25
|
-
<
|
26
|
-
|
27
|
-
|
21
|
+
<body id="top" role="document" class="class">
|
22
|
+
<nav role="navigation">
|
23
|
+
<div id="project-navigation">
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
25
|
+
<h2>
|
26
|
+
<a href="../index.html" rel="home">Home</a>
|
27
|
+
</h2>
|
28
|
+
|
29
|
+
<div id="table-of-contents-navigation">
|
30
|
+
<a href="../table_of_contents.html#pages">Pages</a>
|
28
31
|
<a href="../table_of_contents.html#classes">Classes</a>
|
29
32
|
<a href="../table_of_contents.html#methods">Methods</a>
|
30
|
-
</
|
31
|
-
</
|
32
|
-
|
33
|
+
</div>
|
34
|
+
</div>
|
33
35
|
|
34
|
-
|
36
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
35
37
|
<form action="#" method="get" accept-charset="utf-8">
|
36
|
-
<
|
37
|
-
<input
|
38
|
+
<div id="search-field-wrapper">
|
39
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
40
|
+
aria-autocomplete="list" aria-controls="search-results"
|
41
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
38
42
|
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
-
</
|
40
|
-
</form>
|
41
|
-
|
42
|
-
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
-
</nav>
|
44
|
-
|
43
|
+
</div>
|
45
44
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
</ul>
|
52
|
-
</nav>
|
45
|
+
<ul id="search-results" aria-label="Search Results"
|
46
|
+
aria-busy="false" aria-expanded="false"
|
47
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
48
|
+
</form>
|
49
|
+
</div>
|
53
50
|
|
54
|
-
|
55
51
|
</div>
|
56
52
|
|
53
|
+
|
54
|
+
|
57
55
|
<div id="class-metadata">
|
58
56
|
|
59
|
-
<
|
60
|
-
<h3
|
57
|
+
<div id="parent-class-section" class="nav-section">
|
58
|
+
<h3>Parent</h3>
|
59
|
+
|
61
60
|
|
62
61
|
<p class="link"><a href="Realtime.html">MIDI::Realtime</a>
|
63
62
|
|
64
|
-
</
|
63
|
+
</div>
|
65
64
|
|
66
65
|
|
66
|
+
|
67
67
|
<!-- Method Quickref -->
|
68
|
-
<
|
69
|
-
<h3
|
68
|
+
<div id="method-list-section" class="nav-section">
|
69
|
+
<h3>Methods</h3>
|
70
70
|
|
71
|
-
<ul class="link-list">
|
71
|
+
<ul class="link-list" role="directory">
|
72
72
|
|
73
|
-
<li><a href="#method-c-new">::new</a>
|
73
|
+
<li class="calls-super" ><a href="#method-c-new">::new</a>
|
74
74
|
|
75
|
-
<li><a href="#method-i-to_s">#to_s</a>
|
75
|
+
<li class="calls-super" ><a href="#method-i-to_s">#to_s</a>
|
76
76
|
|
77
77
|
</ul>
|
78
|
-
</
|
78
|
+
</div>
|
79
79
|
|
80
80
|
</div>
|
81
|
-
|
82
|
-
<div id="project-metadata">
|
83
|
-
<nav id="fileindex-section" class="section project-section">
|
84
|
-
<h3 class="section-header">Pages</h3>
|
85
|
-
|
86
|
-
<ul>
|
87
|
-
|
88
|
-
<li class="file"><a href="../README_rdoc.html">README</a>
|
89
|
-
|
90
|
-
<li class="file"><a href="../TODO_rdoc.html">TODO</a>
|
91
|
-
|
92
|
-
</ul>
|
93
81
|
</nav>
|
94
82
|
|
95
|
-
|
96
|
-
<
|
83
|
+
<main role="main" aria-labelledby="class-MIDI::ActiveSense">
|
84
|
+
<h1 id="class-MIDI::ActiveSense" class="class">
|
85
|
+
class MIDI::ActiveSense
|
86
|
+
</h1>
|
97
87
|
|
98
|
-
<
|
99
|
-
|
100
|
-
<li><a href="../MIDI.html">MIDI</a>
|
101
|
-
|
102
|
-
<li><a href="../MIDI/ActiveSense.html">MIDI::ActiveSense</a>
|
103
|
-
|
104
|
-
<li><a href="../MIDI/ChannelEvent.html">MIDI::ChannelEvent</a>
|
105
|
-
|
106
|
-
<li><a href="../MIDI/ChannelPressure.html">MIDI::ChannelPressure</a>
|
107
|
-
|
108
|
-
<li><a href="../MIDI/Clock.html">MIDI::Clock</a>
|
109
|
-
|
110
|
-
<li><a href="../MIDI/Continue.html">MIDI::Continue</a>
|
111
|
-
|
112
|
-
<li><a href="../MIDI/Controller.html">MIDI::Controller</a>
|
113
|
-
|
114
|
-
<li><a href="../MIDI/Event.html">MIDI::Event</a>
|
115
|
-
|
116
|
-
<li><a href="../MIDI/IO.html">MIDI::IO</a>
|
117
|
-
|
118
|
-
<li><a href="../MIDI/IO/MIDIFile.html">MIDI::IO::MIDIFile</a>
|
119
|
-
|
120
|
-
<li><a href="../MIDI/IO/SeqReader.html">MIDI::IO::SeqReader</a>
|
121
|
-
|
122
|
-
<li><a href="../MIDI/IO/SeqWriter.html">MIDI::IO::SeqWriter</a>
|
123
|
-
|
124
|
-
<li><a href="../MIDI/KeySig.html">MIDI::KeySig</a>
|
125
|
-
|
126
|
-
<li><a href="../MIDI/MIDI.html">MIDI::MIDI</a>
|
127
|
-
|
128
|
-
<li><a href="../MIDI/MIDI/MIDI.html">MIDI::MIDI::MIDI</a>
|
129
|
-
|
130
|
-
<li><a href="../MIDI/MIDI/MIDI/Array.html">MIDI::MIDI::MIDI::Array</a>
|
131
|
-
|
132
|
-
<li><a href="../MIDI/Marker.html">MIDI::Marker</a>
|
133
|
-
|
134
|
-
<li><a href="../MIDI/Measure.html">MIDI::Measure</a>
|
135
|
-
|
136
|
-
<li><a href="../MIDI/Measures.html">MIDI::Measures</a>
|
137
|
-
|
138
|
-
<li><a href="../MIDI/MetaEvent.html">MIDI::MetaEvent</a>
|
139
|
-
|
140
|
-
<li><a href="../MIDI/NoteEvent.html">MIDI::NoteEvent</a>
|
141
|
-
|
142
|
-
<li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a>
|
143
|
-
|
144
|
-
<li><a href="../MIDI/NoteOff.html">MIDI::NoteOffEvent</a>
|
145
|
-
|
146
|
-
<li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a>
|
147
|
-
|
148
|
-
<li><a href="../MIDI/NoteOn.html">MIDI::NoteOnEvent</a>
|
149
|
-
|
150
|
-
<li><a href="../MIDI/PitchBend.html">MIDI::PitchBend</a>
|
151
|
-
|
152
|
-
<li><a href="../MIDI/PolyPressure.html">MIDI::PolyPressure</a>
|
153
|
-
|
154
|
-
<li><a href="../MIDI/ProgramChange.html">MIDI::ProgramChange</a>
|
155
|
-
|
156
|
-
<li><a href="../MIDI/Realtime.html">MIDI::Realtime</a>
|
157
|
-
|
158
|
-
<li><a href="../MIDI/Sequence.html">MIDI::Sequence</a>
|
159
|
-
|
160
|
-
<li><a href="../MIDI/SongPointer.html">MIDI::SongPointer</a>
|
161
|
-
|
162
|
-
<li><a href="../MIDI/SongSelect.html">MIDI::SongSelect</a>
|
163
|
-
|
164
|
-
<li><a href="../MIDI/Start.html">MIDI::Start</a>
|
165
|
-
|
166
|
-
<li><a href="../MIDI/Stop.html">MIDI::Stop</a>
|
167
|
-
|
168
|
-
<li><a href="../MIDI/SystemCommon.html">MIDI::SystemCommon</a>
|
169
|
-
|
170
|
-
<li><a href="../MIDI/SystemExclusive.html">MIDI::SystemExclusive</a>
|
171
|
-
|
172
|
-
<li><a href="../MIDI/SystemReset.html">MIDI::SystemReset</a>
|
173
|
-
|
174
|
-
<li><a href="../MIDI/Tempo.html">MIDI::Tempo</a>
|
175
|
-
|
176
|
-
<li><a href="../MIDI/TimeSig.html">MIDI::TimeSig</a>
|
177
|
-
|
178
|
-
<li><a href="../MIDI/Track.html">MIDI::Track</a>
|
179
|
-
|
180
|
-
<li><a href="../MIDI/TuneRequest.html">MIDI::TuneRequest</a>
|
181
|
-
|
182
|
-
<li><a href="../MIDI/Utils.html">MIDI::Utils</a>
|
183
|
-
|
184
|
-
<li><a href="../IO.html">IO</a>
|
185
|
-
|
186
|
-
</ul>
|
187
|
-
</nav>
|
188
|
-
|
189
|
-
</div>
|
190
|
-
</nav>
|
191
|
-
|
192
|
-
<div id="documentation">
|
193
|
-
<h1 class="class">class MIDI::ActiveSense</h1>
|
194
|
-
|
195
|
-
<div id="description" class="description">
|
88
|
+
<section class="description">
|
196
89
|
|
197
|
-
</
|
90
|
+
</section>
|
198
91
|
|
199
92
|
|
200
93
|
|
@@ -208,10 +101,11 @@
|
|
208
101
|
|
209
102
|
|
210
103
|
|
211
|
-
<!-- Methods -->
|
212
104
|
|
213
|
-
<section id="public-class-5Buntitled-5D-method-details" class="method-section
|
214
|
-
|
105
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section">
|
106
|
+
<header>
|
107
|
+
<h3>Public Class Methods</h3>
|
108
|
+
</header>
|
215
109
|
|
216
110
|
|
217
111
|
<div id="method-c-new" class="method-detail ">
|
@@ -219,7 +113,9 @@
|
|
219
113
|
<div class="method-heading">
|
220
114
|
<span class="method-name">new</span><span
|
221
115
|
class="method-args">(delta_time = 0)</span>
|
116
|
+
|
222
117
|
<span class="method-click-advice">click to toggle source</span>
|
118
|
+
|
223
119
|
</div>
|
224
120
|
|
225
121
|
|
@@ -227,27 +123,35 @@
|
|
227
123
|
|
228
124
|
|
229
125
|
|
126
|
+
|
127
|
+
<div class="method-calls-super">
|
128
|
+
Calls superclass method
|
129
|
+
<a href="Realtime.html#method-c-new">MIDI::Realtime.new</a>
|
130
|
+
</div>
|
131
|
+
|
230
132
|
|
231
133
|
|
232
134
|
<div class="method-source-code" id="new-source">
|
233
|
-
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line
|
135
|
+
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line 395</span>
|
234
136
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">delta_time</span> = <span class="ruby-value">0</span>)
|
235
|
-
|
137
|
+
<span class="ruby-keyword">super</span>(<span class="ruby-constant">ACTIVE_SENSE</span>, <span class="ruby-identifier">delta_time</span>)
|
236
138
|
<span class="ruby-keyword">end</span></pre>
|
237
|
-
</div
|
139
|
+
</div>
|
238
140
|
|
239
141
|
</div>
|
240
142
|
|
241
143
|
|
242
144
|
|
243
145
|
|
244
|
-
</div
|
146
|
+
</div>
|
245
147
|
|
246
148
|
|
247
|
-
</section
|
149
|
+
</section>
|
248
150
|
|
249
|
-
<section id="public-instance-5Buntitled-5D-method-details" class="method-section
|
250
|
-
|
151
|
+
<section id="public-instance-5Buntitled-5D-method-details" class="method-section">
|
152
|
+
<header>
|
153
|
+
<h3>Public Instance Methods</h3>
|
154
|
+
</header>
|
251
155
|
|
252
156
|
|
253
157
|
<div id="method-i-to_s" class="method-detail ">
|
@@ -255,7 +159,9 @@
|
|
255
159
|
<div class="method-heading">
|
256
160
|
<span class="method-name">to_s</span><span
|
257
161
|
class="method-args">()</span>
|
162
|
+
|
258
163
|
<span class="method-click-advice">click to toggle source</span>
|
164
|
+
|
259
165
|
</div>
|
260
166
|
|
261
167
|
|
@@ -263,33 +169,38 @@
|
|
263
169
|
|
264
170
|
|
265
171
|
|
172
|
+
|
173
|
+
<div class="method-calls-super">
|
174
|
+
Calls superclass method
|
175
|
+
<a href="Realtime.html#method-i-to_s">MIDI::Realtime#to_s</a>
|
176
|
+
</div>
|
177
|
+
|
266
178
|
|
267
179
|
|
268
180
|
<div class="method-source-code" id="to_s-source">
|
269
|
-
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line
|
181
|
+
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line 398</span>
|
270
182
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier">to_s</span>
|
271
|
-
|
183
|
+
<span class="ruby-keyword">return</span> <span class="ruby-keyword">super</span> <span class="ruby-operator"><<</span> <span class="ruby-string">"act sens"</span>
|
272
184
|
<span class="ruby-keyword">end</span></pre>
|
273
|
-
</div
|
185
|
+
</div>
|
274
186
|
|
275
187
|
</div>
|
276
188
|
|
277
189
|
|
278
190
|
|
279
191
|
|
280
|
-
</div
|
192
|
+
</div>
|
281
193
|
|
282
194
|
|
283
|
-
</section
|
195
|
+
</section>
|
284
196
|
|
285
|
-
</section
|
286
|
-
|
287
|
-
</div><!-- documentation -->
|
197
|
+
</section>
|
198
|
+
</main>
|
288
199
|
|
289
200
|
|
290
|
-
<footer id="validator-badges">
|
291
|
-
<p><a href="http://validator.w3.org/check/referer">
|
292
|
-
<p>Generated by <a href="
|
293
|
-
<p>
|
201
|
+
<footer id="validator-badges" role="contentinfo">
|
202
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
203
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
204
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
294
205
|
</footer>
|
295
206
|
|
data/html/MIDI/ChannelEvent.html
CHANGED
@@ -2,202 +2,95 @@
|
|
2
2
|
|
3
3
|
<html>
|
4
4
|
<head>
|
5
|
-
<meta
|
5
|
+
<meta charset="UTF-8">
|
6
6
|
|
7
7
|
<title>class MIDI::ChannelEvent - midilib</title>
|
8
8
|
|
9
|
-
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
|
10
|
-
|
11
9
|
<script type="text/javascript">
|
12
10
|
var rdoc_rel_prefix = "../";
|
13
11
|
</script>
|
14
12
|
|
15
|
-
<script
|
16
|
-
<script
|
17
|
-
|
18
|
-
<
|
19
|
-
<
|
20
|
-
|
13
|
+
<script src="../js/jquery.js"></script>
|
14
|
+
<script src="../js/darkfish.js"></script>
|
15
|
+
|
16
|
+
<link href="../css/fonts.css" rel="stylesheet">
|
17
|
+
<link href="../css/rdoc.css" rel="stylesheet">
|
18
|
+
|
21
19
|
|
22
20
|
|
23
|
-
<body id="top" class="class">
|
24
|
-
<nav
|
25
|
-
<
|
26
|
-
|
27
|
-
|
21
|
+
<body id="top" role="document" class="class">
|
22
|
+
<nav role="navigation">
|
23
|
+
<div id="project-navigation">
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
25
|
+
<h2>
|
26
|
+
<a href="../index.html" rel="home">Home</a>
|
27
|
+
</h2>
|
28
|
+
|
29
|
+
<div id="table-of-contents-navigation">
|
30
|
+
<a href="../table_of_contents.html#pages">Pages</a>
|
28
31
|
<a href="../table_of_contents.html#classes">Classes</a>
|
29
32
|
<a href="../table_of_contents.html#methods">Methods</a>
|
30
|
-
</
|
31
|
-
</
|
32
|
-
|
33
|
+
</div>
|
34
|
+
</div>
|
33
35
|
|
34
|
-
|
36
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
35
37
|
<form action="#" method="get" accept-charset="utf-8">
|
36
|
-
<
|
37
|
-
<input
|
38
|
+
<div id="search-field-wrapper">
|
39
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
40
|
+
aria-autocomplete="list" aria-controls="search-results"
|
41
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
38
42
|
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
-
</
|
40
|
-
</form>
|
41
|
-
|
42
|
-
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
-
</nav>
|
44
|
-
|
43
|
+
</div>
|
45
44
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
</ul>
|
52
|
-
</nav>
|
45
|
+
<ul id="search-results" aria-label="Search Results"
|
46
|
+
aria-busy="false" aria-expanded="false"
|
47
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
48
|
+
</form>
|
49
|
+
</div>
|
53
50
|
|
54
|
-
|
55
51
|
</div>
|
56
52
|
|
53
|
+
|
54
|
+
|
57
55
|
<div id="class-metadata">
|
58
56
|
|
59
|
-
<
|
60
|
-
<h3
|
57
|
+
<div id="parent-class-section" class="nav-section">
|
58
|
+
<h3>Parent</h3>
|
59
|
+
|
61
60
|
|
62
61
|
<p class="link"><a href="Event.html">MIDI::Event</a>
|
63
62
|
|
64
|
-
</
|
63
|
+
</div>
|
65
64
|
|
66
65
|
|
66
|
+
|
67
67
|
<!-- Method Quickref -->
|
68
|
-
<
|
69
|
-
<h3
|
68
|
+
<div id="method-list-section" class="nav-section">
|
69
|
+
<h3>Methods</h3>
|
70
70
|
|
71
|
-
<ul class="link-list">
|
71
|
+
<ul class="link-list" role="directory">
|
72
72
|
|
73
|
-
<li><a href="#method-c-new">::new</a>
|
73
|
+
<li class="calls-super" ><a href="#method-c-new">::new</a>
|
74
74
|
|
75
|
-
<li><a href="#method-i-to_s">#to_s</a>
|
75
|
+
<li class="calls-super" ><a href="#method-i-to_s">#to_s</a>
|
76
76
|
|
77
77
|
</ul>
|
78
|
-
</
|
78
|
+
</div>
|
79
79
|
|
80
80
|
</div>
|
81
|
-
|
82
|
-
<div id="project-metadata">
|
83
|
-
<nav id="fileindex-section" class="section project-section">
|
84
|
-
<h3 class="section-header">Pages</h3>
|
85
|
-
|
86
|
-
<ul>
|
87
|
-
|
88
|
-
<li class="file"><a href="../README_rdoc.html">README</a>
|
89
|
-
|
90
|
-
<li class="file"><a href="../TODO_rdoc.html">TODO</a>
|
91
|
-
|
92
|
-
</ul>
|
93
81
|
</nav>
|
94
82
|
|
95
|
-
|
96
|
-
<
|
83
|
+
<main role="main" aria-labelledby="class-MIDI::ChannelEvent">
|
84
|
+
<h1 id="class-MIDI::ChannelEvent" class="class">
|
85
|
+
class MIDI::ChannelEvent
|
86
|
+
</h1>
|
97
87
|
|
98
|
-
<
|
99
|
-
|
100
|
-
<li><a href="../MIDI.html">MIDI</a>
|
101
|
-
|
102
|
-
<li><a href="../MIDI/ActiveSense.html">MIDI::ActiveSense</a>
|
103
|
-
|
104
|
-
<li><a href="../MIDI/ChannelEvent.html">MIDI::ChannelEvent</a>
|
105
|
-
|
106
|
-
<li><a href="../MIDI/ChannelPressure.html">MIDI::ChannelPressure</a>
|
107
|
-
|
108
|
-
<li><a href="../MIDI/Clock.html">MIDI::Clock</a>
|
109
|
-
|
110
|
-
<li><a href="../MIDI/Continue.html">MIDI::Continue</a>
|
111
|
-
|
112
|
-
<li><a href="../MIDI/Controller.html">MIDI::Controller</a>
|
113
|
-
|
114
|
-
<li><a href="../MIDI/Event.html">MIDI::Event</a>
|
115
|
-
|
116
|
-
<li><a href="../MIDI/IO.html">MIDI::IO</a>
|
117
|
-
|
118
|
-
<li><a href="../MIDI/IO/MIDIFile.html">MIDI::IO::MIDIFile</a>
|
119
|
-
|
120
|
-
<li><a href="../MIDI/IO/SeqReader.html">MIDI::IO::SeqReader</a>
|
121
|
-
|
122
|
-
<li><a href="../MIDI/IO/SeqWriter.html">MIDI::IO::SeqWriter</a>
|
123
|
-
|
124
|
-
<li><a href="../MIDI/KeySig.html">MIDI::KeySig</a>
|
125
|
-
|
126
|
-
<li><a href="../MIDI/MIDI.html">MIDI::MIDI</a>
|
127
|
-
|
128
|
-
<li><a href="../MIDI/MIDI/MIDI.html">MIDI::MIDI::MIDI</a>
|
129
|
-
|
130
|
-
<li><a href="../MIDI/MIDI/MIDI/Array.html">MIDI::MIDI::MIDI::Array</a>
|
131
|
-
|
132
|
-
<li><a href="../MIDI/Marker.html">MIDI::Marker</a>
|
133
|
-
|
134
|
-
<li><a href="../MIDI/Measure.html">MIDI::Measure</a>
|
135
|
-
|
136
|
-
<li><a href="../MIDI/Measures.html">MIDI::Measures</a>
|
137
|
-
|
138
|
-
<li><a href="../MIDI/MetaEvent.html">MIDI::MetaEvent</a>
|
139
|
-
|
140
|
-
<li><a href="../MIDI/NoteEvent.html">MIDI::NoteEvent</a>
|
141
|
-
|
142
|
-
<li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a>
|
143
|
-
|
144
|
-
<li><a href="../MIDI/NoteOff.html">MIDI::NoteOffEvent</a>
|
145
|
-
|
146
|
-
<li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a>
|
147
|
-
|
148
|
-
<li><a href="../MIDI/NoteOn.html">MIDI::NoteOnEvent</a>
|
149
|
-
|
150
|
-
<li><a href="../MIDI/PitchBend.html">MIDI::PitchBend</a>
|
151
|
-
|
152
|
-
<li><a href="../MIDI/PolyPressure.html">MIDI::PolyPressure</a>
|
153
|
-
|
154
|
-
<li><a href="../MIDI/ProgramChange.html">MIDI::ProgramChange</a>
|
155
|
-
|
156
|
-
<li><a href="../MIDI/Realtime.html">MIDI::Realtime</a>
|
157
|
-
|
158
|
-
<li><a href="../MIDI/Sequence.html">MIDI::Sequence</a>
|
159
|
-
|
160
|
-
<li><a href="../MIDI/SongPointer.html">MIDI::SongPointer</a>
|
161
|
-
|
162
|
-
<li><a href="../MIDI/SongSelect.html">MIDI::SongSelect</a>
|
163
|
-
|
164
|
-
<li><a href="../MIDI/Start.html">MIDI::Start</a>
|
165
|
-
|
166
|
-
<li><a href="../MIDI/Stop.html">MIDI::Stop</a>
|
167
|
-
|
168
|
-
<li><a href="../MIDI/SystemCommon.html">MIDI::SystemCommon</a>
|
169
|
-
|
170
|
-
<li><a href="../MIDI/SystemExclusive.html">MIDI::SystemExclusive</a>
|
171
|
-
|
172
|
-
<li><a href="../MIDI/SystemReset.html">MIDI::SystemReset</a>
|
173
|
-
|
174
|
-
<li><a href="../MIDI/Tempo.html">MIDI::Tempo</a>
|
175
|
-
|
176
|
-
<li><a href="../MIDI/TimeSig.html">MIDI::TimeSig</a>
|
177
|
-
|
178
|
-
<li><a href="../MIDI/Track.html">MIDI::Track</a>
|
179
|
-
|
180
|
-
<li><a href="../MIDI/TuneRequest.html">MIDI::TuneRequest</a>
|
181
|
-
|
182
|
-
<li><a href="../MIDI/Utils.html">MIDI::Utils</a>
|
183
|
-
|
184
|
-
<li><a href="../IO.html">IO</a>
|
185
|
-
|
186
|
-
</ul>
|
187
|
-
</nav>
|
188
|
-
|
189
|
-
</div>
|
190
|
-
</nav>
|
191
|
-
|
192
|
-
<div id="documentation">
|
193
|
-
<h1 class="class">class MIDI::ChannelEvent</h1>
|
194
|
-
|
195
|
-
<div id="description" class="description">
|
88
|
+
<section class="description">
|
196
89
|
|
197
90
|
<p>The abstract superclass of all channel events (events that have a <a
|
198
91
|
href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
199
92
|
|
200
|
-
</
|
93
|
+
</section>
|
201
94
|
|
202
95
|
|
203
96
|
|
@@ -210,9 +103,10 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
210
103
|
|
211
104
|
|
212
105
|
|
213
|
-
|
214
|
-
|
215
|
-
|
106
|
+
<section class="attribute-method-details" class="method-section">
|
107
|
+
<header>
|
108
|
+
<h3>Attributes</h3>
|
109
|
+
</header>
|
216
110
|
|
217
111
|
|
218
112
|
<div id="attribute-i-channel" class="method-detail">
|
@@ -228,13 +122,14 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
228
122
|
</div>
|
229
123
|
</div>
|
230
124
|
|
231
|
-
</section
|
125
|
+
</section>
|
232
126
|
|
233
127
|
|
234
|
-
<!-- Methods -->
|
235
128
|
|
236
|
-
<section id="public-class-5Buntitled-5D-method-details" class="method-section
|
237
|
-
|
129
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section">
|
130
|
+
<header>
|
131
|
+
<h3>Public Class Methods</h3>
|
132
|
+
</header>
|
238
133
|
|
239
134
|
|
240
135
|
<div id="method-c-new" class="method-detail ">
|
@@ -242,7 +137,9 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
242
137
|
<div class="method-heading">
|
243
138
|
<span class="method-name">new</span><span
|
244
139
|
class="method-args">(status, channel, delta_time)</span>
|
140
|
+
|
245
141
|
<span class="method-click-advice">click to toggle source</span>
|
142
|
+
|
246
143
|
</div>
|
247
144
|
|
248
145
|
|
@@ -250,28 +147,36 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
250
147
|
|
251
148
|
|
252
149
|
|
150
|
+
|
151
|
+
<div class="method-calls-super">
|
152
|
+
Calls superclass method
|
153
|
+
<a href="Event.html#method-c-new">MIDI::Event.new</a>
|
154
|
+
</div>
|
155
|
+
|
253
156
|
|
254
157
|
|
255
158
|
<div class="method-source-code" id="new-source">
|
256
|
-
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line
|
159
|
+
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line 88</span>
|
257
160
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">status</span>, <span class="ruby-identifier">channel</span>, <span class="ruby-identifier">delta_time</span>)
|
258
|
-
|
259
|
-
|
161
|
+
<span class="ruby-keyword">super</span>(<span class="ruby-identifier">status</span>, <span class="ruby-identifier">delta_time</span>)
|
162
|
+
<span class="ruby-ivar">@channel</span> = <span class="ruby-identifier">channel</span>
|
260
163
|
<span class="ruby-keyword">end</span></pre>
|
261
|
-
</div
|
164
|
+
</div>
|
262
165
|
|
263
166
|
</div>
|
264
167
|
|
265
168
|
|
266
169
|
|
267
170
|
|
268
|
-
</div
|
171
|
+
</div>
|
269
172
|
|
270
173
|
|
271
|
-
</section
|
174
|
+
</section>
|
272
175
|
|
273
|
-
<section id="public-instance-5Buntitled-5D-method-details" class="method-section
|
274
|
-
|
176
|
+
<section id="public-instance-5Buntitled-5D-method-details" class="method-section">
|
177
|
+
<header>
|
178
|
+
<h3>Public Instance Methods</h3>
|
179
|
+
</header>
|
275
180
|
|
276
181
|
|
277
182
|
<div id="method-i-to_s" class="method-detail ">
|
@@ -279,7 +184,9 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
279
184
|
<div class="method-heading">
|
280
185
|
<span class="method-name">to_s</span><span
|
281
186
|
class="method-args">()</span>
|
187
|
+
|
282
188
|
<span class="method-click-advice">click to toggle source</span>
|
189
|
+
|
283
190
|
</div>
|
284
191
|
|
285
192
|
|
@@ -287,33 +194,38 @@ href="MIDI.html">MIDI</a> channel, like notes and program changes).</p>
|
|
287
194
|
|
288
195
|
|
289
196
|
|
197
|
+
|
198
|
+
<div class="method-calls-super">
|
199
|
+
Calls superclass method
|
200
|
+
<a href="Event.html#method-i-to_s">MIDI::Event#to_s</a>
|
201
|
+
</div>
|
202
|
+
|
290
203
|
|
291
204
|
|
292
205
|
<div class="method-source-code" id="to_s-source">
|
293
|
-
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line
|
206
|
+
<pre><span class="ruby-comment"># File lib/midilib/event.rb, line 94</span>
|
294
207
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier">to_s</span>
|
295
|
-
|
208
|
+
<span class="ruby-keyword">return</span> <span class="ruby-keyword">super</span> <span class="ruby-operator"><<</span> <span class="ruby-node">"ch #{channel_to_s(@channel)} "</span>
|
296
209
|
<span class="ruby-keyword">end</span></pre>
|
297
|
-
</div
|
210
|
+
</div>
|
298
211
|
|
299
212
|
</div>
|
300
213
|
|
301
214
|
|
302
215
|
|
303
216
|
|
304
|
-
</div
|
217
|
+
</div>
|
305
218
|
|
306
219
|
|
307
|
-
</section
|
220
|
+
</section>
|
308
221
|
|
309
|
-
</section
|
310
|
-
|
311
|
-
</div><!-- documentation -->
|
222
|
+
</section>
|
223
|
+
</main>
|
312
224
|
|
313
225
|
|
314
|
-
<footer id="validator-badges">
|
315
|
-
<p><a href="http://validator.w3.org/check/referer">
|
316
|
-
<p>Generated by <a href="
|
317
|
-
<p>
|
226
|
+
<footer id="validator-badges" role="contentinfo">
|
227
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
228
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
229
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
318
230
|
</footer>
|
319
231
|
|