/usr/include/OGRE/OgreCompositorManager.h is in libogre-1.8-dev 1.8.1+dfsg-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __CompositorManager_H__
#define __CompositorManager_H__
#include "OgrePrerequisites.h"
#include "OgreResourceManager.h"
#include "OgreCompositor.h"
#include "OgreRectangle2D.h"
#include "OgreRenderSystem.h"
#include "OgreCompositionTechnique.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup Effects
* @{
*/
/** Class for managing Compositor settings for Ogre. Compositors provide the means
to flexibly "composite" the final rendering result from multiple scene renders
and intermediate operations like rendering fullscreen quads. This makes
it possible to apply postfilter effects, HDRI postprocessing, and shadow
effects to a Viewport.
@par
When loaded from a script, a Compositor is in an 'unloaded' state and only stores the settings
required. It does not at that stage load any textures. This is because the material settings may be
loaded 'en masse' from bulk material script files, but only a subset will actually be required.
@par
Because this is a subclass of ResourceManager, any files loaded will be searched for in any path or
archive added to the resource paths/archives. See ResourceManager for details.
*/
class _OgreExport CompositorManager : public ResourceManager, public Singleton<CompositorManager>
{
public:
CompositorManager();
virtual ~CompositorManager();
/// Overridden from ResourceManager
Resource* createImpl(const String& name, ResourceHandle handle,
const String& group, bool isManual, ManualResourceLoader* loader,
const NameValuePairList* params);
/** Initialises the Compositor manager, which also triggers it to
parse all available .compositor scripts. */
void initialise(void);
/** @see ScriptLoader::parseScript
*/
void parseScript(DataStreamPtr& stream, const String& groupName);
/** Get the compositor chain for a Viewport. If there is none yet, a new
compositor chain is registered.
XXX We need a _notifyViewportRemoved to find out when this viewport disappears,
so we can destroy its chain as well.
*/
CompositorChain *getCompositorChain(Viewport *vp);
/** Returns whether exists compositor chain for a viewport.
*/
bool hasCompositorChain(Viewport *vp) const;
/** Remove the compositor chain from a viewport if exists.
*/
void removeCompositorChain(Viewport *vp);
/** Add a compositor to a viewport. By default, it is added to end of the chain,
after the other compositors.
@param vp Viewport to modify
@param compositor The name of the compositor to apply
@param addPosition At which position to add, defaults to the end (-1).
@return pointer to instance, or 0 if it failed.
*/
CompositorInstance *addCompositor(Viewport *vp, const String &compositor, int addPosition=-1);
/** Remove a compositor from a viewport
*/
void removeCompositor(Viewport *vp, const String &compositor);
/** Set the state of a compositor on a viewport to enabled or disabled.
Disabling a compositor stops it from rendering but does not free any resources.
This can be more efficient than using removeCompositor and addCompositor in cases
the filter is switched on and off a lot.
*/
void setCompositorEnabled(Viewport *vp, const String &compositor, bool value);
/** Get a textured fullscreen 2D rectangle, for internal use.
*/
Renderable *_getTexturedRectangle2D();
/** Overridden from ResourceManager since we have to clean up chains too. */
void removeAll(void);
/** Internal method for forcing all active compositors to recreate their resources. */
void _reconstructAllCompositorResources();
typedef set<Texture*>::type UniqueTextureSet;
/** Utility function to get an existing pooled texture matching a given
definition, or creating one if one doesn't exist. It also takes into
account whether a pooled texture has already been supplied to this
same requester already, in which case it won't give the same texture
twice (this is important for example if you request 2 ping-pong textures,
you don't want to get the same texture for both requests!
*/
TexturePtr getPooledTexture(const String& name, const String& localName,
size_t w, size_t h,
PixelFormat f, uint aa, const String& aaHint, bool srgb, UniqueTextureSet& texturesAlreadyAssigned,
CompositorInstance* inst, CompositionTechnique::TextureScope scope);
/** Free pooled textures from the shared pool (compositor instances still
using them will keep them in memory though).
*/
void freePooledTextures(bool onlyIfUnreferenced = true);
/** Register a compositor logic for listening in to expecting composition
techniques.
*/
void registerCompositorLogic(const String& name, CompositorLogic* logic);
/** Removes a listener for compositor logic registered with registerCompositorLogic
*/
void unregisterCompositorLogic(const String& name);
/** Get a compositor logic by its name
*/
CompositorLogic* getCompositorLogic(const String& name);
/** Register a custom composition pass.
*/
void registerCustomCompositionPass(const String& name, CustomCompositionPass* customPass);
/** Get a custom composition pass by its name
*/
CustomCompositionPass* getCustomCompositionPass(const String& name);
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static CompositorManager& getSingleton(void);
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static CompositorManager* getSingletonPtr(void);
private:
typedef map<Viewport*, CompositorChain*>::type Chains;
Chains mChains;
/** Clear composition chains for all viewports
*/
void freeChains();
Rectangle2D *mRectangle;
/// List of instances
typedef vector<CompositorInstance *>::type Instances;
Instances mInstances;
/// Map of registered compositor logics
typedef map<String, CompositorLogic*>::type CompositorLogicMap;
CompositorLogicMap mCompositorLogics;
/// Map of registered custom composition passes
typedef map<String, CustomCompositionPass*>::type CustomCompositionPassMap;
CustomCompositionPassMap mCustomCompositionPasses;
typedef vector<TexturePtr>::type TextureList;
typedef VectorIterator<TextureList> TextureIterator;
struct TextureDef
{
size_t width, height;
PixelFormat format;
uint fsaa;
String fsaaHint;
bool sRGBwrite;
TextureDef(size_t w, size_t h, PixelFormat f, uint aa, const String& aaHint, bool srgb)
: width(w), height(h), format(f), fsaa(aa), fsaaHint(aaHint), sRGBwrite(srgb)
{
}
};
struct TextureDefLess
{
bool _OgreExport operator()(const TextureDef& x, const TextureDef& y) const
{
if (x.format < y.format)
return true;
else if (x.format == y.format)
{
if (x.width < y.width)
return true;
else if (x.width == y.width)
{
if (x.height < y.height)
return true;
else if (x.height == y.height)
{
if (x.fsaa < y.fsaa)
return true;
else if (x.fsaa == y.fsaa)
{
if (x.fsaaHint < y.fsaaHint)
return true;
else if (x.fsaaHint == y.fsaaHint)
{
if (!x.sRGBwrite && y.sRGBwrite)
return true;
}
}
}
}
}
return false;
}
virtual ~TextureDefLess() {}
};
typedef map<TextureDef, TextureList*, TextureDefLess>::type TexturesByDef;
TexturesByDef mTexturesByDef;
typedef std::pair<String, String> StringPair;
typedef map<TextureDef, TexturePtr, TextureDefLess>::type TextureDefMap;
typedef std::map<StringPair, TextureDefMap> ChainTexturesByDef;
ChainTexturesByDef mChainTexturesByDef;
bool isInputPreviousTarget(CompositorInstance* inst, const Ogre::String& localName);
bool isInputPreviousTarget(CompositorInstance* inst, TexturePtr tex);
bool isInputToOutputTarget(CompositorInstance* inst, const Ogre::String& localName);
bool isInputToOutputTarget(CompositorInstance* inst, TexturePtr tex);
};
/** @} */
/** @} */
}
#endif
|