CUSTOM GAME
Custom game project showcasing the implementation of different software design patterns and data structures built in C++. This includes the state, composite, component, command and factory design patterns, as well as a graph/node data structure to represent the game world with different locations with adjacent location nodes.
Tech Stack |
GAME DESIGN
The game utilised graph and node data structures to represent the game world and locations. Each location has a list of adjacent nodes (or locations they can travel/traverse to). Different software design patterns were applied to the architecture of the game (which was built using a graphics library called Raylib and C++).
COMMAND PATTERN
The command pattern is utilised to handle/invoke commands in my game. This allows us to abstract out the 'command request' as a standalone object. Which means we can have different commands that follow their own method of execution(). These commands can be invoked via a 'CommandProcessor'. Each command will have their own receiver (or controller) in which can choose which commands it wants to run (in this case the receiver is our Player class).
COMPOSITE PATTERN
The composite pattern is utilised to handle entities/items in our game world. This allows us to treat a group of objects in a similar way to a single object. For example: if we take the example of a 'backpack'... Well, a backpack can contain 'items' such as a 'sword' a 'potion'... But it may also contain items that group a collection of items. Think of a 'wallet' that can be put in a backpack that can hold coins, credit cards, etc. How we handle both the 'composite' of items and a 'singular' item should be handled in a singular way.
STATE PATTERN
The state pattern is utilised to handle changes between different 'menu' states within my custom project. This utilises a 'GameManager' which managers the changes between different states on the stack. Different states include the 'MainMenu', 'Gameplay', 'QuitGame', 'About', etc (which have their own update() and render() functions which can be called in our main game loop/window).
COMPONENT PATTERN
The component pattern is utilised to avoid deep nested trees of inheritance in our game design. Instead of giving our 'enemy' or 'player' class (as examples), variables to their health, mana or attack attributes... we decoupled our code by aiming to give our entities a bunch of 'attributes' and 'actions' objects which can be stored in a dictionary/map in the classes that need them.
FACTORY PATTERN
I attempted to implement the factory design pattern into my game to encapsulate object creation in my program when it came to 'enemies' at runtime. This pattern could also be applied to items in my game, and other entities if the time permitted. However, I ended up removing this component from my games architecture to opt for simpler object creation.