ansicolor.cpp 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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 and (fg == COLOR::WHITE) and (bg == COLOR::BLACK)) {
  150. clr += "0m";
  151. return clr;
  152. }
  153. if (reset) {
  154. clr += "0;";
  155. }
  156. if (bold) {
  157. if (blink) {
  158. clr += "5;";
  159. }
  160. clr += "1;";
  161. } else {
  162. if (!reset)
  163. clr += "0;";
  164. if (blink) {
  165. clr += "5;";
  166. }
  167. }
  168. clr += std::to_string(30 + (int)fg) + ";";
  169. clr += std::to_string(40 + (int)bg) + "m";
  170. return clr;
  171. }
  172. /**
  173. * Output only what ANSI attributes and colors have changed.
  174. * This uses the previous ANSIColor value to determine what
  175. * has changed.
  176. *
  177. * This sets previous to the current upon completion.
  178. */
  179. std::string ANSIColor::output(ANSIColor &previous) const {
  180. std::string clr(CSI);
  181. // color output optimization
  182. // check for special cases
  183. if (reset and (fg == COLOR::BLACK) and (bg == COLOR::BLACK)) {
  184. clr += "0m";
  185. previous = *this;
  186. previous.reset = 0;
  187. return clr;
  188. }
  189. bool temp_reset = false;
  190. if ((!blink) and (blink != previous.blink)) {
  191. temp_reset = true;
  192. }
  193. if ((reset) or (temp_reset)) {
  194. // current has RESET, so default to always sending colors.
  195. if (temp_reset) {
  196. clr += "0m";
  197. }
  198. // this fixes the extra \x1b that shows up with reset.
  199. if (clr.compare(CSI) == 0)
  200. clr.clear();
  201. clr += output();
  202. /*
  203. std::ofstream logf;
  204. logf.open("ansicolor.log", std::ofstream::out | std::ofstream::app);
  205. logf << "clr = [" << clr << "]" << std::endl;
  206. logf.close();
  207. */
  208. previous = *this;
  209. previous.reset = 0;
  210. return clr;
  211. }
  212. if (*this == previous) {
  213. clr.clear();
  214. return clr;
  215. }
  216. // resume "optimization"
  217. if (bold != previous.bold) {
  218. // not the same, so handle this.
  219. if (bold) {
  220. if (blink) {
  221. clr += "5;";
  222. }
  223. clr += "1;";
  224. if (fg != previous.fg)
  225. clr += std::to_string((int)fg + 30) + ";";
  226. if (bg != previous.bg)
  227. clr += std::to_string((int)bg + 40) + ";";
  228. } else {
  229. clr += "0;";
  230. if (blink) {
  231. clr += "5;";
  232. }
  233. // RESET to turn OFF BOLD, clears previous
  234. if (fg != COLOR::WHITE)
  235. clr += std::to_string((int)fg + 30) + ";";
  236. if (bg != COLOR::BLACK)
  237. clr += std::to_string((int)bg + 40) + ";";
  238. }
  239. } else {
  240. // not bold.
  241. if (blink) {
  242. clr += "5;";
  243. }
  244. if (fg != previous.fg)
  245. clr += std::to_string((int)fg + 30) + ";";
  246. if (bg != previous.bg)
  247. clr += std::to_string((int)bg + 40) + ";";
  248. };
  249. // Remove ';' if last character
  250. std::string::iterator si = clr.end() - 1;
  251. if (*si == ';') {
  252. clr.erase(si);
  253. }
  254. if (clr.compare(CSI) == 0)
  255. clr.clear();
  256. else
  257. clr += "m";
  258. // final step, set previous to current and return the string;
  259. previous = *this;
  260. return clr;
  261. };
  262. /**
  263. * This converts ANSI \ref COLOR and \ref ATTR to ANSI codes
  264. * understood by the \ref Door output class.
  265. */
  266. std::ostream &operator<<(std::ostream &os, const ANSIColor &c) {
  267. std::string out;
  268. Door *d = dynamic_cast<Door *>(&os);
  269. if (d != nullptr) {
  270. d->track = false;
  271. out = c.output(d->previous);
  272. // if (!out.empty())
  273. if (out.compare("\x1b[") == 0)
  274. std::abort();
  275. *d << out;
  276. d->track = true;
  277. } else {
  278. // "dumb" version that can't remember anything/ doesn't optimize color
  279. // output.
  280. std::string out = c.output();
  281. os << out;
  282. }
  283. return os;
  284. }
  285. ANSIColor reset(ATTR::RESET);
  286. } // namespace door