Tag archives for Game
Learn How to Create the Classic Snake Game With the Canvas API and the HTML5/JavaScript Duo
If you've never played the famous Snake game, raise your hand! I say that, but I suppose that nowadays, the new generation may never have heard of this game, which may seem a bit old-fashioned given the possibilities offered by today's computers and the Web. And yet, there was a time when the Snake game was a game that all…
Creating the Classical Pong Game in Python with a Tkinter UI
To kick off the year 2024 on SSaurel's Blog, what better way than to code the classic game of Pong in Python? That's what I suggest you do in this step-by-step tutorial, using the Tkinter library for the user interface. This will show you how to program a simple game in Python and manage user interaction. Let's start by designing…
Creating a Flipping Bits Game in Python With Tkinter
After having proposed a tutorial showing you how to develop a program to create a Sitemap generator in Python, I continue my comeback to the Python language with the creation of a little game. The goal here is to show you how to use the Tkinter GUI library that comes standard with Python. The game I have chosen is not…
Developing a 15 Puzzle — Game of Fifteen in Java
The 15 Puzzle, also called Game of Fifteen, is a sliding puzzle that consists of a frame of numbered square tiles in random order with one tile missing. To solve the puzzle, the players must place the tiles in order by making sliding moves that use the empty space. In that tutorial, you are going to develop a 15 Puzzle…
Creating a Rock Paper Scissors Game in Java with a Markov Chain for the AI
Rock Paper Scissors Lizard Spock Game is an extended version of the classical Rock Paper Scissors game first mentioned in the Season 2 of “Big Bang Theory” by Sheldon Cooper. As Sheldon Cooper explains, the rules of RPSLS are the following : “Scissors cuts paper, paper covers rock, rock crushes lizard, lizard poisons Spock, Spock smashes scissors, scissors decapitates lizard,…
Develop a Roulette Game for Android
Roulette is a casino game with a wheel having numbers from 0 to 36. You must note that the American style roulette has a double zero. So, it has 38 sectors on the wheel. But, in that tutorial, we are going to create a French / European style Roulette Game. In the Roulette Game, players may choose to place bets…
Recreate the Countdown Math Game on Android
The Countdown Math Game, also known as Good Count Math Game, is a game made famous in England with the TV game show Countdown which started in the sixties and then exported in a lot of countries around the World. The Countdown Math Game involves number puzzles in which you must make arithmetic operations to reach a random target number…
Create a Roll Dice Game on Android with Shake Effect
A Roll Dice Game is a simple game in which you have to roll some dice and trying to make the highest score possible by adding the values of the two dice. In this tutorial, you are going to learn how to create a Roll Dice Game on Android. It’s a good way to discover how to manipulate simple view…
Learn to create a Roll Dice Game on Android
A Roll Dice Game is a simple game in which you have to roll some dice and trying to make the highest score possible by adding the values of the two dice. In this tutorial, you are going to learn how to create a Roll Dice Game on Android. It’s a good way to discover how to manipulate simple view…
Learn to create the game “Spin The Bottle” on Android
What is better that creating some funny games to learn the basics of Android development ? Today, you’re going to discover more on the Android Animation API by creating the game “Spin The Bottle”. Note that you can discover this tutorial in video on Youtube too : Spin the bottle is a party game in which several players sit/stand/kneel in…