Link to home
Start Free TrialLog in
Avatar of s1ng
s1ng

asked on

Convert 3dsmax ASE to c++ OpenGL (Animation only)

How to convert the animation in 3dsmax ASE file to Visual C++ opengl??
(I only know how to convert the texture coordinates, triangles, etc but have no idea about the animation)
If possible, give me example for easier understanding.
Thanks
Avatar of Andrian
Andrian

Please send me your souce code when you finish it!
ssandrian@excite.com
I had to do something similar.  Why not first convert to an easier format like RAW data or the MilkShape 3d format (which is easy to understand).  The Max files always contain more information than we could possibly need.

If you manage to do that, a good resource on MilkShape3d loading is at

http://nehe.gamedev.net/tutorials/lesson32.asp
Avatar of s1ng

ASKER

Thanks, John...I've ever seen the Jeff Molofee tutorial as well but the problem is I've completed the modelling process using 3dsmax. It's too tiring for me to start modelling from the scratch again using another 3D modelling software.
ASKER CERTIFIED SOLUTION
Avatar of johnbrewer1980
johnbrewer1980

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of s1ng

ASKER

Your comment is pretty good, John...but I'm still waiting for other comments before I make decision. I really hope I can do it without using conversion program.
I haven't personally come across a file conversion utility to convert studio max to openGl code (though that definitely does not mean that it doesn't exist!).

All I do know is that writing code to load studio max will be far more difficult than loading a Milkshape 3d model.  The conversion should be easy once you do one.

As for animation -- Milkshape 3d supports a skeletal animation system.  This links easily to the OpenGL idiom and is a simple system for animation.  I think I even remember reading Jeff's later tutorial on the subject.

But by all means, if anyone has a better suggestion I'd be keen to hear it myself...