Sha256: 82e5efa8cebc9ac854a4e9599d28108b286e12c7a7869d76f58a508caaa3765d

Contents?: true

Size: 1.44 KB

Versions: 3

Compression:

Stored size: 1.44 KB

Contents

require 'vedeu/output/colour_translator'

module Vedeu
  module Esc
    extend self

    def background_colour(value = '')
      return '' if value.nil? || value.empty?

      ["\e[48;5;", colour_translator(value), 'm'].join
    end

    def foreground_colour(value = '')
      return '' if value.nil? || value.empty?

      ["\e[38;5;", colour_translator(value), 'm'].join
    end

    def set_position(y = 1, x = 1)
      row    = (y == 0 || y == nil) ? 1 : y
      column = (x == 0 || x == nil) ? 1 : x

      ["\e[", row, ';', column, 'H'].join
    end

    def string(value = '')
      case value
      when 'bg_reset'      then "\e[48;2;49m"
      when 'blink'         then "\e[5m"
      when 'blink_off'     then "\e[25m"
      when 'bold'          then "\e[1m"
      when 'bold_off'      then "\e[21m"
      when 'clear'         then "\e[2J"
      when 'colour_reset'  then "\e[38;2;39m\e[48;2;49m"
      when 'fg_reset'      then "\e[38;2;39m"
      when 'hide_cursor'   then "\e[?25l"
      when 'negative'      then "\e[7m"
      when 'positive'      then "\e[27m"
      when 'reset'         then "\e[0m"
      when 'normal'        then "\e[24m\e[21m\e[27m"
      when 'dim'           then "\e[2m"
      when 'show_cursor'   then "\e[?25h"
      when 'underline'     then "\e[4m"
      when 'underline_off' then "\e[24m"
      else
        ''
      end
    end

    private

    def colour_translator(value)
      ColourTranslator.translate(value)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vedeu-0.1.6 lib/vedeu/support/esc.rb
vedeu-0.1.5 lib/vedeu/support/esc.rb
vedeu-0.1.4 lib/vedeu/support/esc.rb