]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/gtkgensurf/plugin.cpp
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / gtkgensurf / plugin.cpp
index d7825cc251588db5eec578fb578a634c23d41840..2ec3d469c709d5ac36af601cadabe82500a92d40 100644 (file)
-/*\r
-GenSurf plugin for GtkRadiant\r
-Copyright (C) 2001 David Hyde, 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
-#include "gensurf.h"\r
-\r
-// Global plugin FuncTable\r
-_QERFuncTable_1 g_FuncTable;\r
-_QERQglTable g_GLTable;\r
-_QERUIGtkTable g_UIGtkTable;\r
-_QEREntityTable g_EntityTable;\r
-bool SingleBrushSelected;\r
-bool g_bInitDone;\r
-\r
-#include "iplugin.h"\r
-\r
-const char* QERPlug_Init(void* hApp, void* pMainWidget)\r
-{\r
-  g_pRadiantWnd = (GtkWidget*)pMainWidget;\r
-\r
-  return "GenSurf for Q3Radiant";\r
-}\r
-\r
-const char* QERPlug_GetName ()\r
-{\r
-  return "GtkGenSurf";\r
-}\r
-\r
-const char* QERPlug_GetCommandList ()\r
-{\r
-  return "Wall facing 270...;Wall facing 180...;Wall facing 90...;Wall facing 0...;"\r
-         "Ceiling...;Ground surface...;-;About...";\r
-}\r
-\r
-// vMin/vMax provide the bounds of the selection, they are zero if there is no selection\r
-// if there is a selection, bSingleBrush will be true if a single brush is selected\r
-// if so, typical plugin behaviour (such as primitive creation) would use the bounds as\r
-// a rule to create the primitive, then delete the selection\r
-void QERPlug_Dispatch (const char *p, vec3_t vMin, vec3_t vMax, bool bSingleBrush)\r
-{\r
-  bool Generate = false;\r
-\r
-  if (!g_bInitDone)\r
-  {\r
-    if (GenSurfInit ())\r
-      g_bInitDone = true;\r
-  }\r
-\r
-  if (!strcmp (p, "Ground surface..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_XY0;\r
-    if (SingleBrushSelected)\r
-    {\r
-      Hll = vMin[0];\r
-      Vll = vMin[1];\r
-      Hur = vMax[0];\r
-      Vur = vMax[1];\r
-      Z00 = Z01 = Z10 = Z11 = vMax[2];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp (p, "Ceiling..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_XY1;\r
-    if(SingleBrushSelected)\r
-    {\r
-      Hll = vMin[0];\r
-      Vll = vMin[1];\r
-      Hur = vMax[0];\r
-      Vur = vMax[1];\r
-      Z00 = Z01 = Z10 = Z11 = vMin[2];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp (p, "Wall facing 0..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_YZ0;\r
-    if (SingleBrushSelected)\r
-    {\r
-      Hll = vMin[1];\r
-      Vll = vMin[2];\r
-      Hur = vMax[1];\r
-      Vur = vMax[2];\r
-      Z00 = Z01 = Z10 = Z11 = vMax[0];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp (p, "Wall facing 90..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_XZ0;\r
-    if (SingleBrushSelected)\r
-    {\r
-      Hll = vMin[0];\r
-      Vll = vMin[2];\r
-      Hur = vMax[0];\r
-      Vur = vMax[2];\r
-      Z00 = Z01 = Z10 = Z11 = vMax[1];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp (p, "Wall facing 180..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_YZ1;\r
-    if (SingleBrushSelected)\r
-    {\r
-      Hll = vMin[1];\r
-      Vll = vMin[2];\r
-      Hur = vMax[1];\r
-      Vur = vMax[2];\r
-      Z00 = Z01 = Z10 = Z11 = vMin[0];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp (p, "Wall facing 270..."))\r
-  {\r
-    SingleBrushSelected = bSingleBrush;\r
-    Plane = PLANE_XZ1;\r
-    if (SingleBrushSelected)\r
-    {\r
-      Hll = vMin[0];\r
-      Vll = vMin[2];\r
-      Hur = vMax[0];\r
-      Vur = vMax[2];\r
-      Z00 = Z01 = Z10 = Z11 = vMin[1];\r
-    }\r
-    Generate = true;\r
-  }\r
-  else if (!strcmp(p,"About..."))\r
-    About (g_pRadiantWnd);\r
-\r
-  if (Generate)\r
-  {\r
-    if (SingleBrushSelected)\r
-      UseFaceBounds ();\r
-\r
-    gtk_widget_show (g_pWnd);\r
-  }\r
-}\r
-\r
-extern "C" LPVOID WINAPI QERPlug_GetFuncTable()\r
-{\r
-  return &g_FuncTable;\r
-}\r
-\r
-// =============================================================================\r
-// SYNAPSE\r
-\r
-#include "synapse.h"\r
-\r
-class GenSurfSynapseClient : public CSynapseClient\r
-{\r
-public:\r
-  // CSynapseClient API\r
-  bool RequestAPI(APIDescriptor_t *pAPI);\r
-  const char* GetInfo();\r
-  \r
-  GenSurfSynapseClient() { }\r
-  virtual ~GenSurfSynapseClient() { }\r
-};\r
-\r
-CSynapseServer* g_pSynapseServer = NULL;\r
-GenSurfSynapseClient g_SynapseClient;\r
-\r
-extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces (const char *version, CSynapseServer *pServer)\r
-{\r
-  if (strcmp(version, SYNAPSE_VERSION))\r
-  {\r
-    Syn_Printf("ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version);\r
-    return NULL;\r
-  }\r
-  g_pSynapseServer = pServer;\r
-  g_pSynapseServer->IncRef();\r
-  Set_Syn_Printf(g_pSynapseServer->Get_Syn_Printf());\r
-\r
-  g_SynapseClient.AddAPI(PLUGIN_MAJOR, "gtkgensurf", sizeof(_QERPluginTable));\r
-\r
-  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);\r
-  g_SynapseClient.AddAPI(UIGTK_MAJOR, NULL, sizeof(_QERUIGtkTable), SYN_REQUIRE, &g_UIGtkTable);\r
-  g_SynapseClient.AddAPI(QGL_MAJOR, NULL, sizeof(_QERQglTable), SYN_REQUIRE, &g_GLTable);\r
-  g_SynapseClient.AddAPI(ENTITY_MAJOR, NULL, sizeof(_QEREntityTable), SYN_REQUIRE, &g_EntityTable);\r
-\r
-  return &g_SynapseClient;\r
-}\r
-\r
-bool GenSurfSynapseClient::RequestAPI(APIDescriptor_t *pAPI)\r
-{\r
-  if (!strcmp(pAPI->major_name, PLUGIN_MAJOR))\r
-  {\r
-    _QERPluginTable* pTable= static_cast<_QERPluginTable*>(pAPI->mpTable);\r
-\r
-    pTable->m_pfnQERPlug_Init = QERPlug_Init;\r
-    pTable->m_pfnQERPlug_GetName = QERPlug_GetName;\r
-    pTable->m_pfnQERPlug_GetCommandList = QERPlug_GetCommandList;\r
-    pTable->m_pfnQERPlug_Dispatch = QERPlug_Dispatch;\r
-    return true;\r
-  }\r
-\r
-  Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());\r
-  return false;\r
-}\r
-\r
-#include "version.h"\r
-\r
-const char* GenSurfSynapseClient::GetInfo()\r
-{\r
-  return "GtkGenSurf - built " __DATE__ " " RADIANT_VERSION;\r
-}\r
+/*
+   GenSurf plugin for GtkRadiant
+   Copyright (C) 2001 David Hyde, 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
+ */
+
+#include "gensurf.h"
+
+// Global plugin FuncTable
+_QERFuncTable_1 g_FuncTable;
+_QERQglTable g_GLTable;
+_QERUIGtkTable g_UIGtkTable;
+_QEREntityTable g_EntityTable;
+bool SingleBrushSelected;
+bool g_bInitDone;
+
+#include "iplugin.h"
+
+const char* QERPlug_Init( void* hApp, void* pMainWidget ){
+       g_pRadiantWnd = (GtkWidget*)pMainWidget;
+
+       return "GenSurf for Q3Radiant";
+}
+
+const char* QERPlug_GetName(){
+       return "GtkGenSurf";
+}
+
+const char* QERPlug_GetCommandList(){
+       return "Wall facing 270...;Wall facing 180...;Wall facing 90...;Wall facing 0...;"
+                  "Ceiling...;Ground surface...;-;About...";
+}
+
+// vMin/vMax provide the bounds of the selection, they are zero if there is no selection
+// if there is a selection, bSingleBrush will be true if a single brush is selected
+// if so, typical plugin behaviour (such as primitive creation) would use the bounds as
+// a rule to create the primitive, then delete the selection
+void QERPlug_Dispatch( const char *p, vec3_t vMin, vec3_t vMax, bool bSingleBrush ){
+       bool Generate = false;
+
+       if ( !g_bInitDone ) {
+               if ( GenSurfInit() ) {
+                       g_bInitDone = true;
+               }
+       }
+
+       if ( !strcmp( p, "Ground surface..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_XY0;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[0];
+                       Vll = vMin[1];
+                       Hur = vMax[0];
+                       Vur = vMax[1];
+                       Z00 = Z01 = Z10 = Z11 = vMax[2];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p, "Ceiling..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_XY1;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[0];
+                       Vll = vMin[1];
+                       Hur = vMax[0];
+                       Vur = vMax[1];
+                       Z00 = Z01 = Z10 = Z11 = vMin[2];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p, "Wall facing 0..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_YZ0;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[1];
+                       Vll = vMin[2];
+                       Hur = vMax[1];
+                       Vur = vMax[2];
+                       Z00 = Z01 = Z10 = Z11 = vMax[0];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p, "Wall facing 90..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_XZ0;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[0];
+                       Vll = vMin[2];
+                       Hur = vMax[0];
+                       Vur = vMax[2];
+                       Z00 = Z01 = Z10 = Z11 = vMax[1];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p, "Wall facing 180..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_YZ1;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[1];
+                       Vll = vMin[2];
+                       Hur = vMax[1];
+                       Vur = vMax[2];
+                       Z00 = Z01 = Z10 = Z11 = vMin[0];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p, "Wall facing 270..." ) ) {
+               SingleBrushSelected = bSingleBrush;
+               Plane = PLANE_XZ1;
+               if ( SingleBrushSelected ) {
+                       Hll = vMin[0];
+                       Vll = vMin[2];
+                       Hur = vMax[0];
+                       Vur = vMax[2];
+                       Z00 = Z01 = Z10 = Z11 = vMin[1];
+               }
+               Generate = true;
+       }
+       else if ( !strcmp( p,"About..." ) ) {
+               About( g_pRadiantWnd );
+       }
+
+       if ( Generate ) {
+               if ( SingleBrushSelected ) {
+                       UseFaceBounds();
+               }
+
+               gtk_widget_show( g_pWnd );
+       }
+}
+
+extern "C" LPVOID WINAPI QERPlug_GetFuncTable(){
+       return &g_FuncTable;
+}
+
+// =============================================================================
+// SYNAPSE
+
+#include "synapse.h"
+
+class GenSurfSynapseClient : public CSynapseClient
+{
+public:
+// CSynapseClient API
+bool RequestAPI( APIDescriptor_t *pAPI );
+const char* GetInfo();
+
+GenSurfSynapseClient() { }
+virtual ~GenSurfSynapseClient() { }
+};
+
+CSynapseServer* g_pSynapseServer = NULL;
+GenSurfSynapseClient g_SynapseClient;
+
+#if __GNUC__ >= 4
+#pragma GCC visibility push(default)
+#endif
+extern "C" CSynapseClient * SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces( const char *version, CSynapseServer *pServer ) {
+#if __GNUC__ >= 4
+#pragma GCC visibility pop
+#endif
+       if ( strcmp( version, SYNAPSE_VERSION ) ) {
+               Syn_Printf( "ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version );
+               return NULL;
+       }
+       g_pSynapseServer = pServer;
+       g_pSynapseServer->IncRef();
+       Set_Syn_Printf( g_pSynapseServer->Get_Syn_Printf() );
+
+       g_SynapseClient.AddAPI( PLUGIN_MAJOR, "gtkgensurf", sizeof( _QERPluginTable ) );
+
+       g_SynapseClient.AddAPI( RADIANT_MAJOR, NULL, sizeof( _QERFuncTable_1 ), SYN_REQUIRE, &g_FuncTable );
+       g_SynapseClient.AddAPI( UIGTK_MAJOR, NULL, sizeof( _QERUIGtkTable ), SYN_REQUIRE, &g_UIGtkTable );
+       g_SynapseClient.AddAPI( QGL_MAJOR, NULL, sizeof( _QERQglTable ), SYN_REQUIRE, &g_GLTable );
+       g_SynapseClient.AddAPI( ENTITY_MAJOR, NULL, sizeof( _QEREntityTable ), SYN_REQUIRE, &g_EntityTable );
+
+       return &g_SynapseClient;
+}
+
+bool GenSurfSynapseClient::RequestAPI( APIDescriptor_t *pAPI ){
+       if ( !strcmp( pAPI->major_name, PLUGIN_MAJOR ) ) {
+               _QERPluginTable* pTable = static_cast<_QERPluginTable*>( pAPI->mpTable );
+
+               pTable->m_pfnQERPlug_Init = QERPlug_Init;
+               pTable->m_pfnQERPlug_GetName = QERPlug_GetName;
+               pTable->m_pfnQERPlug_GetCommandList = QERPlug_GetCommandList;
+               pTable->m_pfnQERPlug_Dispatch = QERPlug_Dispatch;
+               return true;
+       }
+
+       Syn_Printf( "ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo() );
+       return false;
+}
+
+#include "version.h"
+
+const char* GenSurfSynapseClient::GetInfo(){
+       return "GtkGenSurf - built " __DATE__ " " RADIANT_VERSION;
+}