ansicolor.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. #include "door.h"
  2. #include <string>
  3. namespace door {
  4. /**
  5. * Construct a new ANSIColor::ANSIColor object
  6. * with sensible defaults (White on Black).
  7. *
  8. */
  9. ANSIColor::ANSIColor()
  10. : fg(COLOR::WHITE), bg(COLOR::BLACK), reset(0), bold(0), blink(0),
  11. inverse(0) {}
  12. /**
  13. * Construct a new ANSIColor::ANSIColor object
  14. * with attribute set.
  15. *
  16. * @param a ATTR
  17. */
  18. ANSIColor::ANSIColor(ATTR a) : ANSIColor() { Attr(a); }
  19. /**
  20. * Construct a new ANSIColor::ANSIColor object
  21. * with a foreground color.
  22. *
  23. * @param f COLOR
  24. */
  25. ANSIColor::ANSIColor(COLOR f) : ANSIColor() { fg = f; }
  26. /**
  27. * Construct a new ANSIColor::ANSIColor object
  28. * with a foreground color and attribute.
  29. *
  30. * @param f COLOR
  31. * @param a ATTR
  32. */
  33. ANSIColor::ANSIColor(COLOR f, ATTR a) : ANSIColor() {
  34. fg = f;
  35. Attr(a);
  36. }
  37. /**
  38. * Construct a new ANSIColor::ANSIColor object
  39. * with a foreground color and attributes.
  40. *
  41. * @param f COLOR
  42. * @param a1 ATTR
  43. * @param a2 ATTR
  44. */
  45. ANSIColor::ANSIColor(COLOR f, ATTR a1, ATTR a2) : ANSIColor() {
  46. fg = f;
  47. Attr(a1);
  48. Attr(a2);
  49. }
  50. /**
  51. * Construct a new ANSIColor::ANSIColor object
  52. * with a foreground and background color.
  53. *
  54. * @param f COLOR
  55. * @param b COLOR
  56. */
  57. ANSIColor::ANSIColor(COLOR f, COLOR b) : ANSIColor() {
  58. fg = f;
  59. bg = b;
  60. }
  61. /**
  62. * Construct a new ANSIColor::ANSIColor object
  63. * with a foreground color, background color,
  64. * and attribute.
  65. *
  66. * @param f COLOR
  67. * @param b COLOR
  68. * @param a ATTR
  69. */
  70. ANSIColor::ANSIColor(COLOR f, COLOR b, ATTR a) : ANSIColor() {
  71. fg = f;
  72. bg = b;
  73. Attr(a);
  74. }
  75. /**
  76. * Construct a new ANSIColor::ANSIColor object
  77. * with foreground, background color and attributes.
  78. *
  79. * @param f COLOR
  80. * @param b COLOR
  81. * @param a1 ATTR
  82. * @param a2 ATTR
  83. */
  84. ANSIColor::ANSIColor(COLOR f, COLOR b, ATTR a1, ATTR a2) : ANSIColor() {
  85. fg = f;
  86. bg = b;
  87. Attr(a1);
  88. Attr(a2);
  89. }
  90. /**
  91. * Set attribute. We return the object so
  92. * calls can be chained.
  93. *
  94. * @param a ATTR
  95. * @return ANSIColor&
  96. */
  97. ANSIColor &ANSIColor::Attr(ATTR a) {
  98. switch (a) {
  99. case ATTR::RESET:
  100. reset = 1;
  101. break;
  102. case ATTR::BOLD:
  103. bold = 1;
  104. break;
  105. case ATTR::BLINK:
  106. blink = 1;
  107. break;
  108. case ATTR::INVERSE:
  109. inverse = 1;
  110. break;
  111. }
  112. return *this;
  113. }
  114. /**
  115. * Equal operator.
  116. *
  117. * This compares colors and attributes, but ignores reset.
  118. *
  119. * @param c const ANSIColor &
  120. * @return bool
  121. */
  122. bool ANSIColor::operator==(const ANSIColor &c) const {
  123. return ((fg == c.fg) and (bg == c.bg) and (bold == c.bold) and
  124. (blink == c.blink) and (inverse == c.inverse));
  125. }
  126. /**
  127. * Not-equal operator.
  128. *
  129. * This compares colors and attributes, but ignores reset.
  130. *
  131. * @param c const ANSIColor &
  132. * @return bool
  133. */
  134. bool ANSIColor::operator!=(const ANSIColor &c) const {
  135. return !((fg == c.fg) and (bg == c.bg) and (bold == c.bold) and
  136. (blink == c.blink) and (inverse == c.inverse));
  137. }
  138. /**
  139. * Output the full ANSI codes for attributes and color.
  140. * This does not look at the previous values.
  141. */
  142. std::string ANSIColor::output(void) const {
  143. std::string clr(CSI);
  144. // check for special cases
  145. if (reset and fg == COLOR::BLACK and bg == COLOR::BLACK) {
  146. clr += "0m";
  147. return clr;
  148. }
  149. if (reset) {
  150. clr += "0;";
  151. }
  152. if (blink) {
  153. clr += "5;";
  154. }
  155. if (bold) {
  156. clr += "1;";
  157. } else {
  158. if (!reset)
  159. clr += "0;";
  160. }
  161. clr += std::to_string(30 + (int)fg) + ";";
  162. clr += std::to_string(40 + (int)bg) + "m";
  163. return clr;
  164. }
  165. /**
  166. * Output only what ANSI attributes and colors have changed.
  167. * This uses the previous ANSIColor value to determine what
  168. * has changed.
  169. *
  170. * This sets previous to the current upon completion.
  171. */
  172. std::string ANSIColor::output(ANSIColor &previous) const {
  173. std::string clr(CSI);
  174. // color output optimization
  175. // check for special cases
  176. if (reset and fg == COLOR::BLACK and bg == COLOR::BLACK) {
  177. clr += "0m";
  178. previous = *this;
  179. return clr;
  180. }
  181. bool temp_reset = false;
  182. if ((!blink) and (blink != previous.blink)) {
  183. temp_reset = true;
  184. }
  185. if ((reset) or (temp_reset)) {
  186. // current has RESET, so default to always sending colors.
  187. if (temp_reset) {
  188. clr += "0m" CSI;
  189. };
  190. clr += output();
  191. previous = *this;
  192. return clr;
  193. }
  194. if (*this == previous) {
  195. clr.clear();
  196. return clr;
  197. }
  198. // resume "optimization"
  199. if (bold != previous.bold) {
  200. // not the same, so handle this.
  201. if (bold) {
  202. if (blink) {
  203. clr += "5;";
  204. }
  205. clr += "1;";
  206. if (fg != previous.fg)
  207. clr += std::to_string((int)fg + 30) + ";";
  208. if (bg != previous.bg)
  209. clr += std::to_string((int)bg + 40) + ";";
  210. } else {
  211. clr += "0;";
  212. if (blink) {
  213. clr += "5;";
  214. }
  215. // RESET to turn OFF BOLD, clears previous
  216. if (fg != COLOR::WHITE)
  217. clr += std::to_string((int)fg + 30) + ";";
  218. if (bg != COLOR::BLACK)
  219. clr += std::to_string((int)bg + 40) + ";";
  220. }
  221. } else {
  222. // not bold.
  223. if (blink) {
  224. clr += "5;";
  225. }
  226. if (fg != previous.fg)
  227. clr += std::to_string((int)fg + 30) + ";";
  228. if (bg != previous.bg)
  229. clr += std::to_string((int)bg + 40) + ";";
  230. };
  231. // Remove ';' if last character
  232. std::string::iterator si = clr.end() - 1;
  233. if (*si == ';') {
  234. clr.erase(si);
  235. }
  236. if (clr.compare(CSI) == 0)
  237. clr.clear();
  238. else
  239. clr += "m";
  240. // final step, set previous to current and return the string;
  241. previous = *this;
  242. return clr;
  243. };
  244. /**
  245. * This converts ANSI \ref COLOR and \ref ATTR to ANSI codes
  246. * understood by the \ref Door output class.
  247. */
  248. std::ostream &operator<<(std::ostream &os, const ANSIColor &c) {
  249. std::string out;
  250. Door *d = dynamic_cast<Door *>(&os);
  251. if (d != nullptr) {
  252. d->track = false;
  253. out = c.output(d->previous);
  254. // if (!out.empty())
  255. if (out.compare("\x1b[") == 0)
  256. std::abort();
  257. *d << out;
  258. d->track = true;
  259. } else {
  260. // "dumb" version that can't remember anything/ doesn't optimize color
  261. // output.
  262. std::string out = c.output();
  263. os << out;
  264. }
  265. return os;
  266. }
  267. ANSIColor reset(ATTR::RESET);
  268. } // namespace door