replace GLU functions with OSG functionality
This commit is contained in:
parent
9b2cea33e8
commit
f901dac2ac
6 changed files with 51 additions and 32 deletions
|
@ -40,7 +40,7 @@
|
||||||
#include <simgear/misc/sg_path.hxx>
|
#include <simgear/misc/sg_path.hxx>
|
||||||
#include <simgear/props/props_io.hxx>
|
#include <simgear/props/props_io.hxx>
|
||||||
|
|
||||||
#include <osg/GLU>
|
#include <osg/Matrixf>
|
||||||
|
|
||||||
#include <GUI/new_gui.hxx> // FGFontCache
|
#include <GUI/new_gui.hxx> // FGFontCache
|
||||||
#include <Main/globals.hxx>
|
#include <Main/globals.hxx>
|
||||||
|
@ -338,27 +338,31 @@ void fgUpdateHUD( osg::State* state ) {
|
||||||
|
|
||||||
void fgUpdateHUDVirtual(osg::State* state)
|
void fgUpdateHUDVirtual(osg::State* state)
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
FGViewer* view = globals->get_current_view();
|
FGViewer* view = globals->get_current_view();
|
||||||
|
|
||||||
// Standard fgfs projection, with essentially meaningless clip
|
// Standard fgfs projection, with essentially meaningless clip
|
||||||
// planes (we'll map the whole HUD plane to z=-1)
|
// planes (we'll map the whole HUD plane to z=-1)
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
Matrixf proj
|
||||||
gluPerspective(view->get_v_fov(), 1/view->get_aspect_ratio(), 0.1, 10);
|
= Matrixf::perspective(view->get_v_fov(), 1/view->get_aspect_ratio(),
|
||||||
|
0.1, 10);
|
||||||
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
|
||||||
|
|
||||||
// Standard fgfs view direction computation
|
// Standard fgfs view direction computation
|
||||||
float lookat[3];
|
Vec3f lookat;
|
||||||
lookat[0] = -sin(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
lookat[0] = -sin(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
||||||
lookat[1] = tan(SG_DEGREES_TO_RADIANS * view->getPitchOffset_deg());
|
lookat[1] = tan(SG_DEGREES_TO_RADIANS * view->getPitchOffset_deg());
|
||||||
lookat[2] = -cos(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
lookat[2] = -cos(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
||||||
if (fabs(lookat[1]) > 9999)
|
if (fabs(lookat[1]) > 9999)
|
||||||
lookat[1] = 9999; // FPU sanity
|
lookat[1] = 9999; // FPU sanity
|
||||||
gluLookAt(0, 0, 0, lookat[0], lookat[1], lookat[2], 0, 1, 0);
|
Matrixf mv = Matrixf::lookAt(Vec3f(0.0, 0.0, 0.0), lookat,
|
||||||
|
Vec3f(0.0, 1.0, 0.0));
|
||||||
|
glLoadMatrix(mv.ptr());
|
||||||
|
|
||||||
// Map the -1:1 square to a 55.0x41.25 degree wide patch at z=1.
|
// Map the -1:1 square to a 55.0x41.25 degree wide patch at z=1.
|
||||||
// This is the default fgfs field of view, which the HUD files are
|
// This is the default fgfs field of view, which the HUD files are
|
||||||
|
@ -391,10 +395,11 @@ void fgUpdateHUDVirtual(osg::State* state)
|
||||||
void fgUpdateHUD( osg::State* state, GLfloat x_start, GLfloat y_start,
|
void fgUpdateHUD( osg::State* state, GLfloat x_start, GLfloat y_start,
|
||||||
GLfloat x_end, GLfloat y_end )
|
GLfloat x_end, GLfloat y_end )
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
Matrixf proj = Matrixf::ortho2D(x_start, x_end, y_start, y_end);
|
||||||
gluOrtho2D(x_start, x_end, y_start, y_end);
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
|
|
|
@ -32,8 +32,7 @@
|
||||||
#include <ATCDCL/ATCutils.hxx>
|
#include <ATCDCL/ATCutils.hxx>
|
||||||
#include <Main/viewer.hxx>
|
#include <Main/viewer.hxx>
|
||||||
|
|
||||||
#include <osg/GLU>
|
#include <simgear/math/project.hxx>
|
||||||
|
|
||||||
|
|
||||||
// int x, int y, int width, int height, float scale_data, bool working)
|
// int x, int y, int width, int height, float scale_data, bool working)
|
||||||
|
|
||||||
|
@ -134,8 +133,9 @@ void runway_instr::draw()
|
||||||
//Calculate the 2D points via gluProject
|
//Calculate the 2D points via gluProject
|
||||||
int result = GL_TRUE;
|
int result = GL_TRUE;
|
||||||
for (int i = 0; i < 6; i++) {
|
for (int i = 0; i < 6; i++) {
|
||||||
result = gluProject(points3d[i][0], points3d[i][1], points3d[i][2], mm,
|
result = simgear::project(points3d[i][0], points3d[i][1], points3d[i][2],
|
||||||
pm, view, &points2d[i][0], &points2d[i][1], &points2d[i][2]);
|
mm, pm, view,
|
||||||
|
&points2d[i][0], &points2d[i][1], &points2d[i][2]);
|
||||||
}
|
}
|
||||||
//set the line width based on our distance from the runway
|
//set the line width based on our distance from the runway
|
||||||
setLineWidth();
|
setLineWidth();
|
||||||
|
@ -239,7 +239,8 @@ bool runway_instr::drawLine(const sgdVec3& a1, const sgdVec3& a2, const sgdVec3&
|
||||||
sgdVec3 newPt;
|
sgdVec3 newPt;
|
||||||
sgdCopyVec3(newPt, a1);
|
sgdCopyVec3(newPt, a1);
|
||||||
sgdAddVec3(newPt, vec);
|
sgdAddVec3(newPt, vec);
|
||||||
if (gluProject(newPt[0], newPt[1], newPt[2], mm, pm, view, &p2[0], &p2[1], &p2[2])
|
if (simgear::project(newPt[0], newPt[1], newPt[2], mm, pm, view,
|
||||||
|
&p2[0], &p2[1], &p2[2])
|
||||||
&& (p2[2] > 0 && p2[2] < 1.0)) {
|
&& (p2[2] > 0 && p2[2] < 1.0)) {
|
||||||
boundPoint(p1, p2);
|
boundPoint(p1, p2);
|
||||||
glBegin(GL_LINES);
|
glBegin(GL_LINES);
|
||||||
|
@ -255,7 +256,8 @@ bool runway_instr::drawLine(const sgdVec3& a1, const sgdVec3& a2, const sgdVec3&
|
||||||
sgdVec3 newPt;
|
sgdVec3 newPt;
|
||||||
sgdCopyVec3(newPt, a2);
|
sgdCopyVec3(newPt, a2);
|
||||||
sgdAddVec3(newPt, vec);
|
sgdAddVec3(newPt, vec);
|
||||||
if (gluProject(newPt[0], newPt[1], newPt[2], mm, pm, view, &p1[0], &p1[1], &p1[2])
|
if (simgear::project(newPt[0], newPt[1], newPt[2], mm, pm, view,
|
||||||
|
&p1[0], &p1[1], &p1[2])
|
||||||
&& (p1[2] > 0 && p1[2] < 1.0)) {
|
&& (p1[2] > 0 && p1[2] < 1.0)) {
|
||||||
boundPoint(p2, p1);
|
boundPoint(p2, p1);
|
||||||
glBegin(GL_LINES);
|
glBegin(GL_LINES);
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#include <osg/CullFace>
|
#include <osg/CullFace>
|
||||||
#include <osg/Depth>
|
#include <osg/Depth>
|
||||||
#include <osg/Material>
|
#include <osg/Material>
|
||||||
|
#include <osg/Matrixf>
|
||||||
#include <osg/TexEnv>
|
#include <osg/TexEnv>
|
||||||
#include <osg/PolygonOffset>
|
#include <osg/PolygonOffset>
|
||||||
|
|
||||||
|
@ -273,6 +274,7 @@ FGPanel::update (double dt)
|
||||||
void
|
void
|
||||||
FGPanel::update (osg::State& state, GLfloat winx, GLfloat winw, GLfloat winy, GLfloat winh)
|
FGPanel::update (osg::State& state, GLfloat winx, GLfloat winw, GLfloat winy, GLfloat winh)
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
// Calculate accelerations
|
// Calculate accelerations
|
||||||
// and jiggle the panel accordingly
|
// and jiggle the panel accordingly
|
||||||
// The factors and bounds are just
|
// The factors and bounds are just
|
||||||
|
@ -284,12 +286,13 @@ FGPanel::update (osg::State& state, GLfloat winx, GLfloat winw, GLfloat winy, GL
|
||||||
|
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
Matrixf proj;
|
||||||
if ( _flipx->getBoolValue() ) {
|
if ( _flipx->getBoolValue() ) {
|
||||||
gluOrtho2D(winx + winw, winx, winy + winh, winy); /* up side down */
|
proj = Matrixf::ortho2D(winx + winw, winx, winy + winh, winy); /* up side down */
|
||||||
} else {
|
} else {
|
||||||
gluOrtho2D(winx, winx + winw, winy, winy + winh); /* right side up */
|
proj = Matrixf::ortho2D(winx, winx + winw, winy, winy + winh); /* right side up */
|
||||||
}
|
}
|
||||||
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
|
|
|
@ -186,27 +186,31 @@ void HUD::draw(osg::State&)
|
||||||
|
|
||||||
void HUD::draw3D()
|
void HUD::draw3D()
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
FGViewer* view = globals->get_current_view();
|
FGViewer* view = globals->get_current_view();
|
||||||
|
|
||||||
// Standard fgfs projection, with essentially meaningless clip
|
// Standard fgfs projection, with essentially meaningless clip
|
||||||
// planes (we'll map the whole HUD plane to z=-1)
|
// planes (we'll map the whole HUD plane to z=-1)
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
Matrixf proj
|
||||||
gluPerspective(view->get_v_fov(), 1.0 / view->get_aspect_ratio(), 0.1, 10);
|
= Matrixf::perspective(view->get_v_fov(), 1/view->get_aspect_ratio(),
|
||||||
|
0.1, 10);
|
||||||
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
|
||||||
|
|
||||||
// Standard fgfs view direction computation
|
// Standard fgfs view direction computation
|
||||||
float lookat[3];
|
Vec3f lookat;
|
||||||
lookat[0] = -sin(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
lookat[0] = -sin(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
||||||
lookat[1] = tan(SG_DEGREES_TO_RADIANS * view->getPitchOffset_deg());
|
lookat[1] = tan(SG_DEGREES_TO_RADIANS * view->getPitchOffset_deg());
|
||||||
lookat[2] = -cos(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
lookat[2] = -cos(SG_DEGREES_TO_RADIANS * view->getHeadingOffset_deg());
|
||||||
if (fabs(lookat[1]) > 9999)
|
if (fabs(lookat[1]) > 9999)
|
||||||
lookat[1] = 9999; // FPU sanity
|
lookat[1] = 9999; // FPU sanity
|
||||||
gluLookAt(0, 0, 0, lookat[0], lookat[1], lookat[2], 0, 1, 0);
|
Matrixf mv = Matrixf::lookAt(Vec3f(0.0, 0.0, 0.0), lookat,
|
||||||
|
Vec3f(0.0, 1.0, 0.0));
|
||||||
|
glLoadMatrix(mv.ptr());
|
||||||
|
|
||||||
// Map the -1:1 square to a 55.0x41.25 degree wide patch at z=1.
|
// Map the -1:1 square to a 55.0x41.25 degree wide patch at z=1.
|
||||||
// This is the default fgfs field of view, which the HUD files are
|
// This is the default fgfs field of view, which the HUD files are
|
||||||
|
@ -236,10 +240,11 @@ void HUD::draw3D()
|
||||||
|
|
||||||
void HUD::draw2D(GLfloat x_start, GLfloat y_start, GLfloat x_end, GLfloat y_end)
|
void HUD::draw2D(GLfloat x_start, GLfloat y_start, GLfloat x_end, GLfloat y_end)
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
glLoadIdentity();
|
Matrixf proj = Matrixf::ortho2D(x_start, x_end, y_start, y_end);
|
||||||
gluOrtho2D(x_start, x_end, y_start, y_end);
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
glPushMatrix();
|
glPushMatrix();
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
#include <simgear/compiler.h>
|
#include <simgear/compiler.h>
|
||||||
#include <simgear/math/sg_geodesy.hxx>
|
#include <simgear/math/sg_geodesy.hxx>
|
||||||
#include <osg/GLU>
|
#include <simgear/math/project.hxx>
|
||||||
|
|
||||||
#include <Main/globals.hxx>
|
#include <Main/globals.hxx>
|
||||||
#include <Scenery/scenery.hxx>
|
#include <Scenery/scenery.hxx>
|
||||||
|
@ -129,8 +129,9 @@ void HUD::Runway::draw()
|
||||||
//Calculate the 2D points via gluProject
|
//Calculate the 2D points via gluProject
|
||||||
int result = GL_TRUE;
|
int result = GL_TRUE;
|
||||||
for (int i = 0; i < 6; i++) {
|
for (int i = 0; i < 6; i++) {
|
||||||
result = gluProject(_points3d[i][0], _points3d[i][1], _points3d[i][2], _mm,
|
result = simgear::project(_points3d[i][0], _points3d[i][1], _points3d[i][2],
|
||||||
_pm, _view, &_points2d[i][0], &_points2d[i][1], &_points2d[i][2]);
|
_mm, _pm, _view,
|
||||||
|
&_points2d[i][0], &_points2d[i][1], &_points2d[i][2]);
|
||||||
}
|
}
|
||||||
//set the line width based on our distance from the runway
|
//set the line width based on our distance from the runway
|
||||||
setLineWidth();
|
setLineWidth();
|
||||||
|
@ -229,7 +230,8 @@ bool HUD::Runway::drawLine(const sgdVec3& a1, const sgdVec3& a2, const sgdVec3&
|
||||||
sgdVec3 newPt;
|
sgdVec3 newPt;
|
||||||
sgdCopyVec3(newPt, a1);
|
sgdCopyVec3(newPt, a1);
|
||||||
sgdAddVec3(newPt, vec);
|
sgdAddVec3(newPt, vec);
|
||||||
if (gluProject(newPt[0], newPt[1], newPt[2], _mm, _pm, _view, &p2[0], &p2[1], &p2[2])
|
if (simgear::project(newPt[0], newPt[1], newPt[2], _mm, _pm, _view,
|
||||||
|
&p2[0], &p2[1], &p2[2])
|
||||||
&& (p2[2] > 0 && p2[2] < 1.0)) {
|
&& (p2[2] > 0 && p2[2] < 1.0)) {
|
||||||
boundPoint(p1, p2);
|
boundPoint(p1, p2);
|
||||||
glBegin(GL_LINES);
|
glBegin(GL_LINES);
|
||||||
|
@ -245,7 +247,8 @@ bool HUD::Runway::drawLine(const sgdVec3& a1, const sgdVec3& a2, const sgdVec3&
|
||||||
sgdVec3 newPt;
|
sgdVec3 newPt;
|
||||||
sgdCopyVec3(newPt, a2);
|
sgdCopyVec3(newPt, a2);
|
||||||
sgdAddVec3(newPt, vec);
|
sgdAddVec3(newPt, vec);
|
||||||
if (gluProject(newPt[0], newPt[1], newPt[2], _mm, _pm, _view, &p1[0], &p1[1], &p1[2])
|
if (simgear::project(newPt[0], newPt[1], newPt[2], _mm, _pm, _view,
|
||||||
|
&p1[0], &p1[1], &p1[2])
|
||||||
&& (p1[2] > 0 && p1[2] < 1.0)) {
|
&& (p1[2] > 0 && p1[2] < 1.0)) {
|
||||||
boundPoint(p2, p1);
|
boundPoint(p2, p1);
|
||||||
glBegin(GL_LINES);
|
glBegin(GL_LINES);
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
# include <windows.h>
|
# include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <osg/GLU>
|
#include <osg/Matrixf>
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
@ -95,6 +95,7 @@ SGTexture::bind()
|
||||||
void
|
void
|
||||||
SGTexture::resize(unsigned int width, unsigned int height)
|
SGTexture::resize(unsigned int width, unsigned int height)
|
||||||
{
|
{
|
||||||
|
using namespace osg;
|
||||||
GLfloat aspect;
|
GLfloat aspect;
|
||||||
|
|
||||||
// Make sure that we don't get a divide by zero exception
|
// Make sure that we don't get a divide by zero exception
|
||||||
|
@ -110,10 +111,10 @@ SGTexture::resize(unsigned int width, unsigned int height)
|
||||||
// Go to the projection matrix, this gets modified by the perspective
|
// Go to the projection matrix, this gets modified by the perspective
|
||||||
// calulations
|
// calulations
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
|
||||||
|
|
||||||
// Do the perspective calculations
|
// Do the perspective calculations
|
||||||
gluPerspective(45.0, aspect, 1.0, 400.0);
|
Matrixf proj = Matrixf::perspective(45.0, aspect, 1.0, 400.0);
|
||||||
|
glLoadMatrix(proj.ptr());
|
||||||
|
|
||||||
// Return to the modelview matrix
|
// Return to the modelview matrix
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
|
|
Loading…
Reference in a new issue