This file is indexed.

/usr/include/OGRE/Terrain/OgreTerrainMaterialGenerator.h is in libogre-dev 1.7.4-3.

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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/

Copyright (c) 2000-2011 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 __Ogre_TerrainMaterialGenerator_H__
#define __Ogre_TerrainMaterialGenerator_H__

#include "OgreTerrainPrerequisites.h"
#include "OgrePixelFormat.h"
#include "OgreMaterial.h"
#include "OgreTexture.h"

namespace Ogre
{
	class Terrain;

	/** \addtogroup Optional Components
	*  @{
	*/
	/** \addtogroup Terrain
	*  Some details on the terrain component
	*  @{
	*/


	/** Enumeration of types of data that can be read from textures that are
	specific to a given layer. Notice that global texture information 
	such as shadows and terrain normals are not represented
	here because they are not a per-layer attribute, and blending
	is stored in packed texture structures which are stored separately.
	*/
	enum TerrainLayerSamplerSemantic
	{
		/// Albedo colour (diffuse reflectance colour)
		TLSS_ALBEDO = 0,
		/// Tangent-space normal information from a detail texture
		TLSS_NORMAL = 1,
		/// Height information for the detail texture
		TLSS_HEIGHT = 2,
		/// Specular reflectance
		TLSS_SPECULAR = 3
	};

	/** Information about one element of a sampler / texture within a layer. 
	*/
	struct _OgreTerrainExport TerrainLayerSamplerElement
	{
		/// The source sampler index of this element relative to LayerDeclaration's list
		uint8 source;
		/// The semantic this element represents
		TerrainLayerSamplerSemantic semantic;
		/// The colour element at which this element starts
		uint8 elementStart;
		/// The number of colour elements this semantic uses (usually standard per semantic)
		uint8 elementCount;

		bool operator==(const TerrainLayerSamplerElement& e) const
		{
			return source == e.source &&
				semantic == e.semantic &&
				elementStart == e.elementStart &&
				elementCount == e.elementCount;
		}

		TerrainLayerSamplerElement() {}
		TerrainLayerSamplerElement(uint8 src, TerrainLayerSamplerSemantic sem,
			uint8 elemStart, uint8 elemCount)
			: source(src), semantic(sem), elementStart(elemStart), elementCount(elemCount)
		{
		}
	};
	typedef vector<TerrainLayerSamplerElement>::type TerrainLayerSamplerElementList;

	/** Description of a sampler that will be used with each layer. 
	*/
	struct _OgreTerrainExport TerrainLayerSampler
	{
		/// A descriptive name that is merely used to assist in recognition
		String alias;
		/// The format required of this texture
		PixelFormat format;

		bool operator==(const TerrainLayerSampler& s) const
		{
			return alias == s.alias && format == s.format;
		}

		TerrainLayerSampler() {}

		TerrainLayerSampler(const String& aliasName, PixelFormat fmt)
			: alias(aliasName), format(fmt)
		{
		}
	};
	typedef vector<TerrainLayerSampler>::type TerrainLayerSamplerList;

	/** The definition of the information each layer will contain in this terrain.
	All layers must contain the same structure of information, although the
	input textures can be different per layer instance. 
	*/
	struct _OgreTerrainExport TerrainLayerDeclaration
	{
		TerrainLayerSamplerList samplers;
		TerrainLayerSamplerElementList elements;

		bool operator==(const TerrainLayerDeclaration& dcl) const
		{
			return samplers == dcl.samplers && elements == dcl.elements;
		}
	};

	/** Class that provides functionality to generate materials for use with a terrain.
	@remarks
		Terrains are composed of one or more layers of texture information, and
		require that a material is generated to render them. There are various approaches
		to rendering the terrain, which may vary due to:
		<ul><li>Hardware support (static)</li>
		<li>Texture instances assigned to a particular terrain (dynamic in an editor)</li>
		<li>User selection (e.g. changing to a cheaper option in order to increase performance, 
		or in order to test how the material might look on other hardware (dynamic)</li>
		</ul>
		Subclasses of this class are responsible for responding to these factors and
		to generate a terrain material. 
		@par
		In order to cope with both hardware support and user selection, the generator
		must expose a number of named 'profiles'. These profiles should function on
		a known range of hardware, and be graded by quality. At runtime, the user 
		should be able to select the profile they wish to use (provided hardware
		support is available). 
	*/
	class _OgreTerrainExport TerrainMaterialGenerator : public TerrainAlloc
	{
	public:
		/** Inner class which should also be subclassed to provide profile-specific 
			material generation.
		*/
		class _OgreTerrainExport Profile : public TerrainAlloc
		{
		protected:
			TerrainMaterialGenerator* mParent;
			String mName;
			String mDesc;
		public:
			Profile(TerrainMaterialGenerator* parent, const String& name, const String& desc)
				: mParent(parent), mName(name), mDesc(desc) {}
			Profile(const Profile& prof) 
				: mParent(prof.mParent), mName(prof.mName), mDesc(prof.mDesc) {}
			virtual ~Profile() {}
			/// Get the generator which owns this profile
			TerrainMaterialGenerator* getParent() const { return mParent; }
			/// Get the name of this profile
			const String& getName() const { return mName; }
			/// Get the description of this profile
			const String& getDescription() const { return mDesc; }
			
			/// Generate / resuse a material for the terrain
			virtual MaterialPtr generate(const Terrain* terrain) = 0;
			/// Generate / resuse a material for the terrain
			virtual MaterialPtr generateForCompositeMap(const Terrain* terrain) = 0;
			/// Get the number of layers supported
			virtual uint8 getMaxLayers(const Terrain* terrain) const = 0;
			/// Update the composite map for a terrain
			virtual void updateCompositeMap(const Terrain* terrain, const Rect& rect);

			/// Update params for a terrain
			virtual void updateParams(const MaterialPtr& mat, const Terrain* terrain) = 0;
			/// Update params for a terrain
			virtual void updateParamsForCompositeMap(const MaterialPtr& mat, const Terrain* terrain) = 0;

			/// Request the options needed from the terrain
			virtual void requestOptions(Terrain* terrain) = 0;

		};

		TerrainMaterialGenerator();
		virtual ~TerrainMaterialGenerator();

		/// List of profiles - NB should be ordered in descending complexity
		typedef vector<Profile*>::type ProfileList;
	
		/** Get the list of profiles that this generator supports.
		*/
		virtual const ProfileList& getProfiles() const { return mProfiles; }

		/** Set the active profile by name. */
		virtual void setActiveProfile(const String& name)
		{
			if (!mActiveProfile || mActiveProfile->getName() != name)
			{
				for (ProfileList::iterator i = mProfiles.begin(); i != mProfiles.end(); ++i)
				{
					if ((*i)->getName() == name)
					{
						setActiveProfile(*i);
						break;
					}
				}
			}

		}

		/** Set the active Profile. */
		virtual void setActiveProfile(Profile* p)
		{
			if (mActiveProfile != p)
			{
				mActiveProfile = p;
				_markChanged();
			}
		}
		/// Get the active profile
		Profile* getActiveProfile() const 
		{ 
			// default if not chosen yet
			if (!mActiveProfile && !mProfiles.empty())
				mActiveProfile = mProfiles[0];

			return mActiveProfile; 
		}

		/// Internal method - indicates that a change has been made that would require material regeneration
		void _markChanged() { ++mChangeCounter; }

		/** Returns the number of times the generator has undergone a change which 
			would require materials to be regenerated.
		*/
		unsigned long long int getChangeCount() const { return mChangeCounter; }

		/** Get the layer declaration that this material generator operates with.
		*/
		virtual const TerrainLayerDeclaration& getLayerDeclaration() const { return mLayerDecl; }
		/** Whether this generator can generate a material for a given declaration. 
			By default this only returns true if the declaration is equal to the 
			standard one returned from getLayerDeclaration, but if a subclass wants
			to be flexible to generate materials for other declarations too, it 
			can specify here. 
		*/
		virtual bool canGenerateUsingDeclaration(const TerrainLayerDeclaration& decl)
		{
			return decl == mLayerDecl;
		}

		/** Triggers the generator to request the options that it needs.
		*/
		virtual void requestOptions(Terrain* terrain)
		{
			Profile* p = getActiveProfile();
			if (p)
				p->requestOptions(terrain);

		}
		/** Generate a material for the given terrain using the active profile.
		*/
		virtual MaterialPtr generate(const Terrain* terrain)
		{
			Profile* p = getActiveProfile();
			if (!p)
				return MaterialPtr();
			else
				return p->generate(terrain);
		}
		/** Generate a material for the given composite map of the terrain using the active profile.
		*/
		virtual MaterialPtr generateForCompositeMap(const Terrain* terrain)
		{
			Profile* p = getActiveProfile();
			if (!p)
				return MaterialPtr();
			else
				return p->generateForCompositeMap(terrain);
		}
		/** Get the maximum number of layers supported with the given terrain. 
		@note When you change the options on the terrain, this value can change. 
		*/
		virtual uint8 getMaxLayers(const Terrain* terrain) const
		{
			Profile* p = getActiveProfile();
			if (p)
				return p->getMaxLayers(terrain);
			else
				return 0;
		}

		/** Update the composite map for a terrain.
		The composite map for a terrain must match what the terrain should look like
		at distance. This method will only be called in the render thread so the
		generator is free to render into a texture to support this, so long as 
		the results are blitted into the Terrain's own composite map afterwards.
		*/
		virtual void updateCompositeMap(const Terrain* terrain, const Rect& rect)
		{
			Profile* p = getActiveProfile();
			if (!p)
				return;
			else
				p->updateCompositeMap(terrain, rect);
		}


		/** Update parameters for the given terrain using the active profile.
		*/
		virtual void updateParams(const MaterialPtr& mat, const Terrain* terrain)
		{
			Profile* p = getActiveProfile();
			if (p)
				p->updateParams(mat, terrain);
		}
		/** Update parameters for the given terrain composite map using the active profile.
		*/
		virtual void updateParamsForCompositeMap(const MaterialPtr& mat, const Terrain* terrain)
		{
			Profile* p = getActiveProfile();
			if (p)
				p->updateParamsForCompositeMap(mat, terrain);
		}

		/** Set the debug level of the material. 
		@remarks
			Sets the level of debug display for this material.
			What this debug level means is entirely depdendent on the generator, 
			the only constant is that 0 means 'no debug' and non-zero means 
			'some level of debugging', with any graduations in non-zero values
			being generator-specific.
		*/
		virtual void setDebugLevel(unsigned int dbg)
		{
			if (mDebugLevel != dbg)
			{
				mDebugLevel = dbg;
				_markChanged();
			}
		}
		/// Get the debug level of the material. 
		virtual unsigned int getDebugLevel() const { return mDebugLevel; }

		/** Helper method to render a composite map.
		@param size The requested composite map size
		@param rect The region of the composite map to update, in image space
		@param mat The material to use to render the map
		@param outBox The box region of the texture which has been updated, and
			should be copied into your final texture
		*/
		virtual void _renderCompositeMap(size_t size, const Rect& rect, 
			const MaterialPtr& mat, const TexturePtr& destCompositeMap);

		Texture* _getCompositeMapRTT() { return mCompositeMapRTT; }
	protected:

		ProfileList mProfiles;
		mutable Profile* mActiveProfile;
		unsigned long long int mChangeCounter;
		TerrainLayerDeclaration mLayerDecl;
		unsigned int mDebugLevel;
		SceneManager* mCompositeMapSM;
		Camera* mCompositeMapCam;
		Texture* mCompositeMapRTT; // deliberately holding this by raw pointer to avoid shutdown issues
		ManualObject* mCompositeMapPlane;
		Light* mCompositeMapLight;



	};

	typedef SharedPtr<TerrainMaterialGenerator> TerrainMaterialGeneratorPtr;

	/** @} */
	/** @} */

}
#endif