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