Darwin Neuroevolution Framework
game_window.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/conquest/game.h>
19 #include <domains/conquest/player.h>
20 
21 #include <QFrame>
22 #include <QTimer>
23 
24 #include <memory>
25 using namespace std;
26 
27 namespace conquest_ui {
28 
29 namespace Ui {
30 class GameWindow;
31 }
32 
33 class GameWindow : public QFrame {
34  Q_OBJECT
35 
36  struct Variables {
37  core_ui::PropertyItem* blue_player = nullptr;
38  core_ui::PropertyItem* red_player = nullptr;
39  core_ui::PropertyItem* state = nullptr;
40  core_ui::PropertyItem* blue_units = nullptr;
41  core_ui::PropertyItem* red_units = nullptr;
42  core_ui::PropertyItem* blue_nodes = nullptr;
43  core_ui::PropertyItem* red_nodes = nullptr;
44  core_ui::PropertyItem* game_step = nullptr;
45  };
46 
47  public:
48  explicit GameWindow();
49  ~GameWindow();
50 
51  bool setup();
52 
53  private slots:
54  void pauseGame();
55  void resumeGame();
56  void gameStep();
57 
58  void on_debug_rendering_toggled(bool checked);
59 
60  private:
61  void updateUI();
62  void setupVariables();
63 
64  unique_ptr<conquest::Player> newPlayer(const QString& type, int generation) const;
65 
66  private:
67  Ui::GameWindow* ui = nullptr;
68  QTimer timer_;
69 
70  const conquest::Board* board_ = nullptr;
71  unique_ptr<conquest::Game> game_;
72  unique_ptr<conquest::Player> blue_player_;
73  unique_ptr<conquest::Player> red_player_;
74  Variables variables_;
75 };
76 
77 } // namespace conquest_ui
A basic, manually-updated property item.
Definition: properties_widget.h:70
Definition: evolution_window.h:22
STL namespace.
Definition: board_widget.cpp:34