ansicolor.cpp 6.8 KB

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