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 // DShape.h: interface for the DShape class. 21 // 22 ////////////////////////////////////////////////////////////////////// 23 24 #if !defined( AFX_DSHAPE_H__0B30B302_9D21_4C2D_836A_61F3C8D4244D__INCLUDED_ ) 25 #define AFX_DSHAPE_H__0B30B302_9D21_4C2D_836A_61F3C8D4244D__INCLUDED_ 26 27 #if _MSC_VER > 1000 28 #pragma once 29 #endif // _MSC_VER > 1000 30 31 #include <stdlib.h> 32 #include "mathlib.h" 33 #include "DMap.h" 34 class DBrush; 35 class DEntity; 36 37 // defines for polygon stuff 38 #define MAX_POLYGON_FACES 128 39 40 extern bool bFacesAll[]; 41 42 class DShape 43 { 44 public: 45 bool BuildPit( vec3_t min, vec3_t max ); 46 void BuildBorderedPrism( vec3_t min, vec3_t max, int nSides, int nBorder, bool bAlignTop ); 47 void BuildInversePrism( vec3_t min, vec3_t max, int nSides, bool bAlignTop ); 48 void BuildRegularPrism( vec3_t min, vec3_t max, int nSides, bool bAlignTop ); 49 50 int m_nNextBrush; 51 static DBrush* GetBoundingCube_Ext( vec3_t min, vec3_t max, const char* textureName, bool* bUseFaces = bFacesAll, bool detail = false ); 52 53 DShape(); 54 virtual ~DShape(); 55 56 void Commit(); 57 private: 58 DBrush* GetBoundingCube( vec3_t min, vec3_t max, const char* textureName, DEntity* ent = NULL, bool* bUseFaces = bFacesAll ); 59 60 DMap m_Container; 61 }; 62 63 #endif // !defined(AFX_DSHAPE_H__0B30B302_9D21_4C2D_836A_61F3C8D4244D__INCLUDED_) 64