OGRE  1.7
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
OgreMaterialManager.h
Go to the documentation of this file.
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OGRE
4  (Object-oriented Graphics Rendering Engine)
5 For the latest info, see http://www.ogre3d.org/
6 
7 Copyright (c) 2000-2011 Torus Knot Software Ltd
8 
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15 
16 The above copyright notice and this permission notice shall be included in
17 all copies or substantial portions of the Software.
18 
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 THE SOFTWARE.
26 -----------------------------------------------------------------------------
27 */
28 #ifndef __MATERIALMANAGER_H__
29 #define __MATERIALMANAGER_H__
30 
31 #include "OgrePrerequisites.h"
32 
33 #include "OgreSingleton.h"
34 #include "OgreResourceManager.h"
35 #include "OgreMaterial.h"
36 #include "OgreStringVector.h"
37 #include "OgreMaterialSerializer.h"
38 
39 namespace Ogre {
40 
41 
63  class _OgreExport MaterialManager : public ResourceManager, public Singleton<MaterialManager>
64  {
65  public:
69  class Listener
70  {
71  public:
73  virtual ~Listener() { }
103  virtual Technique* handleSchemeNotFound(unsigned short schemeIndex,
104  const String& schemeName, Material* originalMaterial, unsigned short lodIndex,
105  const Renderable* rend) = 0;
106 
107  };
108 
109  protected:
110 
118  unsigned int mDefaultMaxAniso;
124  Resource* createImpl(const String& name, ResourceHandle handle,
125  const String& group, bool isManual, ManualResourceLoader* loader,
126  const NameValuePairList* params);
127 
135  unsigned short mActiveSchemeIndex;
136 
139  typedef std::map<String, ListenerList> ListenerMap;
141 
142  public:
145 
148  MaterialManager();
149 
152  virtual ~MaterialManager();
153 
156  void initialise(void);
157 
160  void parseScript(DataStreamPtr& stream, const String& groupName);
161 
162 
169  virtual void setDefaultTextureFiltering(TextureFilterOptions fo);
174  virtual void setDefaultTextureFiltering(FilterType ftype, FilterOptions opts);
179  virtual void setDefaultTextureFiltering(FilterOptions minFilter, FilterOptions magFilter, FilterOptions mipFilter);
180 
182  virtual FilterOptions getDefaultTextureFiltering(FilterType ftype) const;
183 
190  void setDefaultAnisotropy(unsigned int maxAniso);
192  unsigned int getDefaultAnisotropy() const;
193 
224  virtual MaterialPtr getDefaultSettings(void) const { return mDefaultSettings; }
225 
229  virtual unsigned short _getSchemeIndex(const String& name);
233  virtual const String& _getSchemeName(unsigned short index);
237  virtual unsigned short _getActiveSchemeIndex(void) const;
238 
242  virtual const String& getActiveScheme(void) const;
243 
247  virtual void setActiveScheme(const String& schemeName);
248 
253  virtual void addListener(Listener* l, const Ogre::String& schemeName = StringUtil::BLANK);
254 
259  virtual void removeListener(Listener* l, const Ogre::String& schemeName = StringUtil::BLANK);
260 
262  virtual Technique* _arbitrateMissingTechniqueForActiveScheme(
263  Material* mat, unsigned short lodIndex, const Renderable* rend);
264 
280  static MaterialManager& getSingleton(void);
296  static MaterialManager* getSingletonPtr(void);
297 
298  };
302 }
303 
304 #endif
#define _OgreExport
Definition: OgrePlatform.h:203
Listener on any general material events.
String mActiveSchemeName
Current material scheme.
map< String, String >::type NameValuePairList
Name / value parameter pair (first = name, second = value)
Definition: OgreCommon.h:524
Template class for creating single-instance global classes.
Definition: OgreSingleton.h:64
Class encapsulates rendering properties of an object.
Definition: OgreMaterial.h:88
FilterType
Definition: OgreCommon.h:91
Interface describing a manual resource loader.
Definition: OgreResource.h:512
FilterOptions mDefaultMipFilter
Default Texture filtering - mipmapping.
map< String, unsigned short >::type SchemeMap
Scheme name -> index. Never shrinks! Should be pretty static anyway.
Class representing an approach to rendering this particular Material.
Definition: OgreTechnique.h:53
MaterialPtr mDefaultSettings
Default settings.
FilterOptions mDefaultMinFilter
Default Texture filtering - minification.
Abstract class defining the interface all renderable objects must implement.
#define OGRE_THREAD_POINTER(T, var)
Class for managing Material settings for Ogre.
Class for serializing Materials to / from a .material script.
std::map< String, ListenerList > ListenerMap
unsigned short mActiveSchemeIndex
Current material scheme.
unsigned int mDefaultMaxAniso
Default Texture anisotropy.
FilterOptions mDefaultMagFilter
Default Texture filtering - magnification.
Abstract class representing a loadable resource (e.g.
Definition: OgreResource.h:77
unsigned long long int ResourceHandle
Definition: OgreResource.h:39
static const String BLANK
Constant blank string, useful for returning by ref where local does not exist.
Definition: OgreString.h:180
virtual ~Listener()
Virtual destructor needed as class has virtual methods.
Defines a generic resource handler.
_StringBase String
static String DEFAULT_SCHEME_NAME
Default material scheme.
Specialisation of SharedPtr to allow SharedPtr to be assigned to MaterialPtr.
Definition: OgreMaterial.h:677
list< Listener * >::type ListenerList
The list of per-scheme (and general) material listeners.
SchemeMap mSchemes
List of material schemes.
FilterOptions
Filtering options for textures / mipmaps.
Definition: OgreCommon.h:101
virtual MaterialPtr getDefaultSettings(void) const
Returns a pointer to the default Material settings.
TextureFilterOptions
High-level filtering options providing shortcuts to settings the minification, magnification and mip ...
Definition: OgreCommon.h:79