windows 暂停时加一秒的计时器

lskq00tm  于 2023-02-16  发布在  Windows
关注(0)|答案(1)|浏览(267)

这应该是一个正常的计时器,它会一直运行到被暂停或退出,代码由NextStep()函数退出,计时器应该暂停并保持暂停状态,直到它被再次按下。
但是,当我按空格键时,计时器只有在向计时器添加另一个数字后才会停止。
这个问题的一个例子:
01秒
02秒
我按空格键。
03秒(+1秒)
计时器暂停。
另一方面,执行NextStep()的代码工作正常,没有任何延迟。
我试着用不同的方法重写它,但都不起作用。

  1. #pragma once
  2. #include <chrono>
  3. #include <iostream>
  4. #include <string>
  5. #include <thread>
  6. #include <stdlib.h>
  7. #include <iomanip>
  8. #include <math.h>
  9. #include <windows.h>
  10. #include <conio.h>
  11. #include <thread>
  12. using namespace std;
  13. void NextStep();
  14. bool pause = false;
  15. bool stop = false;
  16. void wait(int milliseconds)
  17. {
  18. int counter = 0;
  19. while (pause) {
  20. char ch = _getch();
  21. if (ch == ' ')
  22. {
  23. pause = !pause;
  24. }
  25. else if (ch == 27)
  26. {
  27. cout << "\033c";
  28. NextStep();
  29. stop = true;
  30. }
  31. }
  32. while (counter < milliseconds && !stop)
  33. {
  34. if (pause) {
  35. continue;
  36. }
  37. if (pause == false) {
  38. this_thread::sleep_for(chrono::milliseconds(1));
  39. counter++;
  40. }
  41. }
  42. }
  43. void timer()
  44. {
  45. int seconds = 0;
  46. int minutes = 0;
  47. int hours = 0;
  48. while (true)
  49. {
  50. cout << "\033c";
  51. cout << setfill(' ') << setw(55) << " Timer \n";
  52. cout << " ";
  53. cout << setfill('0') << setw(2) << hours << "h ";
  54. cout << setfill('0') << setw(2) << minutes << "min ";
  55. cout << setfill('0') << setw(2) << seconds << "sec ";
  56. wait(60);
  57. seconds++;
  58. if (seconds == 60) {
  59. minutes++;
  60. seconds = 0;
  61. }
  62. else if (minutes == 60)
  63. {
  64. hours++;
  65. minutes = 0;
  66. seconds = 0;
  67. }
  68. if (_kbhit())
  69. {
  70. char ch = _getch();
  71. if (ch == ' ')
  72. {
  73. pause = !pause;
  74. }
  75. else if (ch == 27)
  76. {
  77. cout << "\033c";
  78. NextStep();
  79. stop = true;
  80. break;
  81. }
  82. }
  83. }
  84. }

下面是NextStep()函数:

  1. void NextStep()
  2. {
  3. string option;
  4. correct = false;
  5. cout << "\033c";
  6. cout << "Loading...";
  7. Sleep(1300);
  8. cout << "\033c";
  9. cout << "What would you like to do next?" << endl;
  10. cout << "" << endl;
  11. cout << "To change your password TYPE: password" << endl;
  12. cout << "To use a calculator TYPE: calculator" << endl;
  13. cout << "To use a timer TYPE: timer" << endl;
  14. cout << "" << endl;
  15. cout << "Type your choice: ";
  16. UserInput();
  17. }
9rnv2umw

9rnv2umw1#

我不确定我是否理解了你代码的所有工作原理,但是我想我理解了你需要一个可以启动、暂停和重新启动的计时器。另外,如果我理解正确的话,计时器不应该受到线程处于睡眠状态这一事实的影响。
因此,下面是这样一个计时器的实现,它可能会对您有所帮助(至少对您的问题的一部分):

  1. #include <chrono>
  2. template<typename T>
  3. class Timer
  4. {
  5. public:
  6. void start()
  7. {
  8. m_start = std::chrono::steady_clock::now();
  9. }
  10. void pause()
  11. {
  12. m_elapsed += get_current_elapsed();
  13. m_start = {};
  14. }
  15. void reset()
  16. {
  17. m_start = {};
  18. m_elapsed = {};
  19. }
  20. int64_t get_elapsed()
  21. {
  22. return (m_elapsed + get_current_elapsed()).count();
  23. }
  24. private:
  25. std::chrono::time_point<std::chrono::steady_clock> m_start{};
  26. T m_elapsed{};
  27. bool is_started()
  28. {
  29. return m_start.time_since_epoch() != T{};
  30. }
  31. T get_current_elapsed()
  32. {
  33. return is_started() ? std::chrono::duration_cast<T>(std::chrono::steady_clock::now() - m_start) : T{};
  34. }
  35. };

下面是一个如何使用它的示例:

  1. #include <iostream>
  2. #include <thread>
  3. int main()
  4. {
  5. Timer<std::chrono::seconds> timer;
  6. timer.start();
  7. std::this_thread::sleep_for(std::chrono::seconds(1));
  8. timer.pause(); // "optional"
  9. std::cout << timer.get_elapsed() << std::endl; // 1
  10. timer.start(); // "optional"
  11. std::this_thread::sleep_for(std::chrono::seconds(1));
  12. timer.pause(); // "optional"
  13. std::cout << timer.get_elapsed() << std::endl; // 2
  14. timer.reset();
  15. timer.start();
  16. std::this_thread::sleep_for(std::chrono::seconds(1));
  17. timer.pause(); // "optional"
  18. std::cout << timer.get_elapsed() << std::endl; // 1
  19. return 0;
  20. }

Timer是一个模板,因此您可以使用以下任意类型来代替std::chrono::seconds,具体取决于计时器所需的精度:

  • 标准::计时::纳秒
  • 标准::计时::微秒
  • 标准::计时::毫秒
  • 标准::计时::秒
  • 标准::计时::分钟
  • 标准::计时::小时
  • 标准::时间::天
  • 标准::年代::年
展开查看全部

相关问题