mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:27:35 +00:00
Snake: Move GUI into Snake namespace and rename SnakeGame to Game
The former is required for GML, and the latter is to avoid the verbosity and redundancy of Snake::SnakeGame (and matches most other games in the system).
This commit is contained in:
parent
36042fc1d6
commit
ae90f490bd
4 changed files with 35 additions and 27 deletions
86
Userland/Games/Snake/Game.h
Normal file
86
Userland/Games/Snake/Game.h
Normal file
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2022, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/CircularQueue.h>
|
||||
#include <AK/NonnullRefPtrVector.h>
|
||||
#include <LibGUI/Frame.h>
|
||||
|
||||
namespace Snake {
|
||||
|
||||
class Game : public GUI::Frame {
|
||||
C_OBJECT(Game);
|
||||
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<Game>> create();
|
||||
virtual ~Game() override = default;
|
||||
|
||||
void start();
|
||||
void pause();
|
||||
void reset();
|
||||
|
||||
void set_snake_base_color(Color color);
|
||||
|
||||
private:
|
||||
explicit Game(NonnullRefPtrVector<Gfx::Bitmap> food_bitmaps);
|
||||
|
||||
virtual void paint_event(GUI::PaintEvent&) override;
|
||||
virtual void keydown_event(GUI::KeyEvent&) override;
|
||||
virtual void timer_event(Core::TimerEvent&) override;
|
||||
|
||||
struct Coordinate {
|
||||
int row { 0 };
|
||||
int column { 0 };
|
||||
|
||||
bool operator==(Coordinate const& other) const
|
||||
{
|
||||
return row == other.row && column == other.column;
|
||||
}
|
||||
};
|
||||
|
||||
struct Velocity {
|
||||
int vertical { 0 };
|
||||
int horizontal { 0 };
|
||||
};
|
||||
|
||||
void game_over();
|
||||
void spawn_fruit();
|
||||
bool is_available(Coordinate const&);
|
||||
void queue_velocity(int v, int h);
|
||||
Velocity const& last_velocity() const;
|
||||
Gfx::IntRect cell_rect(Coordinate const&) const;
|
||||
Gfx::IntRect score_rect() const;
|
||||
Gfx::IntRect high_score_rect() const;
|
||||
|
||||
int m_rows { 20 };
|
||||
int m_columns { 20 };
|
||||
|
||||
Velocity m_velocity { 0, 1 };
|
||||
Velocity m_last_velocity { 0, 1 };
|
||||
|
||||
CircularQueue<Velocity, 10> m_velocity_queue;
|
||||
|
||||
Coordinate m_head;
|
||||
Vector<Coordinate> m_tail;
|
||||
|
||||
Coordinate m_fruit;
|
||||
int m_fruit_type { 0 };
|
||||
|
||||
size_t m_length { 0 };
|
||||
unsigned m_score { 0 };
|
||||
DeprecatedString m_score_text;
|
||||
unsigned m_high_score { 0 };
|
||||
DeprecatedString m_high_score_text;
|
||||
bool m_is_new_high_score { false };
|
||||
|
||||
NonnullRefPtrVector<Gfx::Bitmap> m_food_bitmaps;
|
||||
|
||||
Gfx::Color m_snake_base_color { Color::Yellow };
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue