Sha256: 2520bc7138e56448769fa6f41f49921d2716c43f69c418274e764ed24240bd55

Contents?: true

Size: 897 Bytes

Versions: 9

Compression:

Stored size: 897 Bytes

Contents

# Module for style guidelines.
module HeadMusic::Style::Guidelines; end

# A counterpoint guideline
class HeadMusic::Style::Guidelines::SingableIntervals < HeadMusic::Style::Annotation
  PERMITTED_ASCENDING = %w[PU m2 M2 m3 M3 P4 P5 m6 P8].freeze
  PERMITTED_DESCENDING = %w[PU m2 M2 m3 M3 P4 P5 P8].freeze

  MESSAGE = "Use only PU, m2, M2, m3, M3, P4, P5, m6 (ascending), P8 in the melodic line."

  def marks
    melodic_intervals.reject { |interval| permitted?(interval) }.map do |unpermitted_interval|
      HeadMusic::Style::Mark.for_all([unpermitted_interval.first_note, unpermitted_interval.second_note])
    end
  end

  private

  def permitted?(melodic_interval)
    whitelist_for_interval(melodic_interval).include?(melodic_interval.shorthand)
  end

  def whitelist_for_interval(melodic_interval)
    melodic_interval.ascending? ? PERMITTED_ASCENDING : PERMITTED_DESCENDING
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
head_music-7.0.5 lib/head_music/style/guidelines/singable_intervals.rb
head_music-7.0.4 lib/head_music/style/guidelines/singable_intervals.rb
head_music-7.0.3 lib/head_music/style/guidelines/singable_intervals.rb
head_music-7.0.2 lib/head_music/style/guidelines/singable_intervals.rb
head_music-7.0.1 lib/head_music/style/guidelines/singable_intervals.rb
head_music-7.0.0 lib/head_music/style/guidelines/singable_intervals.rb
head_music-6.0.1 lib/head_music/style/guidelines/singable_intervals.rb
head_music-6.0.0 lib/head_music/style/guidelines/singable_intervals.rb
head_music-5.0.0 lib/head_music/style/guidelines/singable_intervals.rb