1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:17:34 +00:00

FlappyBug: Propagate errors in Cloud class

Move-construct Cloud into the Game class to improve
error handling.
This commit is contained in:
creator1creeper1 2021-12-23 22:29:00 +01:00 committed by Brian Gianforcaro
parent ff359c27e3
commit 6f592a32cc
3 changed files with 19 additions and 9 deletions

View file

@ -122,21 +122,30 @@ public:
};
struct Cloud {
Vector<NonnullRefPtr<Gfx::Bitmap>> const cloud_bitmaps {
Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_0.png").release_value_but_fixme_should_propagate_errors(),
Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_1.png").release_value_but_fixme_should_propagate_errors(),
Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_2.png").release_value_but_fixme_should_propagate_errors(),
};
Vector<NonnullRefPtr<Gfx::Bitmap>> const cloud_bitmaps;
float x {};
float y {};
int bitmap_id {};
Cloud()
private:
Cloud(Vector<NonnullRefPtr<Gfx::Bitmap>> const cloud_bitmaps_value)
: cloud_bitmaps(move(cloud_bitmaps_value))
{
reset();
x = get_random_uniform(game_width);
}
public:
static ErrorOr<Cloud> construct()
{
Vector<NonnullRefPtr<Gfx::Bitmap>> const cloud_bitmaps {
TRY(Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_0.png")),
TRY(Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_1.png")),
TRY(Gfx::Bitmap::try_load_from_file("/res/icons/flappybug/cloud_2.png")),
};
return Cloud(move(cloud_bitmaps));
}
void reset()
{
bitmap_id = get_random_uniform(cloud_bitmaps.size());
@ -168,7 +177,7 @@ private:
const Gfx::IntRect m_score_rect { 10, 10, 20, 20 };
const Gfx::IntRect m_text_rect { game_width / 2 - 80, game_height / 2 - 40, 160, 80 };
Game(Bug);
Game(Bug, Cloud);
};
}