lines.cpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. #include "door.h"
  2. #include "utf8.h"
  3. namespace door {
  4. #ifdef EXPERIMENTAL
  5. BasicLine::BasicLine(std::string txt) : text{txt}, hasColor{false} {}
  6. BasicLine::BasicLine(std::string txt, ANSIColor c)
  7. : text{txt}, hasColor{true}, color{c} {}
  8. bool BasicLine::hasRender(void) {
  9. if (render)
  10. return true;
  11. return false;
  12. }
  13. void BasicLine::setText(std::string txt) { text = txt; }
  14. void BasicLine::setColor(ANSIColor c) {
  15. color = c;
  16. hasColor = true;
  17. }
  18. void BasicLine::setRender(renderFunction rf) { render = rf; }
  19. void BasicLine::setUpdater(updateFunction uf) { updater = uf; }
  20. /**
  21. * Update BasicLine, if we have an updater.
  22. *
  23. * If we have an updater, call it. If the text is different,
  24. * update setText() and return true.
  25. * Otherwise false.
  26. *
  27. * This doesn't detect changes (like if the render has been changed, for
  28. * example)
  29. *
  30. * @return bool
  31. */
  32. bool BasicLine::update(void) {
  33. if (updater) {
  34. std::string temp = updater();
  35. if (temp == text)
  36. return false;
  37. setText(temp);
  38. return true;
  39. }
  40. return false;
  41. }
  42. /**
  43. * Output Line
  44. *
  45. * This looks for padding and paddingColor.
  46. * This uses the render function if set.
  47. *
  48. * @param os std::ostream
  49. * @param l const BasicLine &
  50. * @return std::ostream&
  51. */
  52. std::ostream &operator<<(std::ostream &os, const BasicLine &l) {
  53. if (l.render) {
  54. // This has a renderer. Use it.
  55. Render r = l.render(l.text);
  56. r.output(os);
  57. } else {
  58. if (l.hasColor) {
  59. os << l.color;
  60. };
  61. os << l.text;
  62. }
  63. return os;
  64. }
  65. MultiLine::MultiLine(){};
  66. void MultiLine::append(std::shared_ptr<BasicLine> bl) { lines.push_back(bl); }
  67. bool MultiLine::update() {
  68. bool updated = false;
  69. for (auto line : lines) {
  70. if (line->update())
  71. updated = true;
  72. }
  73. return updated;
  74. }
  75. /**
  76. * Output Line
  77. *
  78. * This looks for padding and paddingColor.
  79. * This uses the render function if set.
  80. *
  81. * @param os std::ostream
  82. * @param ml const MultiLine &
  83. * @return std::ostream&
  84. */
  85. std::ostream &operator<<(std::ostream &os, const MultiLine &ml) {
  86. for (auto line : ml.lines) {
  87. os << *line;
  88. }
  89. return os;
  90. }
  91. #endif
  92. /**
  93. * Construct a new Line:: Line object with
  94. * string and total width.
  95. *
  96. * @param txt std::string
  97. * @param width int
  98. */
  99. Line::Line(const std::string &txt, int w) : text{txt}, width{w} {
  100. hasColor = false;
  101. }
  102. Line::Line(const std::string &txt, int w, ANSIColor c)
  103. : text{txt}, color{c}, width{w} {
  104. hasColor = true;
  105. }
  106. Line::Line(const char *txt, int w, ANSIColor c)
  107. : text{txt}, color{c}, width{w} {
  108. hasColor = true;
  109. }
  110. Line::Line(const std::string &txt, int w, renderFunction rf)
  111. : text{txt}, render{rf}, width{w} {
  112. hasColor = false;
  113. }
  114. Line::Line(const char *txt, int w, renderFunction rf)
  115. : text{txt}, render{rf}, width{w} {
  116. hasColor = false;
  117. }
  118. /**
  119. * Construct a new Line:: Line object with
  120. * const char * and total width
  121. *
  122. * @param txt const char *
  123. * @param width int
  124. */
  125. Line::Line(const char *txt, int w) : text{txt}, width{w} { hasColor = false; }
  126. /**
  127. * Construct a new Line:: Line object from an
  128. * existing Line
  129. *
  130. * @param rhs const Line&
  131. */
  132. Line::Line(const Line &rhs)
  133. : text{rhs.text}, hasColor{rhs.hasColor}, color{rhs.color},
  134. padding{rhs.padding}, paddingColor{rhs.paddingColor} {
  135. if (rhs.render) {
  136. render = rhs.render;
  137. }
  138. if (rhs.updater) {
  139. updater = rhs.updater;
  140. }
  141. width = rhs.width;
  142. }
  143. Line::Line(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. if (rhs.updater)
  149. updater = rhs.updater;
  150. width = rhs.width;
  151. }
  152. /**
  153. * Has a render function been set?
  154. *
  155. * @return bool
  156. */
  157. bool Line::hasRender(void) {
  158. if (render) {
  159. return true;
  160. } else {
  161. return false;
  162. }
  163. }
  164. /**
  165. * Return total length of Line
  166. *
  167. * text.length + 2 * padding length
  168. *
  169. * @return int
  170. */
  171. int Line::length(void) {
  172. if (!padding.empty()) {
  173. if (unicode) {
  174. return utf8::distance(padding.begin(), padding.end()) * 2 +
  175. utf8::distance(text.begin(), text.end());
  176. } else {
  177. return padding.length() * 2 + text.length();
  178. }
  179. }
  180. if (unicode) {
  181. return utf8::distance(text.begin(), text.end());
  182. } else {
  183. return text.length();
  184. }
  185. }
  186. /**
  187. * Make text the given width by padding string with spaces.
  188. *
  189. * @param width int
  190. */
  191. void Line::fit(void) {
  192. int need;
  193. if (door::unicode)
  194. need = width - utf8::distance(text.begin(), text.end());
  195. else
  196. need = width - text.length();
  197. need -= padding.length() * 2;
  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 line_len;
  279. int need;
  280. if (unicode) {
  281. // line_len = utf8::distance(text.begin(), text.end());
  282. need = width - utf8::distance(newText.begin(), newText.end());
  283. } else {
  284. // line_len = text.length();
  285. need = width - newText.length();
  286. }
  287. need -= padding.length() * 2;
  288. if (need > 0) {
  289. newText.append(std::string(need, ' '));
  290. }
  291. if (newText != text) {
  292. text = newText;
  293. return true;
  294. }
  295. }
  296. return false;
  297. }
  298. /**
  299. * Output Line
  300. *
  301. * This looks for padding and paddingColor.
  302. * This uses the render function if set.
  303. *
  304. * @param os std::ostream
  305. * @param l const Line &
  306. * @return std::ostream&
  307. */
  308. std::ostream &operator<<(std::ostream &os, const Line &l) {
  309. // Door *d = dynamic_cast<Door *>(&os);
  310. if (!l.padding.empty()) {
  311. os << l.paddingColor << l.padding;
  312. }
  313. if (l.render) {
  314. // This has a renderer. Use it.
  315. Render r = l.render(l.text);
  316. r.output(os);
  317. } else {
  318. if (l.hasColor) {
  319. os << l.color;
  320. };
  321. os << l.text;
  322. }
  323. if (!l.padding.empty()) {
  324. os << l.paddingColor << l.padding;
  325. }
  326. return os;
  327. }
  328. } // namespace door