For the player collision detection with the world, we use a raycast against all the blocks in a certain radius of the player. We then find the shortest distance to a block and move that far. This works quite well but every now and then the player would get stuck in a block and wouldn't be able to get out. I'm not sure exactly what caused this but assume it is just a certain angle and block arrangement that causes the player to move inside a block slightly. This is a common collision detection thing to do: try as hard as possible to not get stuck in something, but if you do have someway to recover from it. I originally thought of the GJK/EPA algorithm. But instead could just do a really simple thing, search for the closest empty block space, just like we did for the pickup blocks.
To do this we just check in a 3 x 3 x 3 cube around us whether there is a block present. We loop through all positions and pick the closest empty position. If there isn't anyone, we just default to head upwards.
In our player movement code we call this function if we're stuck in a block.
The recoverDP is a seperate field than the dP used by gravity and such. This is becuase it doesn't get dampened when we run into something i.e. the inside walls of a block. It affects the player no matter what.
We integrate this recover DP to get a delta position each frame, and add it to the total player position.
To test this now we need a way to purposely run inside a block. I was trying to get the bug to repeat but they were few and far between. So this gives a easily testable scenario. To do this we toggle into camera mode, which allows us to fly around with no collision. Once inside a block we revert to player mode and see what happens.