]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/ufoaiplug/ufoai_filters.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / ufoaiplug / ufoai_filters.h
1 /*
2    This file is part of GtkRadiant.
3
4    GtkRadiant is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8
9    GtkRadiant 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.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with GtkRadiant; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #if !defined( INCLUDED_FILTERS_H )
20 #define INCLUDED_FILTERS_H
21
22 void filter_level(int flag);
23
24 void filter_stepon(void);
25
26 void filter_actorclip(void);
27
28 void filter_weaponclip(void);
29
30 void filter_nodraw(void);
31
32 const int SURF_NODRAW = 0x80;
33
34 const int CONTENTS_LEVEL8 = 0x8000;
35 const int CONTENTS_LEVEL7 = 0x4000;
36 const int CONTENTS_LEVEL6 = 0x2000;
37 const int CONTENTS_LEVEL5 = 0x1000;
38 const int CONTENTS_LEVEL4 = 0x0800;
39 const int CONTENTS_LEVEL3 = 0x0400;
40 const int CONTENTS_LEVEL2 = 0x0200;
41 const int CONTENTS_LEVEL1 = 0x0100;
42 const int CONTENTS_ACTORCLIP = 0x10000;
43 const int CONTENTS_WEAPONCLIP = 0x2000000;
44 const int CONTENTS_STEPON = 0x40000000;
45
46 #endif