lines.cpp 7.0 KB

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