]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/map/plugin.cpp
propagate from internal tree
[xonotic/netradiant.git] / plugins / map / plugin.cpp
index d5b722d6f0ac870b0e728e9dccb007668d92693f..1a7def7abbe8ab02e8a0b69efc2fba415be34499 100644 (file)
-/*\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 "plugin.h"\r
-\r
-// =============================================================================\r
-// Globals\r
-\r
-// function tables\r
-_QERFuncTable_1 g_FuncTable;\r
-_QERScripLibTable g_ScripLibTable;\r
-_QERShadersTable g_ShadersTable;\r
-_QEREntityTable __ENTITYTABLENAME;\r
-_QERBrushTable g_BrushTable;\r
-_QERPatchTable g_PatchTable;\r
-_QERFileSystemTable g_FileSystemTable;\r
-/*!\r
-the map version we have been initialized with: Q1/Q2/Q3\r
-we provide all three formats in the same module\r
-*/\r
-int g_MapVersion;\r
-\r
-// =============================================================================\r
-// SYNAPSE\r
-\r
-CSynapseServer* g_pSynapseServer = NULL;\r
-CSynapseClientMap g_SynapseClient;\r
-\r
-static const XMLConfigEntry_t entries[] = \r
-  { \r
-    { SHADERS_MAJOR, SYN_REQUIRE, sizeof(g_ShadersTable), &g_ShadersTable },\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(MAP_MAJOR, "mapq3", sizeof(_QERPlugMapTable));\r
-  g_SynapseClient.AddAPI(MAP_MAJOR, "maphl", sizeof(_QERPlugMapTable));\r
-  g_SynapseClient.AddAPI(MAP_MAJOR, "mapq2", sizeof(_QERPlugMapTable));\r
-  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(g_FuncTable), SYN_REQUIRE, &g_FuncTable);\r
-  g_SynapseClient.AddAPI(SCRIPLIB_MAJOR, NULL, sizeof(g_ScripLibTable), SYN_REQUIRE, &g_ScripLibTable);\r
-  \r
-  // same trick as bobtoolz, see bug #828\r
-  g_SynapseClient.AddAPI( VFS_MAJOR, "*", sizeof(g_FileSystemTable), SYN_REQUIRE, &g_FileSystemTable );\r
-\r
-  if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {\r
-    return NULL;\r
-  }\r
-  \r
-  g_SynapseClient.AddAPI(ENTITY_MAJOR, NULL, sizeof(__ENTITYTABLENAME), SYN_REQUIRE, &__ENTITYTABLENAME);\r
-  g_SynapseClient.AddAPI(BRUSH_MAJOR, NULL, sizeof(g_BrushTable), SYN_REQUIRE, &g_BrushTable);\r
-  g_SynapseClient.AddAPI(PATCH_MAJOR, NULL, sizeof(g_PatchTable), SYN_REQUIRE, &g_PatchTable);\r
-  \r
-  return &g_SynapseClient;\r
-}\r
-\r
-bool CSynapseClientMap::RequestAPI(APIDescriptor_t *pAPI)\r
-{\r
-  if (!strcmp(pAPI->major_name, MAP_MAJOR))\r
-  {\r
-    _QERPlugMapTable* pTable= static_cast<_QERPlugMapTable*>(pAPI->mpTable);\r
-    if (!strcmp(pAPI->minor_name, "mapq3"))\r
-    {\r
-      pTable->m_pfnMap_Read = &Map_ReadQ3;\r
-      pTable->m_pfnMap_Write = &Map_WriteQ3;\r
-      return true;\r
-    }\r
-    if (!strcmp(pAPI->minor_name, "maphl"))\r
-    {\r
-      pTable->m_pfnMap_Read = &Map_ReadHL;\r
-      pTable->m_pfnMap_Write = &Map_WriteHL;\r
-      mbMapHL = true;\r
-      return true;\r
-    }\r
-    if (!strcmp(pAPI->minor_name, "mapq2"))\r
-    {\r
-      pTable->m_pfnMap_Read = &Map_ReadQ2;\r
-      pTable->m_pfnMap_Write = &Map_WriteQ2;\r
-      return true;\r
-    }      \r
-    Syn_Printf("ERROR: RequestAPI( Major: '%s' Minor: '%s' ) not found in '%s'\n", pAPI->major_name, pAPI->minor_name, GetInfo());\r
-    return false;\r
-  }\r
-  \r
-  Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());\r
-  return false;\r
-}\r
-\r
-bool CSynapseClientMap::OnActivate() {\r
-  return true;\r
-}\r
-\r
-#include "version.h"\r
-\r
-const char* CSynapseClientMap::GetInfo()\r
-{\r
-  return "MAP format module built " __DATE__ " " RADIANT_VERSION;\r
-}\r
-\r
-const char* CSynapseClientMap::GetName()\r
-{\r
-  return "map";\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 "plugin.h"
+
+// =============================================================================
+// Globals
+
+// function tables
+_QERFuncTable_1 g_FuncTable;
+_QERScripLibTable g_ScripLibTable;
+_QERShadersTable g_ShadersTable;
+_QEREntityTable __ENTITYTABLENAME;
+_QERBrushTable g_BrushTable;
+_QERPatchTable g_PatchTable;
+_QERFileSystemTable g_FileSystemTable;
+/*!
+the map version we have been initialized with: Q1/Q2/Q3
+we provide all three formats in the same module
+*/
+int g_MapVersion;
+
+// =============================================================================
+// SYNAPSE
+
+CSynapseServer* g_pSynapseServer = NULL;
+CSynapseClientMap g_SynapseClient;
+
+static const XMLConfigEntry_t entries[] = 
+  { 
+    { SHADERS_MAJOR, SYN_REQUIRE, sizeof(g_ShadersTable), &g_ShadersTable },
+    { 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(MAP_MAJOR, "mapq3", sizeof(_QERPlugMapTable));
+  g_SynapseClient.AddAPI(MAP_MAJOR, "maphl", sizeof(_QERPlugMapTable));
+  g_SynapseClient.AddAPI(MAP_MAJOR, "mapq2", sizeof(_QERPlugMapTable));
+  g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(g_FuncTable), SYN_REQUIRE, &g_FuncTable);
+  g_SynapseClient.AddAPI(SCRIPLIB_MAJOR, NULL, sizeof(g_ScripLibTable), SYN_REQUIRE, &g_ScripLibTable);
+  
+  // same trick as bobtoolz, see bug #828
+  g_SynapseClient.AddAPI( VFS_MAJOR, "*", sizeof(g_FileSystemTable), SYN_REQUIRE, &g_FileSystemTable );
+
+  if ( !g_SynapseClient.ConfigXML( pServer, NULL, entries ) ) {
+    return NULL;
+  }
+  
+  g_SynapseClient.AddAPI(ENTITY_MAJOR, NULL, sizeof(__ENTITYTABLENAME), SYN_REQUIRE, &__ENTITYTABLENAME);
+  g_SynapseClient.AddAPI(BRUSH_MAJOR, NULL, sizeof(g_BrushTable), SYN_REQUIRE, &g_BrushTable);
+  g_SynapseClient.AddAPI(PATCH_MAJOR, NULL, sizeof(g_PatchTable), SYN_REQUIRE, &g_PatchTable);
+  
+  return &g_SynapseClient;
+}
+
+bool CSynapseClientMap::RequestAPI(APIDescriptor_t *pAPI)
+{
+  if (!strcmp(pAPI->major_name, MAP_MAJOR))
+  {
+    _QERPlugMapTable* pTable= static_cast<_QERPlugMapTable*>(pAPI->mpTable);
+    if (!strcmp(pAPI->minor_name, "mapq3"))
+    {
+      pTable->m_pfnMap_Read = &Map_ReadQ3;
+      pTable->m_pfnMap_Write = &Map_WriteQ3;
+      return true;
+    }
+    if (!strcmp(pAPI->minor_name, "maphl"))
+    {
+      pTable->m_pfnMap_Read = &Map_ReadHL;
+      pTable->m_pfnMap_Write = &Map_WriteHL;
+      mbMapHL = true;
+      return true;
+    }
+    if (!strcmp(pAPI->minor_name, "mapq2"))
+    {
+      pTable->m_pfnMap_Read = &Map_ReadQ2;
+      pTable->m_pfnMap_Write = &Map_WriteQ2;
+      return true;
+    }      
+    Syn_Printf("ERROR: RequestAPI( Major: '%s' Minor: '%s' ) not found in '%s'\n", pAPI->major_name, pAPI->minor_name, GetInfo());
+    return false;
+  }
+  
+  Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
+  return false;
+}
+
+bool CSynapseClientMap::OnActivate() {
+  return true;
+}
+
+#include "version.h"
+
+const char* CSynapseClientMap::GetInfo()
+{
+  return "MAP format module built " __DATE__ " " RADIANT_VERSION;
+}
+
+const char* CSynapseClientMap::GetName()
+{
+  return "map";
+}