]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/imageq2/imageq2.cpp
Merge branch 'mschwan/gdef-inline-fix' into 'master'
[xonotic/netradiant.git] / plugins / imageq2 / imageq2.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 "debugging/debugging.h"
23 #include "ifilesystem.h"
24 #include "iimage.h"
25
26 #include "wal.h"
27 #include "wal32.h"
28
29 #include "modulesystem/singletonmodule.h"
30
31
32 class ImageDependencies : public GlobalFileSystemModuleRef
33 {
34 };
35
36 class ImageWalAPI
37 {
38 _QERPlugImageTable m_imagewal;
39 public:
40 typedef _QERPlugImageTable Type;
41 STRING_CONSTANT( Name, "wal" );
42
43 ImageWalAPI(){
44         m_imagewal.loadImage = LoadWal;
45 }
46 _QERPlugImageTable* getTable(){
47         return &m_imagewal;
48 }
49 };
50
51 typedef SingletonModule<ImageWalAPI, ImageDependencies> ImageWalModule;
52
53 ImageWalModule g_ImageWalModule;
54
55 ////////////////////////////////////////////////////
56
57 class ImageM8API
58 {
59 _QERPlugImageTable m_imagem8;
60 public:
61 typedef _QERPlugImageTable Type;
62 STRING_CONSTANT( Name, "m8" );
63
64 ImageM8API(){
65         m_imagem8.loadImage = LoadM8;
66 }
67 _QERPlugImageTable* getTable(){
68         return &m_imagem8;
69 }
70 };
71
72 typedef SingletonModule<ImageM8API, ImageDependencies> ImageM8Module;
73
74 ImageM8Module g_ImageM8Module;
75
76 ////////////////////////////////////////////////////////
77
78 class ImageM32API
79 {
80 _QERPlugImageTable m_imagem32;
81 public:
82 typedef _QERPlugImageTable Type;
83 STRING_CONSTANT( Name, "m32" );
84
85 ImageM32API(){
86         m_imagem32.loadImage = LoadM32;
87 }
88 _QERPlugImageTable* getTable(){
89         return &m_imagem32;
90 }
91 };
92
93 typedef SingletonModule<ImageM32API, ImageDependencies> ImageM32Module;
94
95 ImageM32Module g_ImageM32Module;
96
97 ////////////////////////////////////////////////////////
98
99 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
100         initialiseModule( server );
101
102         g_ImageWalModule.selfRegister();
103         g_ImageM8Module.selfRegister();
104         g_ImageM32Module.selfRegister();
105 }