Custom tool made with C++ and Unreal Engine 4, developed along with Darkborn during the Master's Degree in Game Programming.
The first problem we found when we started developing Darkborn was that there is almost no information related to fighting games and how they work internally. We went back to the old school games (Golden Axe, Street Fighter, Streets of Rage, etc.) to learn the basics of combat systems. After playing, studying and discussing about these games, we decided to start designing our own tool for creating fighting games.
AFE has been developed using C++ over Unreal Engine 4. It uses UE4 Components for being modular and scalable, and features an own State Machine Component that has been designed to facilitate the creation of combat states. As an overview, the 3 most important features of AFE are:
State Machine
This component is the one that holds every state that the character may transit to. It is also in charge of communicating these states with their owner, for passing important information related to animations, attacks and skills. One of the important features of this state machine is that it works both with static and dynamic state transitions, making it easier to create combos.
Commands
Commands are data structures that allow a state to interact with the scene, making it able to apply damage to the surrounding enemies, make the character change its appareance or even shake the camera for giving feedback during a fight.
Controlled Physics
While developing Darkborn, we realised that using UE4 physics wasn't a good idea, since we were managing a high number of enemies that received forces, stuns and attacks, causing visual glitches and even undesired behaviors during combat. Because of this, we decided to manage every force using AFE and UE4 Timelines, so every situation in the game is easily controlled.