216 lines
7.3 KiB
C++
216 lines
7.3 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4OpenGLViewer.cc,v 1.22 2005/10/13 17:31:47 allison Exp $
|
|
// GEANT4 tag $Name: geant4-08-00 $
|
|
//
|
|
//
|
|
// Andrew Walkden 27th March 1996
|
|
// OpenGL view - opens window, hard copy, etc.
|
|
|
|
#ifdef G4VIS_BUILD_OPENGL_DRIVER
|
|
|
|
#include "G4ios.hh"
|
|
#include "G4OpenGLViewer.hh"
|
|
#include "G4OpenGLViewerDataStore.hh"
|
|
#include "G4OpenGLSceneHandler.hh"
|
|
#include "G4OpenGLTransform3D.hh"
|
|
|
|
#include "G4Scene.hh"
|
|
#include "G4VisExtent.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "G4VSolid.hh"
|
|
#include "G4Point3D.hh"
|
|
#include "G4Normal3D.hh"
|
|
#include "G4Plane3D.hh"
|
|
|
|
G4OpenGLViewer::G4OpenGLViewer (G4OpenGLSceneHandler& scene):
|
|
G4VViewer (scene, -1),
|
|
background (G4Colour(0.,0.,0.)),
|
|
transparency_enabled (true),
|
|
antialiasing_enabled (false),
|
|
haloing_enabled (false)
|
|
{
|
|
// Make changes to view parameters for OpenGL...
|
|
fVP.SetAutoRefresh(true);
|
|
fDefaultVP.SetAutoRefresh(true);
|
|
|
|
G4OpenGLViewerDataStore::SetTransparencyEnabled(this, transparency_enabled);
|
|
|
|
// glClearColor (0.0, 0.0, 0.0, 0.0);
|
|
// glClearDepth (1.0);
|
|
// glDisable (GL_BLEND);
|
|
// glDisable (GL_LINE_SMOOTH);
|
|
// glDisable (GL_POLYGON_SMOOTH);
|
|
|
|
}
|
|
|
|
G4OpenGLViewer::~G4OpenGLViewer () {}
|
|
|
|
void G4OpenGLViewer::InitializeGLView ()
|
|
{
|
|
glClearColor (0.0, 0.0, 0.0, 0.0);
|
|
glClearDepth (1.0);
|
|
glDisable (GL_BLEND);
|
|
glDisable (GL_LINE_SMOOTH);
|
|
glDisable (GL_POLYGON_SMOOTH);
|
|
}
|
|
|
|
void G4OpenGLViewer::ClearView () {
|
|
//Below line does not compile with Mesa includes.
|
|
//glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
glClear (GL_COLOR_BUFFER_BIT);
|
|
glClear (GL_DEPTH_BUFFER_BIT);
|
|
glClear (GL_STENCIL_BUFFER_BIT);
|
|
glFlush ();
|
|
}
|
|
|
|
void G4OpenGLViewer::SetView () {
|
|
|
|
// Calculates view representation based on extent of object being
|
|
// viewed and (initial) viewpoint. (Note: it can change later due
|
|
// to user interaction via visualization system's GUI.)
|
|
|
|
// Lighting.
|
|
GLfloat lightPosition [4];
|
|
lightPosition [0] = fVP.GetActualLightpointDirection().x();
|
|
lightPosition [1] = fVP.GetActualLightpointDirection().y();
|
|
lightPosition [2] = fVP.GetActualLightpointDirection().z();
|
|
lightPosition [3] = 0.;
|
|
// Light position is "true" light direction, so must come after gluLookAt.
|
|
GLfloat ambient [] = { 0.2, 0.2, 0.2, 1.};
|
|
GLfloat diffuse [] = { 0.8, 0.8, 0.8, 1.};
|
|
glEnable (GL_LIGHT0);
|
|
glLightfv (GL_LIGHT0, GL_AMBIENT, ambient);
|
|
glLightfv (GL_LIGHT0, GL_DIFFUSE, diffuse);
|
|
|
|
// Get radius of scene, etc.
|
|
// Note that this procedure properly takes into account zoom, dolly and pan.
|
|
const G4Point3D targetPoint
|
|
= fSceneHandler.GetScene()->GetStandardTargetPoint()
|
|
+ fVP.GetCurrentTargetPoint ();
|
|
G4double radius = fSceneHandler.GetScene()->GetExtent().GetExtentRadius();
|
|
if(radius<=0.) radius = 1.;
|
|
const G4double cameraDistance = fVP.GetCameraDistance (radius);
|
|
const G4Point3D cameraPosition =
|
|
targetPoint + cameraDistance * fVP.GetViewpointDirection().unit();
|
|
const GLdouble pnear = fVP.GetNearDistance (cameraDistance, radius);
|
|
const GLdouble pfar = fVP.GetFarDistance (cameraDistance, pnear, radius);
|
|
const GLdouble right = fVP.GetFrontHalfHeight (pnear, radius);
|
|
const GLdouble left = -right;
|
|
const GLdouble bottom = left;
|
|
const GLdouble top = right;
|
|
|
|
glMatrixMode (GL_PROJECTION); // set up Frustum.
|
|
glLoadIdentity();
|
|
|
|
const G4Vector3D scale = fVP.GetScaleFactor();
|
|
glScaled(scale.x(),scale.y(),scale.z());
|
|
|
|
if (fVP.GetFieldHalfAngle() == 0.) {
|
|
glOrtho (left, right, bottom, top, pnear, pfar);
|
|
}
|
|
else {
|
|
glFrustum (left, right, bottom, top, pnear, pfar);
|
|
}
|
|
|
|
glMatrixMode (GL_MODELVIEW); // apply further transformations to scene.
|
|
glLoadIdentity();
|
|
|
|
const G4Normal3D& upVector = fVP.GetUpVector ();
|
|
G4Point3D gltarget;
|
|
if (cameraDistance > 1.e-6 * radius) {
|
|
gltarget = targetPoint;
|
|
}
|
|
else {
|
|
gltarget = targetPoint - radius * fVP.GetViewpointDirection().unit();
|
|
}
|
|
|
|
const G4Point3D& pCamera = cameraPosition; // An alias for brevity.
|
|
gluLookAt (pCamera.x(), pCamera.y(), pCamera.z(), // Viewpoint.
|
|
gltarget.x(), gltarget.y(), gltarget.z(), // Target point.
|
|
upVector.x(), upVector.y(), upVector.z()); // Up vector.
|
|
|
|
// Light position is "true" light direction, so must come after gluLookAt.
|
|
glLightfv (GL_LIGHT0, GL_POSITION, lightPosition);
|
|
|
|
// Clip planes.
|
|
if (fVP.IsSection () ) { // pair of back to back clip planes.
|
|
const G4Plane3D& s = fVP.GetSectionPlane ();
|
|
double sArray[4];
|
|
sArray[0] = s.a();
|
|
sArray[1] = s.b();
|
|
sArray[2] = s.c();
|
|
sArray[3] = s.d() + radius * 1.e-05;
|
|
glClipPlane (GL_CLIP_PLANE0, sArray);
|
|
glEnable (GL_CLIP_PLANE0);
|
|
sArray[0] = -s.a();
|
|
sArray[1] = -s.b();
|
|
sArray[2] = -s.c();
|
|
sArray[3] = -s.d() + radius * 1.e-05;
|
|
glClipPlane (GL_CLIP_PLANE1, sArray);
|
|
glEnable (GL_CLIP_PLANE1);
|
|
}
|
|
else {
|
|
glDisable (GL_CLIP_PLANE0);
|
|
glDisable (GL_CLIP_PLANE1);
|
|
}
|
|
|
|
// Background.
|
|
background = fVP.GetBackgroundColour ();
|
|
|
|
}
|
|
|
|
void G4OpenGLViewer::HaloingFirstPass () {
|
|
|
|
//To perform haloing, first Draw all information to the depth buffer
|
|
//alone, using a chunky line width, and then Draw all info again, to
|
|
//the colour buffer, setting a thinner line width an the depth testing
|
|
//function to less than or equal, so if two lines cross, the one
|
|
//passing behind the other will not pass the depth test, and so not
|
|
//get rendered either side of the infront line for a short distance.
|
|
|
|
//First, disable writing to the colo(u)r buffer...
|
|
glColorMask (GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
|
|
|
|
//Now enable writing to the depth buffer...
|
|
glDepthMask (GL_TRUE);
|
|
glDepthFunc (GL_LESS);
|
|
glClearDepth (1.0);
|
|
|
|
//Finally, set the line width to something wide...
|
|
glLineWidth (3.0);
|
|
|
|
}
|
|
|
|
void G4OpenGLViewer::HaloingSecondPass () {
|
|
|
|
//And finally, turn the colour buffer back on with a sesible line width...
|
|
glColorMask (GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
|
glDepthFunc (GL_LEQUAL);
|
|
glLineWidth (1.0);
|
|
|
|
}
|
|
|
|
#endif
|