Sha256: 817d6e6e27191d3fa4e54df2877f2c0e8425120f497ea9300d32e4b6f40a3613

Contents?: true

Size: 959 Bytes

Versions: 2

Compression:

Stored size: 959 Bytes

Contents

# frozen_string_literal: true

# A Circle of Fifths or Fourths shows relationships between pitch classes
# TODO: Replace or empower with IntervalCycle (?)
# https://en.wikipedia.org/wiki/Interval_cycle
class HeadMusic::Circle
  def self.of_fifths
    get(7)
  end

  def self.of_fourths
    get(5)
  end

  def self.get(interval = 7)
    @circles ||= {}
    @circles[interval.to_i] ||= new(interval)
  end

  attr_reader :interval, :pitch_classes

  def initialize(interval)
    @interval = interval.to_i
    @pitch_classes = pitch_classes_by_interval
  end

  def index(pitch_class)
    @pitch_classes.index(HeadMusic::Spelling.get(pitch_class).pitch_class)
  end

  private_class_method :new

  private

  def pitch_classes_by_interval
    [HeadMusic::PitchClass.get(0)].tap do |list|
      loop do
        next_pitch_class = list.last + interval
        break if next_pitch_class == list.first

        list << next_pitch_class
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
head_music-0.23.1 lib/head_music/circle.rb
head_music-0.23.0 lib/head_music/circle.rb