Sha256: a0a0ee39e00e05e0873aef39a85ce5ea666b9e13bd7f416554d8596d4df492d3

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

class HeadMusic::Style::Mark
  attr_reader :start_position, :end_position, :placements, :fitness

  def self.for(placement, fitness: nil)
    new(placement.position, placement.next_position, placements: [placement], fitness: fitness)
  end

  def self.for_all(placements, fitness: nil)
    placements = [placements].flatten
    start_position = placements.map { |placement| placement.position }.sort.first
    end_position = placements.map { |placement| placement.next_position }.sort.last
    new(start_position, end_position, placements: placements, fitness: fitness)
  end

  def self.for_each(placements, fitness: nil)
    placements = [placements].flatten
    placements.map { |placement| new(placement.position, placement.next_position, placements: placement, fitness: fitness) }
  end

  def initialize(start_position, end_position, placements: [], fitness: nil)
    @start_position = start_position
    @end_position = end_position
    @placements = [placements].flatten.compact
    @fitness = fitness || HeadMusic::PENALTY_FACTOR
  end

  def code
    [start_position, end_position].join(' to ')
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
head_music-0.11.8 lib/head_music/style/mark.rb
head_music-0.11.7 lib/head_music/style/mark.rb
head_music-0.11.6 lib/head_music/style/mark.rb
head_music-0.11.5 lib/head_music/style/mark.rb
head_music-0.11.4 lib/head_music/style/mark.rb
head_music-0.11.3 lib/head_music/style/mark.rb
head_music-0.11.2 lib/head_music/style/mark.rb
head_music-0.11.1 lib/head_music/style/mark.rb