2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
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.
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.
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
24 #include "debugging/debugging.h"
27 #include "itextures.h"
29 #include "preferencesystem.h"
32 #include "texturelib.h"
33 #include "container/hashfunc.h"
34 #include "container/cache.h"
35 #include "generic/callback.h"
40 #include "preferences.h"
46 eTextures_NEAREST = 0,
47 eTextures_NEAREST_MIPMAP_NEAREST = 1,
48 eTextures_NEAREST_MIPMAP_LINEAR = 2,
50 eTextures_LINEAR_MIPMAP_NEAREST = 4,
51 eTextures_LINEAR_MIPMAP_LINEAR = 5,
52 eTextures_MAX_ANISOTROPY = 6,
55 enum TextureCompressionFormat
57 TEXTURECOMPRESSION_NONE = 0,
58 TEXTURECOMPRESSION_RGBA = 1,
59 TEXTURECOMPRESSION_RGBA_S3TC_DXT1 = 2,
60 TEXTURECOMPRESSION_RGBA_S3TC_DXT3 = 3,
61 TEXTURECOMPRESSION_RGBA_S3TC_DXT5 = 4,
64 struct texture_globals_t
67 // texture compression format
68 TextureCompressionFormat m_nTextureCompressionFormat;
72 bool bTextureCompressionSupported; // is texture compression supported by hardware?
73 GLint texture_components;
75 // temporary values that should be initialised only once at run-time
76 bool m_bOpenGLCompressionSupported;
77 bool m_bS3CompressionSupported;
79 texture_globals_t( GLint components ) :
80 m_nTextureCompressionFormat( TEXTURECOMPRESSION_NONE ),
82 bTextureCompressionSupported( false ),
83 texture_components( components ),
84 m_bOpenGLCompressionSupported( false ),
85 m_bS3CompressionSupported( false ){
89 texture_globals_t g_texture_globals( GL_RGBA );
91 void SetTexParameters( ETexturesMode mode ){
92 float maxAniso = QGL_maxTextureAnisotropy();
94 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, 1.0f );
97 if ( mode == eTextures_MAX_ANISOTROPY ) {
98 mode = eTextures_LINEAR_MIPMAP_LINEAR;
103 case eTextures_NEAREST:
104 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST );
105 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
107 case eTextures_NEAREST_MIPMAP_NEAREST:
108 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST );
109 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
111 case eTextures_NEAREST_MIPMAP_LINEAR:
112 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_LINEAR );
113 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
115 case eTextures_LINEAR:
116 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
117 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
119 case eTextures_LINEAR_MIPMAP_NEAREST:
120 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST );
121 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
123 case eTextures_LINEAR_MIPMAP_LINEAR:
124 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR );
125 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
127 case eTextures_MAX_ANISOTROPY:
128 glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, maxAniso );
131 globalOutputStream() << "invalid texture mode\n";
135 ETexturesMode g_texture_mode = eTextures_LINEAR_MIPMAP_LINEAR;
140 byte g_gammatable[256];
141 void ResampleGamma( float fGamma ){
143 if ( fGamma == 1.0 ) {
144 for ( i = 0; i < 256; i++ )
149 for ( i = 0; i < 256; i++ )
151 inf = (int)( 255 * pow( static_cast<double>( ( i + 0.5 ) / 255.5 ), static_cast<double>( fGamma ) ) + 0.5 );
158 g_gammatable[i] = inf;
163 inline const int& min_int( const int& left, const int& right ){
164 return std::min( left, right );
167 int max_tex_size = 0;
168 const int max_texture_quality = 3;
169 LatchedInt g_Textures_textureQuality( 3, "Texture Quality" );
171 /// \brief This function does the actual processing of raw RGBA data into a GL texture.
172 /// It will also resample to power-of-two dimensions, generate the mipmaps and adjust gamma.
173 void LoadTextureRGBA( qtexture_t* q, unsigned char* pPixels, int nWidth, int nHeight ){
174 static float fGamma = -1;
177 int nCount = nWidth * nHeight;
179 if ( fGamma != g_texture_globals.fGamma ) {
180 fGamma = g_texture_globals.fGamma;
181 ResampleGamma( fGamma );
187 total[0] = total[1] = total[2] = 0.0f;
189 // resample texture gamma according to user settings
190 for ( int i = 0; i < ( nCount * 4 ); i += 4 )
192 for ( int j = 0; j < 3; j++ )
194 total[j] += ( pPixels + i )[j];
195 byte b = ( pPixels + i )[j];
196 ( pPixels + i )[j] = g_gammatable[b];
200 q->color[0] = total[0] / ( nCount * 255 );
201 q->color[1] = total[1] / ( nCount * 255 );
202 q->color[2] = total[2] / ( nCount * 255 );
204 glGenTextures( 1, &q->texture_number );
206 glBindTexture( GL_TEXTURE_2D, q->texture_number );
208 SetTexParameters( g_texture_mode );
211 while ( gl_width < nWidth )
215 while ( gl_height < nHeight )
218 bool resampled = false;
219 if ( !( gl_width == nWidth && gl_height == nHeight ) ) {
221 outpixels = (byte *)malloc( gl_width * gl_height * 4 );
222 R_ResampleTexture( pPixels, nWidth, nHeight, outpixels, gl_width, gl_height, 4 );
229 int quality_reduction = max_texture_quality - g_Textures_textureQuality.m_value;
230 int target_width = min_int( gl_width >> quality_reduction, max_tex_size );
231 int target_height = min_int( gl_height >> quality_reduction, max_tex_size );
233 while ( gl_width > target_width || gl_height > target_height )
235 GL_MipReduce( outpixels, outpixels, gl_width, gl_height, target_width, target_height );
237 if ( gl_width > target_width ) {
240 if ( gl_height > target_height ) {
246 glTexImage2D( GL_TEXTURE_2D, mip++, g_texture_globals.texture_components, gl_width, gl_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, outpixels );
247 while ( gl_width > 1 || gl_height > 1 )
249 GL_MipReduce( outpixels, outpixels, gl_width, gl_height, 1, 1 );
251 if ( gl_width > 1 ) {
254 if ( gl_height > 1 ) {
258 glTexImage2D( GL_TEXTURE_2D, mip++, g_texture_globals.texture_components, gl_width, gl_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, outpixels );
261 glBindTexture( GL_TEXTURE_2D, 0 );
273 void Texture_InitPalette( byte *pal ){
277 byte gammatable[256];
280 gamma = g_texture_globals.fGamma;
282 if ( gamma == 1.0 ) {
283 for ( i = 0 ; i < 256 ; i++ )
288 for ( i = 0 ; i < 256 ; i++ )
290 inf = (int)( 255 * pow( ( i + 0.5 ) / 255.5, gamma ) + 0.5 );
301 for ( i = 0 ; i < 256 ; i++ )
303 r = gammatable[pal[0]];
304 g = gammatable[pal[1]];
305 b = gammatable[pal[2]];
308 //v = (r<<24) + (g<<16) + (b<<8) + 255;
311 //tex_palette[i] = v;
312 tex_palette[i * 3 + 0] = r;
313 tex_palette[i * 3 + 1] = g;
314 tex_palette[i * 3 + 2] = b;
324 HashTable<CopiedString, CopiedString, HashStringNoCase, StringEqualNoCase> strings;
325 strings["Monkey"] = "bleh";
326 strings["MonkeY"] = "blah";
330 const TestHashtable g_testhashtable;
334 typedef std::pair<LoadImageCallback, CopiedString> TextureKey;
336 void qtexture_realise( qtexture_t& texture, const TextureKey& key ){
337 texture.texture_number = 0;
338 if ( !string_empty( key.second.c_str() ) ) {
339 Image* image = key.first.loadImage( key.second.c_str() );
341 LoadTextureRGBA( &texture, image->getRGBAPixels(), image->getWidth(), image->getHeight() );
342 texture.surfaceFlags = image->getSurfaceFlags();
343 texture.contentFlags = image->getContentFlags();
344 texture.value = image->getValue();
346 globalOutputStream() << "Loaded Texture: \"" << key.second.c_str() << "\"\n";
347 GlobalOpenGL_debugAssertNoErrors();
351 globalErrorStream() << "Texture load failed: \"" << key.second.c_str() << "\"\n";
356 void qtexture_unrealise( qtexture_t& texture ){
357 if ( GlobalOpenGL().contextValid && texture.texture_number != 0 ) {
358 glDeleteTextures( 1, &texture.texture_number );
359 GlobalOpenGL_debugAssertNoErrors();
363 class TextureKeyEqualNoCase
366 bool operator()( const TextureKey& key, const TextureKey& other ) const {
367 return key.first == other.first && string_equal_nocase( key.second.c_str(), other.second.c_str() );
371 class TextureKeyHashNoCase
374 typedef hash_t hash_type;
375 hash_t operator()( const TextureKey& key ) const {
376 return hash_combine( string_hash_nocase( key.second.c_str() ), pod_hash( key.first ) );
380 #define DEBUG_TEXTURES 0
382 class TexturesMap : public TexturesCache
384 class TextureConstructor
386 TexturesMap* m_cache;
388 explicit TextureConstructor( TexturesMap* cache )
391 qtexture_t* construct( const TextureKey& key ){
392 qtexture_t* texture = new qtexture_t( key.first, key.second.c_str() );
393 if ( m_cache->realised() ) {
394 qtexture_realise( *texture, key );
398 void destroy( qtexture_t* texture ){
399 if ( m_cache->realised() ) {
400 qtexture_unrealise( *texture );
406 typedef HashedCache<TextureKey, qtexture_t, TextureKeyHashNoCase, TextureKeyEqualNoCase, TextureConstructor> qtextures_t;
407 qtextures_t m_qtextures;
408 TexturesCacheObserver* m_observer;
409 std::size_t m_unrealised;
412 TexturesMap() : m_qtextures( TextureConstructor( this ) ), m_observer( 0 ), m_unrealised( 1 ){
414 typedef qtextures_t::iterator iterator;
417 return m_qtextures.begin();
420 return m_qtextures.end();
423 LoadImageCallback defaultLoader() const {
424 return LoadImageCallback( 0, QERApp_LoadImage );
426 Image* loadImage( const char* name ){
427 return defaultLoader().loadImage( name );
429 qtexture_t* capture( const char* name ){
430 return capture( defaultLoader(), name );
432 qtexture_t* capture( const LoadImageCallback& loader, const char* name ){
434 globalOutputStream() << "textures capture: " << makeQuoted( name ) << '\n';
436 return m_qtextures.capture( TextureKey( loader, name ) ).get();
438 void release( qtexture_t* texture ){
440 globalOutputStream() << "textures release: " << makeQuoted( texture->name ) << '\n';
442 m_qtextures.release( TextureKey( texture->load, texture->name ) );
444 void attach( TexturesCacheObserver& observer ){
445 ASSERT_MESSAGE( m_observer == 0, "TexturesMap::attach: cannot attach observer" );
446 m_observer = &observer;
448 void detach( TexturesCacheObserver& observer ){
449 ASSERT_MESSAGE( m_observer == &observer, "TexturesMap::detach: cannot detach observer" );
453 if ( --m_unrealised == 0 ) {
454 g_texture_globals.bTextureCompressionSupported = false;
456 if ( GlobalOpenGL().ARB_texture_compression() ) {
457 g_texture_globals.bTextureCompressionSupported = true;
458 g_texture_globals.m_bOpenGLCompressionSupported = true;
461 if ( GlobalOpenGL().EXT_texture_compression_s3tc() ) {
462 g_texture_globals.bTextureCompressionSupported = true;
463 g_texture_globals.m_bS3CompressionSupported = true;
466 switch ( g_texture_globals.texture_components )
470 case GL_COMPRESSED_RGBA_ARB:
471 if ( !g_texture_globals.m_bOpenGLCompressionSupported ) {
472 globalOutputStream() << "OpenGL extension GL_ARB_texture_compression not supported by current graphics drivers\n";
473 g_texture_globals.m_nTextureCompressionFormat = TEXTURECOMPRESSION_NONE;
474 g_texture_globals.texture_components = GL_RGBA;
477 case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
478 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
479 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
480 if ( !g_texture_globals.m_bS3CompressionSupported ) {
481 globalOutputStream() << "OpenGL extension GL_EXT_texture_compression_s3tc not supported by current graphics drivers\n";
482 if ( g_texture_globals.m_bOpenGLCompressionSupported ) {
483 g_texture_globals.m_nTextureCompressionFormat = TEXTURECOMPRESSION_RGBA;
484 g_texture_globals.texture_components = GL_COMPRESSED_RGBA_ARB;
488 g_texture_globals.m_nTextureCompressionFormat = TEXTURECOMPRESSION_NONE;
489 g_texture_globals.texture_components = GL_RGBA;
494 globalOutputStream() << "Unknown texture compression selected, reverting\n";
495 g_texture_globals.m_nTextureCompressionFormat = TEXTURECOMPRESSION_NONE;
496 g_texture_globals.texture_components = GL_RGBA;
501 glGetIntegerv( GL_MAX_TEXTURE_SIZE, &max_tex_size );
502 if ( max_tex_size == 0 ) {
506 for ( qtextures_t::iterator i = m_qtextures.begin(); i != m_qtextures.end(); ++i )
508 if ( !( *i ).value.empty() ) {
509 qtexture_realise( *( *i ).value, ( *i ).key );
512 if ( m_observer != 0 ) {
513 m_observer->realise();
518 if ( ++m_unrealised == 1 ) {
519 if ( m_observer != 0 ) {
520 m_observer->unrealise();
522 for ( qtextures_t::iterator i = m_qtextures.begin(); i != m_qtextures.end(); ++i )
524 if ( !( *i ).value.empty() ) {
525 qtexture_unrealise( *( *i ).value );
531 return m_unrealised == 0;
535 TexturesMap* g_texturesmap;
537 TexturesCache& GetTexturesCache(){
538 return *g_texturesmap;
542 void Textures_Realise(){
543 g_texturesmap->realise();
546 void Textures_Unrealise(){
547 g_texturesmap->unrealise();
551 Callback g_texturesModeChangedNotify;
553 void Textures_setModeChangedNotify( const Callback& notify ){
554 g_texturesModeChangedNotify = notify;
557 void Textures_ModeChanged(){
558 if ( g_texturesmap->realised() ) {
559 SetTexParameters( g_texture_mode );
561 for ( TexturesMap::iterator i = g_texturesmap->begin(); i != g_texturesmap->end(); ++i )
563 glBindTexture( GL_TEXTURE_2D, ( *i ).value->texture_number );
564 SetTexParameters( g_texture_mode );
567 glBindTexture( GL_TEXTURE_2D, 0 );
569 g_texturesModeChangedNotify();
572 void Textures_SetMode( ETexturesMode mode ){
573 if ( g_texture_mode != mode ) {
574 g_texture_mode = mode;
576 Textures_ModeChanged();
580 void Textures_setTextureComponents( GLint texture_components ){
581 if ( g_texture_globals.texture_components != texture_components ) {
582 Textures_Unrealise();
583 g_texture_globals.texture_components = texture_components;
588 void Textures_UpdateTextureCompressionFormat(){
589 GLint texture_components = GL_RGBA;
591 switch ( g_texture_globals.m_nTextureCompressionFormat )
593 case ( TEXTURECOMPRESSION_NONE ):
595 texture_components = GL_RGBA;
598 case ( TEXTURECOMPRESSION_RGBA ):
600 texture_components = GL_COMPRESSED_RGBA_ARB;
603 case ( TEXTURECOMPRESSION_RGBA_S3TC_DXT1 ):
605 texture_components = GL_COMPRESSED_RGBA_S3TC_DXT1_EXT;
608 case ( TEXTURECOMPRESSION_RGBA_S3TC_DXT3 ):
610 texture_components = GL_COMPRESSED_RGBA_S3TC_DXT3_EXT;
613 case ( TEXTURECOMPRESSION_RGBA_S3TC_DXT5 ):
615 texture_components = GL_COMPRESSED_RGBA_S3TC_DXT5_EXT;
620 Textures_setTextureComponents( texture_components );
623 void TextureCompressionImport( TextureCompressionFormat& self, int value ){
624 if ( !g_texture_globals.m_bOpenGLCompressionSupported
625 && g_texture_globals.m_bS3CompressionSupported
632 self = TEXTURECOMPRESSION_NONE;
635 self = TEXTURECOMPRESSION_RGBA;
638 self = TEXTURECOMPRESSION_RGBA_S3TC_DXT1;
641 self = TEXTURECOMPRESSION_RGBA_S3TC_DXT3;
644 self = TEXTURECOMPRESSION_RGBA_S3TC_DXT5;
647 Textures_UpdateTextureCompressionFormat();
649 typedef ReferenceCaller1<TextureCompressionFormat, int, TextureCompressionImport> TextureCompressionImportCaller;
651 void TextureGammaImport( float& self, float value ){
652 if ( self != value ) {
653 Textures_Unrealise();
658 typedef ReferenceCaller1<float, float, TextureGammaImport> TextureGammaImportCaller;
660 void TextureModeImport( ETexturesMode& self, int value ){
664 Textures_SetMode( eTextures_NEAREST );
667 Textures_SetMode( eTextures_NEAREST_MIPMAP_NEAREST );
670 Textures_SetMode( eTextures_LINEAR );
673 Textures_SetMode( eTextures_NEAREST_MIPMAP_LINEAR );
676 Textures_SetMode( eTextures_LINEAR_MIPMAP_NEAREST );
679 Textures_SetMode( eTextures_LINEAR_MIPMAP_LINEAR );
682 Textures_SetMode( eTextures_MAX_ANISOTROPY );
685 typedef ReferenceCaller1<ETexturesMode, int, TextureModeImport> TextureModeImportCaller;
687 void TextureModeExport( ETexturesMode& self, const IntImportCallback& importer ){
690 case eTextures_NEAREST:
693 case eTextures_NEAREST_MIPMAP_NEAREST:
696 case eTextures_LINEAR:
699 case eTextures_NEAREST_MIPMAP_LINEAR:
702 case eTextures_LINEAR_MIPMAP_NEAREST:
705 case eTextures_LINEAR_MIPMAP_LINEAR:
708 case eTextures_MAX_ANISOTROPY:
715 typedef ReferenceCaller1<ETexturesMode, const IntImportCallback&, TextureModeExport> TextureModeExportCaller;
717 void Textures_constructPreferences( PreferencesPage& page ){
719 const char* percentages[] = { "12.5%", "25%", "50%", "100%", };
722 STRING_ARRAY_RANGE( percentages ),
723 LatchedIntImportCaller( g_Textures_textureQuality ),
724 IntExportCaller( g_Textures_textureQuality.m_latched )
732 FloatImportCallback( TextureGammaImportCaller( g_texture_globals.fGamma ) ),
733 FloatExportCallback( FloatExportCaller( g_texture_globals.fGamma ) )
736 const char* texture_mode[] = { "Nearest", "Nearest Mipmap", "Linear", "Bilinear", "Bilinear Mipmap", "Trilinear", "Anisotropy" };
738 "Texture Render Mode",
739 STRING_ARRAY_RANGE( texture_mode ),
740 IntImportCallback( TextureModeImportCaller( g_texture_mode ) ),
741 IntExportCallback( TextureModeExportCaller( g_texture_mode ) )
745 const char* compression_none[] = { "None" };
746 const char* compression_opengl[] = { "None", "OpenGL ARB" };
747 const char* compression_s3tc[] = { "None", "S3TC DXT1", "S3TC DXT3", "S3TC DXT5" };
748 const char* compression_opengl_s3tc[] = { "None", "OpenGL ARB", "S3TC DXT1", "S3TC DXT3", "S3TC DXT5" };
749 StringArrayRange compression(
750 ( g_texture_globals.m_bOpenGLCompressionSupported )
751 ? ( g_texture_globals.m_bS3CompressionSupported )
752 ? STRING_ARRAY_RANGE( compression_opengl_s3tc )
753 : STRING_ARRAY_RANGE( compression_opengl )
754 : ( g_texture_globals.m_bS3CompressionSupported )
755 ? STRING_ARRAY_RANGE( compression_s3tc )
756 : STRING_ARRAY_RANGE( compression_none )
759 "Hardware Texture Compression",
761 TextureCompressionImportCaller( g_texture_globals.m_nTextureCompressionFormat ),
762 IntExportCaller( reinterpret_cast<int&>( g_texture_globals.m_nTextureCompressionFormat ) )
766 void Textures_constructPage( PreferenceGroup& group ){
767 PreferencesPage page( group.createPage( "Textures", "Texture Settings" ) );
768 Textures_constructPreferences( page );
770 void Textures_registerPreferencesPage(){
771 PreferencesDialog_addDisplayPage( FreeCaller1<PreferenceGroup&, Textures_constructPage>() );
774 void TextureCompression_importString( const char* string ){
775 g_texture_globals.m_nTextureCompressionFormat = static_cast<TextureCompressionFormat>( atoi( string ) );
776 Textures_UpdateTextureCompressionFormat();
778 typedef FreeCaller1<const char*, TextureCompression_importString> TextureCompressionImportStringCaller;
781 void Textures_Construct(){
782 g_texturesmap = new TexturesMap;
784 GlobalPreferenceSystem().registerPreference( "TextureCompressionFormat", TextureCompressionImportStringCaller(), IntExportStringCaller( reinterpret_cast<int&>( g_texture_globals.m_nTextureCompressionFormat ) ) );
785 GlobalPreferenceSystem().registerPreference( "TextureFiltering", IntImportStringCaller( reinterpret_cast<int&>( g_texture_mode ) ), IntExportStringCaller( reinterpret_cast<int&>( g_texture_mode ) ) );
786 GlobalPreferenceSystem().registerPreference( "TextureQuality", IntImportStringCaller( g_Textures_textureQuality.m_latched ), IntExportStringCaller( g_Textures_textureQuality.m_latched ) );
787 GlobalPreferenceSystem().registerPreference( "SI_Gamma", FloatImportStringCaller( g_texture_globals.fGamma ), FloatExportStringCaller( g_texture_globals.fGamma ) );
789 g_Textures_textureQuality.useLatched();
791 Textures_registerPreferencesPage();
793 Textures_ModeChanged();
795 void Textures_Destroy(){
796 delete g_texturesmap;
800 #include "modulesystem/modulesmap.h"
801 #include "modulesystem/singletonmodule.h"
802 #include "modulesystem/moduleregistry.h"
804 class TexturesDependencies :
805 public GlobalRadiantModuleRef,
806 public GlobalOpenGLModuleRef,
807 public GlobalPreferenceSystemModuleRef
809 ImageModulesRef m_image_modules;
811 TexturesDependencies() :
812 m_image_modules( GlobalRadiant().getRequiredGameDescriptionKeyValue( "texturetypes" ) ){
814 ImageModules& getImageModules(){
815 return m_image_modules.get();
821 TexturesCache* m_textures;
823 typedef TexturesCache Type;
824 STRING_CONSTANT( Name, "*" );
827 Textures_Construct();
829 m_textures = &GetTexturesCache();
834 TexturesCache* getTable(){
839 typedef SingletonModule<TexturesAPI, TexturesDependencies> TexturesModule;
840 typedef Static<TexturesModule> StaticTexturesModule;
841 StaticRegisterModule staticRegisterTextures( StaticTexturesModule::instance() );
843 ImageModules& Textures_getImageModules(){
844 return StaticTexturesModule::instance().getDependencies().getImageModules();