Darwin Neuroevolution Framework
main_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 <QString>
18 #include <QDockWidget>
19 #include <QLabel>
20 #include <QMainWindow>
21 
22 #include <core/darwin.h>
23 #include <core/evolution.h>
24 #include <core/universe.h>
25 
26 #include <memory>
27 #include <vector>
28 using namespace std;
29 
30 namespace Ui {
31 class MainWindow;
32 }
33 
34 class MainWindow : public QMainWindow {
35  Q_OBJECT
36 
37  public:
38  MainWindow();
39  ~MainWindow() override;
40 
41  signals:
42  void sigBeginRun();
43  void sigAbortRun();
44 
45  protected:
46  void closeEvent(QCloseEvent* event) override;
47 
48  private slots:
49  // new/open universe
50  void on_action_new_triggered();
51  void on_action_open_triggered();
52 
53  void on_action_run_triggered();
54  void on_action_pause_triggered();
55  void on_action_reset_triggered();
56 
57  // new/open experiment
58  void on_action_new_experiment_triggered();
59  void on_action_open_experiment_triggered();
60  void on_action_branch_experiment_triggered();
61 
62  void on_action_new_sandbox_triggered();
63  void on_sandbox_tabs_tabCloseRequested(int index);
64 
65  private:
66  void dockWindow(const char* name,
67  QFrame* window,
68  Qt::DockWidgetAreas allowed_areas,
69  Qt::DockWidgetArea area,
70  bool permanent = false);
71 
72  bool confirmationDialog(const QString& title, const QString& text);
73  bool confirmEndOfExperiment();
74 
75  void createExperimentWindows();
76 
77  void reopenLastUniverse();
78  void universeSwitched();
79 
80  bool resetExperiment();
81  void closeExperiment();
82  void nextBatchedRun();
83 
84  void saveGeometry() const;
85  void restoreGeometry();
86 
87  void saveLayout() const;
88  void restoreLayout();
89 
90  void evolutionEvent(uint32_t event_flags);
91  void updateUi();
92 
93  private:
94  Ui::MainWindow* ui;
95  QLabel* status_label_ = nullptr;
96  QLabel* batch_label_ = nullptr;
97  vector<QDockWidget*> experiment_windows_;
98 
99  unique_ptr<darwin::Universe> universe_;
100  shared_ptr<darwin::Experiment> experiment_;
101 
102  // has the experiment been started?
103  bool active_experiment_ = false;
104 
105  // current batch state
106  // (current_run = [1 .. total_runs])
107  int batch_total_runs_ = 0;
108  int batch_current_run_ = 0;
109 
110  // the evolution config for the current batch
111  darwin::EvolutionConfig evolution_config_;
112 };
Definition: evolution_window.h:22
STL namespace.
Settings for an evolution experiment run.
Definition: evolution.h:104