17 #include <domains/pong/game.h> 23 #include <unordered_map> 29 class PongWidget :
public QFrame {
32 static constexpr
int kBorderSize = 15;
33 static constexpr
float kBoardEdgeWidth = 0.01f;
34 static constexpr
float kPaddleWidth = 0.015f;
36 const QColor kBackgroundColor{ 255, 255, 255 };
37 const QColor kBoardBackgroundColor{ 240, 240, 255 };
38 const QColor kBoardEdgeColor{ 64, 64, 128 };
39 const QColor kPaddleColor{ 64, 128, 64 };
40 const QColor kBallColor{ 216, 64, 64 };
41 const QColor kDisabledEdgeColor{ 128, 128, 128 };
42 const QColor kDebugLineColor{ 128, 128, 128 };
43 const QColor kScoreColor{ 128, 128, 128 };
44 const QColor kMessageColor{ 128, 200, 128, 128 };
47 explicit PongWidget(QWidget* parent);
50 void setGame(pong::Game* game);
52 bool keyState(
int key)
const {
53 const auto it = key_state_.find(key);
54 return it != key_state_.end() ? it->second :
false;
57 void setDebugRendering(
bool debug);
63 void paintEvent(QPaintEvent* event)
override;
64 void keyPressEvent(QKeyEvent* event)
override;
65 void keyReleaseEvent(QKeyEvent* event)
override;
66 void focusInEvent(QFocusEvent*)
override;
67 void focusOutEvent(QFocusEvent*)
override;
68 void mousePressEvent(QMouseEvent*)
override;
70 void paintPaddle(QPainter& painter,
float x,
float y)
const;
71 void paintBall(QPainter& painter,
const pong::Game::Ball& ball)
const;
72 void paintTrajectory(QPainter& painter,
73 const pong::Game::Ball& ball,
74 int bounce_count = 0)
const;
75 void paintBoard(QPainter& painter)
const;
76 void paintScore(QPainter& painter,
float x,
float y,
int score)
const;
77 void paintMessage(QPainter& painter,
float x,
float y,
const QString& message)
const;
82 pong::Game* game_ =
nullptr;
83 unordered_map<int, bool> key_state_;
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
Definition: game_widget.cpp:32