ladybird/Userland/Libraries/LibCards/CardGame.cpp
Sam Atkins c5b7ad6004 LibCards: Add a CardGame base class
For now, the only feature of this is that it sets the background colour
from the `Games::Cards::BackgroundColor` config value. Later, other
card game configuration and shared behaviour can go here, to save
duplicating it in each game.
2022-08-22 12:50:41 +02:00

39 lines
1.1 KiB
C++

/*
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "CardGame.h"
#include <LibConfig/Client.h>
#include <LibGfx/Palette.h>
namespace Cards {
CardGame::CardGame()
{
auto background_color = Gfx::Color::from_string(Config::read_string("Games"sv, "Cards"sv, "BackgroundColor"sv));
set_background_color(background_color.value_or(Color::from_rgb(0x008000)));
}
void CardGame::config_string_did_change(String const& domain, String const& group, String const& key, String const& value)
{
if (domain == "Games" && group == "Cards" && key == "BackgroundColor") {
if (auto maybe_color = Gfx::Color::from_string(value); maybe_color.has_value()) {
set_background_color(maybe_color.value());
}
}
}
Gfx::Color CardGame::background_color() const
{
return palette().color(background_role());
}
void CardGame::set_background_color(Gfx::Color const& color)
{
auto new_palette = palette();
new_palette.set_color(Gfx::ColorRole::Background, color);
set_palette(new_palette);
}
}