lines.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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. if (rhs.updater) {
  148. updater = rhs.updater;
  149. }
  150. }
  151. /**
  152. * Has a render function been set?
  153. *
  154. * @return bool
  155. */
  156. bool Line::hasRender(void) {
  157. if (render) {
  158. return true;
  159. } else {
  160. return false;
  161. }
  162. }
  163. /**
  164. * Return total length of Line
  165. *
  166. * text.length + 2 * padding length
  167. *
  168. * @return int
  169. */
  170. int Line::length(void) {
  171. if (!padding.empty())
  172. return padding.length() * 2 + text.length();
  173. return text.length();
  174. }
  175. /**
  176. * Make text the given width by padding string with spaces.
  177. *
  178. * @param width int
  179. */
  180. void Line::makeWidth(int width) {
  181. int need = width - text.length();
  182. if (need > 0) {
  183. text.append(std::string(need, ' '));
  184. }
  185. }
  186. /**
  187. * Set Line text.
  188. * @param txt std::string
  189. */
  190. void Line::setText(std::string &txt) { text = txt; }
  191. /**
  192. * Set Line text.
  193. * @param txt const char *
  194. */
  195. void Line::setText(const char *txt) { text = txt; }
  196. /**
  197. * set padding (color and text)
  198. *
  199. * @param padstring std::string
  200. * @param padColor ANSIColor
  201. */
  202. void Line::setPadding(std::string &padstring, ANSIColor padColor) {
  203. padding = padstring;
  204. paddingColor = padColor;
  205. }
  206. /**
  207. * set padding (color and text)
  208. *
  209. * @param padstring const char *
  210. * @param padColor ANSIColor
  211. */
  212. void Line::setPadding(const char *padstring, ANSIColor padColor) {
  213. padding = padstring;
  214. paddingColor = padColor;
  215. }
  216. /**
  217. * set color
  218. *
  219. * @param c ANSIColor
  220. */
  221. void Line::setColor(ANSIColor c) {
  222. color = c;
  223. hasColor = true;
  224. }
  225. /**
  226. * set render
  227. *
  228. * Set the renderFunction to use for this Line. This
  229. * replaces the colorizer.
  230. * @param rf renderFunction
  231. */
  232. void Line::setRender(renderFunction rf) { render = rf; }
  233. /**
  234. * set updater function
  235. *
  236. * This can update the line text when called.
  237. * @todo Define an updateFunction.
  238. * @param newUpdater updateFunction
  239. */
  240. void Line::setUpdater(updateFunction newUpdater) { updater = newUpdater; }
  241. std::string Line::debug(void) {
  242. std::string desc;
  243. desc = "Line(";
  244. desc += text;
  245. desc += "): ";
  246. if (updater) {
  247. desc += "[U]";
  248. }
  249. if (render) {
  250. desc += "[R]";
  251. }
  252. return desc;
  253. }
  254. /**
  255. * Call updater, report if the text was actually changed.
  256. *
  257. * @return bool
  258. */
  259. bool Line::update(void) {
  260. if (updater) {
  261. std::string newText = updater();
  262. int width = text.length();
  263. int need = width - newText.length();
  264. if (need > 0) {
  265. newText.append(std::string(need, ' '));
  266. }
  267. if (newText != text) {
  268. text = newText;
  269. return true;
  270. }
  271. }
  272. return false;
  273. }
  274. /**
  275. * Output Line
  276. *
  277. * This looks for padding and paddingColor.
  278. * This uses the render function if set.
  279. *
  280. * @param os std::ostream
  281. * @param l const Line &
  282. * @return std::ostream&
  283. */
  284. std::ostream &operator<<(std::ostream &os, const Line &l) {
  285. // Door *d = dynamic_cast<Door *>(&os);
  286. if (!l.padding.empty()) {
  287. os << l.paddingColor << l.padding;
  288. }
  289. if (l.render) {
  290. // This has a renderer. Use it.
  291. Render r = l.render(l.text);
  292. r.output(os);
  293. } else {
  294. if (l.hasColor) {
  295. os << l.color;
  296. };
  297. os << l.text;
  298. }
  299. if (!l.padding.empty()) {
  300. os << l.paddingColor << l.padding;
  301. }
  302. return os;
  303. }
  304. } // namespace door