Darwin Neuroevolution Framework
game_stats_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 <domains/conquest/game.h>
18 
19 #include <QFrame>
20 
21 #include <QLineSeries>
22 using namespace QtCharts;
23 
24 namespace conquest_ui {
25 
26 namespace Ui {
27 class GameStatsWindow;
28 }
29 
30 class GameStatsWindow : public QFrame {
31  Q_OBJECT
32 
33  const QColor kBlueColor{ 128, 128, 255 };
34  const QColor kRedColor{ 255, 128, 128 };
35 
36  public:
37  explicit GameStatsWindow(QWidget* parent = nullptr);
38  ~GameStatsWindow();
39 
40  public:
41  void updateCharts(const conquest::Game* game);
42  void resetCharts();
43 
44  private:
45  void setupCharts();
46 
47  private:
48  Ui::GameStatsWindow* ui;
49 
50  int last_chart_step_ = -1;
51 
52  QLineSeries* blue_units_series_ = new QLineSeries;
53  QLineSeries* red_units_series_ = new QLineSeries;
54 
55  QLineSeries* total_nodes_series_ = new QLineSeries;
56  QLineSeries* red_nodes_series_ = new QLineSeries;
57 
58  QLineSeries* blue_orders_series_ = new QLineSeries;
59  QLineSeries* red_orders_series_ = new QLineSeries;
60 };
61 
62 } // namespace conquest_ui
Definition: evolution_window.h:22
Definition: board_widget.cpp:34