Overview
Purge is a 2.5d platformer with a heavy focus on stealth. As a white-collar thief, you must locate sensitive data and escape while avoiding capture. A collection of gadgets at your disposal, everything from grapple hooks to remote hacking devices, your strengths lie in disabling security systems and hiding from security guards.
Development
Purge was designed, documented and developed over the course of 3 months. The team was made up of 4 game programmers and assisted by one studio wide artist. The game engine was created from scratch, excluding a 2d rendering wrapper that was provided to us by Full Sail.
Goals
Purge was always meant to be seen as more stealth and preparation based experience rather than an action game.
Features(Ways we addressed the goals)
1. Many gadgets but no way of killing or permanently eliminating guards.
2. Puzzle like sequences when interacting with the security systems.
3. Routine based AI for the player to observe and strategize around.
4. A zone based awareness system that took into account both how much sound the player has created and ways in which the player has been spotted.
5. A hiding mechanic that allowed for the 2.5d aspect of the game, ducking behind bookcases and hiding under tables.
6. Platformer sections of jumping over trip wires and security drones on levels where there were fewer security personal to add diversity to the different zones.
My Responsibilities
Although the majority of my time was spent on the AI and enemy gameplay, I was also responsible for the handling of input, the level editor, and the level manager.
AI and Enemy Gameplay
1. In total, there ended up being 3 enemy units and 5 active environment objects(ex: security cameras, trip beams).
2. The more unique aspect of the AI was the awareness system. Each action the player has at their disposal, carries with it both a visual and audio component. Depending on how far away from security personal was when the player performed the action, the zone becomes more aware of an intruder. If the player is too close to a security guard, even if the player is currently not in their line-of-sight, it is highly possible the guard will react and pursue the player. If the player somehow manages to escape, that zone will stay permanently more aware to the player's presence, increasing their view range.
3. I understand a line-of-sight system may not seem like a big deal to most game developers, but when working on this project I was only roughly halfway through the game development program at Full Sail University, making it a fairly large accomplish for me. It interacted well with the 2.5d environment, allowing the player to hide behind objects, and the enemy's visual cone could be displayed on the screen.
4. As for the enemy units, they used a basic hierarchical finite-state system, allowing for patrolling and seeking behaviors. I was able to leverage this system for more advanced behaviors such has turning on alarm systems and communicating last known locations of the player to its teammates.
Level Editor
Created in C#, I developed a 2d level editor. Although not visually stunning, objects and spawn points could be dragged and dropped across the map. Variables for AI and active environment objects could be set such as patrol points, connections between buttons and objects, security camera turn rates, and starting stats.
I also designed and implemented 3 of the 9 levels that made it into the final version of the game.
Level Manager
The level manager was responsible for importing of levels and the rendering of the environment. One aspect of the rendering was culling out objects that were not in the current viewable scene.