Heistman Blog Entry 4 – Keeping Inventory and Hub World

Since the last entry, I have added a hub area with fully functional level doors and created the EMP, along with a laser field hazard for it to disable. I have also made some tweaks to the way treasure persistency is handled, made an interaction system to the player for using nearby gadgets, and added a new function to the Gadget Management Actor that lets it update a placed actor’s attributes.

Let’s start out with the interaction system, as it will be popping up everywhere from now on. Any interactable object now owns an “Object Interact Component”, which holds variables such as the interaction hitbox and the text to display when hovering over it. It also contains an event dispatcher called “InteractEvent”, which determines the event an object will execute when interacted with.

The HeistmanCharacter pawn now has a custom event called every tick that casts a line trace, reusing the points I set up in the gadget placement setup last entry. This searches for any actor with the Object Interact Component, saving it to a variable where it can be used elsewhere. It also picks up the interaction text, passing it to the UI. When the interact button is pressed, the InteractEvent dispatcher is called on the object the player is facing.

One new actor that uses this system is the Level Door, which allows the player to move to any other level. The target level name is displayed through a text render, as well as on the UI.

Going through a level door also saves your inventories, meaning any treasure collected won’t be saved until you exit through the door.

Speaking of the treasure, I made a few changes to the treasure pickups. They are now able to be tracked after being picked up, and if you leave the level with a treasure collected it won’t spawn again until you reset the save file.

Let’s take a look at these things working together!

Now let’s move on to the EMP and Laser Field. The EMP is an expansion on the dummy gadget I showcased last entry, now featuring a large collision sphere around it. It houses two event dispatchers; one to enable the EMP effects on objects within the radius, and one to disable the effects. The interact event for this gadget allows the player to turn it on and off at will, updating the UI text accordingly.

The laser field is an expandable red plane that sets off an alarm when the player crosses it. This performs some simple checks to see if it’s in range of any EMP devices, and disables itself if so.

The sound effect for the alarm was sourced from https://freesound.org/people/jobro/sounds/33725/ under a free attribution license.

The state of the EMP also persists between level transitions, meaning you can leave it enabled or disabled and it will stay that way when you leave and come back. This is thanks to a new function in the Gadget Management Actor that updates an existing gadget rather than adding or removing a new one.

That’s all for this update! For the next entry, I’ll give the player a more user-friendly inventory UI as well as making the next gadget: the Moulding Gum!