Sha256: 5e2067c0d7e1def51c81a6b5f624a2b53953922f0e95c7a75b220af1d92ff751

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2019-2022, by Samuel Williams.

require 'io/console'

require_relative 'text'

module Console
	# Styled terminal output.
	module Terminal
		class XTerm < Text
			COLORS = {
				black: 0,
				red: 1,
				green: 2,
				yellow: 3,
				blue: 4,
				magenta: 5,
				cyan: 6,
				white: 7,
				default: 9,
			}.freeze
			
			ATTRIBUTES = {
				normal: 0,
				bold: 1,
				bright: 1,
				faint: 2,
				italic: 3,
				underline: 4,
				blink: 5,
				reverse: 7,
				hidden: 8,
			}.freeze
			
			def colors?
				true
			end
			
			def size
				@output.winsize
			end
			
			def style(foreground, background = nil, *attributes)
				tokens = []
				
				if foreground
					tokens << 30 + COLORS.fetch(foreground)
				end
				
				if background
					tokens << 40 + COLORS.fetch(background)
				end
				
				attributes.each do |attribute|
					tokens << ATTRIBUTES.fetch(attribute){attribute.to_i}
				end
				
				return "\e[#{tokens.join(';')}m"
			end
			
			def reset
				"\e[0m"
			end
		end
	end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
console-1.19.0 lib/console/terminal/xterm.rb
console-1.18.0 lib/console/terminal/xterm.rb
console-1.17.4 lib/console/terminal/xterm.rb
console-1.17.3 lib/console/terminal/xterm.rb
console-1.17.2 lib/console/terminal/xterm.rb
console-1.17.1 lib/console/terminal/xterm.rb
console-1.17.0 lib/console/terminal/xterm.rb