Darwin Neuroevolution Framework
pong_widget.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <domains/pong/game.h>
18 
19 #include <QColor>
20 #include <QFrame>
21 #include <QTimer>
22 
23 #include <unordered_map>
24 using namespace std;
25 
26 namespace pong_ui {
27 
28 // TODO: use core_ui::Canvas
29 class PongWidget : public QFrame {
30  Q_OBJECT
31 
32  static constexpr int kBorderSize = 15;
33  static constexpr float kBoardEdgeWidth = 0.01f;
34  static constexpr float kPaddleWidth = 0.015f;
35 
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 };
45 
46  public:
47  explicit PongWidget(QWidget* parent);
48 
49  void reset();
50  void setGame(pong::Game* game);
51 
52  bool keyState(int key) const {
53  const auto it = key_state_.find(key);
54  return it != key_state_.end() ? it->second : false;
55  }
56 
57  void setDebugRendering(bool debug);
58 
59  signals:
60  void sigUpdate();
61 
62  private:
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;
69 
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;
78 
79  void gameStep();
80 
81  private:
82  pong::Game* game_ = nullptr;
83  unordered_map<int, bool> key_state_;
84  bool debug_ = true;
85  bool paused_ = true;
86 
87  QTimer timer_;
88 };
89 
90 } // namespace pong_ui
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
STL namespace.
Definition: game_widget.cpp:32