mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OCC22108 Cutting plane unpredictable behaviour in V3d_View
This commit is contained in:
parent
7af17f1e1a
commit
2de462d4eb
@ -25,6 +25,8 @@ Suppression de TelPrintAllViews()
|
|||||||
#define OPENGL_TELEM_VIEW_H
|
#define OPENGL_TELEM_VIEW_H
|
||||||
|
|
||||||
#include <OpenGl_telem.hxx>
|
#include <OpenGl_telem.hxx>
|
||||||
|
#include <OpenGl_tgl.hxx>
|
||||||
|
#include <NCollection_List.hxx>
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
@ -44,6 +46,8 @@ typedef struct
|
|||||||
Tfloat zmax;
|
Tfloat zmax;
|
||||||
} Tlimit3;
|
} Tlimit3;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
TelParallel, TelPerspective
|
TelParallel, TelPerspective
|
||||||
@ -74,6 +78,7 @@ typedef struct
|
|||||||
Tint border_indicator;
|
Tint border_indicator;
|
||||||
TEL_COLOUR border_colour;
|
TEL_COLOUR border_colour;
|
||||||
Tint active_status;
|
Tint active_status;
|
||||||
|
NCollection_List<CALL_DEF_PLANE> clipping_planes;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Tfloat vrp[3];
|
Tfloat vrp[3];
|
||||||
|
@ -312,6 +312,8 @@ call_togl_print
|
|||||||
// redraw to new Rendering Context
|
// redraw to new Rendering Context
|
||||||
call_func_redraw_all_structs_begin (aview->WsId);
|
call_func_redraw_all_structs_begin (aview->WsId);
|
||||||
|
|
||||||
|
call_togl_setplane( aview ); /* update clipping planes */
|
||||||
|
|
||||||
if (background == 0)
|
if (background == 0)
|
||||||
{
|
{
|
||||||
glClearColor(1.0, 1.0, 1.0, 1.0);
|
glClearColor(1.0, 1.0, 1.0, 1.0);
|
||||||
|
@ -59,7 +59,6 @@ GLboolean g_fBitmap;
|
|||||||
#include <OpenGl_tgl_funcs.hxx>
|
#include <OpenGl_tgl_funcs.hxx>
|
||||||
#include <OpenGl_tgl_subrvis.hxx>
|
#include <OpenGl_tgl_subrvis.hxx>
|
||||||
#include <OpenGl_FrameBuffer.hxx>
|
#include <OpenGl_FrameBuffer.hxx>
|
||||||
#include <OpenGl_ResourceCleaner.hxx>
|
|
||||||
#include <InterfaceGraphic_Graphic3d.hxx>
|
#include <InterfaceGraphic_Graphic3d.hxx>
|
||||||
#include <InterfaceGraphic_Visual3d.hxx>
|
#include <InterfaceGraphic_Visual3d.hxx>
|
||||||
|
|
||||||
@ -87,8 +86,9 @@ call_togl_redraw
|
|||||||
aFrameBuffer->BindBuffer();
|
aFrameBuffer->BindBuffer();
|
||||||
swap = 0; // no need to swap buffers
|
swap = 0; // no need to swap buffers
|
||||||
}
|
}
|
||||||
OpenGl_ResourceCleaner::GetInstance()->Cleanup();
|
|
||||||
call_func_redraw_all_structs_begin (aview->WsId);
|
call_func_redraw_all_structs_begin (aview->WsId);
|
||||||
|
call_togl_setplane( aview ); /* apl - OCC22108: update clipping planes */
|
||||||
if (anunderlayer->ptrLayer)
|
if (anunderlayer->ptrLayer)
|
||||||
{
|
{
|
||||||
call_togl_redraw_layer2d (aview, anunderlayer);
|
call_togl_redraw_layer2d (aview, anunderlayer);
|
||||||
@ -163,8 +163,8 @@ call_togl_redraw_area
|
|||||||
glScissor ((GLint )x,
|
glScissor ((GLint )x,
|
||||||
(GLint )((int )aview->DefWindow.dy - (y + height)),
|
(GLint )((int )aview->DefWindow.dy - (y + height)),
|
||||||
(GLsizei )width, (GLsizei )height);
|
(GLsizei )width, (GLsizei )height);
|
||||||
OpenGl_ResourceCleaner::GetInstance()->Cleanup();
|
|
||||||
call_func_redraw_all_structs_begin (aview->WsId);
|
call_func_redraw_all_structs_begin (aview->WsId);
|
||||||
|
call_togl_setplane( aview ); /* apl - OCC22108: update clipping planes */
|
||||||
if (anunderlayer->ptrLayer)
|
if (anunderlayer->ptrLayer)
|
||||||
{
|
{
|
||||||
call_togl_redraw_layer2d (aview, anunderlayer);
|
call_togl_redraw_layer2d (aview, anunderlayer);
|
||||||
|
@ -2,8 +2,23 @@
|
|||||||
|
|
||||||
#include <OpenGl_tgl_all.hxx>
|
#include <OpenGl_tgl_all.hxx>
|
||||||
#include <OpenGl_tgl.hxx>
|
#include <OpenGl_tgl.hxx>
|
||||||
|
#include <OpenGl_tgl_funcs.hxx>
|
||||||
|
#include <OpenGl_telem_view.hxx>
|
||||||
|
#include <OpenGl_tsm_ws.hxx>
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
|
|
||||||
|
|
||||||
|
struct TEL_VIEW_DATA
|
||||||
|
{
|
||||||
|
TEL_VIEW_REP vrep;
|
||||||
|
#ifdef CAL_100498
|
||||||
|
Tmatrix3 inverse_matrix;/* accelerates UVN2XYZ conversion */
|
||||||
|
#endif
|
||||||
|
IMPLEMENT_MEMORY_OPERATORS
|
||||||
|
};
|
||||||
|
typedef TEL_VIEW_DATA *tel_view_data; /* Internal data stored for every view rep */
|
||||||
|
|
||||||
|
|
||||||
void EXPORT
|
void EXPORT
|
||||||
/* unimplemented */
|
/* unimplemented */
|
||||||
call_togl_setplane
|
call_togl_setplane
|
||||||
@ -12,38 +27,34 @@ call_togl_setplane
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
#ifdef GER61454
|
#ifdef GER61454
|
||||||
CALL_DEF_PLANE *plane;
|
|
||||||
int j,planeid ;
|
|
||||||
|
|
||||||
if( aview->Context.NbActivePlane > 0 ) {
|
CMN_KEY_DATA key;
|
||||||
for( j=0 ; j<aview->Context.NbActivePlane ; j++ ) {
|
tel_view_data vptr;
|
||||||
plane = &aview->Context.ActivePlane[j];
|
TEL_VIEW_REP *call_viewrep;
|
||||||
if( plane->PlaneId > 0 ) {
|
CALL_DEF_PLANE *plane;
|
||||||
planeid = GL_CLIP_PLANE2 + j;
|
int j;
|
||||||
if( plane->Active ) {
|
|
||||||
GLdouble equation[4];
|
// return view representation
|
||||||
equation[0] = plane->CoefA;
|
|
||||||
equation[1] = plane->CoefB;
|
if( aview->ViewId == 0 )
|
||||||
equation[2] = plane->CoefC;
|
return; // no modifications on default view
|
||||||
equation[3] = plane->CoefD;
|
|
||||||
/*
|
if( TsmGetWSAttri( aview->WsId, WSViews, &key ) != TSuccess )
|
||||||
Activates new clip planes
|
return;
|
||||||
*/
|
|
||||||
glClipPlane( planeid , equation );
|
vptr = (tel_view_data)key.pdata;
|
||||||
if( !glIsEnabled( planeid ) ) glEnable( planeid );
|
if( !vptr )
|
||||||
} else {
|
return;
|
||||||
if( glIsEnabled( planeid ) ) glDisable( planeid );
|
|
||||||
}
|
call_viewrep = &vptr->vrep;
|
||||||
}
|
|
||||||
}
|
// clear clipping planes information
|
||||||
}
|
call_viewrep->clipping_planes.Clear();
|
||||||
/*
|
// update information
|
||||||
Disable the remainder Clip planes
|
if( aview->Context.NbActivePlane > 0 )
|
||||||
*/
|
for( j=0 ; j<aview->Context.NbActivePlane ; j++ )
|
||||||
for( j=aview->Context.NbActivePlane ; j<call_facilities_list.MaxPlanes ; j++ ) {
|
call_viewrep->clipping_planes.Append( aview->Context.ActivePlane[j] );
|
||||||
planeid = GL_CLIP_PLANE2 + j;
|
|
||||||
if( glIsEnabled( planeid ) ) glDisable( planeid );
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -67,6 +67,9 @@ void EXPORT call_togl_update
|
|||||||
TsmGetWSAttri (aview->WsId, WSWindow, &data);
|
TsmGetWSAttri (aview->WsId, WSWindow, &data);
|
||||||
if (TxglWinset (call_thedisplay, (Window) data.ldata) == TSuccess) {
|
if (TxglWinset (call_thedisplay, (Window) data.ldata) == TSuccess) {
|
||||||
call_func_redraw_all_structs_begin (aview->WsId);
|
call_func_redraw_all_structs_begin (aview->WsId);
|
||||||
|
|
||||||
|
call_togl_setplane( aview ); /* update clipping planes */
|
||||||
|
|
||||||
if (anunderlayer->ptrLayer)
|
if (anunderlayer->ptrLayer)
|
||||||
call_togl_redraw_layer2d (aview, anunderlayer);
|
call_togl_redraw_layer2d (aview, anunderlayer);
|
||||||
call_func_redraw_all_structs_proc (aview->WsId);
|
call_func_redraw_all_structs_proc (aview->WsId);
|
||||||
|
@ -15,7 +15,6 @@ xx-xx-xx : CAL ; Creation.
|
|||||||
10-07-96 : FMN ; Suppression #define sur calcul matrice
|
10-07-96 : FMN ; Suppression #define sur calcul matrice
|
||||||
|
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
#define GER61454 //GG 14-09-99 Activates the model clipping planes
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
@ -96,9 +95,6 @@ call_togl_vieworientation
|
|||||||
waitwait = 1;
|
waitwait = 1;
|
||||||
call_togl_viewmapping( aview, waitwait );
|
call_togl_viewmapping( aview, waitwait );
|
||||||
call_togl_cliplimit( aview, waitwait );
|
call_togl_cliplimit( aview, waitwait );
|
||||||
#ifdef GER61454
|
|
||||||
call_togl_setplane( aview );
|
|
||||||
#endif
|
|
||||||
TelSetViewRepresentation( aview->WsId, aview->ViewId, &call_viewrep );
|
TelSetViewRepresentation( aview->WsId, aview->ViewId, &call_viewrep );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -86,6 +86,7 @@ if any was defined
|
|||||||
#include <OpenGl_tsm_ws.hxx>
|
#include <OpenGl_tsm_ws.hxx>
|
||||||
#include <OpenGl_txgl.hxx>
|
#include <OpenGl_txgl.hxx>
|
||||||
#include <OpenGl_Memory.hxx>
|
#include <OpenGl_Memory.hxx>
|
||||||
|
#include <Standard_TypeDef.hxx>
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
@ -138,7 +139,9 @@ typedef TEL_VIEW_DATA *tel_view_data; /* Internal data stored for every view r
|
|||||||
* Variables statiques
|
* Variables statiques
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void set_clipplanes( tel_view_rep );
|
static void set_clipplanes( tel_view_rep ); /* front & back clip planes */
|
||||||
|
static void set_userclipplanes( tel_view_rep ); /* user-defined clipping planes */
|
||||||
|
|
||||||
#ifdef CAL_100498
|
#ifdef CAL_100498
|
||||||
static void TelEvalInverseMatrix( Tfloat*, Tfloat*, Tfloat*, /*vrp,vpn,vup*/
|
static void TelEvalInverseMatrix( Tfloat*, Tfloat*, Tfloat*, /*vrp,vpn,vup*/
|
||||||
Tfloat, Tmatrix3 ); /*vpd,inverse*/
|
Tfloat, Tmatrix3 ); /*vpd,inverse*/
|
||||||
@ -504,6 +507,7 @@ TelGetViewRepresentation( Tint Wsid /* Workstation id*/,
|
|||||||
vrep->extra.map.viewport.zmin = ( float )0.0;
|
vrep->extra.map.viewport.zmin = ( float )0.0;
|
||||||
vrep->extra.map.viewport.xmax = vrep->extra.map.viewport.ymax =
|
vrep->extra.map.viewport.xmax = vrep->extra.map.viewport.ymax =
|
||||||
vrep->extra.map.viewport.zmax = ( float )1.0;
|
vrep->extra.map.viewport.zmax = ( float )1.0;
|
||||||
|
vrep->clipping_planes.Clear();
|
||||||
return TSuccess;
|
return TSuccess;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -791,6 +795,7 @@ TelSetViewIndex( Tint Wsid /* Workstation id */,
|
|||||||
vptr = (tel_view_data)key.pdata ; /* Obtain defined view data*/
|
vptr = (tel_view_data)key.pdata ; /* Obtain defined view data*/
|
||||||
if( !vptr ) return TFailure; /* no view defined yet */
|
if( !vptr ) return TFailure; /* no view defined yet */
|
||||||
|
|
||||||
|
|
||||||
#ifdef TRACE_MATRIX
|
#ifdef TRACE_MATRIX
|
||||||
printf("OpenGl_view.c::TelSetViewIndex::glMatrixMode(GL_MODELVIEW) \n");
|
printf("OpenGl_view.c::TelSetViewIndex::glMatrixMode(GL_MODELVIEW) \n");
|
||||||
#endif
|
#endif
|
||||||
@ -802,8 +807,10 @@ TelSetViewIndex( Tint Wsid /* Workstation id */,
|
|||||||
glDisable(GL_NORMALIZE);
|
glDisable(GL_NORMALIZE);
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
set_clipplanes( &(vptr->vrep) );
|
set_clipplanes( &(vptr->vrep) );
|
||||||
|
|
||||||
|
|
||||||
glLoadMatrixf((GLfloat *) vptr->vrep.orientation_matrix );
|
glLoadMatrixf((GLfloat *) vptr->vrep.orientation_matrix );
|
||||||
|
set_userclipplanes( &(vptr->vrep) ); /* set clipping planes defined by user */
|
||||||
|
|
||||||
#ifdef ENVTEX
|
#ifdef ENVTEX
|
||||||
/*
|
/*
|
||||||
@ -845,7 +852,6 @@ TelSetViewIndex( Tint Wsid /* Workstation id */,
|
|||||||
pr_matrix( vptr->vrep.mapping_matrix );
|
pr_matrix( vptr->vrep.mapping_matrix );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
return vptr->vrep.active_status == TOn ? TSuccess : TFailure;
|
return vptr->vrep.active_status == TOn ? TSuccess : TFailure;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -889,14 +895,14 @@ TelSetViewProjection( Tint Wsid /* Workstation id */,
|
|||||||
if( !vptr ) return TFailure; /* no view defined yet */
|
if( !vptr ) return TFailure; /* no view defined yet */
|
||||||
|
|
||||||
set_clipplanes( &(vptr->vrep) );
|
set_clipplanes( &(vptr->vrep) );
|
||||||
|
set_userclipplanes( &(vptr->vrep) );
|
||||||
|
|
||||||
#ifdef TRACE_MATRIX
|
#ifdef TRACE_MATRIX
|
||||||
printf("OpenGl_view.c::TelSetViewProjection::glMatrixMode(GL_PROJECTION) \n");
|
printf("OpenGl_view.c::TelSetViewProjection::glMatrixMode(GL_PROJECTION) \n");
|
||||||
#endif
|
#endif
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadMatrixf((GLfloat *) vptr->vrep.mapping_matrix );
|
glLoadMatrixf((GLfloat *) vptr->vrep.mapping_matrix );
|
||||||
|
|
||||||
|
|
||||||
return vptr->vrep.active_status == TOn ? TSuccess : TFailure;
|
return vptr->vrep.active_status == TOn ? TSuccess : TFailure;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1080,6 +1086,60 @@ set_clipplanes( tel_view_rep vrep )
|
|||||||
glLoadMatrixf( (GLfloat *) mat );
|
glLoadMatrixf( (GLfloat *) mat );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
set_userclipplanes( tel_view_rep vrep )
|
||||||
|
{
|
||||||
|
int j,planeid;
|
||||||
|
CALL_DEF_PLANE* plane;
|
||||||
|
|
||||||
|
#ifdef TRACE_MATRIX
|
||||||
|
printf("OpenGl_view.c::set_userclipplanes::glMatrixMode(GL_MODELVIEW) \n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
NCollection_List<CALL_DEF_PLANE>::Iterator planeIter(vrep->clipping_planes);
|
||||||
|
|
||||||
|
// go through all of planes in the list & preview them
|
||||||
|
for( j=0 ; planeIter.More(); planeIter.Next(), j++ )
|
||||||
|
{
|
||||||
|
plane = const_cast<CALL_DEF_PLANE*>(&planeIter.Value());
|
||||||
|
|
||||||
|
if( plane->PlaneId > 0 )
|
||||||
|
{
|
||||||
|
planeid = GL_CLIP_PLANE2 + j;
|
||||||
|
|
||||||
|
if( plane->Active )
|
||||||
|
{
|
||||||
|
// Activates new clip planes
|
||||||
|
GLdouble equation[4];
|
||||||
|
equation[0] = plane->CoefA;
|
||||||
|
equation[1] = plane->CoefB;
|
||||||
|
equation[2] = plane->CoefC;
|
||||||
|
equation[3] = plane->CoefD;
|
||||||
|
|
||||||
|
glClipPlane( planeid , equation );
|
||||||
|
if( !glIsEnabled( planeid ) ) glEnable( planeid );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if( glIsEnabled( planeid ) ) glDisable( planeid );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} //for( ; planeIter.More(); planeIter.Next() )
|
||||||
|
|
||||||
|
// Disable the remainder Clip planes
|
||||||
|
|
||||||
|
for( j=vrep->clipping_planes.Size(); j < call_facilities_list.MaxPlanes; j++ )
|
||||||
|
{
|
||||||
|
planeid = GL_CLIP_PLANE2 + j;
|
||||||
|
|
||||||
|
if( glIsEnabled( planeid ) )
|
||||||
|
glDisable( planeid );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
TStatus
|
TStatus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user