Sha256: aa47c252d560628e9b260ccbf737a556e2ab6691dae8e6dda47d7febabbdaf9c
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true # The Octave identifier is a number used in scientific pitch notation. class HeadMusic::Octave include Comparable DEFAULT = 4 def self.get(identifier) from_number(identifier) || from_name(identifier) || default end def self.from_number(identifier) return nil unless identifier.to_s == identifier.to_i.to_s return nil unless (-2..12).cover?(identifier.to_i) @octaves ||= {} @octaves[identifier.to_i] ||= new(identifier.to_i) end def self.from_name(string) return unless string.to_s.match?(HeadMusic::Spelling::MATCHER) _letter, _sign, 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 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) to_i <=> other.to_i end private_class_method :new end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
head_music-0.19.0 | lib/head_music/octave.rb |
head_music-0.18.0 | lib/head_music/octave.rb |