Class: MIDI::PolyPressure

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

Constant Summary

Constants inherited from NoteEvent

NoteEvent::PITCHES

Instance Attribute Summary

Attributes inherited from NoteEvent

#note, #velocity

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 NoteEvent

#data_as_bytes, #note_to_s, #pch_oct

Methods inherited from Event

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

Constructor Details

#initialize(channel = 0, note = 64, value = 0, delta_time = 0) ⇒ PolyPressure

Returns a new instance of PolyPressure.



166
167
168
# File 'lib/midilib/event.rb', line 166

def initialize(channel = 0, note = 64, value = 0, delta_time = 0)
  super(POLY_PRESSURE, channel, note, value, delta_time)
end

Instance Method Details

#pressureObject



170
171
172
# File 'lib/midilib/event.rb', line 170

def pressure
  @velocity
end

#pressure=(val) ⇒ Object



174
175
176
# File 'lib/midilib/event.rb', line 174

def pressure=(val)
  @velocity = val
end

#to_sObject



178
179
180
181
# File 'lib/midilib/event.rb', line 178

def to_s
  super <<
    "poly press #{channel_to_s(@channel)} #{note_to_s} #{number_to_s(@velocity)}"
end