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.



164
165
166
# File 'lib/midilib/event.rb', line 164

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

Instance Method Details

#pressureObject



168
169
170
# File 'lib/midilib/event.rb', line 168

def pressure
	return @velocity
end

#pressure=(val) ⇒ Object



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

def pressure=(val)
	@velocity = val
end

#to_sObject



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

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