Sha256: 3b4a738f42f073fed639a6495a582ee540c12dcdf0bca77fba1fcf5cb85ecad5

Contents?: true

Size: 1.01 KB

Versions: 8

Compression:

Stored size: 1.01 KB

Contents

class HeadMusic::Octave
  include Comparable

  DEFAULT = 4

  MATCHER = /(-?\d+)$/

  def self.get(identifier)
    from_number(identifier) || from_name(identifier) || default
  end
  singleton_class.send(:alias_method, :[], :get)

  def self.from_number(identifier)
    return nil unless identifier.to_s == identifier.to_i.to_s
    return nil unless (-2..12).include?(identifier.to_i)
    @octaves ||= {}
    @octaves[identifier.to_i] ||= new(identifier.to_i)
  end

  def self.from_name(string)
    if string.to_s.match(HeadMusic::Spelling::MATCHER)
      _letter, _accidental, octave_string = string.to_s.match(HeadMusic::Spelling::MATCHER).captures
      @octaves ||= {}
      @octaves[octave_string.to_i] ||= new(octave_string.to_i) if octave_string
    end
  end

  def self.default
    @octaves[DEFAULT] ||= new(DEFAULT)
  end

  attr_reader :number
  delegate :to_i, :to_s, to: :number

  def initialize(number)
    @number ||= number
  end

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

  private_class_method :new
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
head_music-0.8.0 lib/head_music/octave.rb
head_music-0.7.0 lib/head_music/octave.rb
head_music-0.6.4 lib/head_music/octave.rb
head_music-0.6.3 lib/head_music/octave.rb
head_music-0.6.1 lib/head_music/octave.rb
head_music-0.6.0 lib/head_music/octave.rb
head_music-0.5.4 lib/head_music/octave.rb
head_music-0.5.3 lib/head_music/octave.rb