]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/ctfToolz-GTK.cpp
Merge branch 'master' into divVerent/farplanedist-sky-fix
[xonotic/netradiant.git] / contrib / bobtoolz / ctfToolz-GTK.cpp
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
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.
9
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.
14
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
18  */
19
20 #include "StdAfx.h"
21
22 #include "funchandlers.h"
23 #include "misc.h"
24
25 #include "dialogs/dialogs-gtk.h"
26
27 // Radiant function table
28 _QERFuncTable_1 g_FuncTable;
29 _QERAppBSPFrontendTable g_BSPTable;             // for map name
30
31 BOOL g_bBSPInitDone                 = FALSE;
32
33 // plugin name
34 static const char *PLUGIN_NAME = "ctfToolz";
35
36 // commands in the menu
37 static const char *PLUGIN_COMMANDS = "About...,Colour Changer...,Swap Light Colours,Change Angles 180,Swap Spawn Points";
38
39 // globals
40 GtkWidget *g_pRadiantWnd = NULL;
41
42 static const char *PLUGIN_ABOUT = "ctfToolz for NetRadiant\n"
43                                                                   "by djbob\n"
44                                                                   "http://www.planetquake.com/toolz\n\n";
45
46 extern "C" LPVOID WINAPI QERPlug_GetFuncTable(){
47         return &g_FuncTable;
48 }
49
50 extern "C" LPCSTR WINAPI QERPlug_Init( HMODULE hApp, GtkWidget* pMainWidget ){
51         g_pRadiantWnd = pMainWidget;
52         memset( &g_FuncTable, 0, sizeof( _QERFuncTable_1 ) );
53         g_FuncTable.m_fVersion = QER_PLUG_VERSION;
54         g_FuncTable.m_nSize = sizeof( _QERFuncTable_1 );
55
56         return "ctfToolz for GTKradiant";
57 }
58
59 extern "C" LPCSTR WINAPI QERPlug_GetName(){
60         return (char*)PLUGIN_NAME;
61 }
62
63 extern "C" LPCSTR WINAPI QERPlug_GetCommandList(){
64         return (char*)PLUGIN_COMMANDS;
65 }
66
67 extern "C" void WINAPI QERPlug_Dispatch( LPCSTR p, vec3_t vMin, vec3_t vMax, bool bSingleBrush ){
68         LoadLists();
69
70         if ( !g_bBSPInitDone ) {
71                 g_BSPTable.m_nSize = sizeof( _QERAppBSPFrontendTable );
72                 if ( g_FuncTable.m_pfnRequestInterface( QERAppBSPFrontendTable_GUID, static_cast<LPVOID>( &g_BSPTable ) ) ) {
73                         g_bBSPInitDone = TRUE;
74                 }
75                 else
76                 {
77                         Sys_ERROR( "_QERAppBSPFrontendTable interface request failed\n" );
78                         return;
79                 }
80         }
81
82         if ( !strcmp( p, "About..." ) ) {
83                 DoMessageBox( PLUGIN_ABOUT, "About", IDOK );
84         }
85         else if ( !strcmp( p, "Colour Changer..." ) ) {
86                 DoCTFColourChanger();
87         }
88         else if ( !strcmp( p, "Swap Light Colours" ) ) {
89                 DoSwapLights();
90         }
91         else if ( !strcmp( p, "Change Angles 180" ) ) {
92                 DoChangeAngles();
93         }
94         else if ( !strcmp( p, "Swap Spawn Points" ) ) {
95                 DoSwapSpawns();
96         }
97 }