Character Raycasting

Started by
7 comments, last by Medo Mex 11 years, 4 months ago
How do I use Bullet Raycasting for character vision? I want the character to be able see so when the character see enemies, the character should run/fire/etc...

I thought about the following method:
m_dynamicsWorld->rayTest();

But I am not sure how it should work for character vision.
Advertisement
No, it should work, I guess, but you'll probably need more than one ray to sample the character's field of vision. You might also want to take into account peripheral vision (at the edges, humans react better to visual stimuli, but discern less). So for instance, you could try and cast a ray from the character's eye to a bunch of enemies that are potentially in sight (perhaps throw a few rays for each enemy, to estimate how much of the enemy is actually visible), multiply this score by the enemy's rough position with respect to the character's field of vision (this can be done approximately with a dot product of the ray with the character's eye vector, i.e 1 if the enemy is directly in front of the character, falling smoothly to 0 if he is out of his field of vision), and trigger a response when the result is above a certain detection threshold.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”

The problem that I am having now is that I want to raycast bunches of rays so I can have actual character vision or even vehicle vision.

I'm using Bullet Physics raycasting.
You can use this to cast your ray


void* CastRay(btVector3& to, btVector3& from, float distance)
{
btCollisionWorld::ClosestRayResultCallback raycallback(from, to * distance);
m_dynamicsWorld->rayTest(from, to, raycallback);
if (raycallback.hasHit())
{
return m_collisionObject->getUserPointer();
}
return nullptr;
}


If you want a field of view, you can just cast a bunch of rays in a cone or something around the direction of your camera.

Note you should probably cast the user pointer to whatever you are storing with it before returning.
I'm able to cast a single ray, but I'm not sure how I should cast a cone for a character, airstrike, vehicle, any code sample?
Maybe you could create them all in a square and then just multiply them by some projection matrix to rotate them out evenly. Just an idea.
Any code example? I'm trying to achieve it without using much resources.
You could also have something like a btGhostObject , with a cone collision shape which represents the characters vision, you'd then be able to detect 'collisions' created during the simulation step . (depends on wether you're justing using raycasting or are using a bit more of the bullet library)
@xexuxjy: That's the EXACT idea that I have been trying to implement in the past few days!

The only problem that I'm having with it is that If I have a cone mesh, how do I load it into bullet physics? The cone mesh data will be stored into LPD3DXMESH.

This topic is closed to new replies.

Advertisement