Search found 5 matches

by Selphie142
Tue Feb 09, 2010 2:53 pm
Forum: Programming Discussion
Topic: MD3 model loader in C++
Replies: 11
Views: 10397

Re: MD3 model loader in C++

I'm not too sure. I'm trying to read in the data as with the other parts (verts, tags, surfaces etc) but these are in the md3_header of the header file whereas the triangles is referenced in the surface_header. Basically, I'm just not sure how to get the data for the triangles to be read in so that ...
by Selphie142
Tue Feb 09, 2010 1:26 pm
Forum: Programming Discussion
Topic: MD3 model loader in C++
Replies: 11
Views: 10397

Re: MD3 model loader in C++

Right, I've found out that it's the reading in of the triangle data that is crashing the window. And the output out... Really not sure how to read this information in as the num_triangles is not within the md3_header... so I have to reference to the surface_header. I've changed this to: this->triang...
by Selphie142
Mon Feb 01, 2010 2:59 pm
Forum: Programming Discussion
Topic: MD3 model loader in C++
Replies: 11
Views: 10397

Re: MD3 model loader in C++

So, I've been trying to get something to work and I have managed to get all the data to read out properly (in text format) with the exception of multiple surfaces but I'm going to address that issue later as I'm just using a single surface model at the moment. I also managed to get some triangles ap...
by Selphie142
Wed Jan 13, 2010 1:33 am
Forum: Programming Discussion
Topic: MD3 model loader in C++
Replies: 11
Views: 10397

Re: MD3 model loader in C++

I'm currently having issues with understanding the code to get my loader to get read the information from the md3 file. I really don't know where to begin. I found some pages about md2 but it all looks so complicated and is really daunting.
by Selphie142
Mon Jan 11, 2010 11:56 am
Forum: Programming Discussion
Topic: MD3 model loader in C++
Replies: 11
Views: 10397

MD3 model loader in C++

I'm trying to create a model loader for md3 files using C++. I have some tutorials and source code for some md2 model loaders. I also have the file format of md3 files from Wiki. I'd like to have my models animated and with textures but at the moment I'm just having problems loading the model at all...