mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-23 04:12:06 +00:00
95ac019c00
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@46 8a3a26a2-13c4-0310-b231-cf6edde360e5
159 lines
3.1 KiB
C++
159 lines
3.1 KiB
C++
/*
|
|
Copyright (C) 2001-2006, William Joseph.
|
|
All Rights Reserved.
|
|
|
|
This file is part of GtkRadiant.
|
|
|
|
GtkRadiant is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
GtkRadiant is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GtkRadiant; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "image.h"
|
|
|
|
#include "ifilesystem.h"
|
|
#include "iimage.h"
|
|
|
|
#include "jpeg.h"
|
|
#include "tga.h"
|
|
#include "bmp.h"
|
|
#include "pcx.h"
|
|
#include "dds.h"
|
|
|
|
|
|
#include "modulesystem/singletonmodule.h"
|
|
|
|
class ImageDependencies : public GlobalFileSystemModuleRef
|
|
{
|
|
};
|
|
|
|
class ImageTGAAPI
|
|
{
|
|
_QERPlugImageTable m_imagetga;
|
|
public:
|
|
typedef _QERPlugImageTable Type;
|
|
STRING_CONSTANT(Name, "tga");
|
|
|
|
ImageTGAAPI()
|
|
{
|
|
m_imagetga.loadImage = LoadTGA;
|
|
}
|
|
_QERPlugImageTable* getTable()
|
|
{
|
|
return &m_imagetga;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<ImageTGAAPI> ImageTGAModule;
|
|
|
|
ImageTGAModule g_ImageTGAModule;
|
|
|
|
|
|
class ImageJPGAPI
|
|
{
|
|
_QERPlugImageTable m_imagejpg;
|
|
public:
|
|
typedef _QERPlugImageTable Type;
|
|
STRING_CONSTANT(Name, "jpg");
|
|
|
|
ImageJPGAPI()
|
|
{
|
|
m_imagejpg.loadImage = LoadJPG;
|
|
}
|
|
_QERPlugImageTable* getTable()
|
|
{
|
|
return &m_imagejpg;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<ImageJPGAPI, ImageDependencies> ImageJPGModule;
|
|
|
|
ImageJPGModule g_ImageJPGModule;
|
|
|
|
|
|
class ImageBMPAPI
|
|
{
|
|
_QERPlugImageTable m_imagebmp;
|
|
public:
|
|
typedef _QERPlugImageTable Type;
|
|
STRING_CONSTANT(Name, "bmp");
|
|
|
|
ImageBMPAPI()
|
|
{
|
|
m_imagebmp.loadImage = LoadBMP;
|
|
}
|
|
_QERPlugImageTable* getTable()
|
|
{
|
|
return &m_imagebmp;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<ImageBMPAPI, ImageDependencies> ImageBMPModule;
|
|
|
|
ImageBMPModule g_ImageBMPModule;
|
|
|
|
|
|
class ImagePCXAPI
|
|
{
|
|
_QERPlugImageTable m_imagepcx;
|
|
public:
|
|
typedef _QERPlugImageTable Type;
|
|
STRING_CONSTANT(Name, "pcx");
|
|
|
|
ImagePCXAPI()
|
|
{
|
|
m_imagepcx.loadImage = LoadPCX32;
|
|
}
|
|
_QERPlugImageTable* getTable()
|
|
{
|
|
return &m_imagepcx;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<ImagePCXAPI, ImageDependencies> ImagePCXModule;
|
|
|
|
ImagePCXModule g_ImagePCXModule;
|
|
|
|
|
|
class ImageDDSAPI
|
|
{
|
|
_QERPlugImageTable m_imagedds;
|
|
public:
|
|
typedef _QERPlugImageTable Type;
|
|
STRING_CONSTANT(Name, "dds");
|
|
|
|
ImageDDSAPI()
|
|
{
|
|
m_imagedds.loadImage = LoadDDS;
|
|
}
|
|
_QERPlugImageTable* getTable()
|
|
{
|
|
return &m_imagedds;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<ImageDDSAPI, ImageDependencies> ImageDDSModule;
|
|
|
|
ImageDDSModule g_ImageDDSModule;
|
|
|
|
|
|
extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules(ModuleServer& server)
|
|
{
|
|
initialiseModule(server);
|
|
|
|
g_ImageTGAModule.selfRegister();
|
|
g_ImageJPGModule.selfRegister();
|
|
g_ImageBMPModule.selfRegister();
|
|
g_ImagePCXModule.selfRegister();
|
|
g_ImageDDSModule.selfRegister();
|
|
}
|