bar.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #include "door.h"
  2. #include "utf8.h"
  3. #include <iomanip>
  4. #include <iostream>
  5. namespace door {
  6. BarLine::BarLine(const std::string &txt, int width)
  7. : Line(txt, width), barstyle{BarStyle::SOLID},
  8. current_percent{0}, length{width} {
  9. init();
  10. }
  11. BarLine::BarLine(const char *txt, int width)
  12. : Line(txt, width), barstyle{BarStyle::SOLID},
  13. current_percent{0}, length{width} {
  14. init();
  15. }
  16. BarLine::BarLine(const std::string &txt, int width, ANSIColor c)
  17. : Line(txt, width, c), barstyle{BarStyle::SOLID},
  18. current_percent{0}, length{width} {
  19. init();
  20. }
  21. BarLine::BarLine(const char *txt, int width, ANSIColor c)
  22. : Line(txt, width, c), barstyle{BarStyle::SOLID},
  23. current_percent{0}, length{width} {
  24. init();
  25. }
  26. void BarLine::init(void) {
  27. // set update function.
  28. door::updateFunction barLineUpdate = [this](void) -> std::string {
  29. if (!colorRange.empty()) {
  30. // Ok, there is a range, so test for it.
  31. ANSIColor ac;
  32. // unsigned long p;
  33. for (auto bc : colorRange) {
  34. if (current_percent <= bc.percent) {
  35. ac = bc.c;
  36. // p = bc.percent;
  37. break;
  38. };
  39. }
  40. // cout << "!" << current_percent << "," << p << " ";
  41. setColor(ac);
  42. }
  43. return this->update_bar();
  44. };
  45. setUpdater(barLineUpdate);
  46. update();
  47. }
  48. void BarLine::setStyle(BarStyle s) { barstyle = s; }
  49. void BarLine::set(int value, int max) {
  50. unsigned long percentage = value * 100 * 100 / max;
  51. set(percentage);
  52. }
  53. void BarLine::set(float percent) {
  54. unsigned long percentage = (unsigned long)(percent * 100.0);
  55. set(percentage);
  56. }
  57. void BarLine::set(unsigned long percent) {
  58. current_percent = percent;
  59. update_bar();
  60. }
  61. std::string BarLine::update_bar(void) {
  62. unsigned long step_width;
  63. std::string btext;
  64. switch (barstyle) {
  65. case BarStyle::SOLID:
  66. case BarStyle::PERCENTAGE:
  67. case BarStyle::PERCENT_SPACE: {
  68. step_width = 100 * 100 / length;
  69. int steps = current_percent / step_width;
  70. // number of steps visible.
  71. // for now:
  72. if (door::unicode)
  73. for (int i = 0; i < steps; ++i)
  74. btext.append("\u2588");
  75. else
  76. btext.assign(steps, '\xdb');
  77. for (int x = steps; x < length; ++x)
  78. btext.append(" ");
  79. // line.setText(text);
  80. /*
  81. cout << "percent " << std::setw(5) << current_percent << " : step_width "
  82. << std::setw(5) << step_width << std::setw(5) << steps << " of "
  83. << std::setw(5) << length << " ";
  84. */
  85. if ((barstyle == BarStyle::PERCENTAGE) ||
  86. (barstyle == BarStyle::PERCENT_SPACE)) {
  87. // Put the % text in the text.
  88. std::string percent;
  89. percent = std::to_string(current_percent / 100);
  90. int pos = (length / 2) - 1;
  91. if (percent != "100") {
  92. percent.append(1, '%');
  93. if (percent.length() < 3)
  94. percent.insert(0, " ");
  95. }
  96. if (barstyle == BarStyle::PERCENT_SPACE) {
  97. percent.insert(0, 1, ' ');
  98. percent.append(1, ' ');
  99. pos -= 1;
  100. }
  101. // cout << "[" << percent << "] " << std::setw(3) << pos << " ";
  102. // unicode ... is unipain.
  103. if (door::unicode) {
  104. // handle unicode here
  105. // Find start position, and ending position for the replacement.
  106. const char *cp = btext.c_str();
  107. const char *end = cp;
  108. while (*end != 0)
  109. end++;
  110. for (int i = 0; i < pos; i++) {
  111. utf8::next(cp, end);
  112. }
  113. // find position using unicode position
  114. int unicode_pos = cp - btext.c_str();
  115. const char *cp_len_start = cp;
  116. const char *cp_len = cp;
  117. for (int i = 0; i < (int)percent.length(); i++) {
  118. utf8::next(cp_len, end);
  119. }
  120. int unicode_len = cp_len - cp_len_start;
  121. // cout << " " << std::setw(3) << unicode_pos << " " << std::setw(3) <<
  122. // unicode_len << " ";
  123. btext.replace(unicode_pos, unicode_len, percent);
  124. } else {
  125. btext.replace(pos, percent.length(), percent);
  126. };
  127. }
  128. return btext;
  129. break;
  130. };
  131. case BarStyle::HALF_STEP: {
  132. step_width = 100 * 100 / length;
  133. int steps = current_percent * 2 / step_width;
  134. /*
  135. cout << "percent " << std::setw(5) << current_percent << " : step_width "
  136. << std::setw(5) << step_width << std::setw(5) << steps << " of "
  137. << std::setw(5) << length << " ";
  138. */
  139. if (door::unicode)
  140. for (int i = 0; i < steps / 2; i++)
  141. btext.append("\u2588");
  142. else
  143. btext.assign(steps / 2, '\xdb');
  144. if (steps % 2 == 1) {
  145. if (door::unicode)
  146. btext.append("\u258c");
  147. else
  148. btext.append(1, '\xdd');
  149. steps++;
  150. }
  151. for (int x = steps; x < length * 2; x += 2)
  152. btext.append(" ");
  153. return btext;
  154. break;
  155. }
  156. case BarStyle::GRADIENT: {
  157. step_width = 100 * 100 / length;
  158. int steps = current_percent * 4 / step_width;
  159. /*
  160. cout << "percent " << std::setw(5) << current_percent << " : step_width "
  161. << std::setw(5) << step_width << std::setw(5) << steps << " of "
  162. << std::setw(5) << length << " ";
  163. */
  164. if (door::unicode)
  165. for (int i = 0; i < steps / 4; i++)
  166. btext.append("\u2588");
  167. else
  168. btext.assign(steps / 4, '\xdb');
  169. if (steps % 4 != 0) {
  170. // display the gradient
  171. switch (steps % 4) {
  172. case 1:
  173. if (door::unicode)
  174. btext.append("\u2591");
  175. else
  176. btext.append(1, '\xb0');
  177. break;
  178. case 2:
  179. if (door::unicode)
  180. btext.append("\u2592");
  181. else
  182. btext.append(1, '\xb1');
  183. break;
  184. case 3:
  185. if (door::unicode)
  186. btext.append("\u2593");
  187. else
  188. btext.append(1, '\xb2');
  189. break;
  190. }
  191. while (steps % 4 != 0)
  192. steps++;
  193. }
  194. for (int x = steps; x < length * 4; x += 4)
  195. btext.append(" ");
  196. return btext;
  197. break;
  198. }
  199. }
  200. // cout << "percent" << current_percent << " : " << steps << " of " << length
  201. // << " " << std::endl;
  202. return btext;
  203. }
  204. void BarLine::setColorRange(vector<BarColorRange> bcr) { colorRange = bcr; }
  205. } // namespace door