]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/brushexport/plugin.cpp
my own uncrustify run
[xonotic/netradiant.git] / contrib / brushexport / plugin.cpp
index 3b3fab090b6a4dc2061dda63e52e05b9785e8782..274c840ee70f1947e408e6b360693ff148c78d9b 100644 (file)
@@ -1,23 +1,23 @@
 /*
-Copyright (C) 2006, Thomas Nitschke.
-All Rights Reserved.
+   Copyright (C) 2006, Thomas Nitschke.
+   All Rights Reserved.
 
-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"
 
 #include "iplugin.h"
@@ -44,91 +44,82 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 #include "typesystem.h"
 
-void CreateWindow (void);
-void DestroyWindow(void);
-bool IsWindowOpen(void);
+void CreateWindow( void );
+void DestroyWindow( void );
+bool IsWindowOpen( void );
 
 namespace BrushExport
 {
-  GtkWindow* g_mainwnd;
-  
-  const char* init(void* hApp, void* pMainWidget)
-  {
-    g_mainwnd = (GtkWindow*)pMainWidget;
-    ASSERT_NOTNULL(g_mainwnd);
-    return "";
-  }
-  const char* getName()
-  {
-    return "Brush export Plugin";
-  }
-  const char* getCommandList()
-  {
-    return "Export selected as Wavefront Object;About";
-  }
-  const char* getCommandTitleList()
-  {
-    return "";
-  }
-  
-  void dispatch(const char* command, float* vMin, float* vMax, bool bSingleBrush)
-  {
-    if(string_equal(command, "About"))
-    {
-      GlobalRadiant().m_pfnMessageBox(GTK_WIDGET(g_mainwnd), "Brushexport plugin v 2.0 by namespace (www.codecreator.net)\n"
-                                        "Enjoy!\n\nSend feedback to spam@codecreator.net", "About me...",
-                                        eMB_OK,
-                                        eMB_ICONDEFAULT);
-    }
-    else if(string_equal(command, "Export selected as Wavefront Object"))
-    {
-      if(IsWindowOpen())
-           DestroyWindow();
-      CreateWindow();
-    }
-  }
+GtkWindow* g_mainwnd;
+
+const char* init( void* hApp, void* pMainWidget ){
+       g_mainwnd = (GtkWindow*)pMainWidget;
+       ASSERT_NOTNULL( g_mainwnd );
+       return "";
+}
+const char* getName(){
+       return "Brush export Plugin";
+}
+const char* getCommandList(){
+       return "Export selected as Wavefront Object;About";
+}
+const char* getCommandTitleList(){
+       return "";
+}
+
+void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush ){
+       if ( string_equal( command, "About" ) ) {
+               GlobalRadiant().m_pfnMessageBox( GTK_WIDGET( g_mainwnd ), "Brushexport plugin v 2.0 by namespace (www.codecreator.net)\n"
+                                                                                                                                 "Enjoy!\n\nSend feedback to spam@codecreator.net", "About me...",
+                                                                                eMB_OK,
+                                                                                eMB_ICONDEFAULT );
+       }
+       else if ( string_equal( command, "Export selected as Wavefront Object" ) ) {
+               if ( IsWindowOpen() ) {
+                       DestroyWindow();
+               }
+               CreateWindow();
+       }
+}
 }
 
 class BrushExportDependencies :
-  public GlobalRadiantModuleRef,
-  public GlobalFiletypesModuleRef,
-  public GlobalBrushModuleRef,
-  public GlobalFileSystemModuleRef,
-  public GlobalSceneGraphModuleRef,
-  public GlobalSelectionModuleRef
+       public GlobalRadiantModuleRef,
+       public GlobalFiletypesModuleRef,
+       public GlobalBrushModuleRef,
+       public GlobalFileSystemModuleRef,
+       public GlobalSceneGraphModuleRef,
+       public GlobalSelectionModuleRef
 {
 public:
-  BrushExportDependencies(void)
-    : GlobalBrushModuleRef(GlobalRadiant().getRequiredGameDescriptionKeyValue("brushtypes"))
-  {}
+BrushExportDependencies( void )
+       : GlobalBrushModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "brushtypes" ) )
+{}
 };
 
 class BrushExportModule : public TypeSystemRef
 {
-  _QERPluginTable m_plugin;
+_QERPluginTable m_plugin;
 public:
-  typedef _QERPluginTable Type;
-  STRING_CONSTANT(Name, "brushexport2");
-
-  BrushExportModule()
-  {
-    m_plugin.m_pfnQERPlug_Init = &BrushExport::init;
-    m_plugin.m_pfnQERPlug_GetName = &BrushExport::getName;
-    m_plugin.m_pfnQERPlug_GetCommandList = &BrushExport::getCommandList;
-    m_plugin.m_pfnQERPlug_GetCommandTitleList = &BrushExport::getCommandTitleList;
-    m_plugin.m_pfnQERPlug_Dispatch = &BrushExport::dispatch;
-  }
-  _QERPluginTable* getTable()
-  {
-    return &m_plugin;
-  }
+typedef _QERPluginTable Type;
+STRING_CONSTANT( Name, "brushexport2" );
+
+BrushExportModule(){
+       m_plugin.m_pfnQERPlug_Init = &BrushExport::init;
+       m_plugin.m_pfnQERPlug_GetName = &BrushExport::getName;
+       m_plugin.m_pfnQERPlug_GetCommandList = &BrushExport::getCommandList;
+       m_plugin.m_pfnQERPlug_GetCommandTitleList = &BrushExport::getCommandTitleList;
+       m_plugin.m_pfnQERPlug_Dispatch = &BrushExport::dispatch;
+}
+_QERPluginTable* getTable(){
+       return &m_plugin;
+}
 };
 
 typedef SingletonModule<BrushExportModule, BrushExportDependencies> SingletonBrushExportModule;
 SingletonBrushExportModule g_BrushExportModule;
 
-extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
-{
-  initialiseModule(server);
-  g_BrushExportModule.selfRegister();
+extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
+       initialiseModule( server );
+       g_BrushExportModule.selfRegister();
 }