Menge
Modular Pedestrian Simulation Framework for Research and Development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
Menge::Agents::NavMeshElevationFactory Class Reference

Factory for the NavMeshElevation. More...

#include <ElevationNavMesh.h>

Inheritance diagram for Menge::Agents::NavMeshElevationFactory:
Menge::Agents::ElevationFactory Menge::ElementFactory< Elevation >

Public Member Functions

 NavMeshElevationFactory ()
 Constructor.
 
virtual const char * name () const
 The name of the elevation. More...
 
virtual const char * description () const
 A description of the elevation. More...
 
- Public Member Functions inherited from Menge::ElementFactory< Elevation >
 ElementFactory ()
 Default constructor.
 
void destroy ()
 This supplants the destructor. More...
 
bool thisFactory (const std::string &typeName) const
 Reports if the xml node defines an element for this factory. More...
 
Elevation * createInstance (TiXmlElement *node, const std::string &behaveFldr) const
 Parses the xml data. More...
 

Protected Member Functions

Elevationinstance () const
 Create an instance of this class's elevation implementation. More...
 
virtual bool setFromXML (Elevation *e, TiXmlElement *node, const std::string &specFldr) const
 Given a pointer to an Elevation instance, sets the appropriate fields from the provided XML node. More...
 
- Protected Member Functions inherited from Menge::ElementFactory< Elevation >
virtual ~ElementFactory ()
 Destructor.
 
virtual bool setFromXML (Elevation *element, TiXmlElement *node, const std::string &specFldr) const
 Given a pointer to an element instance, sets the appropriate fields from the provided XML node. More...
 

Protected Attributes

size_t _fileNameID
 The identifier for the "file_name" string attribute.
 
- Protected Attributes inherited from Menge::ElementFactory< Elevation >
AttributeSet _attrSet
 The attribute set for this factory.
 

Detailed Description

Factory for the NavMeshElevation.

Member Function Documentation

virtual const char* Menge::Agents::NavMeshElevationFactory::description ( ) const
inlinevirtual

A description of the elevation.

Each elevation factory must override this function.

Returns
A string containing the elevation description.

Implements Menge::ElementFactory< Elevation >.

Elevation* Menge::Agents::NavMeshElevationFactory::instance ( ) const
inlineprotectedvirtual

Create an instance of this class's elevation implementation.

All ElevationFactory sub-classes must override this by creating (on the heap) a new instance of its corresponding elevation type. The various field values of the instance will be set in a subsequent call to ElevationFactory::setFromXML. The caller of this function takes ownership of the memory.

Returns
A pointer to a newly instantiated Elevation class.

Implements Menge::ElementFactory< Elevation >.

virtual const char* Menge::Agents::NavMeshElevationFactory::name ( ) const
inlinevirtual

The name of the elevation.

The elevation's name must be unique among all registered elevation components. Each elevation factory must override this function.

Returns
A string containing the unique elevation name.

Implements Menge::ElementFactory< Elevation >.

bool Menge::Agents::NavMeshElevationFactory::setFromXML ( Elevation e,
TiXmlElement *  node,
const std::string &  specFldr 
) const
protectedvirtual

Given a pointer to an Elevation instance, sets the appropriate fields from the provided XML node.

It is assumed that the value of the type attribute is this Elevation's type. (i.e. ElevationFactory::thisFactory has already been called and returned true.) If sub-classes of ElevationFactory introduce new Elevation parameters, then the sub-class should override this method but explicitly call the parent class's version.

Parameters
eA pointer to the elevation whose attributes are to be set.
nodeThe XML node containing the elevation attributes.
specFldrThe path to the specification file. If the Elevation references resources in the file system, it should be defined relative to the specification file location. This is the folder containing that path.
Returns
A boolean reporting success (true) or failure (false).

The documentation for this class was generated from the following files: