lines.cpp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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. /**
  102. * Construct a new Line:: Line object with
  103. * const char * and total width
  104. *
  105. * @param txt const char *
  106. * @param width int
  107. */
  108. Line::Line(const char *txt, int width) : text{txt} {
  109. if (width)
  110. makeWidth(width);
  111. hasColor = false;
  112. }
  113. /**
  114. * Construct a new Line:: Line object from an
  115. * existing Line
  116. *
  117. * @param rhs const Line&
  118. */
  119. Line::Line(const Line &rhs)
  120. : text{rhs.text}, hasColor{rhs.hasColor}, color{rhs.color},
  121. padding{rhs.padding}, paddingColor{rhs.paddingColor} {
  122. if (rhs.render) {
  123. render = rhs.render;
  124. }
  125. }
  126. /**
  127. * Has a render function been set?
  128. *
  129. * @return bool
  130. */
  131. bool Line::hasRender(void) {
  132. if (render) {
  133. return true;
  134. } else {
  135. return false;
  136. }
  137. }
  138. /**
  139. * Return total length of Line
  140. *
  141. * text.length + 2 * padding length
  142. *
  143. * @return int
  144. */
  145. int Line::length(void) {
  146. if (!padding.empty())
  147. return padding.length() * 2 + text.length();
  148. return text.length();
  149. }
  150. /**
  151. * Make text the given width by padding string with spaces.
  152. *
  153. * @param width int
  154. */
  155. void Line::makeWidth(int width) {
  156. int need = width - text.length();
  157. if (need > 0) {
  158. text.append(std::string(need, ' '));
  159. }
  160. }
  161. /**
  162. * Set Line text.
  163. * @param txt std::string
  164. */
  165. void Line::setText(std::string &txt) { text = txt; }
  166. /**
  167. * Set Line text.
  168. * @param txt const char *
  169. */
  170. void Line::setText(const char *txt) { text = txt; }
  171. /**
  172. * set padding (color and text)
  173. *
  174. * @param padstring std::string
  175. * @param padColor ANSIColor
  176. */
  177. void Line::setPadding(std::string &padstring, ANSIColor padColor) {
  178. padding = padstring;
  179. paddingColor = padColor;
  180. }
  181. /**
  182. * set padding (color and text)
  183. *
  184. * @param padstring const char *
  185. * @param padColor ANSIColor
  186. */
  187. void Line::setPadding(const char *padstring, ANSIColor padColor) {
  188. padding = padstring;
  189. paddingColor = padColor;
  190. }
  191. /**
  192. * set color
  193. *
  194. * @param c ANSIColor
  195. */
  196. void Line::setColor(ANSIColor c) {
  197. color = c;
  198. hasColor = true;
  199. }
  200. /**
  201. * set render
  202. *
  203. * Set the renderFunction to use for this Line. This
  204. * replaces the colorizer.
  205. * @param rf renderFunction
  206. */
  207. void Line::setRender(renderFunction rf) { render = rf; }
  208. /**
  209. * set updater function
  210. *
  211. * This can update the line text when called.
  212. * @todo Define an updateFunction.
  213. * @param newUpdater updateFunction
  214. */
  215. void Line::setUpdater(updateFunction newUpdater) { updater = newUpdater; }
  216. /**
  217. * Call updater, report if the text was actually changed.
  218. *
  219. * @return bool
  220. */
  221. bool Line::update(void) {
  222. if (updater) {
  223. std::string newText = updater();
  224. if (newText != text) {
  225. text = newText;
  226. return true;
  227. }
  228. }
  229. return false;
  230. }
  231. /**
  232. * Output Line
  233. *
  234. * This looks for padding and paddingColor.
  235. * This uses the render function if set.
  236. *
  237. * @param os std::ostream
  238. * @param l const Line &
  239. * @return std::ostream&
  240. */
  241. std::ostream &operator<<(std::ostream &os, const Line &l) {
  242. // Door *d = dynamic_cast<Door *>(&os);
  243. if (!l.padding.empty()) {
  244. os << l.paddingColor << l.padding;
  245. }
  246. if (l.render) {
  247. // This has a renderer. Use it.
  248. Render r = l.render(l.text);
  249. r.output(os);
  250. } else {
  251. if (l.hasColor) {
  252. os << l.color;
  253. };
  254. os << l.text;
  255. }
  256. if (!l.padding.empty()) {
  257. os << l.paddingColor << l.padding;
  258. }
  259. return os;
  260. }
  261. } // namespace door