2 GenSurf plugin for GtkRadiant
3 Copyright (C) 2001 David Hyde, Loki software and qeradiant.com
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 // Global plugin FuncTable
23 _QERFuncTable_1 g_FuncTable;
24 _QERQglTable g_GLTable;
25 _QERUIGtkTable g_UIGtkTable;
26 _QEREntityTable __ENTITYTABLENAME;
27 _QERBrushTable __BRUSHTABLENAME;
28 _QERPatchTable __PATCHTABLENAME;
29 bool SingleBrushSelected;
34 const char* QERPlug_Init(void* hApp, void* pMainWidget)
36 g_pRadiantWnd = (GtkWidget*)pMainWidget;
38 return "GenSurf for Q3Radiant";
41 const char* QERPlug_GetName ()
46 const char* QERPlug_GetCommandList ()
48 return "Wall facing 270...;Wall facing 180...;Wall facing 90...;Wall facing 0...;"
49 "Ceiling...;Ground surface...;-;About...";
52 // vMin/vMax provide the bounds of the selection, they are zero if there is no selection
53 // if there is a selection, bSingleBrush will be true if a single brush is selected
54 // if so, typical plugin behaviour (such as primitive creation) would use the bounds as
55 // a rule to create the primitive, then delete the selection
56 void QERPlug_Dispatch (const char *p, vec3_t vMin, vec3_t vMax, bool bSingleBrush)
58 bool Generate = false;
66 if (!strcmp (p, "Ground surface..."))
68 SingleBrushSelected = bSingleBrush;
70 if (SingleBrushSelected)
76 Z00 = Z01 = Z10 = Z11 = vMax[2];
80 else if (!strcmp (p, "Ceiling..."))
82 SingleBrushSelected = bSingleBrush;
84 if(SingleBrushSelected)
90 Z00 = Z01 = Z10 = Z11 = vMin[2];
94 else if (!strcmp (p, "Wall facing 0..."))
96 SingleBrushSelected = bSingleBrush;
98 if (SingleBrushSelected)
104 Z00 = Z01 = Z10 = Z11 = vMax[0];
108 else if (!strcmp (p, "Wall facing 90..."))
110 SingleBrushSelected = bSingleBrush;
112 if (SingleBrushSelected)
118 Z00 = Z01 = Z10 = Z11 = vMax[1];
122 else if (!strcmp (p, "Wall facing 180..."))
124 SingleBrushSelected = bSingleBrush;
126 if (SingleBrushSelected)
132 Z00 = Z01 = Z10 = Z11 = vMin[0];
136 else if (!strcmp (p, "Wall facing 270..."))
138 SingleBrushSelected = bSingleBrush;
140 if (SingleBrushSelected)
146 Z00 = Z01 = Z10 = Z11 = vMin[1];
150 else if (!strcmp(p,"About..."))
151 About (g_pRadiantWnd);
155 if (SingleBrushSelected)
158 gtk_widget_show (g_pWnd);
162 // =============================================================================
167 class GenSurfSynapseClient : public CSynapseClient
170 // CSynapseClient API
171 bool RequestAPI(APIDescriptor_t *pAPI);
172 const char* GetInfo();
174 GenSurfSynapseClient() { }
175 virtual ~GenSurfSynapseClient() { }
178 CSynapseServer* g_pSynapseServer = NULL;
179 GenSurfSynapseClient g_SynapseClient;
181 extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces (const char *version, CSynapseServer *pServer)
183 if (strcmp(version, SYNAPSE_VERSION))
185 Syn_Printf("ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version);
188 g_pSynapseServer = pServer;
189 g_pSynapseServer->IncRef();
190 Set_Syn_Printf(g_pSynapseServer->Get_Syn_Printf());
192 g_SynapseClient.AddAPI(PLUGIN_MAJOR, "gtkgensurf", sizeof(_QERPluginTable));
194 g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
195 g_SynapseClient.AddAPI(UIGTK_MAJOR, NULL, sizeof(_QERUIGtkTable), SYN_REQUIRE, &g_UIGtkTable);
196 g_SynapseClient.AddAPI(QGL_MAJOR, NULL, sizeof(_QERQglTable), SYN_REQUIRE, &g_GLTable);
197 g_SynapseClient.AddAPI(ENTITY_MAJOR, NULL, sizeof(_QEREntityTable), SYN_REQUIRE, &g_EntityTable);
199 return &g_SynapseClient;
202 bool GenSurfSynapseClient::RequestAPI(APIDescriptor_t *pAPI)
204 if (!strcmp(pAPI->major_name, PLUGIN_MAJOR))
206 _QERPluginTable* pTable= static_cast<_QERPluginTable*>(pAPI->mpTable);
208 pTable->m_pfnQERPlug_Init = QERPlug_Init;
209 pTable->m_pfnQERPlug_GetName = QERPlug_GetName;
210 pTable->m_pfnQERPlug_GetCommandList = QERPlug_GetCommandList;
211 pTable->m_pfnQERPlug_Dispatch = QERPlug_Dispatch;
215 Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
221 const char* GenSurfSynapseClient::GetInfo()
223 return "GtkGenSurf - built " __DATE__ " " RADIANT_VERSION;