Tag archives for Game

HTML5

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…
Continue Reading
Python

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…
Continue Reading
Python

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…
Continue Reading
Java

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…
Continue Reading
Articles

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,…
Continue Reading
Android

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…
Continue Reading
Android

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…
Continue Reading
12