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 ){
35 g_pRadiantWnd = (GtkWidget*)pMainWidget;
37 return "GenSurf for Q3Radiant";
40 const char* QERPlug_GetName(){
44 const char* QERPlug_GetCommandList(){
45 return "Wall facing 270...;Wall facing 180...;Wall facing 90...;Wall facing 0...;"
46 "Ceiling...;Ground surface...;-;About...";
49 // vMin/vMax provide the bounds of the selection, they are zero if there is no selection
50 // if there is a selection, bSingleBrush will be true if a single brush is selected
51 // if so, typical plugin behaviour (such as primitive creation) would use the bounds as
52 // a rule to create the primitive, then delete the selection
53 void QERPlug_Dispatch( const char *p, vec3_t vMin, vec3_t vMax, bool bSingleBrush ){
54 bool Generate = false;
57 if ( GenSurfInit() ) {
62 if ( !strcmp( p, "Ground surface..." ) ) {
63 SingleBrushSelected = bSingleBrush;
65 if ( SingleBrushSelected ) {
70 Z00 = Z01 = Z10 = Z11 = vMax[2];
74 else if ( !strcmp( p, "Ceiling..." ) ) {
75 SingleBrushSelected = bSingleBrush;
77 if ( SingleBrushSelected ) {
82 Z00 = Z01 = Z10 = Z11 = vMin[2];
86 else if ( !strcmp( p, "Wall facing 0..." ) ) {
87 SingleBrushSelected = bSingleBrush;
89 if ( SingleBrushSelected ) {
94 Z00 = Z01 = Z10 = Z11 = vMax[0];
98 else if ( !strcmp( p, "Wall facing 90..." ) ) {
99 SingleBrushSelected = bSingleBrush;
101 if ( SingleBrushSelected ) {
106 Z00 = Z01 = Z10 = Z11 = vMax[1];
110 else if ( !strcmp( p, "Wall facing 180..." ) ) {
111 SingleBrushSelected = bSingleBrush;
113 if ( SingleBrushSelected ) {
118 Z00 = Z01 = Z10 = Z11 = vMin[0];
122 else if ( !strcmp( p, "Wall facing 270..." ) ) {
123 SingleBrushSelected = bSingleBrush;
125 if ( SingleBrushSelected ) {
130 Z00 = Z01 = Z10 = Z11 = vMin[1];
134 else if ( !strcmp( p,"About..." ) ) {
135 About( g_pRadiantWnd );
139 if ( SingleBrushSelected ) {
147 // =============================================================================
152 class GenSurfSynapseClient : public CSynapseClient
155 // CSynapseClient API
156 bool RequestAPI( APIDescriptor_t *pAPI );
157 const char* GetInfo();
159 GenSurfSynapseClient() { }
160 virtual ~GenSurfSynapseClient() { }
163 CSynapseServer* g_pSynapseServer = NULL;
164 GenSurfSynapseClient g_SynapseClient;
166 extern "C" CSynapseClient * SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces( const char *version, CSynapseServer *pServer ){
167 if ( strcmp( version, SYNAPSE_VERSION ) ) {
168 Syn_Printf( "ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version );
171 g_pSynapseServer = pServer;
172 g_pSynapseServer->IncRef();
173 Set_Syn_Printf( g_pSynapseServer->Get_Syn_Printf() );
175 g_SynapseClient.AddAPI( PLUGIN_MAJOR, "gtkgensurf", sizeof( _QERPluginTable ) );
177 g_SynapseClient.AddAPI( RADIANT_MAJOR, NULL, sizeof( _QERFuncTable_1 ), SYN_REQUIRE, &g_FuncTable );
178 g_SynapseClient.AddAPI( UIGTK_MAJOR, NULL, sizeof( _QERUIGtkTable ), SYN_REQUIRE, &g_UIGtkTable );
179 g_SynapseClient.AddAPI( QGL_MAJOR, NULL, sizeof( _QERQglTable ), SYN_REQUIRE, &g_GLTable );
180 g_SynapseClient.AddAPI( ENTITY_MAJOR, NULL, sizeof( _QEREntityTable ), SYN_REQUIRE, &g_EntityTable );
182 return &g_SynapseClient;
185 bool GenSurfSynapseClient::RequestAPI( APIDescriptor_t *pAPI ){
186 if ( !strcmp( pAPI->major_name, PLUGIN_MAJOR ) ) {
187 _QERPluginTable* pTable = static_cast<_QERPluginTable*>( pAPI->mpTable );
189 pTable->m_pfnQERPlug_Init = QERPlug_Init;
190 pTable->m_pfnQERPlug_GetName = QERPlug_GetName;
191 pTable->m_pfnQERPlug_GetCommandList = QERPlug_GetCommandList;
192 pTable->m_pfnQERPlug_Dispatch = QERPlug_Dispatch;
196 Syn_Printf( "ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo() );
202 const char* GenSurfSynapseClient::GetInfo(){
203 return "GtkGenSurf - built " __DATE__ " " RADIANT_VERSION;