Search found 24 matches

by Tekkai
Fri Jun 22, 2012 9:58 am
Forum: Beginners Help
Topic: Collision with multiple objects
Replies: 4
Views: 551

Re: Collision with multiple objects

Hi Hendu,

Thanks for the answer. I think using a physics engine just to detect if two objects are touching themselves seems like killing a flea with a sledgehammer... but if there is no other solution I will go for that, seems easier than the solution I'm thinking :) Any other thought?
by Tekkai
Thu Jun 21, 2012 8:40 pm
Forum: Beginners Help
Topic: Collision with multiple objects
Replies: 4
Views: 551

Collision with multiple objects

Hi all, I'm having some problems to set up collision with a lot of objects, it works but it's slow down my application more than 300frames. My situation is that I'm creating the scenario according to a xml custom file, thanks to that anyone could create his own scenario. For example, I'm giving the ...
by Tekkai
Mon Jan 30, 2012 4:25 pm
Forum: Code Snippets
Topic: Kinect & Irrlicht
Replies: 1
Views: 1643

Kinect & Irrlicht

Hi all, I just finished a project that needs to use Kinect in order to animate the main character and I want to share some of my code that I made to integrate Kinect into irrlicht. The project was started the last year, so the code is working with the earliest SDK of Kinect (OpenNI 1.0.0 & Prime...
by Tekkai
Tue Jan 10, 2012 7:57 pm
Forum: Advanced Help
Topic: Relative Joint Rotation
Replies: 17
Views: 3659

Re: Relative Joint Rotation

Hey, Can you please run a simple test? Take all your bones and do a setRotation(0,0,0). When I was loading the model from 3DMax, the model was loaded correctly (I don't even have to flip Y or X) BUT if I tried to set the rotation of each bone to 0, then the model position was wrong. That won't fix t...
by Tekkai
Tue Dec 20, 2011 11:46 am
Forum: Advanced Help
Topic: Relative Joint Rotation
Replies: 17
Views: 3659

Re: Relative Joint Rotation

Hey, sorry for the delay. About the initial rotation: Try to set every bone rotation to (0.0f,0.0f,0.0f) and you will probably see what I mean. You can also cout << the rotation of each bone to see the same result. Maybe it's just a thing of 3D Studio Max (that's the program I used) but the bones ha...
by Tekkai
Thu Dec 15, 2011 2:22 pm
Forum: Advanced Help
Topic: Relative Joint Rotation
Replies: 17
Views: 3659

Re: Relative Joint Rotation

Hi, I'm planning to share my code, which are two classes that should do everything for you. You will just have to make sure that you're mesh have a bones named as I specify, and that's all you will have to do. The problem is that I'm in the middle of something and don't want to share it yet, as I al...
by Tekkai
Thu Dec 15, 2011 12:16 am
Forum: Advanced Help
Topic: Relative Joint Rotation
Replies: 17
Views: 3659

Re: Relative Joint Rotation

Hi, I left working with quaternionsbecause of my last tests when working with Kinect. I'm not pretty sure about that but I guess that maybe the expected format of the setRotation Eueler convention is not the same Euler convention that the quaterion is exporting. I mean, there are twelve conventions ...
by Tekkai
Mon May 02, 2011 12:06 pm
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

Ok, I know that will sound stupid, but was all about the FUC**** conversions between radians and degrees... seems that some classes works on radians and others in degrees... that's my final aproach and seems to work... let's try to connect it again with Kinect :) //First time this->setJointMode( EJU...
by Tekkai
Mon May 02, 2011 10:50 am
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

Hey mongoose7, thanks for your help. I'm not modeller too, so it's hard to me to work with the model. But I have I'm working hard on understand where is the problem. Here are some more results: If I do that: this->getJointNode("rhip")->setRotation( this->getJointNode("rhip")->get...
by Tekkai
Mon May 02, 2011 9:40 am
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

I just stopped to use animateJoints(), I think I was confused about the use of it. I combine the rotations because I'm not sure if Irrlicht is propagating the rotations from the root bone. If you look at the image I attached from 3DMax it should be in the right order, aren't they? Maybe I'm confused...
by Tekkai
Mon May 02, 2011 8:42 am
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

@ChaiRuiPeng Ok, I remove it, I thought it was necessary but I just check and "nothing happens". So I'm in the same trouble... Thanks for the try though @mongoose7 I don't have control about the rotations of 3DMax. My mesh has a biped, and the rotations are done by default. If I "remo...
by Tekkai
Sun May 01, 2011 6:13 pm
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

New update with bad news... The forearm stuff works pretty well by I think it's just casuallity. I'm trying to work with the rest of the body and I didn't have the results I was expecting. What I'm trying to do now is to understand how the animation systems works. To do that, what I have done is tak...
by Tekkai
Sat Apr 30, 2011 3:17 pm
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

Seems that things starts to work... I just tried what you said mongoose7 but I realized that I don't have to do the -Z stuff.... :D Now I have one arm working propertly, I'll start to work with the whole skeleton. By the way, I attach now the images I said posts ago, in case they are useful to other...
by Tekkai
Sat Apr 30, 2011 12:25 pm
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

Some good news :) I just realized that there is on rotationFromTo() function so I'm doing: lElbowRotationQ.rotationFromTo(lLeftForeArmVector,lLeftUpperArmVector); lElbowRotationQ.toEuler(lElbowRotationV); And it seems to work pretty well, that's one of the outputs: // T Position Hand Pos: X: -1336.7...
by Tekkai
Sat Apr 30, 2011 11:26 am
Forum: Advanced Help
Topic: Animation system with bones and Kinect
Replies: 25
Views: 4290

Thx everyone, I've been working on it and I just realized what was my error. I was working with a bone that wasn't the root. I applied the kinect root position to the root bone and seems to work pretty well (Have to change Z by -Z but the rest of axis are ok). Now I'm working with the other bones. A...