colour_prompt.rb 3.4 KB
Newer Older
1 2 3 4
# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
5
# ==========================================
6

7 8 9 10 11 12 13 14 15 16
if RUBY_PLATFORM =~ /(win|w)32$/
  begin
    require 'Win32API'
  rescue LoadError
    puts 'ERROR! "Win32API" library not found'
    puts '"Win32API" is required for colour on a windows machine'
    puts '  try => "gem install Win32API" on the command line'
    puts
  end
  # puts
17
  # puts 'Windows Environment Detected...'
18 19
  # puts 'Win32API Library Found.'
  # puts
20 21 22 23
end

class ColourCommandLine
  def initialize
24
    return unless RUBY_PLATFORM =~ /(win|w)32$/
M
mvandervoord 已提交
25

26 27
    get_std_handle = Win32API.new('kernel32', 'GetStdHandle', ['L'], 'L')
    @set_console_txt_attrb =
J
John Lindgren 已提交
28
      Win32API.new('kernel32', 'SetConsoleTextAttribute', %w[L N], 'I')
29
    @hout = get_std_handle.call(-11)
30
  end
31

32
  def change_to(new_colour)
33 34
    if RUBY_PLATFORM =~ /(win|w)32$/
      @set_console_txt_attrb.call(@hout, win32_colour(new_colour))
35
    else
36
      "\033[30;#{posix_colour(new_colour)};22m"
37
    end
38
  end
39

40 41
  def win32_colour(colour)
    case colour
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    when :black then 0
    when :dark_blue then 1
    when :dark_green then 2
    when :dark_cyan then 3
    when :dark_red then 4
    when :dark_purple then 5
    when :dark_yellow, :narrative then 6
    when :default_white, :default, :dark_white then 7
    when :silver then 8
    when :blue then 9
    when :green, :success then 10
    when :cyan, :output then 11
    when :red, :failure then 12
    when :purple then 13
    when :yellow then 14
    when :white then 15
    else
      0
60 61
    end
  end
62

63
  def posix_colour(colour)
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    # ANSI Escape Codes - Foreground colors
    # | Code | Color                     |
    # | 39   | Default foreground color  |
    # | 30   | Black                     |
    # | 31   | Red                       |
    # | 32   | Green                     |
    # | 33   | Yellow                    |
    # | 34   | Blue                      |
    # | 35   | Magenta                   |
    # | 36   | Cyan                      |
    # | 37   | Light gray                |
    # | 90   | Dark gray                 |
    # | 91   | Light red                 |
    # | 92   | Light green               |
    # | 93   | Light yellow              |
    # | 94   | Light blue                |
    # | 95   | Light magenta             |
    # | 96   | Light cyan                |
    # | 97   | White                     |

84 85 86 87 88 89 90 91 92 93 94 95
    case colour
    when :black then 30
    when :red, :failure then 31
    when :green, :success then 32
    when :yellow then 33
    when :blue, :narrative then 34
    when :purple, :magenta then 35
    when :cyan, :output then 36
    when :white, :default_white then 37
    when :default then 39
    else
      39
96 97
    end
  end
98

99 100
  def out_c(mode, colour, str)
    case RUBY_PLATFORM
101 102 103 104 105 106 107 108 109
    when /(win|w)32$/
      change_to(colour)
      $stdout.puts str if mode == :puts
      $stdout.print str if mode == :print
      change_to(:default_white)
    else
      $stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
      $stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
    end
110
  end
J
John Lindgren 已提交
111
end
112

113 114 115
def colour_puts(role, str)
  ColourCommandLine.new.out_c(:puts, role, str)
end
116

117 118 119
def colour_print(role, str)
  ColourCommandLine.new.out_c(:print, role, str)
end