top of page

Vaporgrid

Vaporgrid is a Rhythm Game I created using the Monogame framwork and XAudio.

CovorIcon.png

When creating the rhythm mechanics, I tried using Microsoft’s system timer and calculating bpm in milliseconds. Due to the physical limitation of storing floating point numbers, the input buffers fell out of sync after some time.

 

I investigated other solutions such as an FFT to extract peaks from the kick and snare, however this would place constraints on the music making process. I landed on using XAudio2 which allowed me to create my own audio buffer. This way I could simply get the total sample count of the audio file and perform logic using that number to create a timer that is synced with the playback of the music.

 

With access to the buffer, I had complete control over how big of a window players must input on beat, down to a 41000th of a second or whatever I chose the sample rate of my audio to be. 

Screenshot 2023-10-21 192709.png

Reading the audio data from the wav file into a buffer

Screenshot 2023-10-21 192628.png

checking the players input accuracy in a quarter interval timing

bottom of page