2002-09-11 20:22:17 +00:00
|
|
|
/* Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
See file, 'COPYING', for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// trilib.c: library for loading triangles from an Alias triangle file
|
|
|
|
|
2007-04-06 01:09:58 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2002-09-11 20:22:17 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "QF/mathlib.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/quakeio.h"
|
2005-01-24 12:39:16 +00:00
|
|
|
#include "QF/sys.h"
|
2002-09-11 20:22:17 +00:00
|
|
|
|
|
|
|
#include "trilib.h"
|
|
|
|
|
|
|
|
// on disk representation of a face
|
|
|
|
|
|
|
|
#define FLOAT_START 99999.0
|
|
|
|
#define FLOAT_END -FLOAT_START
|
|
|
|
#define MAGIC 123322
|
|
|
|
|
|
|
|
//#define NOISY 1
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float v[3];
|
|
|
|
} vector;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
vector n; /* normal */
|
|
|
|
vector p; /* point */
|
|
|
|
vector c; /* color */
|
|
|
|
float u; /* u */
|
|
|
|
float v; /* v */
|
|
|
|
} aliaspoint_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
aliaspoint_t pt[3];
|
|
|
|
} tf_triangle;
|
|
|
|
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-09-18 23:09:09 +00:00
|
|
|
ByteSwapTri (tf_triangle *tri)
|
2002-09-11 20:22:17 +00:00
|
|
|
{
|
2003-04-17 00:01:48 +00:00
|
|
|
unsigned int i;
|
2002-09-11 20:22:17 +00:00
|
|
|
|
2002-09-18 23:09:09 +00:00
|
|
|
for (i = 0; i < sizeof (tf_triangle) / 4; i++) {
|
|
|
|
((int *) tri)[i] = BigLong (((int *) tri)[i]);
|
2002-09-11 20:22:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-18 23:09:09 +00:00
|
|
|
void
|
|
|
|
LoadTriangleList (char *filename, triangle_t **pptri, int *numtriangles)
|
2002-09-11 20:22:17 +00:00
|
|
|
{
|
|
|
|
QFile *input;
|
|
|
|
char name[256], tex[256];
|
2008-07-19 05:40:57 +00:00
|
|
|
float start, exitpattern, t;
|
|
|
|
int count, iLevel, magic, i;
|
2002-09-11 20:22:17 +00:00
|
|
|
tf_triangle tri;
|
|
|
|
triangle_t *ptri;
|
|
|
|
|
|
|
|
t = -FLOAT_START;
|
2002-09-18 23:09:09 +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);
|
2002-09-11 20:22:17 +00:00
|
|
|
|
|
|
|
if ((input = Qopen(filename, "rb")) == 0) {
|
2002-09-18 23:09:09 +00:00
|
|
|
fprintf (stderr,"reader: could not open file '%s'\n", filename);
|
|
|
|
exit (0);
|
2002-09-11 20:22:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iLevel = 0;
|
|
|
|
|
|
|
|
Qread(input, &magic, sizeof(int));
|
2002-09-18 23:09:09 +00:00
|
|
|
if (BigLong (magic) != MAGIC) {
|
|
|
|
fprintf (stderr,"File is not a Alias object separated triangle file, "
|
|
|
|
"magic number is wrong.\n");
|
|
|
|
exit (0);
|
2002-09-11 20:22:17 +00:00
|
|
|
}
|
|
|
|
|
2002-09-18 23:09:09 +00:00
|
|
|
ptri = malloc (MAXTRIANGLES * sizeof (triangle_t));
|
2002-09-11 20:22:17 +00:00
|
|
|
|
|
|
|
*pptri = ptri;
|
|
|
|
|
|
|
|
while (Qeof(input) == 0) {
|
2002-09-18 23:09:09 +00:00
|
|
|
Qread(input, &start, sizeof (float));
|
2008-07-19 05:40:57 +00:00
|
|
|
start = BigFloat (start);
|
|
|
|
if (start != exitpattern) {
|
2002-09-11 20:22:17 +00:00
|
|
|
if (start == FLOAT_START) {
|
2002-09-18 23:09:09 +00:00
|
|
|
// Start of an object or group of objects.
|
2002-09-11 20:22:17 +00:00
|
|
|
i = -1;
|
|
|
|
do {
|
2002-09-18 23:09:09 +00:00
|
|
|
// 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++;
|
|
|
|
Qread(input, &(name[i]), sizeof (char));
|
|
|
|
} while (name[i] != '\0');
|
|
|
|
|
|
|
|
// indent ();
|
|
|
|
// fprintf(stdout,"OBJECT START: %s\n",name);
|
|
|
|
Qread (input, &count, sizeof (int));
|
|
|
|
count = BigLong (count);
|
2002-09-11 20:22:17 +00:00
|
|
|
++iLevel;
|
|
|
|
if (count != 0) {
|
2002-09-18 23:09:09 +00:00
|
|
|
// indent();
|
|
|
|
// fprintf (stdout, "NUMBER OF TRIANGLES: %d\n", count);
|
2002-09-11 20:22:17 +00:00
|
|
|
i = -1;
|
|
|
|
do {
|
2002-09-18 23:09:09 +00:00
|
|
|
i++;
|
|
|
|
Qread (input, &(tex[i]), sizeof (char));
|
|
|
|
} while (tex[i] != '\0');
|
|
|
|
|
|
|
|
// indent();
|
|
|
|
// fprintf(stdout," Object texture name: '%s'\n",tex);
|
2002-09-11 20:22:17 +00:00
|
|
|
}
|
2002-09-18 23:09:09 +00:00
|
|
|
|
2002-09-11 20:22:17 +00:00
|
|
|
/* Else (count == 0) this is the start of a group, and */
|
|
|
|
/* no texture name is present. */
|
2002-09-18 23:09:09 +00:00
|
|
|
} else if (start == FLOAT_END) {
|
2002-09-11 20:22:17 +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. */
|
2002-09-18 23:09:09 +00:00
|
|
|
iLevel--;
|
2002-09-11 20:22:17 +00:00
|
|
|
i = -1;
|
|
|
|
do {
|
2002-09-18 23:09:09 +00:00
|
|
|
i++;
|
|
|
|
Qread (input, &(name[i]), sizeof (char));
|
|
|
|
} while (name[i] != '\0');
|
2002-09-11 20:22:17 +00:00
|
|
|
|
|
|
|
// indent();
|
|
|
|
// fprintf(stdout,"OBJECT END: %s\n",name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read the triangles
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
int j;
|
|
|
|
|
2002-09-18 23:09:09 +00:00
|
|
|
Qread (input, &tri, sizeof (tf_triangle));
|
2002-09-11 20:22:17 +00:00
|
|
|
ByteSwapTri (&tri);
|
2002-09-18 23:09:09 +00:00
|
|
|
for (j = 0; j < 3; j++) {
|
2002-09-11 20:22:17 +00:00
|
|
|
int k;
|
|
|
|
|
2002-09-18 23:09:09 +00:00
|
|
|
for (k = 0; k < 3; k++) {
|
2002-09-11 20:22:17 +00:00
|
|
|
ptri->verts[j][k] = tri.pt[j].p.v[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ptri++;
|
|
|
|
|
|
|
|
if ((ptri - *pptri) >= MAXTRIANGLES)
|
2005-01-24 12:39:16 +00:00
|
|
|
Sys_Error ("Error: too many triangles; increase MAXTRIANGLES\n");
|
2002-09-11 20:22:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*numtriangles = ptri - *pptri;
|
|
|
|
|
|
|
|
Qclose (input);
|
|
|
|
}
|