]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - plugins/map/plugin.cpp
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / plugins / map / plugin.cpp
index 1a7def7abbe8ab02e8a0b69efc2fba415be34499..27f49e258ce5254051dada88fdae5cb0a809e04a 100644 (file)
@@ -1,23 +1,23 @@
 /*
-Copyright (C) 1999-2007 id Software, Inc. and contributors.
-For a list of contributors, see the accompanying CONTRIBUTORS file.
+   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.
+   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 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.
+   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
-*/
+   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"
 
@@ -33,9 +33,9 @@ _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
-*/
+   the map version we have been initialized with: Q1/Q2/Q3
+   we provide all three formats in the same module
+ */
 int g_MapVersion;
 
 // =============================================================================
@@ -44,91 +44,84 @@ int g_MapVersion;
 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 } };    
+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 ) {
+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;
+       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::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;
+       return true;
 }
 
 #include "version.h"
 
-const char* CSynapseClientMap::GetInfo()
-{
-  return "MAP format module built " __DATE__ " " RADIANT_VERSION;
+const char* CSynapseClientMap::GetInfo(){
+       return "MAP format module built " __DATE__ " " RADIANT_VERSION;
 }
 
-const char* CSynapseClientMap::GetName()
-{
-  return "map";
+const char* CSynapseClientMap::GetName(){
+       return "map";
 }