With the basis of the ray casting and colliders working, it is crucial for the game to have box colliders. My goal this week is to implement box colliders to be integrated and fully working with the rest of the systems. At first glance, box to box collision should be simple. But I realized that is not the case due to the fact that we are using OBBs for collision and not AABBs. In order to test for OBB box to box collision, I utilized the separating axis test. And to find the correct axis to test, I transformed one of the box’s matrix into the local space of the other to optimize the process.
The next challenge was to get the capsule to box working. I struggled with the implementation of the collision. With a sphere to box collision, I check the axis of the extent of the box with the radius of the sphere to determine if an overlap exists. If so, there is a collision. With a capsule, it was a bit more difficult. A capsule has orientation and rotation, whereas in a sphere these qualities do not matter in terms of a collision. It occurred to me that a capsule is basically a collection of spheres aligned linearly. Therefore, in order to check for the capsule to box collision, I would simply check “all” the spheres that make up the capsule.
Lastly, I implement the ray-cast to function with the boxes and capsules. The ray-cast logic for capsule functions similarly to the box to capsule collision. It iterates through “all” the spheres that make up the capsule. The difference with ray-casting logic comes from the fact that I need to find/return the first point that the ray hits. To account for this, I collect a list of collision points that the ray has hit, and it checks and finds the one that is closest to the starting point of the ray.