]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/brushexport/plugin.cpp
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / contrib / brushexport / plugin.cpp
1 /*
2    Copyright (C) 2006, Thomas Nitschke.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21 #include "plugin.h"
22
23 #include "iplugin.h"
24 #include "qerplugin.h"
25
26 #include <gtk/gtk.h>
27
28 #include "debugging/debugging.h"
29 #include "string/string.h"
30 #include "modulesystem/singletonmodule.h"
31 #include "stream/textfilestream.h"
32 #include "stream/stringstream.h"
33 #include "gtkutil/messagebox.h"
34 #include "gtkutil/filechooser.h"
35
36 #include "ibrush.h"
37 #include "iscenegraph.h"
38 #include "iselection.h"
39 #include "ifilesystem.h"
40 #include "ifiletypes.h"
41
42 #include "support.h"
43
44 #include "typesystem.h"
45
46 #define CMD_ABOUT "About..."
47
48 void CreateWindow( ui::Window main_window );
49 void DestroyWindow( void );
50 bool IsWindowOpen( void );
51
52 namespace BrushExport
53 {
54 ui::Window g_mainwnd{ui::null};
55
56 const char* init( void* hApp, void* pMainWidget ){
57         g_mainwnd = ui::Window::from(pMainWidget);
58         ASSERT_TRUE( g_mainwnd );
59         return "";
60 }
61 const char* getName(){
62         return "Brush export Plugin";
63 }
64 const char* getCommandList(){
65         return CMD_ABOUT ";-;Export selected as Wavefront Object";
66 }
67 const char* getCommandTitleList(){
68         return "";
69 }
70
71 void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush ){
72         if ( string_equal( command, CMD_ABOUT ) ) {
73                 const char *label_text =
74                         PLUGIN_NAME " " PLUGIN_VERSION " for "
75                         RADIANT_NAME " " RADIANT_VERSION "\n\n"
76                         "Written by namespace <spam@codecreator.net>\n\n"
77 //                      20200404 dead link
78 //                      "http://www.codecreator.net"
79                         "Built against "
80                         RADIANT_NAME " " RADIANT_VERSION_STRING "\n"
81                         __DATE__;
82
83                 GlobalRadiant().m_pfnMessageBox( g_mainwnd, label_text,
84                                                                                 "About " PLUGIN_NAME,
85                                                                                 eMB_OK,
86                                                                                 eMB_ICONDEFAULT );
87         }
88         else if ( string_equal( command, "Export selected as Wavefront Object" ) ) {
89                 if ( IsWindowOpen() ) {
90                         DestroyWindow();
91                 }
92                 CreateWindow( g_mainwnd );
93         }
94 }
95 }
96
97 class BrushExportDependencies :
98         public GlobalRadiantModuleRef,
99         public GlobalFiletypesModuleRef,
100         public GlobalBrushModuleRef,
101         public GlobalFileSystemModuleRef,
102         public GlobalSceneGraphModuleRef,
103         public GlobalSelectionModuleRef
104 {
105 public:
106 BrushExportDependencies( void )
107         : GlobalBrushModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "brushtypes" ) )
108 {}
109 };
110
111 class BrushExportModule : public TypeSystemRef
112 {
113 _QERPluginTable m_plugin;
114 public:
115 typedef _QERPluginTable Type;
116 STRING_CONSTANT( Name, PLUGIN_NAME );
117
118 BrushExportModule(){
119         m_plugin.m_pfnQERPlug_Init = &BrushExport::init;
120         m_plugin.m_pfnQERPlug_GetName = &BrushExport::getName;
121         m_plugin.m_pfnQERPlug_GetCommandList = &BrushExport::getCommandList;
122         m_plugin.m_pfnQERPlug_GetCommandTitleList = &BrushExport::getCommandTitleList;
123         m_plugin.m_pfnQERPlug_Dispatch = &BrushExport::dispatch;
124 }
125 _QERPluginTable* getTable(){
126         return &m_plugin;
127 }
128 };
129
130 typedef SingletonModule<BrushExportModule, BrushExportDependencies> SingletonBrushExportModule;
131 SingletonBrushExportModule g_BrushExportModule;
132
133 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
134         initialiseModule( server );
135         g_BrushExportModule.selfRegister();
136 }