Animation File Format Suggestion

Started by
2 comments, last by skauert 12 years, 7 months ago
Hi.

I'm looking to venture into the world of 3D animation. Currently I am using OpenGL/GLSL and VBOs to render my meshes, and simply loading vertex data from OBJ files.

After searching the web for information on what some popular formats are, the one that pops up the most is MDX (MD5 seems to be the most recent one). I am however sceptical about the export process tied in with this format. My assets come from a modeller that really only uses Maya (2011/2012), so I'm interested in finding a format that can be (conveniently?) exported using this program.

In addition to that, I do not want to rely on any sort of SDK, and -preferably- no external libraries to do this.

With all that being said, I would like to ask you guys at gamedev.net for suggestions on file formats for skeletal animation that compliment my current situation. Any suggestion will be greatly appreciated. :)
Advertisement
Actually you can use Collada. It stores animation and it is easy to load. I think the same goes for FBX. Then you'll just make your own format out of it (because both of these two aren't binary but text and also these stores a lot of unnecessary information).

I'm also using my own format (though it is very similar to MD5 in the end - dunno how that happened :D).

My current blog on programming, linux and stuff - http://gameprogrammerdiary.blogspot.com


Actually you can use Collada. It stores animation and it is easy to load. I think the same goes for FBX. Then you'll just make your own format out of it (because both of these two aren't binary but text and also these stores a lot of unnecessary information).

I'm also using my own format (though it is very similar to MD5 in the end - dunno how that happened :D).

I've to second this.
Take a look at the format support of your modelling tool, not every modelling tool has good fbx/collada export scripts (like blenders(at least version 2.49) support of collada is quite weak ). But autodesk has a fbx/collada converter tool for free.
Thanks for the responses, guys.

I've had experience with COLLADA in the past, and while it was a successful experience, it was not a pleasant one. To be honest, I was hoping to discover formats more convenient than COLLADA, but it seems like it could be a worthy choice. On that note, I have a couple of more questions.

1. When I used COLLADA last (1.4 I think), I worked with the DOM directly. Are there SDKs/tools that people use these days to make the interaction with COLLADA more convenient?

2. I did a bit of research on exporters, and I came across something called ColladaMaya NextGen. Should I experiment with this, or is there something even more recent that I should be looking into?

This topic is closed to new replies.

Advertisement