Bomberman

The classic Bomberman game, first released in 1985s, is a maze-based action game where players control Bomberman, a character who places bombs to destroy obstacles and defeat enemies. Set in a grid-like arena, the goal is to clear all enemies and navigate through the maze while avoiding bomb explosions, which can harm the player too. Power-ups scattered throughout the levels enhance Bomberman's abilities, like increasing bomb range or allowing multiple bombs at once.

This game was made with the Jotar2D Engine in c++.



Enemies

There are 4 types of enemies, while some are slow and/or roam randomly in the level, others are fast and/or chase the player when seen. The enemies use the State pattern to change between their behaviours. The AI uses the A* algorithm for path finding

See NavigationSystem.cpp Code

JSON Loading and Saving

By using the Nlohmann Json library, I made it so that the levels, texture paths, enemy info, most variables values for the components are loaded through JSON.

Through the menu you can acces the highscores, which are loaded through json and when you die, you can save a score with a name to the JSON file.