summaryrefslogtreecommitdiff
path: root/Userland/Services/ChessEngine/ChessEngine.h
blob: 61e356f069831710c1895824cc0381f1316f6b12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * 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 { }

    ChessEngine() { }
    ChessEngine(NonnullRefPtr<Core::IODevice> in, NonnullRefPtr<Core::IODevice> out)
        : Endpoint(in, out)
    {
    }

    virtual void handle_uci();
    virtual void handle_position(const Chess::UCI::PositionCommand&);
    virtual void handle_go(const Chess::UCI::GoCommand&);

private:
    Chess::Board m_board;
};