play.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #ifndef PLAY_H
  2. #define PLAY_H
  3. #include "db.h"
  4. #include "deck.h"
  5. #include "door.h"
  6. #include <chrono>
  7. #include <random>
  8. class PlayCards {
  9. private:
  10. door::Door &door;
  11. DBData &db;
  12. std::mt19937 &rng;
  13. std::vector<int> seeds;
  14. int month_last_day;
  15. /**
  16. * These map to the positions on the screen that displays the calendar. This
  17. * allows me to update the days string. Sun - Sat, 6 lines. (7*6)
  18. */
  19. std::array<int, 7 * 6> calendar_panel_days;
  20. /**
  21. * This maps a day to: 0 (available), 1 (has hands left to play), 2 (played),
  22. * 3 (NNY)
  23. */
  24. std::array<int, 31> calendar_day_status;
  25. std::array<time_t, 31> calendar_day_t;
  26. std::unique_ptr<door::Panel> spaceAceTriPeaks;
  27. std::unique_ptr<door::Panel> score_panel;
  28. std::unique_ptr<door::Panel> streak_panel;
  29. std::unique_ptr<door::Panel> left_panel;
  30. std::unique_ptr<door::Panel> cmd_panel;
  31. std::unique_ptr<door::Panel> next_quit_panel;
  32. std::unique_ptr<door::Screen> calendar;
  33. std::unique_ptr<door::Panel> make_score_panel();
  34. std::unique_ptr<door::Panel> make_tripeaks(void);
  35. std::unique_ptr<door::Panel> make_command_panel(void);
  36. std::unique_ptr<door::Panel> make_streak_panel(void);
  37. std::unique_ptr<door::Panel> make_left_panel(void);
  38. std::unique_ptr<door::Panel> make_next_panel(void);
  39. std::unique_ptr<door::Panel> make_weekdays(void);
  40. std::unique_ptr<door::Panel> make_month(std::string month);
  41. std::unique_ptr<door::Panel> make_calendar_panel(void);
  42. std::unique_ptr<door::Screen> make_calendar(void);
  43. void update_calendar_days(void);
  44. std::string current_month(std::chrono::_V2::system_clock::time_point now);
  45. int hand;
  46. int total_hands;
  47. int play_card;
  48. int current_streak;
  49. int best_streak;
  50. int select_card; // the card the player selects, has state=1
  51. unsigned long score;
  52. int days_played;
  53. Deck dp; // deckPanels
  54. int off_x, off_y;
  55. const int height = 3;
  56. std::chrono::_V2::system_clock::time_point play_day;
  57. door::ANSIColor deck_color;
  58. cards deck;
  59. cards state;
  60. void redraw(bool dealing);
  61. void bonus(void);
  62. int play_cards(void);
  63. public:
  64. PlayCards(door::Door &d, DBData &dbd, std::mt19937 &r);
  65. ~PlayCards();
  66. int play(void);
  67. void init_values(void);
  68. };
  69. door::renderFunction statusValue(door::ANSIColor status, door::ANSIColor value);
  70. door::renderFunction commandLineRender(door::ANSIColor bracket,
  71. door::ANSIColor inner,
  72. door::ANSIColor outer);
  73. #endif