bar.cpp 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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 < 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) << unicode_len << " ";
  73. text.replace(unicode_pos, unicode_len, percent);
  74. } else {
  75. text.replace(pos, percent.length(), percent);
  76. };
  77. }
  78. line.setText(text);
  79. break;
  80. };
  81. case BarStyle::HALF_STEP: {
  82. step_width = 100 * 100 / length;
  83. int steps = current_percent * 2 / step_width;
  84. /*
  85. cout << "percent " << std::setw(5) << current_percent << " : step_width "
  86. << std::setw(5) << step_width << std::setw(5) << steps << " of "
  87. << std::setw(5) << length << " ";
  88. */
  89. if (door::unicode)
  90. for (int i = 0; i < steps / 2; i++)
  91. text.append("\u2588");
  92. else
  93. text.assign(steps / 2, '\xdb');
  94. if (steps % 2 == 1) {
  95. if (door::unicode)
  96. text.append("\u258c");
  97. else
  98. text.append(1, '\xdd');
  99. steps++;
  100. }
  101. for (int x = steps; x < length * 2; x += 2)
  102. text.append(" ");
  103. line.setText(text);
  104. break;
  105. }
  106. case BarStyle::GRADIENT: {
  107. step_width = 100 * 100 / length;
  108. int steps = current_percent * 4 / step_width;
  109. /*
  110. cout << "percent " << std::setw(5) << current_percent << " : step_width "
  111. << std::setw(5) << step_width << std::setw(5) << steps << " of "
  112. << std::setw(5) << length << " ";
  113. */
  114. if (door::unicode)
  115. for (int i = 0; i < steps / 4; i++)
  116. text.append("\u2588");
  117. else
  118. text.assign(steps / 4, '\xdb');
  119. if (steps % 4 != 0) {
  120. // display the gradient
  121. switch (steps % 4) {
  122. case 1:
  123. if (door::unicode)
  124. text.append("\u2591");
  125. else
  126. text.append(1, '\xb0');
  127. break;
  128. case 2:
  129. if (door::unicode)
  130. text.append("\u2592");
  131. else
  132. text.append(1, '\xb1');
  133. break;
  134. case 3:
  135. if (door::unicode)
  136. text.append("\u2593");
  137. else
  138. text.append(1, '\xb2');
  139. break;
  140. }
  141. /*
  142. if (door::unicode)
  143. text.append("\u258c");
  144. else
  145. text.append(1, '\xdd');
  146. */
  147. while (steps % 4 != 0)
  148. steps++;
  149. }
  150. for (int x = steps; x < length * 4; x += 4)
  151. text.append(" ");
  152. line.setText(text);
  153. break;
  154. }
  155. }
  156. // cout << "percent" << current_percent << " : " << steps << " of " << length
  157. // << " " << std::endl;
  158. }
  159. void Bar::set(float percent) {
  160. current_percent = (unsigned long)(percent * 100.0);
  161. update_bar();
  162. }
  163. void Bar::set(int value, int max) {
  164. // I'm thinking the ulong would be % * 100.
  165. unsigned long percentage = value * 10000 / max;
  166. // float percentage = ((float)pos / (float)max) * 100.0;
  167. set(percentage);
  168. }
  169. void Bar::set(unsigned long percent) {
  170. current_percent = percent;
  171. update_bar();
  172. }
  173. } // namespace door