0023316: OpenGl package can not be compiled on RedHat40-64
[occt.git] / src / OpenGl / OpenGl_Marker.cxx
CommitLineData
b311480e 1// Created on: 2011-07-13
2// Created by: Sergey ZERCHANINOV
3// Copyright (c) 2011-2012 OPEN CASCADE SAS
4//
5// The content of this file is subject to the Open CASCADE Technology Public
6// License Version 6.5 (the "License"). You may not use the content of this file
7// except in compliance with the License. Please obtain a copy of the License
8// at http://www.opencascade.org and read it completely before using this file.
9//
10// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12//
13// The Original Code and all software distributed under the License is
14// distributed on an "AS IS" basis, without warranty of any kind, and the
15// Initial Developer hereby disclaims all such warranties, including without
16// limitation, any warranties of merchantability, fitness for a particular
17// purpose or non-infringement. Please see the License for the specific terms
18// and conditions governing the rights and limitations under the License.
19
2166f0fa 20
5f8b738e 21#include <OpenGl_GlCore11.hxx>
664cae74 22#include <OpenGl_Context.hxx>
2166f0fa 23
5f8b738e 24#include <OpenGl_Marker.hxx>
2166f0fa
SK
25
26#include <OpenGl_AspectMarker.hxx>
27#include <OpenGl_Structure.hxx>
28#include <OpenGl_Display.hxx>
29
30/*----------------------------------------------------------------------*/
31
5e27df78 32void OpenGl_Marker::Release (const Handle(OpenGl_Context)& theContext)
33{
34 //
35}
36
2166f0fa
SK
37void OpenGl_Marker::Render (const Handle(OpenGl_Workspace) &AWorkspace) const
38{
39 const OpenGl_AspectMarker *aspect_marker = AWorkspace->AspectMarker( Standard_True );
40
41 // Use highlight colours
42 glColor3fv( (AWorkspace->NamedStatus & OPENGL_NS_HIGHLIGHT)? AWorkspace->HighlightColor->rgb : aspect_marker->Color().rgb );
43
44 switch ( aspect_marker->Type() )
45 {
46 case Aspect_TOM_O_POINT :
47 {
48 const char *str = AWorkspace->GetDisplay()->GetStringForMarker( Aspect_TOM_O, aspect_marker->Scale() );
49 glRasterPos3fv( myPoint.xyz );
50 AWorkspace->GetDisplay()->SetBaseForMarker();
51 glCallLists( strlen( str ), GL_UNSIGNED_BYTE, (const GLubyte *) str );
52 }
53 case Aspect_TOM_POINT :
54 {
2166f0fa
SK
55 glBegin( GL_POINTS );
56 glVertex3fv( myPoint.xyz );
57 glEnd();
58 break;
59 }
60 default:
61 {
62 glRasterPos3fv( myPoint.xyz );
63 switch ( aspect_marker->Type() )
64 {
65 case Aspect_TOM_RING1 :
66 case Aspect_TOM_RING2 :
67 case Aspect_TOM_RING3 :
68 {
69 const float ADelta = 0.1f;
70 float AScale = aspect_marker->Scale();
71 float ALimit = 0.f;
72 if (aspect_marker->Type() == Aspect_TOM_RING1)
73 ALimit = AScale * 0.2f;
74 else if (aspect_marker->Type() == Aspect_TOM_RING2)
75 ALimit = AScale * 0.5f;
76 else
77 ALimit = AScale * 0.8f;
78 AWorkspace->GetDisplay()->SetBaseForMarker();
79 while (AScale > ALimit && AScale >= 1.f)
80 {
81 const char *str = AWorkspace->GetDisplay()->GetStringForMarker( Aspect_TOM_O, AScale );
82 glCallLists( strlen( str ), GL_UNSIGNED_BYTE, (const GLubyte *) str );
83 AScale -= ADelta;
84 }
85 break;
86 }
87 case Aspect_TOM_USERDEFINED :
88 {
89 glCallList( openglDisplay->GetUserMarkerListIndex( (int)aspect_marker->Scale() ) );
90 break;
91 }
92 default :
93 {
94 AWorkspace->GetDisplay()->SetBaseForMarker();
95 const char *str = AWorkspace->GetDisplay()->GetStringForMarker( aspect_marker->Type(), aspect_marker->Scale() );
96 glCallLists( strlen( str ), GL_UNSIGNED_BYTE, (const GLubyte *)str );
97 }
98 }
664cae74 99
100 if (AWorkspace->GetGlContext()->IsFeedback())
2166f0fa
SK
101 {
102 glBegin( GL_POINTS );
103 glVertex3fv( myPoint.xyz );
104 glEnd();
105 /* it is necessary to indicate end of marker information*/
106 }
107 }
108 }
109}
110
111/*----------------------------------------------------------------------*/