]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/game_ef.h
eol style
[xonotic/netradiant.git] / tools / quake3 / q3map2 / game_ef.h
1 /*
2 Copyright (C) 1999-2007 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 This code has been altered significantly from its original form, to support
24 several games based on the Quake III Arena engine, in the form of "Q3Map2."
25
26 ------------------------------------------------------------------------------- */
27
28
29
30 /* marker */
31 #ifndef GAME_EF_H
32 #define GAME_EF_H
33
34
35
36 /* -------------------------------------------------------------------------------
37
38 content and surface flags
39
40 ------------------------------------------------------------------------------- */
41
42 /* game flags */
43 #define E_CONT_SOLID                            1                       /* an eye is never valid in a solid */
44 #define E_CONT_LAVA                                     8
45 #define E_CONT_SLIME                            16
46 #define E_CONT_WATER                            32
47 #define E_CONT_FOG                                      64
48 #define E_CONT_LADDER                           128                     /* elite force ladder contents */
49
50 #define E_CONT_AREAPORTAL                       0x8000
51
52 #define E_CONT_PLAYERCLIP                       0x10000
53 #define E_CONT_MONSTERCLIP                      0x20000
54 #define E_CONT_SHOTCLIP                         0x40000         /* elite force shot clip */
55 #define E_CONT_ITEM                                     0x80000
56 #define E_CONT_CLUSTERPORTAL            0x100000
57 #define E_CONT_DONOTENTER                       0x200000
58 #define E_CONT_BOTCLIP                          0x400000
59
60 #define E_CONT_ORIGIN                           0x1000000       /* removed before bsping an entity */
61
62 #define E_CONT_BODY                                     0x2000000       /* should never be on a brush, only in game */
63 #define E_CONT_CORPSE                           0x4000000
64 #define E_CONT_DETAIL                           0x8000000       /* brushes not used for the bsp */
65 #define E_CONT_STRUCTURAL                       0x10000000      /* brushes used for the bsp */
66 #define E_CONT_TRANSLUCENT                      0x20000000      /* don't consume surface fragments inside */
67 #define E_CONT_TRIGGER                          0x40000000
68 #define E_CONT_NODROP                           0x80000000      /* don't leave bodies or items (death fog, lava) */
69
70 #define E_SURF_NODAMAGE                         0x1                     /* never give falling damage */
71 #define E_SURF_SLICK                            0x2                     /* effects game physics */
72 #define E_SURF_SKY                                      0x4                     /* lighting from environment map */
73 #define E_SURF_LADDER                           0x8
74 #define E_SURF_NOIMPACT                         0x10            /* don't make missile explosions */
75 #define E_SURF_NOMARKS                          0x20            /* don't leave missile marks */
76 #define E_SURF_FLESH                            0x40            /* make flesh sounds and effects */
77 #define E_SURF_NODRAW                           0x80            /* don't generate a drawsurface at all */
78 #define E_SURF_HINT                                     0x100           /* make a primary bsp splitter */
79 #define E_SURF_SKIP                                     0x200           /* completely ignore, allowing non-closed brushes */
80 #define E_SURF_NOLIGHTMAP                       0x400           /* surface doesn't need a lightmap */
81 #define E_SURF_POINTLIGHT                       0x800           /* generate lighting info at vertexes */
82 #define E_SURF_METALSTEPS                       0x1000          /* clanking footsteps */
83 #define E_SURF_NOSTEPS                          0x2000          /* no footstep sounds */
84 #define E_SURF_NONSOLID                         0x4000          /* don't collide against curves with this set */
85 #define E_SURF_LIGHTFILTER                      0x8000          /* act as a light filter during q3map -light */
86 #define E_SURF_ALPHASHADOW                      0x10000         /* do per-pixel light shadow casting in q3map */
87 #define E_SURF_NODLIGHT                         0x20000         /* don't dlight even if solid (solid lava, skies) */
88 #define E_SURF_FORCEFIELD                       0x40000         /* elite force forcefield brushes */
89
90 /* ydnar flags */
91 #define E_SURF_VERTEXLIT                        (E_SURF_POINTLIGHT | E_SURF_NOLIGHTMAP)
92
93
94
95 /* -------------------------------------------------------------------------------
96
97 game_t struct
98
99 ------------------------------------------------------------------------------- */
100
101 {
102         "ef",                           /* -game x */
103         "baseef",                       /* default base game data dir */
104         ".ef",                          /* unix home sub-dir */
105         "elite",                        /* magic path word */
106         "scripts",                      /* shader directory */
107         qfalse,                         /* wolf lighting model? */
108         qfalse,                         /* flares */
109         "flareshader",          /* default flare shader */
110         "IBSP",                         /* bsp file prefix */
111         46,                                     /* bsp file version */
112         LoadIBSPFile,           /* bsp load function */
113         WriteIBSPFile,          /* bsp write function */
114         
115         {
116                 /* name                         contentFlags                            contentFlagsClear                       surfaceFlags                            surfaceFlagsClear                       compileFlags                            compileFlagsClear */
117                 
118                 /* default */
119                 { "default",            E_CONT_SOLID,                           -1,                                                     0,                                                      -1,                                                     C_SOLID,                                        -1 },
120                 
121                 
122                 /* ydnar */
123                 { "lightgrid",          0,                                                      0,                                                      0,                                                      0,                                                      C_LIGHTGRID,                            0 },
124                 { "antiportal",         0,                                                      0,                                                      0,                                                      0,                                                      C_ANTIPORTAL,                           0 },
125                 { "skip",                       0,                                                      0,                                                      0,                                                      0,                                                      C_SKIP,                                         0 },
126                 
127                 
128                 /* compiler */
129                 { "origin",                     E_CONT_ORIGIN,                          E_CONT_SOLID,                           0,                                                      0,                                                      C_ORIGIN | C_TRANSLUCENT,       C_SOLID },
130                 { "areaportal",         E_CONT_AREAPORTAL,                      E_CONT_SOLID,                           0,                                                      0,                                                      C_AREAPORTAL | C_TRANSLUCENT,   C_SOLID },
131                 { "trans",                      E_CONT_TRANSLUCENT,                     0,                                                      0,                                                      0,                                                      C_TRANSLUCENT,                          0 },
132                 { "detail",                     E_CONT_DETAIL,                          0,                                                      0,                                                      0,                                                      C_DETAIL,                                       0 },
133                 { "structural",         E_CONT_STRUCTURAL,                      0,                                                      0,                                                      0,                                                      C_STRUCTURAL,                           0 },
134                 { "hint",                       0,                                                      0,                                                      E_SURF_HINT,                            0,                                                      C_HINT,                                         0 },
135                 { "nodraw",                     0,                                                      0,                                                      E_SURF_NODRAW,                          0,                                                      C_NODRAW,                                       0 },
136                 
137                 { "alphashadow",        0,                                                      0,                                                      E_SURF_ALPHASHADOW,                     0,                                                      C_ALPHASHADOW | C_TRANSLUCENT,  0 },
138                 { "lightfilter",        0,                                                      0,                                                      E_SURF_LIGHTFILTER,                     0,                                                      C_LIGHTFILTER | C_TRANSLUCENT,  0 },
139                 { "nolightmap",         0,                                                      0,                                                      E_SURF_VERTEXLIT,                       0,                                                      C_VERTEXLIT,                            0 },
140                 { "pointlight",         0,                                                      0,                                                      E_SURF_VERTEXLIT,                       0,                                                      C_VERTEXLIT,                            0 },
141                 
142                 
143                 /* game */
144                 { "nonsolid",           0,                                                      E_CONT_SOLID,                           E_SURF_NONSOLID,                        0,                                                      0,                                                      C_SOLID },
145                 
146                 { "trigger",            E_CONT_TRIGGER,                         E_CONT_SOLID,                           0,                                                      0,                                                      C_TRANSLUCENT,                          C_SOLID },
147                 
148                 { "water",                      E_CONT_WATER,                           E_CONT_SOLID,                           0,                                                      0,                                                      C_LIQUID | C_TRANSLUCENT,       C_SOLID },
149                 { "slime",                      E_CONT_SLIME,                           E_CONT_SOLID,                           0,                                                      0,                                                      C_LIQUID | C_TRANSLUCENT,       C_SOLID },
150                 { "lava",                       E_CONT_LAVA,                            E_CONT_SOLID,                           0,                                                      0,                                                      C_LIQUID | C_TRANSLUCENT,       C_SOLID },
151                 
152                 { "playerclip",         E_CONT_PLAYERCLIP,                      E_CONT_SOLID,                           0,                                                      0,                                                      C_DETAIL | C_TRANSLUCENT,       C_SOLID },
153                 { "monsterclip",        E_CONT_MONSTERCLIP,                     E_CONT_SOLID,                           0,                                                      0,                                                      C_DETAIL | C_TRANSLUCENT,       C_SOLID },
154                 { "shotclip",           E_CONT_SHOTCLIP,                        E_CONT_SOLID,                           0,                                                      0,                                                      C_DETAIL | C_TRANSLUCENT,       C_SOLID },
155                 { "nodrop",                     E_CONT_NODROP,                          E_CONT_SOLID,                           0,                                                      0,                                                      C_TRANSLUCENT,                          C_SOLID },
156                 
157                 { "clusterportal",      E_CONT_CLUSTERPORTAL,           E_CONT_SOLID,                           0,                                                      0,                                                      C_TRANSLUCENT,                          C_SOLID },
158                 { "donotenter",         E_CONT_DONOTENTER,                      E_CONT_SOLID,                           0,                                                      0,                                                      C_TRANSLUCENT,                          C_SOLID },
159                 { "botclip",            E_CONT_BOTCLIP,                         E_CONT_SOLID,                           0,                                                      0,                                                      C_TRANSLUCENT,                          C_SOLID },
160                 
161                 { "fog",                        E_CONT_FOG,                                     E_CONT_SOLID,                           0,                                                      0,                                                      C_FOG,                                          C_SOLID },
162                 { "sky",                        0,                                                      0,                                                      E_SURF_SKY,                                     0,                                                      C_SKY,                                          0 },
163                 
164                 { "slick",                      0,                                                      0,                                                      E_SURF_SLICK,                           0,                                                      0,                                                      0 },
165                 
166                 { "noimpact",           0,                                                      0,                                                      E_SURF_NOIMPACT,                        0,                                                      0,                                                      0 },
167                 { "nomarks",            0,                                                      0,                                                      E_SURF_NOMARKS,                         0,                                                      C_NOMARKS,                                      0 },
168                 { "ladder",                     E_CONT_LADDER,                          E_CONT_SOLID,                           E_SURF_LADDER,                          0,                                                      C_DETAIL | C_TRANSLUCENT,       C_SOLID },
169                 { "nodamage",           0,                                                      0,                                                      E_SURF_NODAMAGE,                        0,                                                      0,                                                      0 },
170                 { "metalsteps",         0,                                                      0,                                                      E_SURF_METALSTEPS,                      0,                                                      0,                                                      0 },
171                 { "flesh",                      0,                                                      0,                                                      E_SURF_FLESH,                           0,                                                      0,                                                      0 },
172                 { "nosteps",            0,                                                      0,                                                      E_SURF_NOSTEPS,                         0,                                                      0,                                                      0 },
173                 { "nodlight",           0,                                                      0,                                                      E_SURF_NODLIGHT,                        0,                                                      0,                                                      0 },
174                 { "forcefield",         0,                                                      0,                                                      E_SURF_FORCEFIELD,                      0,                                                      0,                                                      0 },
175                 
176                 
177                 /* null */
178                 { NULL, 0, 0, 0, 0, 0, 0 }
179         }
180 }
181
182
183
184 /* end marker */
185 #endif
186