]> icculus.org git repositories - divverent/netradiant.git/blob - plugins/imageq2/imageq2.cpp
detect the wrong type Q3 format by a different error message when loading
[divverent/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   {
47     m_imagewal.loadImage = LoadWal;
48   }
49   _QERPlugImageTable* getTable()
50   {
51     return &m_imagewal;
52   }
53 };
54
55 typedef SingletonModule<ImageWalAPI, ImageDependencies> ImageWalModule;
56
57 ImageWalModule g_ImageWalModule;
58
59 ////////////////////////////////////////////////////
60
61 class ImageM8API
62 {
63   _QERPlugImageTable m_imagem8;
64 public:
65   typedef _QERPlugImageTable Type;
66   STRING_CONSTANT(Name, "m8");
67
68   ImageM8API()
69   {
70     m_imagem8.loadImage = LoadM8;
71   }
72   _QERPlugImageTable* getTable()
73   {
74     return &m_imagem8;
75   }
76 };
77
78 typedef SingletonModule<ImageM8API, ImageDependencies> ImageM8Module;
79
80 ImageM8Module g_ImageM8Module;
81
82 ////////////////////////////////////////////////////////
83
84 class ImageM32API
85 {
86   _QERPlugImageTable m_imagem32;
87 public:
88   typedef _QERPlugImageTable Type;
89   STRING_CONSTANT(Name, "m32");
90
91   ImageM32API()
92   {
93     m_imagem32.loadImage = LoadM32;
94   }
95   _QERPlugImageTable* getTable()
96   {
97     return &m_imagem32;
98   }
99 };
100
101 typedef SingletonModule<ImageM32API, ImageDependencies> ImageM32Module;
102
103 ImageM32Module g_ImageM32Module;
104
105 ////////////////////////////////////////////////////////
106
107 extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
108 {
109   initialiseModule(server);
110
111   g_ImageWalModule.selfRegister();
112   g_ImageM8Module.selfRegister();
113   g_ImageM32Module.selfRegister();
114 }