bar.cpp 5.2 KB

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