2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
#ifndef IRR_C_DEFAULT_SCENE_NODE_FACTORY_H_INCLUDED
|
|
|
|
#define IRR_C_DEFAULT_SCENE_NODE_FACTORY_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "ISceneNodeFactory.h"
|
|
|
|
#include "irrArray.h"
|
|
|
|
#include "irrString.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
class ISceneNode;
|
|
|
|
class ISceneManager;
|
|
|
|
|
2021-08-27 17:55:04 +02:00
|
|
|
//! Interface making it possible to dynamically create scene nodes and animators
|
2019-12-12 17:32:41 +01:00
|
|
|
class CDefaultSceneNodeFactory : public ISceneNodeFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
CDefaultSceneNodeFactory(ISceneManager* mgr);
|
|
|
|
|
|
|
|
//! adds a scene node to the scene graph based on its type id
|
|
|
|
/** \param type: Type of the scene node to add.
|
|
|
|
\param parent: Parent scene node of the new node, can be null to add the scene node to the root.
|
|
|
|
\return Returns pointer to the new scene node or null if not successful. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ISceneNode* addSceneNode(ESCENE_NODE_TYPE type, ISceneNode* parent=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! adds a scene node to the scene graph based on its type name
|
|
|
|
/** \param typeName: Type name of the scene node to add.
|
|
|
|
\param parent: Parent scene node of the new node, can be null to add the scene node to the root.
|
|
|
|
\return Returns pointer to the new scene node or null if not successful. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ISceneNode* addSceneNode(const c8* typeName, ISceneNode* parent=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns amount of scene node types this factory is able to create
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getCreatableSceneNodeTypeCount() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns type name of a creatable scene node type by index
|
|
|
|
/** \param idx: Index of scene node type in this factory. Must be a value between 0 and
|
|
|
|
uetCreatableSceneNodeTypeCount() */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const c8* getCreateableSceneNodeTypeName(u32 idx) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns type of a creatable scene node type
|
|
|
|
/** \param idx: Index of scene node type in this factory. Must be a value between 0 and
|
|
|
|
getCreatableSceneNodeTypeCount() */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ESCENE_NODE_TYPE getCreateableSceneNodeType(u32 idx) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns type name of a creatable scene node type
|
|
|
|
/** \param idx: Type of scene node.
|
|
|
|
\return: Returns name of scene node type if this factory can create the type, otherwise 0. */
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const c8* getCreateableSceneNodeTypeName(ESCENE_NODE_TYPE type) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
ESCENE_NODE_TYPE getTypeFromName(const c8* name) const;
|
|
|
|
|
|
|
|
struct SSceneNodeTypePair
|
|
|
|
{
|
|
|
|
SSceneNodeTypePair(ESCENE_NODE_TYPE type, const c8* name)
|
|
|
|
: Type(type), TypeName(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ESCENE_NODE_TYPE Type;
|
|
|
|
core::stringc TypeName;
|
|
|
|
};
|
|
|
|
|
|
|
|
core::array<SSceneNodeTypePair> SupportedSceneNodeTypes;
|
|
|
|
|
|
|
|
ISceneManager* Manager;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|