Overview
Mothership Mayhem is a fast-paced, 3rd person shooter that takes place on an alien spaceship. As a cyborg prisoner, your goal is to escape the mothership while battling through waves of robot security that want you dead. As you kill the robots, they drop different power ups, each granting access to powerful weapons and abilities. As you progress, the bots themselves will learn to work together in order to form structures of mass destruction.
Development
Mothership Mayhem was created of the course of 5 months. In addition to the 5 game developers who worked on the project throughout the entire process, we were also assisted by 6 concept artists, 2 audio experts, and a pool of game artists for the final assets. The engine itself was created from scratch, each programmer handling entire systems on their own to create the final product you see today.
Goals
From the start, our team sought out to make a fast paced shooter with a strong replay value.
Features(Ways we addressed our goals)
Fast Paced Shooter:
1. The enemies themselves are quick by nature and work in packs. This forces the player of have constant awareness of their surroundings. One slip up can mean losing half of their health.
2. All but the default weapons in the game are short-term power ups, which are dropped upon the death of enemies. However, these power ups are incredibly powerful, allowing the player to cut through large packs in just a few seconds. Also, since power ups drop off dead enemies, the player is forced to decide whether it is worth diving into a mess of robots to gain these temporary advantages.
3. We included a high score tracker and score multiplier system. Alongside of power ups, score is dropped upon an enemy's death. Just a basic score system encourages players to push themselves into more risky situations, but having to dive into a herd of enemy robots really brings out the risk-vs-reward aspect we intended.
4. We placed a large emphasis on the AI, in that the overlord controlling each of the individual bots reacts to the current circumstance within the room. One example is if the bots are too clumped up as they chase the player, the overload may send a group of them to swarm a location before darting down at the player.
Replay Value:
1. Although the first level is static, each level beyond the first has a randomized layout.
2. The waves in which the enemies spawn are also randomized for each individual room in a level.
3. We created a system that has a chance of adding a set of modification to a room. These modifications can do anything from decrease a robot's movement speed to increase the score drop by 300%.
4. A formation system was added, which allows for a group of bots to come together in order to create a single massive enemy, acting like a sort of mini-boss.
My Responsibilities
I had three main areas that I focused upon: AI/enemy gameplay, game state management, and the level editor. One common element amongst most of the duties was the use of XML and creating data driven systems, allowing me to easily alter, test and implement new different parts on the fly.
AI and Enemy Gameplay
AI is where I spent roughly 80% of my time. It is also the area in which I learned the most during the project. The specifics of each of the parts I worked on can be found in 'AI Experience' page.
1. Designed, developed and balanced/maintained 3 different enemy unit types. Each unit had unique tactics and secondary objectives.
2. Developed a scalable slot system 'for the small, fast moving enemies. It allowed a number of these ball-life enemies to surround the player without having to fight for a position to attack from, creating a more fluid like approach towards and around the player.
3. Developed and maintained a navigation mesh.
4. Designed, developed and maintained an AI Director, which managed the tactics for an entire room worth of enemies. A few examples of what the director controlled would be the tracking and dispersing of grouped up enemies, line of sight tracking, the creation of swarm events to change up the moment to moment gameplay, and creation of secondary objectives for specific enemies.
5. Designed and developed the modification manager. This system alters enemy stats based on preset mod sets. One mod set was called 'Brute.' It lowered the speed of all robots but increased their damage. I was also responsible for most of the design and implementation of these mod sets.
6. Designed and developed the formation manager. The formation manager kept track of the different aspects of the formation such as member spots, leader positions, animations. I was also responsible for the creation of each formation and the animation that accompanied it. Although only 5 formation made it into the final game, 8 unique formation were created altogether. (Once again, more detail on the formation manager and other systems can be found on the 'AI Experience' page)
7. Developed a collision avoidance handler.
8. Developed and balanced the drop system. This system handled all the dropping of power ups, energy, and score. Each component was carefully scaled to drop based on multiple factors: enemy type, time since anything last dropped, time since a certain item dropped, player's current weapon, in addition to a few more circumstance specific situations.
***Behind each of these system were many smaller components, many of which required an abundant amount of linear algebra and matrix math. A few examples would be turn-to functions, targeting, A*, collision prediction, animation interpolation, and list sorting.
Game State Management
I was in charge of the creation, deletion, and stacking of game states (the State Manager). Additionally, I was tasked with several other systems that were integral to the states themselves.
1. Input Manager (However, Josh Green handled the controller input gathering)
2. Menu System
3. Timer and Cooldown Tracking
In-Game Level Editor
The original design and functionality was completed by my teammate Paul Bennett. However, we reached a point later into the development where we needed to refactor the editor due to an issue with adding new assets, and since I had a substantial amount of experience with data driven systems by this point, the task fell to me. In the process I also managed to add complete click based object placement, scaling, and rotation into the editor.
In order to succeeded at this task I found the need to develop a content manager that allowed the creation of an object(memory allocation, mesh, textures, collision box, stats) by merely passing a single string to the manager.