ansicolor.cpp 7.1 KB

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