mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 17:15:08 +00:00
29 lines
691 B
C++
29 lines
691 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibChess/Chess.h>
|
|
#include <LibChess/UCIEndpoint.h>
|
|
|
|
class ChessEngine : public Chess::UCI::Endpoint {
|
|
C_OBJECT(ChessEngine)
|
|
public:
|
|
virtual ~ChessEngine() override = default;
|
|
|
|
virtual void handle_uci() override;
|
|
virtual void handle_position(Chess::UCI::PositionCommand const&) override;
|
|
virtual void handle_go(Chess::UCI::GoCommand const&) override;
|
|
|
|
private:
|
|
ChessEngine() = default;
|
|
ChessEngine(NonnullRefPtr<Core::IODevice> in, NonnullRefPtr<Core::IODevice> out)
|
|
: Endpoint(in, out)
|
|
{
|
|
}
|
|
|
|
Chess::Board m_board;
|
|
};
|