AUDIO PROGRAMMER - LEVEL PROGRAMMER
I had to include all the necessary libraries to make Wwise work and start it. I also had to start the soundbanks and add all the necessary calls to allow the engine to communicate with Wwise. In order to do this, I opted for making a simple header file and cpp file that were the ones in charge of making the communication between Wwise and the engine, which allowed us to have a simpler way to then make all the necessary calls that where made from the Audio Module of the engine and the audio components.
This component was a difficult one to implement, and once it was finally implemented it had some performance issues. As it wasn’t really necessary and it seemed that it wouldn’t be used, I decided to leave it in that state and removing the option of using it, but leaving open the possibility of returning to it’s development in case it was decided it was needed.
This component is the one in charge of receiving all the audios in the scene. It was the easiest component to make and the only things it had in count where the position and orientation.
This was much more complex to implement than the Component Audio Listener. This component is in charge of emitting the sounds in the game. Beside having in count it’s position and orientation it also had to control many audio parameters that had to be modifiable, such as the audio clip, the pitch, the volume, the PAN, if it had to be played since the beginning, allowing the user to mute them or whether they had to be in loop or not. I also added the blending between audios, so if you changed the audio clip of an audio source it would make a transition instead of cutting the previous to start the new.
Due to some problems we couldn’t arrive to the approach we wanted with the enemies’ behaviour when they are going to attack Alita as a group, so I made a little patch to avoid strange behaviours like some of them pushing others to arrive to Alita.