In my C++ program, I am using a custom Camera class, which internally uses gluLookAt to move the "camera". This has worked fairly well, but I recently hit a bit of a snag: Any gluQuadric object (those drawn with gluSphere, gluCylinder, gluDisk, etc.) aren't properly moving. Instead, they stay locked in the same position.
I know that I am calling gluLookAt prior to rendering these quadrics. I know that the only explanation is that it's related to the quadrics, because any number of standard polygons (i.e. those inside glBegin and glEnd) will properly move, and any quadrics drawn at any point in a frame will not.
Some samples from my code:
//Called automatically every frame by wxWidgets
void wxSFMLCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
wxPaintDC dc(this);
Update();
Display();
}
//Main rendering function.
void wxSFMLCanvas::Update() {
// Clear the window with current clearing color
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
if (World::getInstance())
World::getInstance()->render();
glFlush();
}
//Called by wxSFMLCanvas::Update()
void World::render() {
mInstance->ActiveCamera->render(); //Only render the active Camera
renderChildren();
}
//First function called from World::render(); uses gluLookAt to move the GL "camera"
void Camera::render() {
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
gluLookAt(Position.data[0], Position.data[1], Position.data[2], Focus.data[0], Focus.data[1], Focus.data[2], 0.0f, 1.0f, 0.0f);
//renderChildren();
}
//Object is superclass of Camera, Light, Model, etc;
//renderChildren() renders all objects in the object hierarchy recursively
void Object::renderChildren() {
for (unsigned int i = 0; i < children.size(); i++) {
Object* o = children.at(i);
std::string cn = std::string(o->ClassName);
if (cn == "Model") {
Model::findModel(o->id)->render();
} else if (cn == "Light") {
Light::findLight(o->id)->render();
} else if (cn == "Camera") {
//Camera::findCamera(o->id)->render();
}
}
}
//Renders a custom model; default shape is shown by comments
void Model::render() {
glTranslatef(Position.data[0], Position.data[1], Position.data[2]); //[0, 0, -80]
glRotatef(Rotation.data[0], 1.0f, 0.0f, 0.0f); //30 degrees
glRotatef(Rotation.data[1], 0.0f, 1.0f, 0.0f); //30 degrees
glRotatef(Rotation.data[2], 0.0f, 0.0f, 1.0f); //0 degrees
glScalef(Scale.data[0], Scale.data[1], Scale.data[2]); //[1, 1, 1]
//Draws a green (0, 255, 0, 255) cube, 20x20x20, centred at [0, 0, -80] (Position)
glBegin(GL_QUADS);
for (unsigned int i = 0; i < points.size(); i++) {
Point p = points.at(i);
glColor3d(p.col.data[0], p.col.data[1], p.col.data[2]);
glVertex3d(p.pos.data[0], p.pos.data[1], p.pos.data[2]);
}
glEnd();
//Testing code, to ensure it's not a problem with Light::render()
GLUquadricObj* pTess = gluNewQuadric();
gluQuadricDrawStyle(pTess, GLU_FILL);
gluQuadricNormals(pTess, GLU_SMOOTH);
glLoadIdentity();
glTranslatef(Position.data[0], Position.data[1] - 20.f, Position.data[2]);
glColor3f(1.f, 0.f, 0.f);
gluDisk(pTess, 0.f, 10.f, 16, 16);
renderChildren();
}
//Renders GL lights, as well as quadrics to visualise them
void Light::render() {
glLoadIdentity();
//Light-related stuff
glColor3f(1.f, 1.f, 0.f);
GLUquadricObj* pTess = gluNewQuadric();
gluQuadricDrawStyle(pTess, GLU_FILL);
gluQuadricNormals(pTess, GLU_SMOOTH);
if (LightType == Enum::LT_TYPE_SPOTLIGHT) {
glLoadIdentity();
glTranslatef(Position.data[0], Position.data[1], Position.data[2]);
glRotatef(270.f, 1, 0, 0);
gluCylinder(pTess, 15*tan(rad(Angle)), 0, 15, 16, 16);
} else if (LightType == Enum::LT_TYPE_POSITIONAL) {
glLoadIdentity();
glTranslatef(Position.data[0], Position.data[1], Position.data[2]);
gluSphere(pTess, 15.f, 16, 16);
}
renderChildren();
}
If any more code is relevant, I'll post it.
Some screenshots to show what I'm talking about:
Camera in its default position (0, 0, 0) looking down the Z-axis
Camera at position (40, 0, -30) looking down the local Z-axis
Notice how the disk and cone don't move with the cube?