]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/ctfToolz-GTK.cpp
contrib/bobtoolz: unify about dialog construction
[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 #define PLUGIN_NAME "ctfTools"
28 #define CMD_ABOUT = "About..."
29
30 // Radiant function table
31 _QERFuncTable_1 g_FuncTable;
32 _QERAppBSPFrontendTable g_BSPTable;             // for map name
33
34 BOOL g_bBSPInitDone                 = FALSE;
35
36 // commands in the menu
37 static const char *PLUGIN_COMMANDS = ABOUT_CMD ",Colour Changer...,Swap Light Colours,Change Angles 180,Swap Spawn Points";
38
39 // globals
40 GtkWidget *g_pRadiantWnd = NULL;
41
42 extern "C" LPVOID WINAPI QERPlug_GetFuncTable(){
43         return &g_FuncTable;
44 }
45
46 extern "C" LPCSTR WINAPI QERPlug_Init( HMODULE hApp, GtkWidget* pMainWidget ){
47         g_pRadiantWnd = pMainWidget;
48         memset( &g_FuncTable, 0, sizeof( _QERFuncTable_1 ) );
49         g_FuncTable.m_fVersion = QER_PLUG_VERSION;
50         g_FuncTable.m_nSize = sizeof( _QERFuncTable_1 );
51
52         return "ctfToolz for GTKradiant";
53 }
54
55 extern "C" LPCSTR WINAPI QERPlug_GetName(){
56         return (char*)PLUGIN_NAME;
57 }
58
59 extern "C" LPCSTR WINAPI QERPlug_GetCommandList(){
60         return (char*)PLUGIN_COMMANDS;
61 }
62
63 extern "C" void WINAPI QERPlug_Dispatch( LPCSTR p, vec3_t vMin, vec3_t vMax, bool bSingleBrush ){
64         LoadLists();
65
66         if ( !g_bBSPInitDone ) {
67                 g_BSPTable.m_nSize = sizeof( _QERAppBSPFrontendTable );
68                 if ( g_FuncTable.m_pfnRequestInterface( QERAppBSPFrontendTable_GUID, static_cast<LPVOID>( &g_BSPTable ) ) ) {
69                         g_bBSPInitDone = TRUE;
70                 }
71                 else
72                 {
73                         Sys_ERROR( "_QERAppBSPFrontendTable interface request failed\n" );
74                         return;
75                 }
76         }
77
78         if ( !strcmp( p, CMD_ABOUT ) ) {
79                 const char *label_text =
80                         PLUGIN_NAME for " RADIANT_NAME "\n\n"
81                         "Written by djbob\n\n"
82 //                      20190605 dead link
83 //                      "http://www.planetquake.com/toolz\n\n"
84                         "Built against "
85                         RADIANT_NAME " " RADIANT_VERSION "\n"
86                         __DATE__;
87
88                 GlobalRadiant().m_pfnMessageBox( g_pRadiantWnd, label_text,
89                                                                                 "About " PLUGIN_NAME,
90                                                                                 eMB_OK,
91                                                                                 eMB_ICONDEFAULT );
92         }
93         else if ( !strcmp( p, "Colour Changer..." ) ) {
94                 DoCTFColourChanger();
95         }
96         else if ( !strcmp( p, "Swap Light Colours" ) ) {
97                 DoSwapLights();
98         }
99         else if ( !strcmp( p, "Change Angles 180" ) ) {
100                 DoChangeAngles();
101         }
102         else if ( !strcmp( p, "Swap Spawn Points" ) ) {
103                 DoSwapSpawns();
104         }
105 }