Darwin Neuroevolution Framework
human_player.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 "pong_widget.h"
18 
19 #include <domains/pong/player.h>
20 
21 namespace pong_ui {
22 
23 class HumanPlayer : public pong::Player {
24  public:
25  HumanPlayer(const PongWidget* pong_widget) : pong_widget_(pong_widget) {}
26 
27  Action action() override {
28  if (pong_widget_->keyState(side_ == Side::Left ? Qt::Key_Q : Qt::Key_P))
29  return Action::MoveUp;
30  else if (pong_widget_->keyState(side_ == Side::Left ? Qt::Key_A : Qt::Key_L))
31  return Action::MoveDown;
32  else
33  return Action::None;
34  }
35 
36  string name() const override { return "Human"; }
37 
38  private:
39  const PongWidget* pong_widget_ = nullptr;
40 };
41 
42 } // namespace pong_ui
Definition: game_widget.cpp:32