Phantom Plunderers
Phantom Plunderers is an exciting turn-based first-person shooter. Made in only six weeks as part of a technical design class, the game features client-side prediction and server reconciliation, is host authoritative, and uses Unity's new input system. The game offers a unique gameplay experience that blends strategic planning and tactical combat.
In this game, players take turns commanding their troops in battles that take place on ghost ships and haunted harbors. During their turn, players receive a limited time of 8 seconds to allocate amongst their characters. With each round starting with three characters, players must tactically select and control one character at a time. This requirement demands careful planning and strategy. Players must also keep in mind the time cost associated with each weapon when using them during their turn.
Despite being developed within a strict timeframe, Phantom Plunderers is a demonstration of my technical prowess and creativity. It showcases the capabilities of Unity and its netcode for game objects networking solution.
Weapon System
This weapon system uses the Scriptable Objects feature in Unity. The implementation involves a foundational Weapon class which inherits the ScriptableObject class, providing a framework for the implementation of specialized functionality within the Use virtual method across various child classes. The base class also incorporates fundamental variables that are essential to all weapons, thus facilitating the streamlined creation of diverse classes such as rifles (essentially the hit scan class), shotguns, swords, and projectile weapons. Since the classes were developed as Scriptable Objects, it is possible to create multiple weapons with different values, resulting in enhanced gameplay that is both flexible and scalable.
Projectiles
The projectile weapon system in Phantom Plunderers is a standout feature, setting it apart from other games and adding an additional layer of strategic depth to gameplay. In this system, a projectile remains stationary until either player initiates an action that uses up time, such as movement, camera rotation, or using a weapon. This unique mechanic adds an additional layer of strategic depth to the game, as players who do not plan their shots carefully may inadvertently provide their opponent with an opportunity to dodge a projectile attack.
Client-side Prediction and Server Reconciliation
Owing to the absence of a client-side prediction and server reconciliation solution in netcode for game objects, I had to devise a customized system to address this shortcoming. Given the competitive nature of the game, I deemed it necessary to ensure host authority, while also providing for the possibility of future extension to dedicated server authority. This entailed creating a NetworkCharacterMovement class that handles both client-side prediction and server reconciliation. Clients transmit their inputs to the server via the SendInput_ServerRpc method, which subsequently processes the input and sends it back to the client via the ServerTransformState Network Variable. Both the client and the host then execute the ProcessLocalPlayerMovement method, which predicts the client's movement or runs the actual input for the host's local characters. When the ServerTransformState variable undergoes modification, an OnServerStateChanged method is triggered, prompting the client to perform server reconciliation. An additional challenge that was specific to this game involved properly synchronizing the remaining time for the player's turn to facilitate the correct reconciliation of the character's state.
UI
Phantom Plunderers posed a unique challenge with regards to its in-game UI. The game requires the display of a significant amount of complex information in order to keep players informed about the state of the game in a clear and concise manner. To address this challenge, I designed a stopwatch-style element located in the bottom left of the screen. The stopwatch serves to display the amount of time a player has left, with two colors filling the inside and corresponding to the position of the hand. The neon green fill denotes the amount of time a shot will cost and matches the color of the bullet counter located beside the stopwatch. In the event that a player doesn't have enough time to use their weapon, the neon green indicator turns red to alert the player. Additionally, the health bar for the selected character is displayed alongside the stopwatch.
Paper Prototype
Phantom Plunderers has an interesting origin story, as it began as a "paper prototype" developed using Tabletop Simulator. This prototype included many of the game's core mechanics and allowed for testing of the integration of tactical resource-based actions with first-person aiming. Despite its humble beginnings, the paper prototype played a critical role in the development of the game, serving as a valuable tool for experimentation and refinement.