17 #include "pong_widget.h" 19 #include <domains/pong/player.h> 23 class HumanPlayer :
public pong::Player {
25 HumanPlayer(
const PongWidget* pong_widget) : pong_widget_(pong_widget) {}
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;
36 string name()
const override {
return "Human"; }
39 const PongWidget* pong_widget_ =
nullptr;
Definition: game_widget.cpp:32