RxTUDelft / RxJavaGames

10 games in RxJava + JavaFx
16 stars 5 forks source link

Flappy bird #8

Closed rvanheest closed 10 years ago

rvanheest commented 10 years ago

This is our RxJavaFx port of the popular Flappy Bird.

headinthebox commented 10 years ago

You guys are on a roll!

rvanheest commented 10 years ago

Yep, we wanna get the highest grade (10) out of it :p

headinthebox commented 10 years ago

You are on your way!

Lars6 commented 10 years ago

Nice addictive game, @rvanheest! A bit easier than the original version of this game.I like the bird you created. The only thing I miss, is the possibility to restart the game when you're game over. It would be nice if the player could restart the game by pressing the spacebar again. Then you could also try to add the high score to the score label.

rvanheest commented 10 years ago

Thanks @Lars6 for the feedback. Now, also the game restarts on a spacebar event and a highscore is added. Also the aesthetics are improved (with thanks to @Xyclade for advice).

Lars6 commented 10 years ago

@rvanheest, the problem that the game shows a black screen when the game restarts, is only on my laptop. On my other computer it works fine, so I think it has to do with my laptop.

Lars6 commented 10 years ago

We found that the black screen was caused by the smaller dimensions and/or the resolution of my laptop screen. JavaFX automatically tries to resize the stage such that it fits on the screen. It would be better to make the dimensions of the game dynamic, so that it works well on any screen. However, for now I will merge this pull request, as it is a good first version of the game. We can improve this later, if we have enough time.