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_BILLBOARD_SCENE_NODE_H_INCLUDED
|
|
|
|
#define IRR_C_BILLBOARD_SCENE_NODE_H_INCLUDED
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
#include "IBillboardSceneNode.h"
|
|
|
|
#include "SMeshBuffer.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace scene
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Scene node which is a billboard. A billboard is like a 3d sprite: A 2d element,
|
|
|
|
//! which always looks to the camera.
|
|
|
|
class CBillboardSceneNode : virtual public IBillboardSceneNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CBillboardSceneNode(ISceneNode* parent, ISceneManager* mgr, s32 id,
|
|
|
|
const core::vector3df& position, const core::dimension2d<f32>& size,
|
|
|
|
video::SColor colorTop=video::SColor(0xFFFFFFFF),
|
|
|
|
video::SColor colorBottom=video::SColor(0xFFFFFFFF));
|
|
|
|
|
|
|
|
virtual ~CBillboardSceneNode();
|
|
|
|
|
|
|
|
//! pre render event
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void OnRegisterSceneNode() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! render
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void render() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns the axis aligned bounding box of this node
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const core::aabbox3d<f32>& getBoundingBox() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets the size of the billboard
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setSize(const core::dimension2d<f32>& size) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Sets the widths of the top and bottom edges of the billboard independently.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setSize(f32 height, f32 bottomEdgeWidth, f32 topEdgeWidth) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! gets the size of the billboard
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const core::dimension2d<f32>& getSize() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the widths of the top and bottom edges of the billboard.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void getSize(f32& height, f32& bottomEdgeWidth, f32& topEdgeWidth) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual video::SMaterial& getMaterial(u32 i) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! returns amount of materials used by this scene node.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual u32 getMaterialCount() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the color of all vertices of the billboard
|
|
|
|
//! \param overallColor: the color to set
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setColor(const video::SColor& overallColor) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Set the color of the top and bottom vertices of the billboard
|
|
|
|
//! \param topColor: the color to set the top vertices
|
|
|
|
//! \param bottomColor: the color to set the bottom vertices
|
|
|
|
virtual void setColor(const video::SColor& topColor,
|
2021-08-27 14:55:10 +02:00
|
|
|
const video::SColor& bottomColor) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the color of the top and bottom vertices of the billboard
|
|
|
|
//! \param[out] topColor: stores the color of the top vertices
|
|
|
|
//! \param[out] bottomColor: stores the color of the bottom vertices
|
|
|
|
virtual void getColor(video::SColor& topColor,
|
2021-08-27 14:55:10 +02:00
|
|
|
video::SColor& bottomColor) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Get the real boundingbox used by the billboard (which depends on the active camera)
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
2022-02-08 22:00:12 +01:00
|
|
|
//! Get the amount of mesh buffers.
|
|
|
|
virtual u32 getMeshBufferCount() const
|
|
|
|
{
|
|
|
|
return Buffer ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Get pointer to the mesh buffer.
|
|
|
|
virtual IMeshBuffer* getMeshBuffer(u32 nr) const
|
|
|
|
{
|
|
|
|
if ( nr == 0 )
|
|
|
|
return Buffer;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-12 17:32:41 +01:00
|
|
|
//! Writes attributes of the scene node.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Reads attributes of the scene node.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Returns type of the scene node
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ESCENE_NODE_TYPE getType() const IRR_OVERRIDE { return ESNT_BILLBOARD; }
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Creates a clone of this scene node and its children.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual ISceneNode* clone(ISceneNode* newParent=0, ISceneManager* newManager=0) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void updateMesh(const irr::scene::ICameraSceneNode* camera);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
//! Size.Width is the bottom edge width
|
|
|
|
core::dimension2d<f32> Size;
|
|
|
|
f32 TopEdgeWidth;
|
|
|
|
|
|
|
|
//! BoundingBox which is large enough to contain the billboard independent of the camera
|
|
|
|
// TODO: BUG - still can be wrong with scaling < 1. Billboards should calculate relative coordinates for their mesh
|
|
|
|
// and then use the node-scaling. But needs some work...
|
|
|
|
/** Note that we can't use the real boundingbox for culling because at that point
|
|
|
|
the camera which is used to calculate the billboard is not yet updated. So we only
|
|
|
|
know the real boundingbox after rendering - which is too late for culling. */
|
|
|
|
core::aabbox3d<f32> BBoxSafe;
|
|
|
|
|
|
|
|
scene::SMeshBuffer* Buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace scene
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|