This file is indexed.

/usr/include/Eris-1.3/Eris/TerrainMod.h is in liberis-1.3-dev 1.3.14-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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
//
// C++ Interface: TerrainMod
//
// Description: The purpose of this class is to handle the bulk of the work
//		involved with using Mercator::TerrainMods. It handles parsing
//		the Atlas data and storing all the information needed by 
//		TerrainGenerator to add and remove them from the Terrain.
//
//		TerrainGenerator listens for changes in the modifier and
//		updates or removes the modifiers from the terrain as needed.
//
//
// Author: Tamas Bates <rhymer@gmail.com>, (C) 2008
// Author: Erik Hjortsberg <erik.hjortsberg@iteam.se>, (C) 2008
//
// This program 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.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.//
//
#ifndef ERIS_TERRAINMOD_H
#define ERIS_TERRAINMOD_H

#include <sigc++/signal.h>
#include <Eris/Entity.h>

namespace Mercator
{
    class TerrainMod;
    class CraterTerrainMod;
}

namespace Eris
{

class Entity;
class TerrainMod;
class InnerTerrainMod_impl;

/**
@author Erik Hjortsberg <erik.hjortsberg@iteam.se>
@brief Base class for all terrain mod specific classes.This is not meant to be used directly by anything else than the TerrainMod class.
The TerrainMod class in itself doesn't hold the actual reference to the terrain mod, and doesn't handle the final parsing of Atlas data. This is instead handled by the different subclasses of this class. Since the different kinds of terrain mods found in Mercator behave differently depending on their type and the kind of shape used, we need to separate the code for handling them into different classes.
*/
class InnerTerrainMod
{
public:
    /**
    * @brief Dtor.
    */
    virtual ~InnerTerrainMod();
    
    /**
    * @brief Gets the type of terrain mod handled by this.
    * This corresponds to the "type" attribute of the "terrainmod" atlas attribute, for example "cratermod" or "slopemod".
    * Internally, it's stored in the mTypeName field, as set through the constructor.
    * @return The type of mod handled by any instance of this.
    */
    const std::string& getTypename() const;
    
    /**
    * @brief Tries to parse the Atlas data.
    * It's up to the specific subclasses to provide proper parsing of the data depending on their needs.
    * If the data is successfully parsed, a new Mercator::TerrainMod instance will be created.
    * @param modElement The Atlas element describing the terrainmod. This should in most instances correspond directly to the "terrainmod" element found in the root atlas attribute map.
    * @return If the parsing was successful, true will be returned, and a new Mercator::TerrainMod will have been created, else false.
    */
    virtual bool parseAtlasData(const Atlas::Message::MapType& modElement) = 0;
    
    /**
    * @brief Accessor for the Mercator::TerrainMod created and held by this instance.
    * If no terrain mod could be created, such as with faulty Atlas data, or if parseAtlasData() hasn't been called yet, this will return a null pointer.
    * @return A pointer to the TerrainMod held by this instance, or null if none created.
    */
    virtual Mercator::TerrainMod* getModifier() = 0;

protected:

    /**
    * @brief Ctor.
    * This is protected to prevent any other class than subclasses of this to call it.
    * @param terrainMod The TerrainMod instance to which this instance belongs to.
    * @param typemod The type of terrainmod this handles, such as "cratermod" or "slopemod. This will be stored in mTypeName.
    */
    InnerTerrainMod(TerrainMod& terrainMod, const std::string& typemod);
    
    /**
    * @brief The type of mod this instance handles.
    * @see getTypename()
    */
    std::string mTypeName;
    
    /**
    * @brief The TerrainMod instance to which this instance belongs.
    */
    TerrainMod& mTerrainMod;
    
    /**
    * @brief Parses the atlas data of the modifiers, finding the base atlas element for the shape definition, and returning the kind of shape specified.
    * This is an utility method to help with those many cases where we need to parse the shape data in order to determine the kind of shape. The actual parsing and creation of the shape happens in InnerTerrainMod_impl however, since that depends on templated calls. However, in order to know what kind of template to use we must first look at the type of shape, thus the need for this method.
    * @param modElement The atlas element containing the modifier.
    * @param shapeMap A shape data is found, and it's in the map form, it will be put here.
    * @return The name of the shape, or an empty string if no valid data could be found.
    */
    const std::string& parseShape(const Atlas::Message::MapType& modElement, const Atlas::Message::Element** shapeMap);
    
    /**
    * @brief Parses the position of the mod.
    * If no height data is given the height of the entity the mod belongs to will be used.
    * If however a "height" value is set, that will be used instead.
    * If no "height" value is set, but a "heightoffset" is present, that value will be added to the height set by the position of the entity the mod belongs to.
    * @param modElement The top mod element.
    * @return The position of the mod, where the height has been adjusted.
    */
    WFMath::Point<3> parsePosition(const Atlas::Message::MapType& modElement);

// 	template <typename InnerTerrainMod_implType>
// 	InnerTerrainMod_implType* createInnerTerrainMod_impInstance(const Atlas::Message::MapType& modElement);

};


/**
@author Erik Hjortsberg <erik.hjortsberg@iteam.se>
@brief Inner terrain mod class for handling slope mods.
This will parse and create an instance of Mercator::SlopeTerrainMod, which is a mod which produces a sloped area in the landscape.
The main parsing of the atlas data and creation of the terrain mod occurs in InnerTerrainMod_impl however, as this is a mod that uses templated shapes.
*/
class InnerTerrainModSlope : public InnerTerrainMod
{
public:
    /**
    * @brief Ctor.
    * @param terrainMod The TerrainMod instance to which this instance belongs to.
    */
    InnerTerrainModSlope(TerrainMod& terrainMod);
    
    /**
    * @brief Dtor.
    */
    virtual ~InnerTerrainModSlope();
    
    /**
    * @copydoc InnerTerrainMod::parseAtlasData()
    */
    virtual bool parseAtlasData(const Atlas::Message::MapType& modElement);
    
    /**
    * @copydoc InnerTerrainMod::getModifier()
    */
    virtual Mercator::TerrainMod* getModifier();

protected:
    /**
    * @brief A reference to inner mod implementation.
    * This is separate from this class because of the heavy use of templated shapes.
    * The ownership is ours, so it will be destroyed when this instance is destroyed.
    */
    InnerTerrainMod_impl* mModifier_impl;
};

/**
@author Erik Hjortsberg <erik.hjortsberg@iteam.se>
@author Tamas Bates
@brief Handles a crater terrain mod.
This will parse and create an instance of Mercator::CraterTerrainMod, which is a mod which produces a crater in the landscape.
Note that this will not make use of InnerTerrainMod_impl since there's no templated shapes in use here.
TODO: Should perhaps this also use the same pattern of InnerTerrainMod_impl as the other mods, just to not break the pattern? /ehj
*/
class InnerTerrainModCrater : public InnerTerrainMod
{
public:
    /**
    * @brief Ctor.
    * @param terrainMod The TerrainMod instance to which this instance belongs to.
    */
    InnerTerrainModCrater(TerrainMod& terrainMod);
    
    /**
    * @brief Dtor.
    */
    virtual ~InnerTerrainModCrater();
    
    /**
    * @copydoc InnerTerrainMod::parseAtlasData()
    */
    virtual bool parseAtlasData(const Atlas::Message::MapType& modElement);
    
    /**
    * @copydoc InnerTerrainMod::getModifier()
    */
    virtual Mercator::TerrainMod* getModifier();

protected:
    /**
    * @brief A reference to the crater terrain modifier held by this instance.
    * The ownership is ours, so it will be destroyed when this instance is destroyed.
    */
    Mercator::CraterTerrainMod* mModifier;
};

/**
@author Erik Hjortsberg <erik.hjortsberg@iteam.se>
@author Tamas Bates
@brief Handles a level terrain mod.
This will parse and create an instance of Mercator::LevelTerrainMod, which is a mod which produces a level area in the landscape.
The main parsing of the atlas data and creation of the terrain mod occurs in InnerTerrainMod_impl however, as this is a mod that uses templated shapes.
*/
class InnerTerrainModLevel : public InnerTerrainMod
{
public:
    /**
    * @brief Ctor.
    * @param terrainMod The TerrainMod instance to which this instance belongs to.
    */
    InnerTerrainModLevel(TerrainMod& terrainMod);
    
    /**
    * @brief Dtor.
    */
    virtual ~InnerTerrainModLevel();
    
    /**
    * @copydoc InnerTerrainMod::parseAtlasData()
    */
    virtual bool parseAtlasData(const Atlas::Message::MapType& modElement);
    
    /**
    * @copydoc InnerTerrainMod::getModifier()
    */
    virtual Mercator::TerrainMod* getModifier();

protected:

    /**
    * @brief A reference to inner mod implementation.
    * This is separate from this class because of the heavy use of templated shapes.
    * The ownership is ours, so it will be destroyed when this instance is destroyed.
    */
    InnerTerrainMod_impl* mModifier_impl;
};

/**
@author Erik Hjortsberg <erik.hjortsberg@iteam.se>
@author Tamas Bates
@brief Handles a level terrain mod.
This will parse and create an instance of Mercator::AdjustTerrainMod, which is a mod which adjusts the terrain within an area in the landscape.
The main parsing of the atlas data and creation of the terrain mod occurs in InnerTerrainMod_impl however, as this is a mod that uses templated shapes.
*/
class InnerTerrainModAdjust : public InnerTerrainMod
{
public:
    /**
    * @brief Ctor.
    * @param terrainMod The TerrainMod instance to which this instance belongs to.
    */
    InnerTerrainModAdjust(TerrainMod& terrainMod);
    
    /**
    * @brief Dtor.
    */
    virtual ~InnerTerrainModAdjust();
    
    /**
    * @copydoc InnerTerrainMod::parseAtlasData()
    */
    virtual bool parseAtlasData(const Atlas::Message::MapType& modElement);
    
    /**
    * @copydoc InnerTerrainMod::getModifier()
    */
    virtual Mercator::TerrainMod* getModifier();

protected:

    /**
    * @brief A reference to inner mod implementation.
    * This is separate from this class because of the heavy use of templated shapes.
    * The ownership is ours, so it will be destroyed when this instance is destroyed.
    */
    InnerTerrainMod_impl* mModifier_impl;
};


/**
@author Tamas Bates
@author Erik Hjortsberg
@brief Wrapper class that envelopes a Mercator::TerrainMod.
This class is mainly responsible for parsing atlas data and create or update an instance of Mercator::TerrainMod with the correct data.
The actual application of the Mercator::TerrainMod to the terrain and the subsequent update of the rendering display (i.e. the Ogre terrain) is handled mainly by TerrainGenerator, which reacts to the events emitted by this class whenever a terrain mod changes or is moved.
After you've created an instance of this you must call the init() method.
*/
class TerrainMod
{
public:
    /**
    * @brief Ctor.
    * @param entity The entity to which this mod belongs.
    */
    TerrainMod(Entity* entity);

    /**
    * @brief Dtor.
    */
    virtual ~TerrainMod();
    
    /**
     * @brief Sets up the observation of the entity, and parses the mod info, creating the initial mod instance.
     * @param alwaysObserve If set to true, the observation of the entity will be set up even if the parsing failed. If false however, if there was an error during the parsing no observation will be set up. The calling code is then expected to delete this instance.
     * @return True if the atlas data was conformant and successfully parsed.
     */
    virtual bool init(bool alwaysObserve = false);

    /**
    *    @brief Used to retrieve a pointer to this modifier
    * @returns a pointer to this modifier
    */
    inline Mercator::TerrainMod* getMod() const;

    
    /**
    * @brief Emitted whenever the modifier is changed or moved.
    * Should be caught by a listener to apply the change to the terrain.
    */
    sigc::signal<void> ModChanged;

    /**
    * @brief Emitted just before the entity owning this mod is deleted.
    * Should be caught by a listener to remove this mod from the terrain.
    */
    sigc::signal<void> ModDeleted;
    
    /**
    * @brief Accessor for the entity to which this terrain mod belongs.
    * @return A pointer to the entity to which this terrain mod belongs.
    */
    Entity* getEntity() const;

protected:
    
    /**
    @brief The owner of this modifier.
    */
    Entity* mEntity;
    
    /**
    * @brief Slot used to listen for changes to attributes in the Entity to which this mod belongs to.
    */
    Entity::AttrChangedSlot mAttrChangedSlot;

    
    /**
    * @brief Called before the ModChanged signal is emitted.
    */
    virtual void onModChanged();
    
    /**
    * @brief Called before the ModDeleted signal is emitted.
    */
    virtual void onModDeleted();
    
    /**
    * @brief Called whenever a modifier is changed and handles the update
    * @param attributeValue The new Atlas data for the terrain mod
    */	
    void attributeChanged(const Atlas::Message::Element& attributeValue);

    /**
    *    @brief Called whenever a modifier is moved and handles the update
    */
    void entity_Moved();

    /**
    Called whenever the entity holding a modifier is deleted and handles
    removing the mod from the terrain
    */
    void entity_Deleted();

    /**
    * @brief Sets up the previous three handler functions to be called when a change
    * is made to the entity holding the modifier. 
    */
    virtual void observeEntity();

    /**
    * @brief Parses the Atlas data for a modifier
    * @returns True if it was able to successfully create a Mercator::TerrainMod, False otherwise
    * All work specific to a certain kind of TerrainMod is handled by the functions below.
    */
    virtual bool parseMod();
    
    /**
     * @brief If an existing mod changes we need to reparse it. Call this method in those cases.
     * If there's already an existing mod, that will be deleted. If the changes to the entity results in an invalid parsing, the Deleted signal will be emitted. If the parsing was successful however the Changed signal will be emitted.
     */
    virtual void reparseMod();
    

    /**
    * @brief The inner terrain mod instance which holds the actual Mercator::TerrainMod instance and handles the parsing of it.
    * In order to be able to better support different types of mods the actual instance will be any of the subclasses of InnerTerrainMod, depending on the type of the mod.
    */
    InnerTerrainMod* mInnerMod;
};

Mercator::TerrainMod* TerrainMod::getMod() const
{
    if (mInnerMod) {
        return mInnerMod->getModifier();
    }
    return 0;
}

}


#endif