Sha256: 9bfe7e9d644d1fc0147ad0265cf6efba41e28a0ec0c26bb35a601809bdc2b46d

Contents?: true

Size: 1.76 KB

Versions: 12

Compression:

Stored size: 1.76 KB

Contents

module Vedeu

  # A Cell represents a single square of the terminal.
  #
  # @api private
  class Cell

    # @!attribute [r] colour
    # @return [NilClass|String]
    attr_reader :colour

    # @!attribute [r] style
    # @return [NilClass|Array<Symbol|String>|Symbol|String]
    attr_reader :style

    # @!attribute [r] value
    # @return [NilClass|String]
    attr_reader :value

    # @!attribute [r] x
    # @return [NilClass|Fixnum]
    attr_reader :x

    # @!attribute [r] y
    # @return [NilClass|Fixnum]
    attr_reader :y

    # Returns a new instance of Vedeu::Cell.
    #
    # @param attributes [Hash<Symbol => Array<Symbol|String>,
    #                                   Fixnum, String, Symbol]
    # @option attributes colour [NilClass|String]
    # @option attributes style [NilClass|Array<Symbol|String>|Symbol|String]
    # @option attributes value [NilClass|String]
    # @option attributes x [NilClass|Fixnum]
    # @option attributes y [NilClass|Fixnum]
    # @return [Vedeu::Cell]
    def initialize(attributes = {})
      @attributes = defaults.merge!(attributes)

      @attributes.each { |key, value| instance_variable_set("@#{key}", value) }
    end

    # An object is equal when its values are the same.
    #
    # @param other [Vedeu::Cell]
    # @return [Boolean]
    def eql?(other)
      self.class == other.class && colour == other.colour &&
        style == other.style && value == other.value && x == other.x &&
        y == other.y
    end
    alias_method :==, :eql?

    private

    # Returns the default options/attributes for this class.
    #
    # @return [Hash<Symbol => void>]
    def defaults
      {
        colour: nil,
        style:  nil,
        value:  nil,
        x:      nil,
        y:      nil,
      }
    end

  end # Cell

end # Vedeu

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
vedeu-0.4.56 lib/vedeu/models/cell.rb
vedeu-0.4.55 lib/vedeu/models/cell.rb
vedeu-0.4.54 lib/vedeu/models/cell.rb
vedeu-0.4.53 lib/vedeu/models/cell.rb
vedeu-0.4.52 lib/vedeu/models/cell.rb
vedeu-0.4.51 lib/vedeu/models/cell.rb
vedeu-0.4.50 lib/vedeu/models/cell.rb
vedeu-0.4.49 lib/vedeu/models/cell.rb
vedeu-0.4.48 lib/vedeu/models/cell.rb
vedeu-0.4.47 lib/vedeu/models/cell.rb
vedeu-0.4.46 lib/vedeu/models/cell.rb
vedeu-0.4.45 lib/vedeu/models/cell.rb