Sha256: 147959920fc10626127892850ee80613e4eba8bf98a8c1c8f888ce4bf6e9ea07

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

class HeadMusic::Placement
  include Comparable

  attr_reader :voice, :position, :rhythmic_value, :pitch
  delegate :composition, to: :voice
  delegate :spelling, to: :pitch, allow_nil: true

  def initialize(voice, position, rhythmic_value, pitch = nil)
    ensure_attributes(voice, position, rhythmic_value, pitch)
  end

  def note?
    pitch
  end

  def rest?
    !note?
  end

  def next_position
    @next_position ||= position + rhythmic_value
  end

  def <=>(other)
    self.position <=> other.position
  end

  def during?(other_placement)
    (other_placement.position >= position && other_placement.position < next_position) ||
    (other_placement.next_position > position && other_placement.next_position <= next_position) ||
    (other_placement.position <= position && other_placement.next_position >= next_position)
  end

  def to_s
    "#{pitch ? pitch : 'rest'} at #{position}"
  end

  private

  def ensure_attributes(voice, position, rhythmic_value, pitch)
    @voice = voice
    ensure_position(position)
    @rhythmic_value = rhythmic_value
    @pitch = HeadMusic::Pitch.get(pitch)
  end

  def ensure_position(position)
    if position.is_a?(HeadMusic::Position)
      @position = position
    else
      @position = HeadMusic::Position.new(composition, position)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
head_music-0.14.8 lib/head_music/placement.rb
head_music-0.14.7 lib/head_music/placement.rb