]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DPlane.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / DPlane.h
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 // DPlane.h: interface for the DPlane class.
21 //
22 //////////////////////////////////////////////////////////////////////
23
24 #if !defined( AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_ )
25 #define AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_
26
27 #include <list>
28 #include "ibrush.h"
29 #include "string/string.h"
30 #include "mathlib.h"
31
32 class Brush;
33
34 class DPoint;
35
36 #define FACE_DETAIL 0x8000000
37
38 #if _MSC_VER > 1000
39 #pragma once
40 #endif // _MSC_VER > 1000
41
42 class DWinding;
43
44 class DPlane {
45 public:
46     DPlane(const vec3_t va, const vec3_t vb, const vec3_t vc, const char *textureName, bool bDetail);
47
48     void ScaleTexture();
49
50     DWinding *BaseWindingForPlane();
51
52     void Rebuild();
53
54     bool AddToBrush(scene::Node &brush);
55
56     bool operator!=(DPlane &other);
57
58     bool operator==(DPlane &other);
59
60     bool IsRedundant(std::list<DPoint *> &pointList);
61
62     bool PlaneIntersection(DPlane *pl1, DPlane *pl2, vec3_t out);
63
64     vec_t DistanceToPoint(vec3_t pnt);
65
66     DPlane(const vec3_t va, const vec3_t vb, const vec3_t vc, const _QERFaceData *texData);
67
68     DPlane()
69     {}
70
71     virtual ~DPlane();
72
73     bool m_bChkOk;
74     _QERFaceData texInfo;
75     CopiedString m_shader;
76     vec3_t points[3];           // djbob:do we really need these any more?
77     vec3_t normal;
78     float _d;
79 };
80
81 //typedef CList<DPlane*, DPlane*> DPlaneList;
82 #endif // !defined(AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_)