Class: MIDI::PitchBend

Inherits:
ChannelEvent show all
Defined in:
lib/midilib/event.rb

Instance Attribute Summary collapse

Attributes inherited from ChannelEvent

#channel

Attributes inherited from Event

#delta_time, #print_channel_numbers_from_one, #print_decimal_numbers, #print_note_names, #status, #time_from_start

Instance Method Summary collapse

Methods inherited from Event

#<=>, #channel_to_s, #number_to_s, #quantize_to

Constructor Details

#initialize(channel = 0, value = 0, delta_time = 0) ⇒ PitchBend

Returns a new instance of PitchBend.



243
244
245
246
# File 'lib/midilib/event.rb', line 243

def initialize(channel = 0, value = 0, delta_time = 0)
  super(PITCH_BEND, channel, delta_time)
  @value = value
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



241
242
243
# File 'lib/midilib/event.rb', line 241

def value
  @value
end

Instance Method Details

#data_as_bytesObject



248
249
250
251
252
253
# File 'lib/midilib/event.rb', line 248

def data_as_bytes
  data = []
  data << (@status + @channel)
  data << (@value & 0x7f) # lsb
  data << ((@value >> 7) & 0x7f) # msb
end

#to_sObject



255
256
257
# File 'lib/midilib/event.rb', line 255

def to_s
  return super << "pb #{number_to_s(@value)}"
end