2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 // modelgen.h: header file for model generation program
24 // *********************************************************
25 // * This file must be identical in the modelgen directory *
26 // * and in the Quake directory, because it's used to *
27 // * pass data from one to the other via model files. *
28 // *********************************************************
33 #define ALIAS_VERSION 6
35 #define ALIAS_ONSEAM 0x0020
37 typedef enum { ALIAS_SINGLE=0, ALIAS_GROUP } aliasframetype_t;
39 typedef enum { ALIAS_SKIN_SINGLE=0, ALIAS_SKIN_GROUP } aliasskintype_t;
59 // TODO: could be shorts
67 typedef struct dtriangle_s {
72 #define DT_FACES_FRONT 0x0010
74 // This mirrors trivert_t in trilib.h, is present so Quake knows how to
79 qbyte lightnormalindex;
83 trivertx_t bboxmin; // lightnormal isn't used
84 trivertx_t bboxmax; // lightnormal isn't used
85 char name[16]; // frame name from grabbing
90 trivertx_t bboxmin; // lightnormal isn't used
91 trivertx_t bboxmax; // lightnormal isn't used
104 } daliasskininterval_t;
107 aliasframetype_t type;
111 aliasskintype_t type;