Heistman Blog Entry 2 – Laying the Foundation

Since the last blog entry, I have started working on a lot of the backend elements of the project, as well as performing the usual tasks when setting up a new project.

As mentioned in the previous blog entry, I am using the Unreal Third Person Template as a base for the project, so I made a few small tweaks before starting work on the gadget mechanic.

I added some action inputs to account for the new abilities the character will have, these will be used in blueprints later.

I also edited the character blueprint a little, pulling the camera back and making the jumps feel less floaty. This wasn’t 100% necessary, but it better fits the context of the mechanic in a less platforming focused game.

With that taken care of, the first thing I did was set up some enumerators and structures; these are important as they can be used to quickly identify an object and gain any relevant information about it.

The Gadget and Treasure Name enumerators are self-explanatory, being libraries of identifiers for each individual gadget and treasure pickup respectively. The gadget types enumerator will be used when creating the gadget blueprints, as I can use them to share code between gadgets with common functions or activation methods. Enums are a good choice for this as they are easily identifiable and can be added or replaced to suit the project. The “null” value at the top is mostly for my benefit during development, essentially being an empty default value that will prevent issues regarding duplicate keys in maps.

Speaking of maps, the next thing I set up was some structures to hold information about the properties of each pickup. This is my preferred method of storing persistent data such as the display name and actor of each item as it allows me to access everything a gadget needs from anywhere just by calling the enumerator. It’s also easily expandable with very little maintenance, which is one of my biggest design principles.

The final structure I set up doesn’t hold any data, and is instead a template for storing the properties of placed gadgets in the level. The way my system will work is by storing the level a gadget is in, which gadget type it is, and where the gadget is placed, in an array. When the level loads, it will run through this array and spawn the necessary actors in their saved positions, applying any extra properties required such as whether the moulding gum has taken shape yet. Each gadget will also have its own number to allow for quick editing of its values during gameplay.

I also created a save game blueprint for the game, which will hold the array of placed gadgets as well as saving the player’s inventory and progress. I also created some empty maps to store any miscellaneous Booleans, Integers, and Floats that I may want to keep persistent in each level that don’t relate to gadgets, such as permanently broken structures or unlocked doors. I chose string maps for this because each string has to be unique, meaning if I set a value that is already in there it will change the pre-existing data.

Now that this is done, my next goal is to implement the basic system for deploying and activating gadgets. This will be contained in a component that I can apply to any unique gadget, meaning common code can be shared between gadgets without having to change multiple blueprints at once.