mirror of
https://github.com/RGBCube/serenity
synced 2025-10-30 21:52:44 +00:00
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
58 lines
1 KiB
C++
58 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
class Game final {
|
|
public:
|
|
Game(size_t board_size, size_t target_tile = 0);
|
|
Game(const Game&) = default;
|
|
|
|
enum class MoveOutcome {
|
|
OK,
|
|
InvalidMove,
|
|
GameOver,
|
|
Won,
|
|
};
|
|
|
|
enum class Direction {
|
|
Up,
|
|
Down,
|
|
Left,
|
|
Right,
|
|
};
|
|
|
|
MoveOutcome attempt_move(Direction);
|
|
|
|
size_t score() const { return m_score; }
|
|
size_t turns() const { return m_turns; }
|
|
u32 target_tile() const { return m_target_tile; }
|
|
u32 largest_tile() const;
|
|
|
|
using Board = Vector<Vector<u32>>;
|
|
|
|
const Board& board() const { return m_board; }
|
|
|
|
static size_t max_power_for_board(size_t size)
|
|
{
|
|
if (size >= 6)
|
|
return 31;
|
|
|
|
return size * size + 1;
|
|
}
|
|
|
|
private:
|
|
void add_random_tile();
|
|
|
|
size_t m_grid_size { 0 };
|
|
u32 m_target_tile { 0 };
|
|
|
|
Board m_board;
|
|
size_t m_score { 0 };
|
|
size_t m_turns { 0 };
|
|
};
|