0029768: Visualization, TKOpenGl - structure is entirely clipped by suppressed clipping
[occt.git] / src / OpenGl / OpenGl_Text.hxx
CommitLineData
b311480e 1// Created on: 2011-07-13
2// Created by: Sergey ZERCHANINOV
a174a3c5 3// Copyright (c) 2011-2013 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
2166f0fa
SK
16#ifndef OpenGl_Text_Header
17#define OpenGl_Text_Header
18
19#include <OpenGl_Element.hxx>
20
a174a3c5 21#include <OpenGl_AspectText.hxx>
2166f0fa 22#include <OpenGl_TextParam.hxx>
317d68c9 23#include <OpenGl_TextBuilder.hxx>
2166f0fa
SK
24
25#include <TCollection_ExtendedString.hxx>
26#include <Graphic3d_Vertex.hxx>
27#include <Graphic3d_HorizontalTextAlignment.hxx>
4b1c8733 28#include <Graphic3d_RenderingParams.hxx>
2166f0fa
SK
29#include <Graphic3d_VerticalTextAlignment.hxx>
30
ce01ec26 31#include <gp_Ax2.hxx>
32
a174a3c5 33//! Text rendering
2166f0fa
SK
34class OpenGl_Text : public OpenGl_Element
35{
5e27df78 36
37public:
2166f0fa 38
a174a3c5 39 //! Main constructor
b64d84be 40 Standard_EXPORT OpenGl_Text (const Standard_Utf8Char* theText,
41 const OpenGl_Vec3& thePoint,
42 const OpenGl_TextParam& theParams);
a174a3c5 43
ce01ec26 44 //! Creates new text in 3D space.
45 Standard_EXPORT OpenGl_Text (const Standard_Utf8Char* theText,
46 const gp_Ax2& theOrientation,
3f1eb0ab 47 const OpenGl_TextParam& theParams,
48 const bool theHasOwnAnchor = true);
ce01ec26 49
a174a3c5 50 //! Setup new string and position
51 Standard_EXPORT void Init (const Handle(OpenGl_Context)& theCtx,
52 const Standard_Utf8Char* theText,
53 const OpenGl_Vec3& thePoint);
54
55 //! Setup new string and parameters
56 Standard_EXPORT void Init (const Handle(OpenGl_Context)& theCtx,
57 const Standard_Utf8Char* theText,
58 const OpenGl_Vec3& thePoint,
59 const OpenGl_TextParam& theParams);
60
61 //! Setup new position
62 Standard_EXPORT void SetPosition (const OpenGl_Vec3& thePoint);
63
64 //! Setup new font size
65 Standard_EXPORT void SetFontSize (const Handle(OpenGl_Context)& theContext,
66 const Standard_Integer theFontSize);
67
68 Standard_EXPORT virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const;
10b9c7df 69 Standard_EXPORT virtual void Release (OpenGl_Context* theContext);
a174a3c5 70
71public: //! @name methods for compatibility with layers
72
73 //! Empty constructor
6a240ff8 74 Standard_EXPORT OpenGl_Text();
a174a3c5 75
76 //! Create key for shared resource
6a240ff8 77 Standard_EXPORT static TCollection_AsciiString FontKey (const OpenGl_AspectText& theAspect,
4b1c8733 78 const Standard_Integer theHeight,
79 const unsigned int theResolution);
a174a3c5 80
81 //! Find shared resource for specified font or initialize new one
6a240ff8 82 Standard_EXPORT static Handle(OpenGl_Font) FindFont (const Handle(OpenGl_Context)& theCtx,
83 const OpenGl_AspectText& theAspect,
84 const Standard_Integer theHeight,
4b1c8733 85 const unsigned int theResolution,
6a240ff8 86 const TCollection_AsciiString theKey);
a174a3c5 87
88 //! Compute text width
6a240ff8 89 Standard_EXPORT static void StringSize (const Handle(OpenGl_Context)& theCtx,
90 const NCollection_String& theText,
91 const OpenGl_AspectText& theTextAspect,
92 const OpenGl_TextParam& theParams,
4b1c8733 93 const unsigned int theResolution,
6a240ff8 94 Standard_ShortReal& theWidth,
95 Standard_ShortReal& theAscent,
96 Standard_ShortReal& theDescent);
a174a3c5 97
98 //! Setup new string and parameters
6a240ff8 99 Standard_EXPORT void Init (const Handle(OpenGl_Context)& theCtx,
100 const TCollection_ExtendedString& theText,
101 const OpenGl_Vec2& thePoint,
102 const OpenGl_TextParam& theParams);
a174a3c5 103
104 //! Perform rendering
60273f77 105 Standard_EXPORT void Render (const Handle(OpenGl_Context)& theCtx,
106 const OpenGl_AspectText& theTextAspect,
107 const unsigned int theResolution = Graphic3d_RenderingParams::THE_DEFAULT_RESOLUTION) const;
a174a3c5 108
109protected:
110
111 //! Destructor
112 Standard_EXPORT virtual ~OpenGl_Text();
113
114 friend class OpenGl_Trihedron;
115 friend class OpenGl_GraduatedTrihedron;
116
a174a3c5 117 //! Release cached VBO resources
15669413 118 Standard_EXPORT void releaseVbos (OpenGl_Context* theCtx);
119
120private:
a174a3c5 121
122 //! Setup matrix.
60273f77 123 void setupMatrix (const Handle(OpenGl_Context)& theCtx,
124 const OpenGl_AspectText& theTextAspect,
125 const OpenGl_Vec3 theDVec) const;
a174a3c5 126
127 //! Draw arrays of vertices.
60273f77 128 void drawText (const Handle(OpenGl_Context)& theCtx,
129 const OpenGl_AspectText& theTextAspect) const;
a174a3c5 130
6fe58c66 131 //! Draw rectangle from bounding text box.
132 void drawRect (const Handle(OpenGl_Context)& theCtx,
133 const OpenGl_AspectText& theTextAspect,
134 const OpenGl_Vec4& theColorSubs) const;
135
a174a3c5 136 //! Main rendering code
60273f77 137 void render (const Handle(OpenGl_Context)& theCtx,
138 const OpenGl_AspectText& theTextAspect,
139 const OpenGl_Vec4& theColorText,
140 const OpenGl_Vec4& theColorSubs,
141 const unsigned int theResolution) const;
a174a3c5 142
143protected:
2166f0fa 144
a174a3c5 145 mutable Handle(OpenGl_Font) myFont;
146 mutable NCollection_Vector<GLuint> myTextures; //!< textures' IDs
147 mutable NCollection_Vector<Handle(OpenGl_VertexBuffer)> myVertsVbo; //!< VBOs of vertices
148 mutable NCollection_Vector<Handle(OpenGl_VertexBuffer)> myTCrdsVbo; //!< VBOs of texture coordinates
6fe58c66 149 mutable Handle(OpenGl_VertexBuffer) myBndVertsVbo;//!< VBOs of vertices for bounding box
d2eddacc 150 mutable Font_Rect myBndBox;
5e27df78 151
152protected:
153
c827ea3a 154 mutable OpenGl_Mat4d myProjMatrix;
155 mutable OpenGl_Mat4d myModelMatrix;
ce01ec26 156 mutable OpenGl_Mat4d myOrientationMatrix;
a174a3c5 157 mutable GLdouble myWinX;
158 mutable GLdouble myWinY;
159 mutable GLdouble myWinZ;
160 mutable GLdouble myScaleHeight;
161 mutable GLdouble myExportHeight;
2166f0fa 162
5e27df78 163protected:
2166f0fa 164
a174a3c5 165 OpenGl_TextParam myParams;
166 NCollection_String myString;
167 OpenGl_Vec3 myPoint;
168 bool myIs2d;
ce01ec26 169 gp_Ax2 myOrientation; //!< Text orientation in 3D space.
170 bool myHasPlane; //!< Check if text have orientation in 3D space.
3f1eb0ab 171 bool myHasAnchorPoint; //!< Shows if it has own attach point
2166f0fa 172
5e27df78 173public:
174
1c35b92f 175 DEFINE_STANDARD_ALLOC
5e27df78 176
2166f0fa
SK
177};
178
179#endif //OpenGl_Text_Header