lines.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. #include "door.h"
  2. namespace door {
  3. BasicLine::BasicLine(std::string txt) : text{txt}, hasColor{false} {}
  4. BasicLine::BasicLine(std::string txt, ANSIColor c)
  5. : text{txt}, hasColor{true}, color{c} {}
  6. bool BasicLine::hasRender(void) {
  7. if (render)
  8. return true;
  9. return false;
  10. }
  11. void BasicLine::setText(std::string txt) { text = txt; }
  12. void BasicLine::setColor(ANSIColor c) {
  13. color = c;
  14. hasColor = true;
  15. }
  16. void BasicLine::setRender(renderFunction rf) { render = rf; }
  17. void BasicLine::setUpdater(updateFunction uf) { updater = uf; }
  18. /**
  19. * Update BasicLine, if we have an updater.
  20. *
  21. * If we have an updater, call it. If the text is different,
  22. * update setText() and return true.
  23. * Otherwise false.
  24. *
  25. * This doesn't detect changes (like if the render has been changed, for
  26. * example)
  27. *
  28. * @return bool
  29. */
  30. bool BasicLine::update(void) {
  31. if (updater) {
  32. std::string temp = updater();
  33. if (temp == text)
  34. return false;
  35. setText(temp);
  36. return true;
  37. }
  38. return false;
  39. }
  40. /**
  41. * Output Line
  42. *
  43. * This looks for padding and paddingColor.
  44. * This uses the render function if set.
  45. *
  46. * @param os std::ostream
  47. * @param l const BasicLine &
  48. * @return std::ostream&
  49. */
  50. std::ostream &operator<<(std::ostream &os, const BasicLine &l) {
  51. if (l.render) {
  52. // This has a renderer. Use it.
  53. Render r = l.render(l.text);
  54. r.output(os);
  55. } else {
  56. if (l.hasColor) {
  57. os << l.color;
  58. };
  59. os << l.text;
  60. }
  61. return os;
  62. }
  63. MultiLine::MultiLine(){};
  64. void MultiLine::append(std::shared_ptr<BasicLine> bl) { lines.push_back(bl); }
  65. bool MultiLine::update() {
  66. bool updated = false;
  67. for (auto line : lines) {
  68. if (line->update())
  69. updated = true;
  70. }
  71. return updated;
  72. }
  73. /**
  74. * Output Line
  75. *
  76. * This looks for padding and paddingColor.
  77. * This uses the render function if set.
  78. *
  79. * @param os std::ostream
  80. * @param ml const MultiLine &
  81. * @return std::ostream&
  82. */
  83. std::ostream &operator<<(std::ostream &os, const MultiLine &ml) {
  84. for (auto line : ml.lines) {
  85. os << *line;
  86. }
  87. return os;
  88. }
  89. /**
  90. * Construct a new Line:: Line object with
  91. * string and total width.
  92. *
  93. * @param txt std::string
  94. * @param width int
  95. */
  96. Line::Line(std::string &txt, int width) : text{txt} {
  97. if (width)
  98. makeWidth(width);
  99. hasColor = false;
  100. }
  101. Line::Line(std::string &txt, int width, ANSIColor c) : text{txt}, color{c} {
  102. if (width)
  103. makeWidth(width);
  104. hasColor = true;
  105. }
  106. Line::Line(const char *txt, int width, ANSIColor c) : text{txt}, color{c} {
  107. if (width)
  108. makeWidth(width);
  109. hasColor = true;
  110. }
  111. Line::Line(std::string &txt, int width, renderFunction rf)
  112. : text{txt}, render{rf} {
  113. if (width)
  114. makeWidth(width);
  115. hasColor = false;
  116. }
  117. Line::Line(const char *txt, int width, renderFunction rf)
  118. : text{txt}, render{rf} {
  119. if (width)
  120. makeWidth(width);
  121. hasColor = false;
  122. }
  123. /**
  124. * Construct a new Line:: Line object with
  125. * const char * and total width
  126. *
  127. * @param txt const char *
  128. * @param width int
  129. */
  130. Line::Line(const char *txt, int width) : text{txt} {
  131. if (width)
  132. makeWidth(width);
  133. hasColor = false;
  134. }
  135. /**
  136. * Construct a new Line:: Line object from an
  137. * existing Line
  138. *
  139. * @param rhs const Line&
  140. */
  141. Line::Line(const Line &rhs)
  142. : text{rhs.text}, hasColor{rhs.hasColor}, color{rhs.color},
  143. padding{rhs.padding}, paddingColor{rhs.paddingColor} {
  144. if (rhs.render) {
  145. render = rhs.render;
  146. }
  147. }
  148. /**
  149. * Has a render function been set?
  150. *
  151. * @return bool
  152. */
  153. bool Line::hasRender(void) {
  154. if (render) {
  155. return true;
  156. } else {
  157. return false;
  158. }
  159. }
  160. /**
  161. * Return total length of Line
  162. *
  163. * text.length + 2 * padding length
  164. *
  165. * @return int
  166. */
  167. int Line::length(void) {
  168. if (!padding.empty())
  169. return padding.length() * 2 + text.length();
  170. return text.length();
  171. }
  172. /**
  173. * Make text the given width by padding string with spaces.
  174. *
  175. * @param width int
  176. */
  177. void Line::makeWidth(int width) {
  178. int need = width - text.length();
  179. if (need > 0) {
  180. text.append(std::string(need, ' '));
  181. }
  182. }
  183. /**
  184. * Set Line text.
  185. * @param txt std::string
  186. */
  187. void Line::setText(std::string &txt) { text = txt; }
  188. /**
  189. * Set Line text.
  190. * @param txt const char *
  191. */
  192. void Line::setText(const char *txt) { text = txt; }
  193. /**
  194. * set padding (color and text)
  195. *
  196. * @param padstring std::string
  197. * @param padColor ANSIColor
  198. */
  199. void Line::setPadding(std::string &padstring, ANSIColor padColor) {
  200. padding = padstring;
  201. paddingColor = padColor;
  202. }
  203. /**
  204. * set padding (color and text)
  205. *
  206. * @param padstring const char *
  207. * @param padColor ANSIColor
  208. */
  209. void Line::setPadding(const char *padstring, ANSIColor padColor) {
  210. padding = padstring;
  211. paddingColor = padColor;
  212. }
  213. /**
  214. * set color
  215. *
  216. * @param c ANSIColor
  217. */
  218. void Line::setColor(ANSIColor c) {
  219. color = c;
  220. hasColor = true;
  221. }
  222. /**
  223. * set render
  224. *
  225. * Set the renderFunction to use for this Line. This
  226. * replaces the colorizer.
  227. * @param rf renderFunction
  228. */
  229. void Line::setRender(renderFunction rf) { render = rf; }
  230. /**
  231. * set updater function
  232. *
  233. * This can update the line text when called.
  234. * @todo Define an updateFunction.
  235. * @param newUpdater updateFunction
  236. */
  237. void Line::setUpdater(updateFunction newUpdater) { updater = newUpdater; }
  238. /**
  239. * Call updater, report if the text was actually changed.
  240. *
  241. * @return bool
  242. */
  243. bool Line::update(void) {
  244. if (updater) {
  245. std::string newText = updater();
  246. if (newText != text) {
  247. text = newText;
  248. return true;
  249. }
  250. }
  251. return false;
  252. }
  253. /**
  254. * Output Line
  255. *
  256. * This looks for padding and paddingColor.
  257. * This uses the render function if set.
  258. *
  259. * @param os std::ostream
  260. * @param l const Line &
  261. * @return std::ostream&
  262. */
  263. std::ostream &operator<<(std::ostream &os, const Line &l) {
  264. // Door *d = dynamic_cast<Door *>(&os);
  265. if (!l.padding.empty()) {
  266. os << l.paddingColor << l.padding;
  267. }
  268. if (l.render) {
  269. // This has a renderer. Use it.
  270. Render r = l.render(l.text);
  271. r.output(os);
  272. } else {
  273. if (l.hasColor) {
  274. os << l.color;
  275. };
  276. os << l.text;
  277. }
  278. if (!l.padding.empty()) {
  279. os << l.paddingColor << l.padding;
  280. }
  281. return os;
  282. }
  283. } // namespace door