Sha256: 7995f4f92c9ae375a07cf3558007d4c2ed11a814ecb62a64a95568fde4f2065f

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

module Vedeu

  # Represents an invisible escape character sequence.
  #
  class Escape

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

    # Returns a new instance of Vedeu::Escape.
    #
    # @param attributes [String]
    # @option attributes position [Vedeu::Position|Array<Fixnum>]
    # @option attributes value [String]
    # @return [Vedeu::Escape]
    def initialize(attributes = {})
      defaults.merge!(attributes).each do |key, value|
        instance_variable_set("@#{key}", value)
      end
    end

    # @return [NilClass]
    def null
      nil
    end
    alias_method :background, :null
    alias_method :colour,     :null
    alias_method :foreground, :null
    alias_method :style,      :null

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

    # @return [String]
    def position
      Vedeu::Position.coerce(@position)
    end

    # @return [String]
    def to_s
      "#{position}#{value}"
    end
    alias_method :to_str, :to_s

    private

    # @return [Hash]
    def defaults
      {
        position: [1, 1],
        value:    '',
      }
    end

  end # Escape

end # Vedeu

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vedeu-0.6.4 lib/vedeu/models/escape.rb