ansicolor.cpp 7.1 KB

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