midilib 1.2.1 → 2.0.0

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.
Files changed (100) hide show
  1. data/ChangeLog +3 -1
  2. data/Credits +6 -1
  3. data/README.rdoc +41 -15
  4. data/Rakefile +3 -11
  5. data/TODO.rdoc +4 -7
  6. data/examples/from_scratch.rb +2 -2
  7. data/examples/measures_mbt.rb +1 -1
  8. data/examples/print_program_changes.rb +1 -1
  9. data/examples/strings.rb +1 -1
  10. data/examples/transpose.rb +1 -1
  11. data/html/Array.html +382 -0
  12. data/html/IO.html +277 -0
  13. data/html/MIDI.html +829 -0
  14. data/html/MIDI/ActiveSense.html +317 -0
  15. data/html/MIDI/ChannelEvent.html +347 -0
  16. data/html/MIDI/ChannelPressure.html +379 -0
  17. data/html/MIDI/Clock.html +317 -0
  18. data/html/MIDI/Continue.html +317 -0
  19. data/html/MIDI/Controller.html +398 -0
  20. data/html/MIDI/Event.html +659 -0
  21. data/html/MIDI/IO.html +238 -0
  22. data/html/MIDI/IO/MIDIFile.html +2269 -0
  23. data/html/MIDI/IO/SeqReader.html +1051 -0
  24. data/html/MIDI/IO/SeqWriter.html +706 -0
  25. data/html/MIDI/KeySig.html +487 -0
  26. data/html/MIDI/Marker.html +275 -0
  27. data/html/MIDI/Measure.html +479 -0
  28. data/html/MIDI/Measures.html +416 -0
  29. data/html/MIDI/MetaEvent.html +617 -0
  30. data/html/MIDI/NoteEvent.html +459 -0
  31. data/html/MIDI/NoteOff.html +341 -0
  32. data/html/MIDI/NoteOn.html +341 -0
  33. data/html/MIDI/PitchBend.html +380 -0
  34. data/html/MIDI/PolyPressure.html +390 -0
  35. data/html/MIDI/ProgramChange.html +379 -0
  36. data/html/MIDI/Realtime.html +354 -0
  37. data/html/MIDI/Sequence.html +1063 -0
  38. data/html/MIDI/SongPointer.html +380 -0
  39. data/html/MIDI/SongSelect.html +379 -0
  40. data/html/MIDI/Start.html +317 -0
  41. data/html/MIDI/Stop.html +317 -0
  42. data/html/MIDI/SystemCommon.html +275 -0
  43. data/html/MIDI/SystemExclusive.html +382 -0
  44. data/html/MIDI/SystemReset.html +317 -0
  45. data/html/MIDI/Tempo.html +519 -0
  46. data/html/MIDI/TimeSig.html +524 -0
  47. data/html/MIDI/Track.html +859 -0
  48. data/html/MIDI/TuneRequest.html +354 -0
  49. data/html/MIDI/Utils.html +350 -0
  50. data/html/README_rdoc.html +882 -0
  51. data/html/TODO_rdoc.html +215 -0
  52. data/html/created.rid +14 -0
  53. data/html/images/brick.png +0 -0
  54. data/html/images/brick_link.png +0 -0
  55. data/html/images/bug.png +0 -0
  56. data/html/images/bullet_black.png +0 -0
  57. data/html/images/bullet_toggle_minus.png +0 -0
  58. data/html/images/bullet_toggle_plus.png +0 -0
  59. data/html/images/date.png +0 -0
  60. data/html/images/find.png +0 -0
  61. data/html/images/loadingAnimation.gif +0 -0
  62. data/html/images/macFFBgHack.png +0 -0
  63. data/html/images/package.png +0 -0
  64. data/html/images/page_green.png +0 -0
  65. data/html/images/page_white_text.png +0 -0
  66. data/html/images/page_white_width.png +0 -0
  67. data/html/images/plugin.png +0 -0
  68. data/html/images/ruby.png +0 -0
  69. data/html/images/tag_green.png +0 -0
  70. data/html/images/wrench.png +0 -0
  71. data/html/images/wrench_orange.png +0 -0
  72. data/html/images/zoom.png +0 -0
  73. data/html/index.html +1266 -0
  74. data/html/js/darkfish.js +116 -0
  75. data/html/js/jquery.js +32 -0
  76. data/html/js/quicksearch.js +114 -0
  77. data/html/js/thickbox-compressed.js +10 -0
  78. data/html/lib/midilib/consts_rb.html +55 -0
  79. data/html/lib/midilib/event_rb.html +56 -0
  80. data/html/lib/midilib/info_rb.html +52 -0
  81. data/html/lib/midilib/io/midifile_rb.html +54 -0
  82. data/html/lib/midilib/io/seqreader_rb.html +58 -0
  83. data/html/lib/midilib/io/seqwriter_rb.html +59 -0
  84. data/html/lib/midilib/measure_rb.html +54 -0
  85. data/html/lib/midilib/sequence_rb.html +58 -0
  86. data/html/lib/midilib/track_rb.html +54 -0
  87. data/html/lib/midilib/utils_rb.html +52 -0
  88. data/html/lib/midilib_rb.html +71 -0
  89. data/html/rdoc.css +706 -0
  90. data/install.rb +1 -1
  91. data/lib/midilib/event.rb +11 -77
  92. data/lib/midilib/info.rb +4 -4
  93. data/lib/midilib/io/seqreader.rb +2 -2
  94. data/lib/midilib/io/seqwriter.rb +1 -1
  95. data/lib/midilib/sequence.rb +1 -1
  96. data/lib/midilib/track.rb +54 -8
  97. data/test/test_event.rb +4 -62
  98. data/test/test_sequence.rb +1 -1
  99. data/test/test_track.rb +39 -5
  100. metadata +102 -9
@@ -0,0 +1,275 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: MIDI::Marker</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="../js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="../js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="class">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="../index.html">Home</a>
29
+ <a href="../index.html#classes">Classes</a>
30
+ <a href="../index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="../lib/midilib/event_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/midilib/event.rb">lib/midilib/event.rb</a></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ </div>
50
+
51
+ <div id="class-metadata">
52
+
53
+ <!-- Parent Class -->
54
+
55
+ <div id="parent-class-section" class="section">
56
+ <h3 class="section-header">Parent</h3>
57
+
58
+ <p class="link"><a href="MetaEvent.html">MIDI::MetaEvent</a></p>
59
+
60
+ </div>
61
+
62
+
63
+ <!-- Namespace Contents -->
64
+
65
+
66
+ <!-- Method Quickref -->
67
+
68
+ <div id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+ <ul class="link-list">
71
+
72
+ <li><a href="#method-c-new">::new</a></li>
73
+
74
+ </ul>
75
+ </div>
76
+
77
+
78
+ <!-- Included Modules -->
79
+
80
+ </div>
81
+
82
+ <div id="project-metadata">
83
+
84
+
85
+ <div id="fileindex-section" class="section project-section">
86
+ <h3 class="section-header">Files</h3>
87
+ <ul>
88
+
89
+ <li class="file"><a href="../README_rdoc.html">README.rdoc</a></li>
90
+
91
+ <li class="file"><a href="../TODO_rdoc.html">TODO.rdoc</a></li>
92
+
93
+ </ul>
94
+ </div>
95
+
96
+
97
+ <div id="classindex-section" class="section project-section">
98
+ <h3 class="section-header">Class Index
99
+ <span class="search-toggle"><img src="../images/find.png"
100
+ height="16" width="16" alt="[+]"
101
+ title="show/hide quicksearch" /></span></h3>
102
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
103
+ <fieldset>
104
+ <legend>Quicksearch</legend>
105
+ <input type="text" name="quicksearch" value=""
106
+ class="quicksearch-field" />
107
+ </fieldset>
108
+ </form>
109
+
110
+ <ul class="link-list">
111
+
112
+ <li><a href="../MIDI.html">MIDI</a></li>
113
+
114
+ <li><a href="../MIDI/ActiveSense.html">MIDI::ActiveSense</a></li>
115
+
116
+ <li><a href="../MIDI/ChannelEvent.html">MIDI::ChannelEvent</a></li>
117
+
118
+ <li><a href="../MIDI/ChannelPressure.html">MIDI::ChannelPressure</a></li>
119
+
120
+ <li><a href="../MIDI/Clock.html">MIDI::Clock</a></li>
121
+
122
+ <li><a href="../MIDI/Continue.html">MIDI::Continue</a></li>
123
+
124
+ <li><a href="../MIDI/Controller.html">MIDI::Controller</a></li>
125
+
126
+ <li><a href="../MIDI/Event.html">MIDI::Event</a></li>
127
+
128
+ <li><a href="../MIDI/IO.html">MIDI::IO</a></li>
129
+
130
+ <li><a href="../MIDI/IO/MIDIFile.html">MIDI::IO::MIDIFile</a></li>
131
+
132
+ <li><a href="../MIDI/IO/SeqReader.html">MIDI::IO::SeqReader</a></li>
133
+
134
+ <li><a href="../MIDI/IO/SeqWriter.html">MIDI::IO::SeqWriter</a></li>
135
+
136
+ <li><a href="../MIDI/KeySig.html">MIDI::KeySig</a></li>
137
+
138
+ <li><a href="../MIDI/Marker.html">MIDI::Marker</a></li>
139
+
140
+ <li><a href="../MIDI/Measure.html">MIDI::Measure</a></li>
141
+
142
+ <li><a href="../MIDI/Measures.html">MIDI::Measures</a></li>
143
+
144
+ <li><a href="../MIDI/MetaEvent.html">MIDI::MetaEvent</a></li>
145
+
146
+ <li><a href="../MIDI/NoteEvent.html">MIDI::NoteEvent</a></li>
147
+
148
+ <li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a></li>
149
+
150
+ <li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a></li>
151
+
152
+ <li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a></li>
153
+
154
+ <li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a></li>
155
+
156
+ <li><a href="../MIDI/PitchBend.html">MIDI::PitchBend</a></li>
157
+
158
+ <li><a href="../MIDI/PolyPressure.html">MIDI::PolyPressure</a></li>
159
+
160
+ <li><a href="../MIDI/ProgramChange.html">MIDI::ProgramChange</a></li>
161
+
162
+ <li><a href="../MIDI/Realtime.html">MIDI::Realtime</a></li>
163
+
164
+ <li><a href="../MIDI/Sequence.html">MIDI::Sequence</a></li>
165
+
166
+ <li><a href="../MIDI/SongPointer.html">MIDI::SongPointer</a></li>
167
+
168
+ <li><a href="../MIDI/SongSelect.html">MIDI::SongSelect</a></li>
169
+
170
+ <li><a href="../MIDI/Start.html">MIDI::Start</a></li>
171
+
172
+ <li><a href="../MIDI/Stop.html">MIDI::Stop</a></li>
173
+
174
+ <li><a href="../MIDI/SystemCommon.html">MIDI::SystemCommon</a></li>
175
+
176
+ <li><a href="../MIDI/SystemExclusive.html">MIDI::SystemExclusive</a></li>
177
+
178
+ <li><a href="../MIDI/SystemReset.html">MIDI::SystemReset</a></li>
179
+
180
+ <li><a href="../MIDI/Tempo.html">MIDI::Tempo</a></li>
181
+
182
+ <li><a href="../MIDI/TimeSig.html">MIDI::TimeSig</a></li>
183
+
184
+ <li><a href="../MIDI/Track.html">MIDI::Track</a></li>
185
+
186
+ <li><a href="../MIDI/TuneRequest.html">MIDI::TuneRequest</a></li>
187
+
188
+ <li><a href="../MIDI/Utils.html">MIDI::Utils</a></li>
189
+
190
+ <li><a href="../Array.html">Array</a></li>
191
+
192
+ <li><a href="../IO.html">IO</a></li>
193
+
194
+ </ul>
195
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
196
+ </div>
197
+
198
+
199
+ </div>
200
+ </div>
201
+
202
+ <div id="documentation">
203
+ <h1 class="class">MIDI::Marker</h1>
204
+
205
+ <div id="description">
206
+
207
+ </div>
208
+
209
+ <!-- Constants -->
210
+
211
+
212
+ <!-- Attributes -->
213
+
214
+
215
+ <!-- Methods -->
216
+
217
+ <div id="public-class-method-details" class="method-section section">
218
+ <h3 class="section-header">Public Class Methods</h3>
219
+
220
+
221
+ <div id="new-method" class="method-detail ">
222
+ <a name="method-c-new"></a>
223
+
224
+ <div class="method-heading">
225
+
226
+ <span class="method-name">new</span><span
227
+ class="method-args">(msg, delta_time = 0)</span>
228
+ <span class="method-click-advice">click to toggle source</span>
229
+
230
+ </div>
231
+
232
+ <div class="method-description">
233
+
234
+
235
+
236
+
237
+
238
+ <div class="method-source-code"
239
+ id="new-source">
240
+ <pre>
241
+ <span class="ruby-comment cmt"># File lib/midilib/event.rb, line 498</span>
242
+ 498: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">msg</span>, <span class="ruby-identifier">delta_time</span> = <span class="ruby-value">0</span>)
243
+ 499: <span class="ruby-keyword kw">super</span>(<span class="ruby-constant">META_MARKER</span>, <span class="ruby-identifier">msg</span>, <span class="ruby-identifier">delta_time</span>)
244
+ 500: <span class="ruby-keyword kw">end</span></pre>
245
+ </div>
246
+
247
+ </div>
248
+
249
+
250
+
251
+
252
+ </div>
253
+
254
+
255
+ </div>
256
+
257
+
258
+ </div>
259
+
260
+
261
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
262
+
263
+ <p>Disabled; run with --debug to generate this.</p>
264
+
265
+ </div>
266
+
267
+ <div id="validator-badges">
268
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
269
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
270
+ Rdoc Generator</a> 1.1.6</small>.</p>
271
+ </div>
272
+
273
+ </body>
274
+ </html>
275
+
@@ -0,0 +1,479 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: MIDI::Measure</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="../js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="../js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="class">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="../index.html">Home</a>
29
+ <a href="../index.html#classes">Classes</a>
30
+ <a href="../index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="../lib/midilib/measure_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/midilib/measure.rb">lib/midilib/measure.rb</a></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ </div>
50
+
51
+ <div id="class-metadata">
52
+
53
+ <!-- Parent Class -->
54
+
55
+ <div id="parent-class-section" class="section">
56
+ <h3 class="section-header">Parent</h3>
57
+
58
+ <p class="link">Object</p>
59
+
60
+ </div>
61
+
62
+
63
+ <!-- Namespace Contents -->
64
+
65
+
66
+ <!-- Method Quickref -->
67
+
68
+ <div id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+ <ul class="link-list">
71
+
72
+ <li><a href="#method-c-new">::new</a></li>
73
+
74
+ <li><a href="#method-i-contains_event%3F">#contains_event?</a></li>
75
+
76
+ <li><a href="#method-i-to_s">#to_s</a></li>
77
+
78
+ </ul>
79
+ </div>
80
+
81
+
82
+ <!-- Included Modules -->
83
+
84
+ </div>
85
+
86
+ <div id="project-metadata">
87
+
88
+
89
+ <div id="fileindex-section" class="section project-section">
90
+ <h3 class="section-header">Files</h3>
91
+ <ul>
92
+
93
+ <li class="file"><a href="../README_rdoc.html">README.rdoc</a></li>
94
+
95
+ <li class="file"><a href="../TODO_rdoc.html">TODO.rdoc</a></li>
96
+
97
+ </ul>
98
+ </div>
99
+
100
+
101
+ <div id="classindex-section" class="section project-section">
102
+ <h3 class="section-header">Class Index
103
+ <span class="search-toggle"><img src="../images/find.png"
104
+ height="16" width="16" alt="[+]"
105
+ title="show/hide quicksearch" /></span></h3>
106
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
107
+ <fieldset>
108
+ <legend>Quicksearch</legend>
109
+ <input type="text" name="quicksearch" value=""
110
+ class="quicksearch-field" />
111
+ </fieldset>
112
+ </form>
113
+
114
+ <ul class="link-list">
115
+
116
+ <li><a href="../MIDI.html">MIDI</a></li>
117
+
118
+ <li><a href="../MIDI/ActiveSense.html">MIDI::ActiveSense</a></li>
119
+
120
+ <li><a href="../MIDI/ChannelEvent.html">MIDI::ChannelEvent</a></li>
121
+
122
+ <li><a href="../MIDI/ChannelPressure.html">MIDI::ChannelPressure</a></li>
123
+
124
+ <li><a href="../MIDI/Clock.html">MIDI::Clock</a></li>
125
+
126
+ <li><a href="../MIDI/Continue.html">MIDI::Continue</a></li>
127
+
128
+ <li><a href="../MIDI/Controller.html">MIDI::Controller</a></li>
129
+
130
+ <li><a href="../MIDI/Event.html">MIDI::Event</a></li>
131
+
132
+ <li><a href="../MIDI/IO.html">MIDI::IO</a></li>
133
+
134
+ <li><a href="../MIDI/IO/MIDIFile.html">MIDI::IO::MIDIFile</a></li>
135
+
136
+ <li><a href="../MIDI/IO/SeqReader.html">MIDI::IO::SeqReader</a></li>
137
+
138
+ <li><a href="../MIDI/IO/SeqWriter.html">MIDI::IO::SeqWriter</a></li>
139
+
140
+ <li><a href="../MIDI/KeySig.html">MIDI::KeySig</a></li>
141
+
142
+ <li><a href="../MIDI/Marker.html">MIDI::Marker</a></li>
143
+
144
+ <li><a href="../MIDI/Measure.html">MIDI::Measure</a></li>
145
+
146
+ <li><a href="../MIDI/Measures.html">MIDI::Measures</a></li>
147
+
148
+ <li><a href="../MIDI/MetaEvent.html">MIDI::MetaEvent</a></li>
149
+
150
+ <li><a href="../MIDI/NoteEvent.html">MIDI::NoteEvent</a></li>
151
+
152
+ <li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a></li>
153
+
154
+ <li><a href="../MIDI/NoteOff.html">MIDI::NoteOff</a></li>
155
+
156
+ <li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a></li>
157
+
158
+ <li><a href="../MIDI/NoteOn.html">MIDI::NoteOn</a></li>
159
+
160
+ <li><a href="../MIDI/PitchBend.html">MIDI::PitchBend</a></li>
161
+
162
+ <li><a href="../MIDI/PolyPressure.html">MIDI::PolyPressure</a></li>
163
+
164
+ <li><a href="../MIDI/ProgramChange.html">MIDI::ProgramChange</a></li>
165
+
166
+ <li><a href="../MIDI/Realtime.html">MIDI::Realtime</a></li>
167
+
168
+ <li><a href="../MIDI/Sequence.html">MIDI::Sequence</a></li>
169
+
170
+ <li><a href="../MIDI/SongPointer.html">MIDI::SongPointer</a></li>
171
+
172
+ <li><a href="../MIDI/SongSelect.html">MIDI::SongSelect</a></li>
173
+
174
+ <li><a href="../MIDI/Start.html">MIDI::Start</a></li>
175
+
176
+ <li><a href="../MIDI/Stop.html">MIDI::Stop</a></li>
177
+
178
+ <li><a href="../MIDI/SystemCommon.html">MIDI::SystemCommon</a></li>
179
+
180
+ <li><a href="../MIDI/SystemExclusive.html">MIDI::SystemExclusive</a></li>
181
+
182
+ <li><a href="../MIDI/SystemReset.html">MIDI::SystemReset</a></li>
183
+
184
+ <li><a href="../MIDI/Tempo.html">MIDI::Tempo</a></li>
185
+
186
+ <li><a href="../MIDI/TimeSig.html">MIDI::TimeSig</a></li>
187
+
188
+ <li><a href="../MIDI/Track.html">MIDI::Track</a></li>
189
+
190
+ <li><a href="../MIDI/TuneRequest.html">MIDI::TuneRequest</a></li>
191
+
192
+ <li><a href="../MIDI/Utils.html">MIDI::Utils</a></li>
193
+
194
+ <li><a href="../Array.html">Array</a></li>
195
+
196
+ <li><a href="../IO.html">IO</a></li>
197
+
198
+ </ul>
199
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
200
+ </div>
201
+
202
+
203
+ </div>
204
+ </div>
205
+
206
+ <div id="documentation">
207
+ <h1 class="class">MIDI::Measure</h1>
208
+
209
+ <div id="description">
210
+ <p>
211
+ The <a href="Measure.html">Measure</a> class contains information about a
212
+ measure from the sequence.
213
  The measure data is based on the time signature
214
+ information from the sequence
1
215
  and is not stored in the sequence itself
216
+ </p>
217
+
218
+ </div>
219
+
220
+ <!-- Constants -->
221
+
222
+
223
+ <!-- Attributes -->
224
+
225
+ <div id="attribute-method-details" class="method-section section">
226
+ <h3 class="section-header">Attributes</h3>
227
+
228
+
229
+ <div id="numerator-attribute-method" class="method-detail">
230
+ <a name="numerator"></a>
231
+
232
+ <div class="method-heading attribute-method-heading">
233
+ <span class="method-name">numerator</span><span
234
+ class="attribute-access-type">[R]</span>
235
+ </div>
236
+
237
+ <div class="method-description">
238
+
239
+ <p>
240
+ The numerator (top digit) for the measure&#8217;s time signature
241
+ </p>
242
+
243
+ </div>
244
+ </div>
245
+
246
+ <div id="denominator-attribute-method" class="method-detail">
247
+ <a name="denominator"></a>
248
+
249
+ <div class="method-heading attribute-method-heading">
250
+ <span class="method-name">denominator</span><span
251
+ class="attribute-access-type">[R]</span>
252
+ </div>
253
+
254
+ <div class="method-description">
255
+
256
+ <p>
257
+ The denominator for the measure&#8217;s time signature
258
+ </p>
259
+
260
+ </div>
261
+ </div>
262
+
263
+ <div id="start-attribute-method" class="method-detail">
264
+ <a name="start"></a>
265
+
266
+ <div class="method-heading attribute-method-heading">
267
+ <span class="method-name">start</span><span
268
+ class="attribute-access-type">[R]</span>
269
+ </div>
270
+
271
+ <div class="method-description">
272
+
273
+ <p>
274
+ <a href="Start.html">Start</a> clock tick for the measure
275
+ </p>
276
+
277
+ </div>
278
+ </div>
279
+
280
+ <div id="end-attribute-method" class="method-detail">
281
+ <a name="end"></a>
282
+
283
+ <div class="method-heading attribute-method-heading">
284
+ <span class="method-name">end</span><span
285
+ class="attribute-access-type">[R]</span>
286
+ </div>
287
+
288
+ <div class="method-description">
289
+
290
+ <p>
291
+ End clock tick for the measure (inclusive)
292
+ </p>
293
+
294
+ </div>
295
+ </div>
296
+
297
+ <div id="measure-number-attribute-method" class="method-detail">
298
+ <a name="measure_number"></a>
299
+
300
+ <div class="method-heading attribute-method-heading">
301
+ <span class="method-name">measure_number</span><span
302
+ class="attribute-access-type">[R]</span>
303
+ </div>
304
+
305
+ <div class="method-description">
306
+
307
+ <p>
308
+ The measure number (1-based)
309
+ </p>
310
+
311
+ </div>
312
+ </div>
313
+
314
+ <div id="metronome-ticks-attribute-method" class="method-detail">
315
+ <a name="metronome_ticks"></a>
316
+
317
+ <div class="method-heading attribute-method-heading">
318
+ <span class="method-name">metronome_ticks</span><span
319
+ class="attribute-access-type">[R]</span>
320
+ </div>
321
+
322
+ <div class="method-description">
323
+
324
+ <p>
325
+ The metronome tick for the measure
326
+ </p>
327
+
328
+ </div>
329
+ </div>
330
+
331
+ </div>
332
+
333
+
334
+ <!-- Methods -->
335
+
336
+ <div id="public-class-method-details" class="method-section section">
337
+ <h3 class="section-header">Public Class Methods</h3>
338
+
339
+
340
+ <div id="new-method" class="method-detail ">
341
+ <a name="method-c-new"></a>
342
+
343
+ <div class="method-heading">
344
+
345
+ <span class="method-name">new</span><span
346
+ class="method-args">(meas_no, start_time, duration, numer, denom, met_ticks)</span>
347
+ <span class="method-click-advice">click to toggle source</span>
348
+
349
+ </div>
350
+
351
+ <div class="method-description">
352
+
353
+ <p>
354
+ Constructor
355
+ </p>
356
+
357
+
358
+
359
+ <div class="method-source-code"
360
+ id="new-source">
361
+ <pre>
362
+ <span class="ruby-comment cmt"># File lib/midilib/measure.rb, line 23</span>
363
+ 23: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">meas_no</span>, <span class="ruby-identifier">start_time</span>, <span class="ruby-identifier">duration</span>, <span class="ruby-identifier">numer</span>, <span class="ruby-identifier">denom</span>, <span class="ruby-identifier">met_ticks</span>)
364
+ 24: <span class="ruby-ivar">@measure_number</span> = <span class="ruby-identifier">meas_no</span>
365
+ 25: <span class="ruby-ivar">@start</span> = <span class="ruby-identifier">start_time</span>
366
+ 26: <span class="ruby-ivar">@end</span> = <span class="ruby-identifier">start_time</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">duration</span> <span class="ruby-operator">-</span> <span class="ruby-value">1</span>
367
+ 27: <span class="ruby-ivar">@numerator</span> = <span class="ruby-identifier">numer</span>
368
+ 28: <span class="ruby-ivar">@denominator</span> = <span class="ruby-identifier">denom</span>
369
+ 29: <span class="ruby-ivar">@metronome_ticks</span> = <span class="ruby-identifier">met_ticks</span>
370
+ 30: <span class="ruby-keyword kw">end</span></pre>
371
+ </div>
372
+
373
+ </div>
374
+
375
+
376
+
377
+
378
+ </div>
379
+
380
+
381
+ </div>
382
+
383
+ <div id="public-instance-method-details" class="method-section section">
384
+ <h3 class="section-header">Public Instance Methods</h3>
385
+
386
+
387
+ <div id="contains-event--method" class="method-detail ">
388
+ <a name="method-i-contains_event%3F"></a>
389
+
390
+ <div class="method-heading">
391
+
392
+ <span class="method-name">contains_event?</span><span
393
+ class="method-args">(e)</span>
394
+ <span class="method-click-advice">click to toggle source</span>
395
+
396
+ </div>
397
+
398
+ <div class="method-description">
399
+
400
+ <p>
401
+ Returns <tt>true</tt> if the event is in the measure
402
+ </p>
403
+
404
+
405
+
406
+ <div class="method-source-code"
407
+ id="contains-event--source">
408
+ <pre>
409
+ <span class="ruby-comment cmt"># File lib/midilib/measure.rb, line 40</span>
410
+ 40: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">contains_event?</span>(<span class="ruby-identifier">e</span>)
411
+ 41: (<span class="ruby-identifier">e</span>.<span class="ruby-identifier">time_from_start</span> <span class="ruby-operator">&gt;=</span> <span class="ruby-ivar">@start</span>) <span class="ruby-operator">&amp;&amp;</span> (<span class="ruby-identifier">e</span>.<span class="ruby-identifier">time_from_start</span> <span class="ruby-operator">&lt;=</span> <span class="ruby-ivar">@end</span>)
412
+ 42: <span class="ruby-keyword kw">end</span></pre>
413
+ </div>
414
+
415
+ </div>
416
+
417
+
418
+
419
+
420
+ </div>
421
+
422
+
423
+ <div id="to-s-method" class="method-detail ">
424
+ <a name="method-i-to_s"></a>
425
+
426
+ <div class="method-heading">
427
+
428
+ <span class="method-name">to_s</span><span
429
+ class="method-args">()</span>
430
+ <span class="method-click-advice">click to toggle source</span>
431
+
432
+ </div>
433
+
434
+ <div class="method-description">
435
+
436
+ <p>
437
+ Returns a detailed string with information about the measure
438
+ </p>
439
+
440
+
441
+
442
+ <div class="method-source-code"
443
+ id="to-s-source">
444
+ <pre>
445
+ <span class="ruby-comment cmt"># File lib/midilib/measure.rb, line 33</span>
446
+ 33: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
447
+ 34: <span class="ruby-identifier">t</span> = <span class="ruby-node">&quot;#{@numerator}/#{2**@denominator}&quot;</span>
448
+ 35: <span class="ruby-identifier">m</span> = <span class="ruby-ivar">@metronome_ticks</span>.<span class="ruby-identifier">to_f</span> <span class="ruby-operator">/</span> <span class="ruby-value">24</span>
449
+ 36: <span class="ruby-node">&quot;measure #{@measure_number} #{@start}-#{@end} #{t} #{m} qs metronome&quot;</span>
450
+ 37: <span class="ruby-keyword kw">end</span></pre>
451
+ </div>
452
+
453
+ </div>
454
+
455
+
456
+
457
+
458
+ </div>
459
+
460
+
461
+ </div>
462
+
463
+
464
+ </div>
465
+
466
+
467
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
468
+
469
+ <p>Disabled; run with --debug to generate this.</p>
470
+
471
+ </div>
472
+
473
+ <div id="validator-badges">
474
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
475
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
476
+ Rdoc Generator</a> 1.1.6</small>.</p>
477
+ </div>
478
+
479
+ </body>
480
+ </html>
481
+