]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/sample/sample.cpp
reformat code! now the code is only ugly on the *inside*
[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     const char *init(void *hApp, void *pMainWidget)
34     {
35         return "";
36     }
37
38     const char *getName()
39     {
40         return "Sample Plugin";
41     }
42
43     const char *getCommandList()
44     {
45         return "About;Do Something";
46     }
47
48     const char *getCommandTitleList()
49     {
50         return "";
51     }
52
53     void dispatch(const char *command, float *vMin, float *vMax, bool bSingleBrush)
54     {
55         if (string_equal(command, "About")) {
56             globalOutputStream() << "Sample Demo Plugin\n";
57         }
58         if (string_equal(command, "Do Something")) {
59             globalOutputStream() << "Sample Command\n";
60         }
61     }
62
63 } // namespace
64
65 class SamplePluginModule : public TypeSystemRef {
66     _QERPluginTable m_plugin;
67 public:
68     typedef _QERPluginTable Type;
69     STRING_CONSTANT( Name,
70     "sample" );
71
72     SamplePluginModule()
73     {
74         m_plugin.m_pfnQERPlug_Init = &Sample::init;
75         m_plugin.m_pfnQERPlug_GetName = &Sample::getName;
76         m_plugin.m_pfnQERPlug_GetCommandList = &Sample::getCommandList;
77         m_plugin.m_pfnQERPlug_GetCommandTitleList = &Sample::getCommandTitleList;
78         m_plugin.m_pfnQERPlug_Dispatch = &Sample::dispatch;
79     }
80
81     _QERPluginTable *getTable()
82     {
83         return &m_plugin;
84     }
85 };
86
87 typedef SingletonModule <SamplePluginModule> SingletonSamplePluginModule;
88
89 SingletonSamplePluginModule g_SamplePluginModule;
90
91
92 extern "C" void RADIANT_DLLEXPORT
93 Radiant_RegisterModules( ModuleServer
94 & server ){
95 initialiseModule( server );
96
97 g_SamplePluginModule.
98
99 selfRegister();
100
101 }