ansicolor.cpp 7.0 KB

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