Darwin Neuroevolution Framework
game_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 <core_ui/properties_widget.h>
18 #include <domains/pong/game.h>
19 #include <domains/pong/player.h>
20 
21 #include <QFrame>
22 
23 #include <memory>
24 using namespace std;
25 
26 namespace pong_ui {
27 
28 namespace Ui {
29 class GameWidget;
30 }
31 
32 class GameWidget : public QFrame {
33  Q_OBJECT
34 
35  struct Variables {
36  core_ui::PropertyItem* left_player = nullptr;
37  core_ui::PropertyItem* right_player = nullptr;
38  core_ui::PropertyItem* current_set = nullptr;
39  core_ui::PropertyItem* game_step = nullptr;
40  core_ui::PropertyItem* score_left = nullptr;
41  core_ui::PropertyItem* score_right = nullptr;
42  };
43 
44  public:
45  GameWidget();
46  ~GameWidget();
47 
48  bool setup();
49 
50  private:
51  void updateUI();
52  void setupVariables();
53 
54  unique_ptr<pong::Player> newPlayer(const QString& type, int generation) const;
55 
56  private slots:
57  void on_debug_rendering_toggled(bool checked);
58 
59  private:
60  Ui::GameWidget* ui = nullptr;
61 
62  pong::Game game_;
63  unique_ptr<pong::Player> left_player_;
64  unique_ptr<pong::Player> right_player_;
65  Variables variables_;
66 };
67 
68 } // namespace pong_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
Definition: evolution_window.h:22
STL namespace.
Definition: game_widget.cpp:32