2007-11-04 03:34:51 +00:00
|
|
|
/*
|
2012-03-17 20:01:54 +00:00
|
|
|
Copyright (C) 1999-2007 id Software, Inc. and contributors.
|
|
|
|
For a list of contributors, see the accompanying CONTRIBUTORS file.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
This file is part of GtkRadiant.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GtkRadiant; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2007-11-04 03:34:51 +00:00
|
|
|
//
|
|
|
|
// trilib.c: library for loading triangles from an Alias triangle file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "cmdlib.h"
|
|
|
|
#include "inout.h"
|
|
|
|
#include "mathlib.h"
|
|
|
|
#include "trilib.h"
|
|
|
|
|
|
|
|
// on disk representation of a face
|
|
|
|
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
#define FLOAT_START 99999.0
|
|
|
|
#define FLOAT_END -FLOAT_START
|
2007-11-04 03:34:51 +00:00
|
|
|
#define MAGIC 123322
|
|
|
|
|
|
|
|
//#define NOISY 1
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float v[3];
|
|
|
|
} vector;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
vector n; /* normal */
|
|
|
|
vector p; /* point */
|
|
|
|
vector c; /* color */
|
2012-03-17 20:01:54 +00:00
|
|
|
float u; /* u */
|
|
|
|
float v; /* v */
|
2007-11-04 03:34:51 +00:00
|
|
|
} aliaspoint_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2012-03-17 20:01:54 +00:00
|
|
|
aliaspoint_t pt[3];
|
2007-11-04 03:34:51 +00:00
|
|
|
} tf_triangle;
|
|
|
|
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void ByteSwapTri( tf_triangle *tri ){
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for ( i = 0 ; i < sizeof( tf_triangle ) / 4 ; i++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
( (int *)tri )[i] = BigLong( ( (int *)tri )[i] );
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
void LoadTriangleList( char *filename, triangle_t **pptri, int *numtriangles ){
|
2007-11-04 03:34:51 +00:00
|
|
|
FILE *input;
|
2012-03-17 20:01:54 +00:00
|
|
|
float start;
|
|
|
|
char name[256], tex[256];
|
|
|
|
int i, count, magic;
|
|
|
|
tf_triangle tri;
|
|
|
|
triangle_t *ptri;
|
|
|
|
int iLevel;
|
|
|
|
int exitpattern;
|
|
|
|
float t;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
t = -FLOAT_START;
|
2012-03-17 20:01:54 +00:00
|
|
|
*( (unsigned char *)&exitpattern + 0 ) = *( (unsigned char *)&t + 3 );
|
|
|
|
*( (unsigned char *)&exitpattern + 1 ) = *( (unsigned char *)&t + 2 );
|
|
|
|
*( (unsigned char *)&exitpattern + 2 ) = *( (unsigned char *)&t + 1 );
|
|
|
|
*( (unsigned char *)&exitpattern + 3 ) = *( (unsigned char *)&t + 0 );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( ( input = fopen( filename, "rb" ) ) == 0 ) {
|
|
|
|
Error( "reader: could not open file '%s'", filename );
|
|
|
|
}
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
iLevel = 0;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &magic, sizeof( int ), 1, input );
|
|
|
|
if ( BigLong( magic ) != MAGIC ) {
|
|
|
|
Error( "%s is not a Alias object separated triangle file, magic number is wrong.", filename );
|
|
|
|
}
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
ptri = malloc( MAXTRIANGLES * sizeof( triangle_t ) );
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
*pptri = ptri;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
while ( feof( input ) == 0 ) {
|
|
|
|
if ( fread( &start, sizeof( float ), 1, input ) < 1 ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
break;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
|
|
|
*(int *)&start = BigLong( *(int *)&start );
|
|
|
|
if ( *(int *)&start != exitpattern ) {
|
|
|
|
if ( start == FLOAT_START ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
/* Start of an object or group of objects. */
|
|
|
|
i = -1;
|
|
|
|
do {
|
|
|
|
/* There are probably better ways to read a string from */
|
|
|
|
/* a file, but this does allow you to do error checking */
|
|
|
|
/* (which I'm not doing) on a per character basis. */
|
|
|
|
++i;
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &( name[i] ), sizeof( char ), 1, input );
|
|
|
|
} while ( name[i] != '\0' );
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
// indent();
|
|
|
|
// fprintf(stdout,"OBJECT START: %s\n",name);
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &count, sizeof( int ), 1, input );
|
|
|
|
count = BigLong( count );
|
2007-11-04 03:34:51 +00:00
|
|
|
++iLevel;
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( count != 0 ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
// indent();
|
|
|
|
// fprintf(stdout,"NUMBER OF TRIANGLES: %d\n",count);
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
i = -1;
|
|
|
|
do {
|
|
|
|
++i;
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &( tex[i] ), sizeof( char ), 1, input );
|
|
|
|
} while ( tex[i] != '\0' );
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
// indent();
|
|
|
|
// fprintf(stdout," Object texture name: '%s'\n",tex);
|
|
|
|
}
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* Else (count == 0) this is the start of a group, and */
|
|
|
|
/* no texture name is present. */
|
|
|
|
}
|
2012-03-17 20:01:54 +00:00
|
|
|
else if ( start == FLOAT_END ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
/* End of an object or group. Yes, the name should be */
|
|
|
|
/* obvious from context, but it is in here just to be */
|
|
|
|
/* safe and to provide a little extra information for */
|
|
|
|
/* those who do not wish to write a recursive reader. */
|
|
|
|
/* Mia culpa. */
|
|
|
|
--iLevel;
|
|
|
|
i = -1;
|
|
|
|
do {
|
|
|
|
++i;
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &( name[i] ), sizeof( char ), 1, input );
|
|
|
|
} while ( name[i] != '\0' );
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
// indent();
|
|
|
|
// fprintf(stdout,"OBJECT END: %s\n",name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// read the triangles
|
2012-03-17 20:01:54 +00:00
|
|
|
//
|
|
|
|
for ( i = 0; i < count; ++i ) {
|
|
|
|
int j;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
fread( &tri, sizeof( tf_triangle ), 1, input );
|
|
|
|
ByteSwapTri( &tri );
|
|
|
|
for ( j = 0 ; j < 3 ; j++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
2012-03-17 20:01:54 +00:00
|
|
|
int k;
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
for ( k = 0 ; k < 3 ; k++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
|
|
|
ptri->verts[j][k] = tri.pt[j].p.v[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ptri++;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( ( ptri - *pptri ) >= MAXTRIANGLES ) {
|
|
|
|
Error( "Error: too many triangles; increase MAXTRIANGLES\n" );
|
|
|
|
}
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*numtriangles = ptri - *pptri;
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
fclose( input );
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|