]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/surface/surfdlg_plugin.cpp
more eol-style
[xonotic/netradiant.git] / plugins / surface / surfdlg_plugin.cpp
index 6256919742595272f42f292e183d629d00e85c09..caec6612055fc04d0003b7e1262837fdd34d8deb 100644 (file)
-/*\r
-Copyright (c) 2001, Loki software, inc.\r
-All rights reserved.\r
-\r
-Redistribution and use in source and binary forms, with or without modification, \r
-are permitted provided that the following conditions are met:\r
-\r
-Redistributions of source code must retain the above copyright notice, this list \r
-of conditions and the following disclaimer.\r
-\r
-Redistributions in binary form must reproduce the above copyright notice, this\r
-list of conditions and the following disclaimer in the documentation and/or\r
-other materials provided with the distribution.\r
-\r
-Neither the name of Loki software nor the names of its contributors may be used \r
-to endorse or promote products derived from this software without specific prior \r
-written permission. \r
-\r
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' \r
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \r
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
-DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\r
-DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
-*/\r
-\r
-#include <stdio.h>\r
-#include "surfdlg_plugin.h"\r
-#include "surfacedialog.h"\r
-\r
-#include "synapse.h"\r
-\r
-class CSynapseClient_SurfDLG : public CSynapseClient\r
-{\r
-public:\r
-  // CSynapseClient API\r
-  bool RequestAPI(APIDescriptor_t *pAPI);\r
-  const char* GetInfo();\r
-  const char* GetName();\r
-  bool OnActivate();\r
-\r
-  CSynapseClient_SurfDLG() { }\r
-  virtual ~CSynapseClient_SurfDLG() { }\r
-};\r
-\r
-// =============================================================================\r
-// SYNAPSE\r
-\r
-_QERFuncTable_1        g_FuncTable;\r
-_QERUndoTable g_UndoTable;\r
-_QERAppSurfaceTable g_AppSurfaceTable;\r
-_QERSelectedFaceTable g_SelectedFaceTable;\r
-_QERShadersTable g_ShadersTable;\r
-_QERAppShadersTable g_AppShadersTable;\r
-_QERAppDataTable g_AppDataTable;\r
-\r
-CSynapseServer* g_pSynapseServer = NULL;\r
-CSynapseClient_SurfDLG 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(SURFACEDIALOG_MAJOR, "quake3", sizeof(_QERPlugSurfaceTable));\r
-  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);\r
-  g_SynapseClient.AddAPI(UNDO_MAJOR, NULL, sizeof(_QERUndoTable), SYN_REQUIRE, &g_UndoTable);\r
-  g_SynapseClient.AddAPI(APPSURFACEDIALOG_MAJOR, NULL, sizeof(_QERAppSurfaceTable), SYN_REQUIRE, &g_AppSurfaceTable);\r
-  g_SynapseClient.AddAPI(SELECTEDFACE_MAJOR, NULL, sizeof(_QERSelectedFaceTable), SYN_REQUIRE, &g_SelectedFaceTable);\r
-  g_SynapseClient.AddAPI(SHADERS_MAJOR, "*", sizeof(_QERShadersTable), SYN_REQUIRE, &g_ShadersTable);\r
-  g_SynapseClient.AddAPI(APPSHADERS_MAJOR, NULL, sizeof(_QERAppShadersTable), SYN_REQUIRE, &g_AppShadersTable);\r
-  g_SynapseClient.AddAPI(DATA_MAJOR, NULL, sizeof(_QERAppDataTable), SYN_REQUIRE, &g_AppDataTable);\r
-\r
-  return &g_SynapseClient;\r
-}\r
-\r
-bool CSynapseClient_SurfDLG::RequestAPI(APIDescriptor_t *pAPI)\r
-{\r
-  if (!strcmp(pAPI->major_name, SURFACEDIALOG_MAJOR))\r
-  {\r
-    _QERPlugSurfaceTable* pSurfDialogTable= static_cast<_QERPlugSurfaceTable*>(pAPI->mpTable);\r
-    if (!strcmp(pAPI->minor_name, "quake3"))\r
-    {\r
-      pSurfDialogTable->m_pfnToggleSurface = &ToggleSurface;\r
-      pSurfDialogTable->m_pfnDoSurface = &DoSurface;\r
-      pSurfDialogTable->m_pfnUpdateSurfaceDialog = &UpdateSurfaceDialog;\r
-      pSurfDialogTable->m_pfnSurfaceDlgFitAll = &SurfaceDlgFitAll;\r
-      pSurfDialogTable->m_pfnGet_SI_Module_Widget = &Get_SI_Module_Widget;\r
-      return true;\r
-    }\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* CSynapseClient_SurfDLG::GetInfo()\r
-{\r
-  return "Surface Dialog (Quake 3) module built " __DATE__ " " RADIANT_VERSION;\r
-}\r
-\r
-const char* CSynapseClient_SurfDLG::GetName()\r
-{\r
-  return "surface";\r
-}\r
-\r
-bool CSynapseClient_SurfDLG::OnActivate()\r
-{\r
-  return true;\r
-}\r
+/*
+Copyright (c) 2001, Loki software, inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, 
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list 
+of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+Neither the name of Loki software nor the names of its contributors may be used 
+to endorse or promote products derived from this software without specific prior 
+written permission. 
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
+DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#include <stdio.h>
+#include "surfdlg_plugin.h"
+#include "surfacedialog.h"
+
+#include "synapse.h"
+
+class CSynapseClient_SurfDLG : public CSynapseClient
+{
+public:
+  // CSynapseClient API
+  bool RequestAPI(APIDescriptor_t *pAPI);
+  const char* GetInfo();
+  const char* GetName();
+  bool OnActivate();
+
+  CSynapseClient_SurfDLG() { }
+  virtual ~CSynapseClient_SurfDLG() { }
+};
+
+// =============================================================================
+// SYNAPSE
+
+_QERFuncTable_1        g_FuncTable;
+_QERUndoTable g_UndoTable;
+_QERAppSurfaceTable g_AppSurfaceTable;
+_QERSelectedFaceTable g_SelectedFaceTable;
+_QERShadersTable g_ShadersTable;
+_QERAppShadersTable g_AppShadersTable;
+_QERAppDataTable g_AppDataTable;
+
+CSynapseServer* g_pSynapseServer = NULL;
+CSynapseClient_SurfDLG g_SynapseClient;
+
+extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces (const char *version, CSynapseServer *pServer)
+{
+  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(SURFACEDIALOG_MAJOR, "quake3", sizeof(_QERPlugSurfaceTable));
+  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
+  g_SynapseClient.AddAPI(UNDO_MAJOR, NULL, sizeof(_QERUndoTable), SYN_REQUIRE, &g_UndoTable);
+  g_SynapseClient.AddAPI(APPSURFACEDIALOG_MAJOR, NULL, sizeof(_QERAppSurfaceTable), SYN_REQUIRE, &g_AppSurfaceTable);
+  g_SynapseClient.AddAPI(SELECTEDFACE_MAJOR, NULL, sizeof(_QERSelectedFaceTable), SYN_REQUIRE, &g_SelectedFaceTable);
+  g_SynapseClient.AddAPI(SHADERS_MAJOR, "*", sizeof(_QERShadersTable), SYN_REQUIRE, &g_ShadersTable);
+  g_SynapseClient.AddAPI(APPSHADERS_MAJOR, NULL, sizeof(_QERAppShadersTable), SYN_REQUIRE, &g_AppShadersTable);
+  g_SynapseClient.AddAPI(DATA_MAJOR, NULL, sizeof(_QERAppDataTable), SYN_REQUIRE, &g_AppDataTable);
+
+  return &g_SynapseClient;
+}
+
+bool CSynapseClient_SurfDLG::RequestAPI(APIDescriptor_t *pAPI)
+{
+  if (!strcmp(pAPI->major_name, SURFACEDIALOG_MAJOR))
+  {
+    _QERPlugSurfaceTable* pSurfDialogTable= static_cast<_QERPlugSurfaceTable*>(pAPI->mpTable);
+    if (!strcmp(pAPI->minor_name, "quake3"))
+    {
+      pSurfDialogTable->m_pfnToggleSurface = &ToggleSurface;
+      pSurfDialogTable->m_pfnDoSurface = &DoSurface;
+      pSurfDialogTable->m_pfnUpdateSurfaceDialog = &UpdateSurfaceDialog;
+      pSurfDialogTable->m_pfnSurfaceDlgFitAll = &SurfaceDlgFitAll;
+      pSurfDialogTable->m_pfnGet_SI_Module_Widget = &Get_SI_Module_Widget;
+      return true;
+    }
+  }
+
+  Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
+  return false;
+}
+
+#include "version.h"
+
+const char* CSynapseClient_SurfDLG::GetInfo()
+{
+  return "Surface Dialog (Quake 3) module built " __DATE__ " " RADIANT_VERSION;
+}
+
+const char* CSynapseClient_SurfDLG::GetName()
+{
+  return "surface";
+}
+
+bool CSynapseClient_SurfDLG::OnActivate()
+{
+  return true;
+}