]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake2/qdata_heretic2/common/trilib.h
ok
[xonotic/netradiant.git] / tools / quake2 / qdata_heretic2 / common / trilib.h
1 /*
2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5 This file is part of GtkRadiant.
6
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 //
23 // trilib.h: header file for loading triangles from an Alias triangle file
24 //
25
26 #include "fmodel.h"
27
28 #define MAXTRIANGLES    MAX_FM_TRIANGLES
29
30 typedef struct 
31 {
32         vec3_t          verts[3];
33 #if 1
34         int                     indicies[3];
35         float           uv[3][2];
36         qboolean        HasUV;
37 #endif
38 } triangle_t;
39
40 #define NUM_CLUSTERS 8
41
42 typedef struct
43 {
44         char    name[64];
45         byte    tris[MAXTRIANGLES>>3];
46         byte    verts[MAX_FM_VERTS>>3];
47         int             start_glcmds, num_glcmds;
48
49         int *clusters[NUM_CLUSTERS];
50         struct IntListNode_s *vertLists[NUM_CLUSTERS];
51         int num_verts[NUM_CLUSTERS + 1];
52         int new_num_verts[NUM_CLUSTERS + 1];
53         qboolean clustered;
54 } mesh_node_t;
55
56 void LoadTriangleList (char *filename, triangle_t **pptri, int *numtriangles, mesh_node_t **ppmnodes, int *num_mesh_nodes);