Darwin Neuroevolution Framework
sandbox_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 "game.h"
18 
19 #include <domains/tic_tac_toe/player.h>
20 
21 #include <QFrame>
22 
23 #include <memory>
24 using namespace std;
25 
26 namespace tic_tac_toe_ui {
27 
28 namespace Ui {
29 class SandboxWindow;
30 }
31 
32 class SandboxWindow : public QFrame {
33  Q_OBJECT
34 
35  public:
36  explicit SandboxWindow();
37  ~SandboxWindow();
38 
39  bool setup();
40 
41  private slots:
42  void on_reset_clicked();
43  void on_flip_sides_clicked();
44  void on_first_move_clicked();
45  void on_prev_move_clicked();
46  void on_next_move_clicked();
47  void on_last_move_clicked();
48 
49  private:
50  void play();
51  void updatePlayerNames();
52 
53  private:
54  Ui::SandboxWindow* ui = nullptr;
55 
56  Game game_;
57  unique_ptr<tic_tac_toe::Player> x_player_;
58  unique_ptr<tic_tac_toe::Player> o_player_;
59 };
60 
61 } // namespace tic_tac_toe_ui
Definition: evolution_window.h:22
STL namespace.
Definition: board_widget.cpp:26