Advertisement
-nodo-

Ile jeszcze

Apr 14th, 2021
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.78 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <iomanip>
  4. #include <sstream>
  5.  
  6. #include <sys/ioctl.h>
  7. #include <unistd.h>
  8.  
  9. using namespace std;
  10.  
  11. class ProgressBar
  12. {
  13. private:
  14.     int currentTime, beginningTime, endingTime;
  15.     float percentPassed;
  16.     bool end = false;
  17.     string prompt;
  18.  
  19.     int GetMessageLenght(string message)
  20.     {
  21.         int messageLenght = 0;
  22.         for (int i = 0, c, ix = message.length(); i < ix; i++, messageLenght++)
  23.         {
  24.             c = (unsigned char)message[i];
  25.             if (c >= 0 && c <= 127) i += 0;
  26.             else if ((c & 0xE0) == 0xC0) i += 1;
  27.             else if ((c & 0xF0) == 0xE0) i += 2;
  28.             else if ((c & 0xF8) == 0xF0) i += 3;
  29.         }
  30.         return messageLenght;
  31.     }
  32.  
  33.     void Variant(int left, string variants[], string &message)
  34.     {
  35.         message += to_string(left);
  36.  
  37.         int last = left % 10;
  38.  
  39.         if (left == 1) message += variants[0];                                                                    // minutę
  40.         else if ((last == 2 || last == 3 || last == 4) && !(left > 10 && left < 20)) message += variants[1];      // minuty
  41.         else message += variants[2];                                                                              // minut
  42.     }
  43.  
  44.     string GetMessage()
  45.     {
  46.         string message;
  47.         int left = endingTime - currentTime;
  48.         int daysLeft = left / 60 / 60 / 24;
  49.         int hoursLeft = (left - daysLeft * 60 * 60 * 24) / 60 / 60;
  50.         int minutesLeft = (endingTime - currentTime - daysLeft * 60 * 60 * 24 - hoursLeft * 60 * 60) / 60;
  51.         percentPassed = ((float)currentTime - (float)beginningTime) / ((float)endingTime - (float)beginningTime) * 100;
  52.  
  53.         if (currentTime >= endingTime)
  54.         {
  55.             end = true;
  56.             return "To już jest koniec, nie ma już nic";
  57.         }
  58.  
  59.         int lastHours, lastMinutes;
  60.  
  61.         message += prompt;
  62.  
  63.         Variant(daysLeft, new string[3]{" dzień, ", " dni, ", " dni, "}, message);
  64.         Variant(hoursLeft, new string[3]{" godzinę i ", " godziny i ", " godzin i "}, message);
  65.         Variant(minutesLeft, new string[3]{" minutę", " minuty", " minut"}, message);
  66.  
  67.         return message;
  68.     }
  69.  
  70.     string GetProgressBar()
  71.     {
  72.         struct winsize size;
  73.         ioctl(STDOUT_FILENO, TIOCGWINSZ, &size);
  74.  
  75.         string progressBarStr = "[";
  76.         int progressBarLenght = size.ws_col - 10;
  77.         float step = 100.0 / progressBarLenght;
  78.  
  79.         int i = 0;
  80.         while (i < round(percentPassed / step) - 1) {
  81.             progressBarStr += "=";
  82.             i++;
  83.         }
  84.  
  85.         progressBarStr += ">";
  86.  
  87.         while (i < progressBarLenght - 1)
  88.         {
  89.             progressBarStr += " ";
  90.             i++;
  91.         }
  92.  
  93.         progressBarStr += "]";
  94.  
  95.         return progressBarStr;
  96.     }
  97.  
  98. public:
  99.     void Print()
  100.     {
  101.         cout << GetMessage() << "\n";
  102.  
  103.         if (end == false)
  104.         {
  105.             cout << GetProgressBar() << " ";
  106.             if (percentPassed < 10) cout << " ";
  107.             cout << fixed << setprecision(3) << percentPassed << "%";
  108.         }
  109.  
  110.         cout << endl;
  111.     }
  112.  
  113.     ProgressBar(string bT, string eT, string p)
  114.     {
  115.         tm t{};
  116.         istringstream sbT(bT);
  117.         istringstream seT(eT);
  118.  
  119.         t.tm_isdst = 1;
  120.  
  121.         sbT >> get_time(&t, "%H:%M %d.%m.%Y");
  122.         beginningTime = (int)mktime(&t);
  123.  
  124.         seT >> get_time(&t, "%H:%M %d.%m.%Y");
  125.         endingTime = (int)mktime(&t);
  126.  
  127.         if (sbT.fail() || seT.fail()) throw runtime_error{"incorrect date"};
  128.  
  129.         currentTime = (int)time(NULL);
  130.         prompt = p;
  131.  
  132.         Print();
  133.     }
  134. };
  135.  
  136. int main()
  137. {
  138.     ProgressBar def("00:00 01.09.2020", "10:30 25.06.2021", "Trzeba przeżyć jeszcze ");
  139.  
  140.     return 0;
  141. }
  142.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement