Moving a character to a point

All about the core api and animation, input, sound, effect, collision and physics engines.
You can also post here your feature requests.

Moderator: Brume Dev Team

Moving a character to a point

Postby rubbish on Wed Nov 08, 2006 8:49 am

i select a point at the floor by mouse
and then tiny move there

how to do that? :roll:
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby Silmaryls on Wed Nov 08, 2006 1:59 pm

You will have to compute the 3D point in space. This is impossible without a distance value.
In fact you can get the ray to the pointed direction using object Picking. But you will need to stop the ray in order to compute the cliked position.
For that you should use a plane (floor) or some 3D object and : compute ray/plane intersection or ray/object intersection in order to get clicked point.
Once you have it, just compute direction = "cliked point" - "tiny.Pos" to get the direction vector and update it like always : tiny.Pos += direction * factor;
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France

Postby rubbish on Wed Nov 08, 2006 3:59 pm

some difficult
how to use object Picking?it's hard to unstand.... :cry:
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby Silmaryls on Wed Nov 08, 2006 10:51 pm

Object picking is not too hard in Brume.

Just take a look at this post.
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France

Postby rubbish on Thu Nov 09, 2006 2:47 am

I USE VERSION 1.2 ...
but it can't find pickobject...
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby Silmaryls on Thu Nov 09, 2006 7:00 am

You have to upgrade to 1.4.
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France

Postby rubbish on Thu Nov 09, 2006 8:30 am

how to compute ray/plane intersection or ray/object intersection in order to get clicked point?
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby rubbish on Sat Nov 11, 2006 12:48 pm

where r u??
my dear friend Silmaryls
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby Silmaryls on Sat Nov 11, 2006 12:55 pm

As I said above : Just take a look at this post.

:D
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France

Postby rubbish on Sun Nov 12, 2006 3:58 pm

i can't understand how to compute ray/plane intersection or ray/object intersection in order to get clicked point?
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby rubbish on Mon Nov 13, 2006 1:16 am

give me some idea?
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby Silmaryls on Mon Nov 13, 2006 2:43 pm

Ok, first you have to create a terrain or a plane (maybe your grid mesh ?).
You can use a mesh or BrumeSquareTextured. Let's name it 'ground' !

Once you're ready, you get the ray where your mouse is pointing :

Code: Select all
BrumeRay ray = this.ActiveCamera.GetRayFromMouse();


Then you use PickObjects to get intersections with the ray. (you have to get all intersections as a character may be intersecting the ray, but all you want is the ray/ground intersection)

Code: Select all
List<BrumeObject> objects;
List<float> distances;
this.PickObjects(ray, out objects, out distances);


now, you have to test if the objects list contains your ground object (plane or terrain).
If it is, just get the corresponding distance and compute the intersection point like this :

Code: Select all
BrumeVector intersectionPoint = ray.Pos + ray.Dir * distance;


It's up to you now !
User avatar
Silmaryls
Brume Team Member
 
Posts: 340
Joined: Tue Feb 21, 2006 10:09 pm
Location: Paris - France

Postby rubbish on Mon May 21, 2007 10:26 am

OK,and how to compute direction = "cliked point" - "tiny.Pos" to get the direction vector?
It moved so strang.
The Tiny.Orient = direction??
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Postby MoDDiB on Mon May 21, 2007 12:47 pm

BrumeVector dir = "cliked point" - "tiny.Pos";
tiny.Orient( dir , the good up vector );
nothing more but before orienting tiny you may have to do some dir.X = -dir.X changes it depends on your model orientation.
MoDDiB
Brume user
 
Posts: 83
Joined: Mon Nov 20, 2006 5:05 pm

Postby rubbish on Mon May 21, 2007 4:01 pm

OMG...make a mistake...make tiny move so quickly.....
Maybe the point is called waypoint...
But the Orient is wrong??
Do some dir.X = -dir.X changes it depends on your model orientation?
What's that mean??
rubbish
Brume user
 
Posts: 183
Joined: Fri Nov 03, 2006 5:05 am

Next

Return to Technical discussion

Who is online

Users browsing this forum: No registered users and 0 guests

cron