play.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 press_a_key(void);
  46. int hand;
  47. int total_hands;
  48. int play_card;
  49. int current_streak;
  50. int best_streak;
  51. int select_card; // the card the player selects, has state=1
  52. unsigned long score;
  53. int days_played;
  54. Deck dp; // deckPanels
  55. int off_x, off_y;
  56. const int height = 3;
  57. std::chrono::_V2::system_clock::time_point play_day;
  58. door::ANSIColor deck_color;
  59. cards deck;
  60. cards state;
  61. void redraw(bool dealing);
  62. void bonus(void);
  63. int play_cards(void);
  64. public:
  65. PlayCards(door::Door &d, DBData &dbd, std::mt19937 &r);
  66. ~PlayCards();
  67. int play(void);
  68. void init_values(void);
  69. };
  70. door::renderFunction statusValue(door::ANSIColor status, door::ANSIColor value);
  71. door::renderFunction commandLineRender(door::ANSIColor bracket,
  72. door::ANSIColor inner,
  73. door::ANSIColor outer);
  74. #endif