]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/imagewal/imagewal.cpp
apply misc fixes from Markus Fischer and Rambetter
[xonotic/netradiant.git] / plugins / imagewal / imagewal.cpp
index af592f1ed2bfa8bc05411d7f85261f707e8b74d4..400a1cd988a5806116bde2a39e3e8327ad4b1ebd 100644 (file)
@@ -1,97 +1,97 @@
-/*\r
-Copyright (C) 1999-2007 id Software, Inc. and contributors.\r
-For a list of contributors, see the accompanying CONTRIBUTORS file.\r
-\r
-This file is part of GtkRadiant.\r
-\r
-GtkRadiant is free software; you can redistribute it and/or modify\r
-it under the terms of the GNU General Public License as published by\r
-the Free Software Foundation; either version 2 of the License, or\r
-(at your option) any later version.\r
-\r
-GtkRadiant 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\r
-GNU General Public License for more details.\r
-\r
-You should have received a copy of the GNU General Public License\r
-along with GtkRadiant; if not, write to the Free Software\r
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
-*/\r
-\r
-#include <stdio.h>\r
-#include "imagewal.h"\r
-\r
-// =============================================================================\r
-// global tables\r
-\r
-_QERFuncTable_1 g_FuncTable; // Radiant function table\r
-_QERFileSystemTable g_FileSystemTable;\r
-\r
-// =============================================================================\r
-// SYNAPSE\r
-\r
-CSynapseServer* g_pSynapseServer = NULL;\r
-CSynapseClientImage g_SynapseClient;\r
-\r
-static const XMLConfigEntry_t entries[] = \r
-  { \r
-    { VFS_MAJOR, SYN_REQUIRE, sizeof(_QERFileSystemTable), &g_FileSystemTable },\r
-    { NULL, SYN_UNKNOWN, 0, NULL } };\r
-\r
-#if __GNUC__ >= 4\r
-#pragma GCC visibility push(default)\r
-#endif\r
-extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces( const char *version, CSynapseServer *pServer ) {\r
-#if __GNUC__ >= 4\r
-#pragma GCC visibility pop\r
-#endif\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(IMAGE_MAJOR, "wal", sizeof(_QERPlugImageTable));\r
-  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);\r
-  \r
-  if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {\r
-    return NULL;\r
-  }\r
-  \r
-  return &g_SynapseClient;\r
-}\r
-\r
-bool CSynapseClientImage::RequestAPI(APIDescriptor_t *pAPI)\r
-{\r
-  if (!strcmp(pAPI->major_name, IMAGE_MAJOR ))\r
-  {    \r
-    _QERPlugImageTable* pTable= static_cast<_QERPlugImageTable*>(pAPI->mpTable);\r
-    if (!strcmp(pAPI->minor_name, "wal"))\r
-    {      \r
-      pTable->m_pfnLoadImage = &LoadWAL;\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
-bool CSynapseClientImage::OnActivate() {\r
-  if (!g_FileSystemTable.m_nSize) {\r
-    Syn_Printf("ERROR: VFS_MAJOR table was not initialized before OnActivate in '%s' - incomplete synapse.config?\n", GetInfo());\r
-    return false;\r
-  }\r
-  return true;\r
-}\r
-\r
-#include "version.h"\r
-\r
-const char* CSynapseClientImage::GetInfo()\r
-{\r
-  return "WAL formats module built " __DATE__ " " RADIANT_VERSION;\r
-}\r
+/*
+Copyright (C) 1999-2007 id Software, Inc. and contributors.
+For a list of contributors, see the accompanying CONTRIBUTORS file.
+
+This file is part of GtkRadiant.
+
+GtkRadiant is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+GtkRadiant 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 General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GtkRadiant; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+
+#include <stdio.h>
+#include "imagewal.h"
+
+// =============================================================================
+// global tables
+
+_QERFuncTable_1 g_FuncTable; // Radiant function table
+_QERFileSystemTable g_FileSystemTable;
+
+// =============================================================================
+// SYNAPSE
+
+CSynapseServer* g_pSynapseServer = NULL;
+CSynapseClientImage g_SynapseClient;
+
+static const XMLConfigEntry_t entries[] = 
+  { 
+    { VFS_MAJOR, SYN_REQUIRE, sizeof(_QERFileSystemTable), &g_FileSystemTable },
+    { NULL, SYN_UNKNOWN, 0, NULL } };
+
+#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(IMAGE_MAJOR, "wal", sizeof(_QERPlugImageTable));
+  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
+  
+  if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {
+    return NULL;
+  }
+  
+  return &g_SynapseClient;
+}
+
+bool CSynapseClientImage::RequestAPI(APIDescriptor_t *pAPI)
+{
+  if (!strcmp(pAPI->major_name, IMAGE_MAJOR ))
+  {    
+    _QERPlugImageTable* pTable= static_cast<_QERPlugImageTable*>(pAPI->mpTable);
+    if (!strcmp(pAPI->minor_name, "wal"))
+    {      
+      pTable->m_pfnLoadImage = &LoadWAL;
+      return true;
+    }
+  }
+
+  Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
+  return false;
+}
+
+bool CSynapseClientImage::OnActivate() {
+  if (!g_FileSystemTable.m_nSize) {
+    Syn_Printf("ERROR: VFS_MAJOR table was not initialized before OnActivate in '%s' - incomplete synapse.config?\n", GetInfo());
+    return false;
+  }
+  return true;
+}
+
+#include "version.h"
+
+const char* CSynapseClientImage::GetInfo()
+{
+  return "WAL formats module built " __DATE__ " " RADIANT_VERSION;
+}