]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/sample/sample.cpp
Merge remote-tracking branch 'illwieckz/lokipaths'
[xonotic/netradiant.git] / plugins / sample / sample.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
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
22 #include "sample.h"
23
24 #include "debugging/debugging.h"
25
26 #include "iplugin.h"
27
28 #include "string/string.h"
29 #include "modulesystem/singletonmodule.h"
30 #include "typesystem.h"
31
32 namespace Sample
33 {
34 const char* init( void* hApp, void* pMainWidget ){
35         return "";
36 }
37 const char* getName(){
38         return "Sample Plugin";
39 }
40 const char* getCommandList(){
41         return "About;Do Something";
42 }
43 const char* getCommandTitleList(){
44         return "";
45 }
46 void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush ){
47         if ( string_equal( command, "About" ) ) {
48                 globalOutputStream() << "Sample Demo Plugin\n";
49         }
50         if ( string_equal( command, "Do Something" ) ) {
51                 globalOutputStream() << "Sample Command\n";
52         }
53 }
54
55 } // namespace
56
57 class SamplePluginModule : public TypeSystemRef
58 {
59 _QERPluginTable m_plugin;
60 public:
61 typedef _QERPluginTable Type;
62 STRING_CONSTANT( Name, "sample" );
63
64 SamplePluginModule(){
65         m_plugin.m_pfnQERPlug_Init = &Sample::init;
66         m_plugin.m_pfnQERPlug_GetName = &Sample::getName;
67         m_plugin.m_pfnQERPlug_GetCommandList = &Sample::getCommandList;
68         m_plugin.m_pfnQERPlug_GetCommandTitleList = &Sample::getCommandTitleList;
69         m_plugin.m_pfnQERPlug_Dispatch = &Sample::dispatch;
70 }
71 _QERPluginTable* getTable(){
72         return &m_plugin;
73 }
74 };
75
76 typedef SingletonModule<SamplePluginModule> SingletonSamplePluginModule;
77
78 SingletonSamplePluginModule g_SamplePluginModule;
79
80
81 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
82         initialiseModule( server );
83
84         g_SamplePluginModule.selfRegister();
85 }