EditorBrush.h 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. ===========================================================================
  3. Doom 3 GPL Source Code
  4. Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
  5. This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
  6. Doom 3 Source Code is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. Doom 3 Source Code 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
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
  16. In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
  17. If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
  18. ===========================================================================
  19. */
  20. // brush.h
  21. brush_t * Brush_Alloc();
  22. void Brush_Free (brush_t *b, bool bRemoveNode = true);
  23. int Brush_MemorySize(brush_t *b);
  24. void Brush_MakeSided (int sides);
  25. void Brush_MakeSidedCone (int sides);
  26. void Brush_Move (brush_t *b, const idVec3 move, bool bSnap = true, bool updateOrigin = true);
  27. int Brush_MoveVertex(brush_t *b, const idVec3 &vertex, const idVec3 &delta, idVec3 &end, bool bSnap);
  28. void Brush_ResetFaceOriginals(brush_t *b);
  29. brush_t * Brush_Parse (const idVec3 origin);
  30. face_t * Brush_Ray (idVec3 origin, idVec3 dir, brush_t *b, float *dist, bool testPrimitive = false);
  31. void Brush_RemoveFromList (brush_t *b);
  32. void Brush_AddToList (brush_t *b, brush_t *list);
  33. void Brush_Build(brush_t *b, bool bSnap = true, bool bMarkMap = true, bool bConvert = false, bool updateLights = true);
  34. void Brush_BuildWindings( brush_t *b, bool bSnap = true, bool keepOnPlaneWinding = false, bool updateLights = true, bool makeFacePlanes = true );
  35. brush_t * Brush_Clone (brush_t *b);
  36. brush_t * Brush_FullClone(brush_t *b);
  37. brush_t * Brush_Create (idVec3 mins, idVec3 maxs, texdef_t *texdef);
  38. void Brush_Draw( brush_t *b, bool bSelected = false);
  39. void Brush_DrawXY(brush_t *b, int nViewType, bool bSelected = false, bool ignoreViewType = false);
  40. void Brush_SplitBrushByFace (brush_t *in, face_t *f, brush_t **front, brush_t **back);
  41. void Brush_SelectFaceForDragging (brush_t *b, face_t *f, bool shear);
  42. void Brush_SetTexture (brush_t *b, texdef_t *texdef, brushprimit_texdef_t *brushprimit_texdef, bool bFitScale = false);
  43. void Brush_SideSelect (brush_t *b, idVec3 origin, idVec3 dir, bool shear);
  44. void Brush_SnapToGrid(brush_t *pb);
  45. void Brush_Rotate(brush_t *b, idVec3 vAngle, idVec3 vOrigin, bool bBuild = true);
  46. void Brush_MakeSidedSphere(int sides);
  47. void Brush_Write (brush_t *b, FILE *f, const idVec3 &origin, bool newFormat);
  48. void Brush_Write (brush_t *b, CMemFile* pMemFile, const idVec3 &origin, bool NewFormat);
  49. void Brush_RemoveEmptyFaces ( brush_t *b );
  50. idWinding * Brush_MakeFaceWinding (brush_t *b, face_t *face, bool keepOnPlaneWinding = false);
  51. void Brush_SetTextureName(brush_t *b, const char *name);
  52. void Brush_Print(brush_t* b);
  53. void Brush_FitTexture( brush_t *b, float height, float width );
  54. void Brush_SetEpair(brush_t *b, const char *pKey, const char *pValue);
  55. const char *Brush_GetKeyValue(brush_t *b, const char *pKey);
  56. const char *Brush_Name(brush_t *b);
  57. void Brush_RebuildBrush(brush_t *b, idVec3 vMins, idVec3 vMaxs, bool patch = true);
  58. void Brush_GetBounds( brush_t *b, idBounds &bo );
  59. face_t * Face_Alloc( void );
  60. void Face_Free( face_t *f );
  61. face_t * Face_Clone (face_t *f);
  62. void Face_MakePlane (face_t *f);
  63. void Face_Draw( face_t *face );
  64. void Face_TextureVectors (face_t *f, float STfromXYZ[2][4]);
  65. void Face_FitTexture( face_t * face, float height, float width );
  66. void SetFaceTexdef (brush_t *b, face_t *f, texdef_t *texdef, brushprimit_texdef_t *brushprimit_texdef, bool bFitScale = false);
  67. int AddPlanept (idVec3 *f);