It turns out sound programming is kinda hard if you haven't worked with it before
(There are still tons of bugs that I need to work out!)
The new sound system is built with ALSA
Not synthesizing anything at the moment. I've written a basic WAV file loader to get the audio samples.
This version of the sound system only supports 48000hz 2 channel 16 bit.
My initial implementation works something like this: I can queue up audio to be played back (the sound data from WAV files). When its time to write audio samples (the game needs to fill the audio buffer with n samples each frame) I look at each queued sound item and bitwise OR its audio data into the sound buffer. Once all the samples in the queued up sound item have been exhaused it is removed from the queue.
When I was playing around with bitmap scaling, I had some cruft lying around (non vectorized/SIMD code) related to that scaling. This was causing non optimized builds to run bellow 60fps. I went through and made that code SIMD and now I'm back up to a smooth 60
The bitmap drawing routine also had some bugs with clipping so I went through and fixed that as well.
Added matricies to my renderer. Scrapped together a simple view matrix which does transforms of world space positions (in pixels) to screen space positions (also in pixels). With that in place I did a simple screen transition.
Unified movement code paths -- Orignally I had sepearte movement code paths for both the player and caffie (the ravenous cup of coffee). Now they both use the same movement code
Improved input handling -- My input code still sucks, but it sucks less now.
I'm still not sure where I'm going with this game. I think I want it to be scary?! I want to have an emphasis on story. So one thing thats clear is i'll need a nicer dilog system. IDK probably a text box or something in the bottom of the screen. This seems simple enough. As for the scaryness factor, I need to make the game darker (i.e. lighting wise). Maybe you collect things? I'm not sure why your collecting things either. Pretty much all I have for certain is a cup of coffee that wants to murder you.