2022-08-21 12:53:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Array.h>
|
|
|
|
#include <LibCards/Card.h>
|
|
|
|
#include <LibGfx/Bitmap.h>
|
|
|
|
|
|
|
|
namespace Cards {
|
|
|
|
|
|
|
|
class CardPainter {
|
|
|
|
public:
|
|
|
|
static CardPainter& the();
|
|
|
|
|
|
|
|
NonnullRefPtr<Gfx::Bitmap> card_front(Suit, Rank);
|
|
|
|
NonnullRefPtr<Gfx::Bitmap> card_back();
|
|
|
|
NonnullRefPtr<Gfx::Bitmap> card_front_inverted(Suit, Rank);
|
|
|
|
NonnullRefPtr<Gfx::Bitmap> card_back_inverted();
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void set_background_image_path(DeprecatedString path);
|
2022-08-21 15:47:06 +01:00
|
|
|
|
2022-08-21 12:53:20 +01:00
|
|
|
private:
|
2022-08-21 15:47:06 +01:00
|
|
|
CardPainter();
|
2022-08-21 12:53:20 +01:00
|
|
|
NonnullRefPtr<Gfx::Bitmap> create_card_bitmap();
|
|
|
|
void paint_card_front(Gfx::Bitmap&, Suit, Rank);
|
|
|
|
void paint_card_back(Gfx::Bitmap&);
|
|
|
|
void paint_inverted_card(Gfx::Bitmap& bitmap, Gfx::Bitmap const& source_to_invert);
|
|
|
|
|
|
|
|
Array<Array<RefPtr<Gfx::Bitmap>, to_underlying(Rank::__Count)>, to_underlying(Suit::__Count)> m_cards;
|
|
|
|
Array<Array<RefPtr<Gfx::Bitmap>, to_underlying(Rank::__Count)>, to_underlying(Suit::__Count)> m_cards_inverted;
|
|
|
|
RefPtr<Gfx::Bitmap> m_card_back;
|
|
|
|
RefPtr<Gfx::Bitmap> m_card_back_inverted;
|
2022-08-21 15:47:06 +01:00
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString m_background_image_path;
|
2022-08-21 12:53:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|