color.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package door
  2. import (
  3. "log"
  4. "strconv"
  5. "strings"
  6. )
  7. // Profiling:
  8. // go build -gcflags=-m=2 . 2>&1 | less
  9. // What leaks to heap?
  10. // Possibly make this so it is part of an ANSI package.
  11. // DRY - Reuse.
  12. // Convert an array of int to \x1b[1;2;3m for ANSI Color
  13. // output.
  14. // https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters
  15. // https://en.wikipedia.org/wiki/ANSI_escape_code#3-bit_and_4-bit
  16. /*
  17. func Color(arg ...int) string {
  18. var result string = "\x1b["
  19. for i := range arg {
  20. result += fmt.Sprintf("%d;", arg[i])
  21. }
  22. result = result[:len(result)-1]
  23. result += "m"
  24. return result
  25. }
  26. */
  27. func Color(arg []int) string {
  28. var result strings.Builder
  29. result.WriteString("\x1b[")
  30. for idx, i := range arg {
  31. if idx != 0 {
  32. result.WriteString(";")
  33. }
  34. result.WriteString(strconv.Itoa(i))
  35. }
  36. result.WriteString("m")
  37. return result.String()
  38. }
  39. // BUG(bugz) INVERSE does not work.
  40. // Would I want to do something like:
  41. // BRIGHT YELLOW or ON BLUE, and have it just change the
  42. // color or the background? Right now, I require the full
  43. // color (FG & BG).
  44. // Convert a string like "BRIGHT WHITE ON BLUE" into the expected
  45. // ANSI Color codes. You can use just the first 3 letters.
  46. // Supports BRIGHT, BOLD, BLINK and ON (to set the background color).
  47. // BLACK, RED, GREEN, BROWN / YELLOW, BLUE, MAGENTA, CYAN, WHITE
  48. // https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters
  49. // https://en.wikipedia.org/wiki/ANSI_escape_code#3-bit_and_4-bit
  50. func ColorText(color string) string {
  51. // split on spaces, uppercase, match first 3 letter
  52. var res [5]int
  53. var result []int = res[0:0]
  54. var bg bool
  55. result = append(result, 0)
  56. parts := strings.Fields(strings.ToUpper(color))
  57. for _, part := range parts {
  58. if len(part) > 3 {
  59. part = part[:3]
  60. }
  61. switch part {
  62. case "BLA":
  63. if bg {
  64. result = append(result, 40)
  65. } else {
  66. result = append(result, 30)
  67. }
  68. case "RED":
  69. if bg {
  70. result = append(result, 41)
  71. } else {
  72. result = append(result, 31)
  73. }
  74. case "GRE":
  75. if bg {
  76. result = append(result, 42)
  77. } else {
  78. result = append(result, 32)
  79. }
  80. case "BRO", "YEL":
  81. if bg {
  82. result = append(result, 43)
  83. } else {
  84. result = append(result, 33)
  85. }
  86. case "BLU":
  87. if bg {
  88. result = append(result, 44)
  89. } else {
  90. result = append(result, 34)
  91. }
  92. case "MAG":
  93. if bg {
  94. result = append(result, 45)
  95. } else {
  96. result = append(result, 35)
  97. }
  98. case "CYA":
  99. if bg {
  100. result = append(result, 46)
  101. } else {
  102. result = append(result, 36)
  103. }
  104. case "WHI":
  105. if bg {
  106. result = append(result, 47)
  107. } else {
  108. result = append(result, 37)
  109. }
  110. case "BOL", "BRI":
  111. result = append(result, 1)
  112. case "ON":
  113. bg = true
  114. case "BLI":
  115. result = append(result, 5)
  116. // Invert is't well supported in terminals
  117. // case "INV":
  118. // result = append(result, 7)
  119. default:
  120. log.Panicf("ColorText Unknown: [%s] in %s\n", part, color)
  121. }
  122. }
  123. return Color(result)
  124. }