]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/prtview/portals.h
eol style
[xonotic/netradiant.git] / contrib / prtview / portals.h
index 33bac1ec7c323d84562fbf19b1506323c10b4443..13c7b89fc23d357ef3983e4f3105ef50dbaf6799 100644 (file)
-/*\r
-PrtView plugin for GtkRadiant\r
-Copyright (C) 2001 Geoffrey Dewan, Loki software and qeradiant.com\r
-\r
-This library is free software; you can redistribute it and/or\r
-modify it under the terms of the GNU Lesser General Public\r
-License as published by the Free Software Foundation; either\r
-version 2.1 of the License, or (at your option) any later version.\r
-\r
-This library is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-Lesser General Public License for more details.\r
-\r
-You should have received a copy of the GNU Lesser General Public\r
-License along with this library; if not, write to the Free Software\r
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
-*/\r
-\r
-#ifndef _PORTALS_H_\r
-#define _PORTALS_H_\r
-\r
-class CBspPoint {\r
-public:\r
-       float p[3];\r
-};\r
-\r
-class CBspPortal {\r
-public:\r
-       CBspPortal();\r
-       ~CBspPortal();\r
-\r
-protected:\r
-\r
-public:\r
-       CBspPoint center;\r
-       unsigned point_count;\r
-       CBspPoint *point;\r
-       CBspPoint *inner_point;\r
-       float fp_color_random[4];\r
-       float min[3];\r
-       float max[3];\r
-       float dist;\r
-       qboolean hint;\r
-\r
-       qboolean Build(char *def);\r
-};\r
-\r
-class CPortals {\r
-public:\r
-\r
-  CPortals();\r
-  ~CPortals();\r
-\r
-protected:\r
-\r
-\r
-public:\r
-\r
-       void Load(); // use filename in fn\r
-       void Purge();\r
-\r
-       void FixColors();\r
-\r
-       char fn[_MAX_PATH];\r
-\r
-       int zbuffer;\r
-       int polygons;\r
-       int lines;\r
-       qboolean show_3d;\r
-       qboolean aa_3d;\r
-       qboolean fog;\r
-       COLORREF color_3d;\r
-       float width_3d;  // in 8'ths\r
-       float fp_color_3d[4];\r
-       COLORREF color_fog;\r
-       float fp_color_fog[4];\r
-       float trans_3d;\r
-       float clip_range;\r
-       qboolean clip;\r
-\r
-       qboolean show_2d;\r
-       qboolean aa_2d;\r
-       COLORREF color_2d;\r
-       float width_2d;  // in 8'ths\r
-       float fp_color_2d[4];\r
-\r
-       CBspPortal *portal;\r
-       int *portal_sort;\r
-       qboolean hint_flags;\r
-//     CBspNode *node;\r
-\r
-       unsigned int node_count;\r
-       unsigned int portal_count;\r
-};\r
-\r
-class CPortalsRender : public IGL2DWindow, public IGL3DWindow {\r
-public:\r
-\r
-  CPortalsRender();\r
-  virtual ~CPortalsRender();\r
-\r
-protected:\r
-\r
-       int refCount;\r
-#ifdef _WIN32\r
-       CRITICAL_SECTION protect;\r
-#endif\r
-\r
-public:\r
-\r
-  // IGL2DWindow IGL3DWindow interface\r
-       void IncRef() { refCount++; }\r
-       void DecRef() { refCount--; if (refCount <= 0) delete this; }\r
-       void Draw2D( VIEWTYPE vt );\r
-       void Draw3D();\r
-       void Register();\r
-};\r
-\r
-// void Sys_Printf (char *text, ...);\r
-\r
-extern CPortals portals;\r
-extern CPortalsRender render;\r
-\r
-#endif // _PORTALS_H_\r
+/*
+PrtView plugin for GtkRadiant
+Copyright (C) 2001 Geoffrey Dewan, Loki software and qeradiant.com
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2.1 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+#ifndef _PORTALS_H_
+#define _PORTALS_H_
+
+class CBspPoint {
+public:
+       float p[3];
+};
+
+class CBspPortal {
+public:
+       CBspPortal();
+       ~CBspPortal();
+
+protected:
+
+public:
+       CBspPoint center;
+       unsigned point_count;
+       CBspPoint *point;
+       CBspPoint *inner_point;
+       float fp_color_random[4];
+       float min[3];
+       float max[3];
+       float dist;
+       qboolean hint;
+
+       qboolean Build(char *def);
+};
+
+class CPortals {
+public:
+
+  CPortals();
+  ~CPortals();
+
+protected:
+
+
+public:
+
+       void Load(); // use filename in fn
+       void Purge();
+
+       void FixColors();
+
+       char fn[_MAX_PATH];
+
+       int zbuffer;
+       int polygons;
+       int lines;
+       qboolean show_3d;
+       qboolean aa_3d;
+       qboolean fog;
+       COLORREF color_3d;
+       float width_3d;  // in 8'ths
+       float fp_color_3d[4];
+       COLORREF color_fog;
+       float fp_color_fog[4];
+       float trans_3d;
+       float clip_range;
+       qboolean clip;
+
+       qboolean show_2d;
+       qboolean aa_2d;
+       COLORREF color_2d;
+       float width_2d;  // in 8'ths
+       float fp_color_2d[4];
+
+       CBspPortal *portal;
+       int *portal_sort;
+       qboolean hint_flags;
+//     CBspNode *node;
+
+       unsigned int node_count;
+       unsigned int portal_count;
+};
+
+class CPortalsRender : public IGL2DWindow, public IGL3DWindow {
+public:
+
+  CPortalsRender();
+  virtual ~CPortalsRender();
+
+protected:
+
+       int refCount;
+#ifdef _WIN32
+       CRITICAL_SECTION protect;
+#endif
+
+public:
+
+  // IGL2DWindow IGL3DWindow interface
+       void IncRef() { refCount++; }
+       void DecRef() { refCount--; if (refCount <= 0) delete this; }
+       void Draw2D( VIEWTYPE vt );
+       void Draw3D();
+       void Register();
+};
+
+// void Sys_Printf (char *text, ...);
+
+extern CPortals portals;
+extern CPortalsRender render;
+
+#endif // _PORTALS_H_