90 lines
2.6 KiB
C++
90 lines
2.6 KiB
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_TEXTSPRITE_HPP
|
|
#define NAZARA_TEXTSPRITE_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Graphics/Material.hpp>
|
|
#include <Nazara/Graphics/InstancedRenderable.hpp>
|
|
#include <Nazara/Utility/AbstractAtlas.hpp>
|
|
#include <Nazara/Utility/AbstractTextDrawer.hpp>
|
|
#include <Nazara/Utility/VertexStruct.hpp>
|
|
#include <memory>
|
|
#include <set>
|
|
|
|
namespace Nz
|
|
{
|
|
class TextSprite;
|
|
|
|
using TextSpriteConstRef = ObjectRef<const TextSprite>;
|
|
using TextSpriteLibrary = ObjectLibrary<TextSprite>;
|
|
using TextSpriteRef = ObjectRef<TextSprite>;
|
|
|
|
class NAZARA_GRAPHICS_API TextSprite : public InstancedRenderable
|
|
{
|
|
public:
|
|
inline TextSprite();
|
|
inline TextSprite(const TextSprite& sprite);
|
|
~TextSprite() = default;
|
|
|
|
void AddToRenderQueue(AbstractRenderQueue* renderQueue, const InstanceData& instanceData) const override;
|
|
|
|
inline void Clear();
|
|
|
|
inline const Color& GetColor() const;
|
|
inline const MaterialRef& GetMaterial() const;
|
|
inline float GetScale() const;
|
|
|
|
inline void SetColor(const Color& color);
|
|
inline void SetDefaultMaterial();
|
|
inline void SetMaterial(MaterialRef material);
|
|
inline void SetScale(float scale);
|
|
|
|
void Update(const AbstractTextDrawer& drawer);
|
|
|
|
inline TextSprite& operator=(const TextSprite& text);
|
|
|
|
template<typename... Args> static TextSpriteRef New(Args&&... args);
|
|
|
|
private:
|
|
inline void InvalidateVertices();
|
|
void MakeBoundingVolume() const override;
|
|
void OnAtlasInvalidated(const AbstractAtlas* atlas);
|
|
void OnAtlasLayerChange(const AbstractAtlas* atlas, AbstractImage* oldLayer, AbstractImage* newLayer);
|
|
void UpdateData(InstanceData* instanceData) const override;
|
|
|
|
struct RenderIndices
|
|
{
|
|
unsigned int first;
|
|
unsigned int count;
|
|
};
|
|
|
|
struct AtlasSlots
|
|
{
|
|
bool used;
|
|
NazaraSlot(AbstractAtlas, OnAtlasCleared, clearSlot);
|
|
NazaraSlot(AbstractAtlas, OnAtlasLayerChange, layerChangeSlot);
|
|
NazaraSlot(AbstractAtlas, OnAtlasRelease, releaseSlot);
|
|
};
|
|
|
|
std::unordered_map<const AbstractAtlas*, AtlasSlots> m_atlases;
|
|
mutable std::unordered_map<Texture*, RenderIndices> m_renderInfos;
|
|
mutable std::vector<VertexStruct_XY_Color_UV> m_localVertices;
|
|
Color m_color;
|
|
MaterialRef m_material;
|
|
Rectui m_localBounds;
|
|
mutable bool m_verticesUpdated;
|
|
float m_scale;
|
|
|
|
static TextSpriteLibrary::LibraryMap s_library;
|
|
};
|
|
}
|
|
|
|
#include <Nazara/Graphics/TextSprite.inl>
|
|
|
|
#endif // NAZARA_TEXTSPRITE_HPP
|