glfw/examples/splitview.c

504 lines
14 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// This is an example program for the GLFW library
//
// The program uses a "split window" view, rendering four views of the
// same scene in one window (e.g. uesful for 3D modelling software). This
// demo uses scissors to separete the four different rendering areas from
// each other.
//
// (If the code seems a little bit strange here and there, it may be
// because I am not a friend of orthogonal projections)
//========================================================================
#include <GL/glfw3.h>
2010-09-07 15:34:51 +00:00
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
//========================================================================
// Global variables
//========================================================================
// Mouse position
static int xpos = 0, ypos = 0;
// Window size
static int width, height;
// Active view: 0 = none, 1 = upper left, 2 = upper right, 3 = lower left,
// 4 = lower right
static int active_view = 0;
// Rotation around each axis
static int rot_x = 0, rot_y = 0, rot_z = 0;
// Do redraw?
static int do_redraw = 1;
//========================================================================
// Draw a solid torus (use a display list for the model)
//========================================================================
#define TORUS_MAJOR 1.5
#define TORUS_MINOR 0.5
#define TORUS_MAJOR_RES 32
#define TORUS_MINOR_RES 32
2010-10-24 12:56:35 +00:00
static void drawTorus(void)
2010-09-07 15:34:51 +00:00
{
static GLuint torus_list = 0;
int i, j, k;
double s, t, x, y, z, nx, ny, nz, scale, twopi;
2010-10-24 12:56:35 +00:00
if (!torus_list)
2010-09-07 15:34:51 +00:00
{
// Start recording displaylist
2010-10-24 12:56:35 +00:00
torus_list = glGenLists(1);
glNewList(torus_list, GL_COMPILE_AND_EXECUTE);
2010-09-07 15:34:51 +00:00
// Draw torus
twopi = 2.0 * M_PI;
2010-10-24 12:56:35 +00:00
for (i = 0; i < TORUS_MINOR_RES; i++)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
glBegin(GL_QUAD_STRIP);
for (j = 0; j <= TORUS_MAJOR_RES; j++)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
for (k = 1; k >= 0; k--)
2010-09-07 15:34:51 +00:00
{
s = (i + k) % TORUS_MINOR_RES + 0.5;
t = j % TORUS_MAJOR_RES;
// Calculate point on surface
2010-10-24 12:56:35 +00:00
x = (TORUS_MAJOR + TORUS_MINOR * cos(s * twopi / TORUS_MINOR_RES)) * cos(t * twopi / TORUS_MAJOR_RES);
2010-09-07 15:34:51 +00:00
y = TORUS_MINOR * sin(s * twopi / TORUS_MINOR_RES);
2010-10-24 12:56:35 +00:00
z = (TORUS_MAJOR + TORUS_MINOR * cos(s * twopi / TORUS_MINOR_RES)) * sin(t * twopi / TORUS_MAJOR_RES);
2010-09-07 15:34:51 +00:00
// Calculate surface normal
2010-10-24 12:56:35 +00:00
nx = x - TORUS_MAJOR * cos(t * twopi / TORUS_MAJOR_RES);
2010-09-07 15:34:51 +00:00
ny = y;
2010-10-24 12:56:35 +00:00
nz = z - TORUS_MAJOR * sin(t * twopi / TORUS_MAJOR_RES);
scale = 1.0 / sqrt(nx*nx + ny*ny + nz*nz);
2010-09-07 15:34:51 +00:00
nx *= scale;
ny *= scale;
nz *= scale;
2010-10-24 12:56:35 +00:00
glNormal3f((float) nx, (float) ny, (float) nz);
glVertex3f((float) x, (float) y, (float) z);
2010-09-07 15:34:51 +00:00
}
}
2010-10-24 12:56:35 +00:00
2010-09-07 15:34:51 +00:00
glEnd();
}
// Stop recording displaylist
glEndList();
}
else
{
// Playback displaylist
2010-10-24 12:56:35 +00:00
glCallList(torus_list);
2010-09-07 15:34:51 +00:00
}
}
//========================================================================
// Draw the scene (a rotating torus)
//========================================================================
2010-10-24 12:56:35 +00:00
static void drawScene(void)
2010-09-07 15:34:51 +00:00
{
const GLfloat model_diffuse[4] = {1.0f, 0.8f, 0.8f, 1.0f};
const GLfloat model_specular[4] = {0.6f, 0.6f, 0.6f, 1.0f};
const GLfloat model_shininess = 20.0f;
glPushMatrix();
// Rotate the object
2010-10-24 12:56:35 +00:00
glRotatef((GLfloat) rot_x * 0.5f, 1.0f, 0.0f, 0.0f);
glRotatef((GLfloat) rot_y * 0.5f, 0.0f, 1.0f, 0.0f);
glRotatef((GLfloat) rot_z * 0.5f, 0.0f, 0.0f, 1.0f);
2010-09-07 15:34:51 +00:00
// Set model color (used for orthogonal views, lighting disabled)
2010-10-24 12:56:35 +00:00
glColor4fv(model_diffuse);
2010-09-07 15:34:51 +00:00
// Set model material (used for perspective view, lighting enabled)
2010-10-24 12:56:35 +00:00
glMaterialfv(GL_FRONT, GL_DIFFUSE, model_diffuse);
glMaterialfv(GL_FRONT, GL_SPECULAR, model_specular);
glMaterialf(GL_FRONT, GL_SHININESS, model_shininess);
2010-09-07 15:34:51 +00:00
// Draw torus
drawTorus();
glPopMatrix();
}
//========================================================================
// Draw a 2D grid (used for orthogonal views)
//========================================================================
2010-10-24 12:56:35 +00:00
static void drawGrid(float scale, int steps)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
int i;
2010-09-07 15:34:51 +00:00
float x, y;
glPushMatrix();
// Set background to some dark bluish grey
2010-10-24 12:56:35 +00:00
glClearColor(0.05f, 0.05f, 0.2f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT);
2010-09-07 15:34:51 +00:00
// Setup modelview matrix (flat XY view)
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluLookAt(0.0, 0.0, 1.0,
0.0, 0.0, 0.0,
0.0, 1.0, 0.0);
2010-09-07 15:34:51 +00:00
// We don't want to update the Z-buffer
2010-10-24 12:56:35 +00:00
glDepthMask(GL_FALSE);
2010-09-07 15:34:51 +00:00
// Set grid color
2010-10-24 12:56:35 +00:00
glColor3f(0.0f, 0.5f, 0.5f);
2010-09-07 15:34:51 +00:00
2010-10-24 12:56:35 +00:00
glBegin(GL_LINES);
2010-09-07 15:34:51 +00:00
// Horizontal lines
2010-10-24 12:56:35 +00:00
x = scale * 0.5f * (float) (steps - 1);
y = -scale * 0.5f * (float) (steps - 1);
for (i = 0; i < steps; i++)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
glVertex3f(-x, y, 0.0f);
glVertex3f(x, y, 0.0f);
2010-09-07 15:34:51 +00:00
y += scale;
}
// Vertical lines
2010-10-24 12:56:35 +00:00
x = -scale * 0.5f * (float) (steps - 1);
y = scale * 0.5f * (float) (steps - 1);
for (i = 0; i < steps; i++)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
glVertex3f(x, -y, 0.0f);
glVertex3f(x, y, 0.0f);
2010-09-07 15:34:51 +00:00
x += scale;
}
glEnd();
// Enable Z-buffer writing again
2010-10-24 12:56:35 +00:00
glDepthMask(GL_TRUE);
2010-09-07 15:34:51 +00:00
glPopMatrix();
}
//========================================================================
// Draw all views
//========================================================================
2010-10-24 12:56:35 +00:00
static void drawAllViews(void)
2010-09-07 15:34:51 +00:00
{
const GLfloat light_position[4] = {0.0f, 8.0f, 8.0f, 1.0f};
const GLfloat light_diffuse[4] = {1.0f, 1.0f, 1.0f, 1.0f};
const GLfloat light_specular[4] = {1.0f, 1.0f, 1.0f, 1.0f};
const GLfloat light_ambient[4] = {0.2f, 0.2f, 0.3f, 1.0f};
double aspect;
// Calculate aspect of window
2010-10-24 12:56:35 +00:00
if (height > 0)
aspect = (double) width / (double) height;
2010-09-07 15:34:51 +00:00
else
aspect = 1.0;
// Clear screen
2010-10-24 12:56:35 +00:00
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2010-09-07 15:34:51 +00:00
// Enable scissor test
2010-10-24 12:56:35 +00:00
glEnable(GL_SCISSOR_TEST);
2010-09-07 15:34:51 +00:00
// Enable depth test
2010-10-24 12:56:35 +00:00
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
2010-09-07 15:34:51 +00:00
// ** ORTHOGONAL VIEWS **
// For orthogonal views, use wireframe rendering
2010-10-24 12:56:35 +00:00
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
2010-09-07 15:34:51 +00:00
// Enable line anti-aliasing
2010-10-24 12:56:35 +00:00
glEnable(GL_LINE_SMOOTH);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
2010-09-07 15:34:51 +00:00
// Setup orthogonal projection matrix
2010-10-24 12:56:35 +00:00
glMatrixMode(GL_PROJECTION);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
glOrtho(-3.0 * aspect, 3.0 * aspect, -3.0, 3.0, 1.0, 50.0);
2010-09-07 15:34:51 +00:00
// Upper left view (TOP VIEW)
2010-10-24 12:56:35 +00:00
glViewport(0, height / 2, width / 2, height / 2);
glScissor(0, height / 2, width / 2, height / 2);
glMatrixMode(GL_MODELVIEW);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluLookAt(0.0f, 10.0f, 1e-3f, // Eye-position (above)
0.0f, 0.0f, 0.0f, // View-point
0.0f, 1.0f, 0.0f); // Up-vector
drawGrid(0.5, 12);
2010-09-07 15:34:51 +00:00
drawScene();
// Lower left view (FRONT VIEW)
2010-10-24 12:56:35 +00:00
glViewport(0, 0, width / 2, height / 2);
glScissor(0, 0, width / 2, height / 2);
glMatrixMode(GL_MODELVIEW);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluLookAt(0.0f, 0.0f, 10.0f, // Eye-position (in front of)
0.0f, 0.0f, 0.0f, // View-point
0.0f, 1.0f, 0.0f); // Up-vector
drawGrid(0.5, 12);
2010-09-07 15:34:51 +00:00
drawScene();
// Lower right view (SIDE VIEW)
2010-10-24 12:56:35 +00:00
glViewport(width / 2, 0, width / 2, height / 2);
glScissor(width / 2, 0, width / 2, height / 2);
glMatrixMode(GL_MODELVIEW);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluLookAt(10.0f, 0.0f, 0.0f, // Eye-position (to the right)
0.0f, 0.0f, 0.0f, // View-point
0.0f, 1.0f, 0.0f); // Up-vector
drawGrid(0.5, 12);
2010-09-07 15:34:51 +00:00
drawScene();
// Disable line anti-aliasing
2010-10-24 12:56:35 +00:00
glDisable(GL_LINE_SMOOTH);
glDisable(GL_BLEND);
2010-09-07 15:34:51 +00:00
// ** PERSPECTIVE VIEW **
// For perspective view, use solid rendering
2010-10-24 12:56:35 +00:00
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
2010-09-07 15:34:51 +00:00
// Enable face culling (faster rendering)
2010-10-24 12:56:35 +00:00
glEnable(GL_CULL_FACE);
glCullFace(GL_BACK);
glFrontFace(GL_CW);
2010-09-07 15:34:51 +00:00
// Setup perspective projection matrix
2010-10-24 12:56:35 +00:00
glMatrixMode(GL_PROJECTION);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluPerspective(65.0f, aspect, 1.0f, 50.0f);
2010-09-07 15:34:51 +00:00
// Upper right view (PERSPECTIVE VIEW)
2010-10-24 12:56:35 +00:00
glViewport(width / 2, height / 2, width / 2, height / 2);
glScissor(width / 2, height / 2, width / 2, height / 2);
glMatrixMode(GL_MODELVIEW);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
gluLookAt(3.0f, 1.5f, 3.0f, // Eye-position
0.0f, 0.0f, 0.0f, // View-point
0.0f, 1.0f, 0.0f); // Up-vector
2010-09-07 15:34:51 +00:00
// Configure and enable light source 1
2010-10-24 12:56:35 +00:00
glLightfv(GL_LIGHT1, GL_POSITION, light_position);
glLightfv(GL_LIGHT1, GL_AMBIENT, light_ambient);
glLightfv(GL_LIGHT1, GL_DIFFUSE, light_diffuse);
glLightfv(GL_LIGHT1, GL_SPECULAR, light_specular);
glEnable(GL_LIGHT1);
glEnable(GL_LIGHTING);
2010-09-07 15:34:51 +00:00
// Draw scene
drawScene();
// Disable lighting
2010-10-24 12:56:35 +00:00
glDisable(GL_LIGHTING);
2010-09-07 15:34:51 +00:00
// Disable face culling
2010-10-24 12:56:35 +00:00
glDisable(GL_CULL_FACE);
2010-09-07 15:34:51 +00:00
// Disable depth test
2010-10-24 12:56:35 +00:00
glDisable(GL_DEPTH_TEST);
2010-09-07 15:34:51 +00:00
// Disable scissor test
2010-10-24 12:56:35 +00:00
glDisable(GL_SCISSOR_TEST);
2010-09-07 15:34:51 +00:00
// Draw a border around the active view
2010-10-24 12:56:35 +00:00
if (active_view > 0 && active_view != 2)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
glOrtho(0.0, 2.0, 0.0, 2.0, 0.0, 1.0);
glMatrixMode(GL_MODELVIEW);
2010-09-07 15:34:51 +00:00
glLoadIdentity();
2010-10-24 12:56:35 +00:00
glTranslatef((GLfloat) ((active_view - 1) & 1), (GLfloat) (1 - (active_view - 1) / 2), 0.0f);
glColor3f(1.0f, 1.0f, 0.6f);
glBegin(GL_LINE_STRIP);
glVertex2i(0, 0);
glVertex2i(1, 0);
glVertex2i(1, 1);
glVertex2i(0, 1);
glVertex2i(0, 0);
2010-09-07 15:34:51 +00:00
glEnd();
}
}
//========================================================================
// Window size callback function
//========================================================================
2010-10-24 12:56:35 +00:00
static void windowSizeFun(GLFWwindow window, int w, int h)
2010-09-07 15:34:51 +00:00
{
width = w;
height = h > 0 ? h : 1;
do_redraw = 1;
}
//========================================================================
// Window refresh callback function
//========================================================================
2010-10-24 12:56:35 +00:00
static void windowRefreshFun(GLFWwindow window)
2010-09-07 15:34:51 +00:00
{
do_redraw = 1;
}
//========================================================================
// Mouse position callback function
//========================================================================
2010-10-24 12:56:35 +00:00
static void mousePosFun(GLFWwindow window, int x, int y)
2010-09-07 15:34:51 +00:00
{
// Depending on which view was selected, rotate around different axes
2010-10-24 12:56:35 +00:00
switch (active_view)
2010-09-07 15:34:51 +00:00
{
case 1:
rot_x += y - ypos;
rot_z += x - xpos;
do_redraw = 1;
break;
case 3:
rot_x += y - ypos;
rot_y += x - xpos;
do_redraw = 1;
break;
case 4:
rot_y += x - xpos;
rot_z += y - ypos;
do_redraw = 1;
break;
default:
// Do nothing for perspective view, or if no view is selected
break;
}
// Remember mouse position
xpos = x;
ypos = y;
}
//========================================================================
// Mouse button callback function
//========================================================================
2010-10-24 12:56:35 +00:00
static void mouseButtonFun(GLFWwindow window, int button, int action)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
if ((button == GLFW_MOUSE_BUTTON_LEFT) && action == GLFW_PRESS)
2010-09-07 15:34:51 +00:00
{
// Detect which of the four views was clicked
active_view = 1;
2010-10-24 12:56:35 +00:00
if (xpos >= width / 2)
2010-09-07 15:34:51 +00:00
active_view += 1;
2010-10-24 12:56:35 +00:00
if (ypos >= height / 2)
2010-09-07 15:34:51 +00:00
active_view += 2;
}
2010-10-24 12:56:35 +00:00
else if (button == GLFW_MOUSE_BUTTON_LEFT)
2010-09-07 15:34:51 +00:00
{
// Deselect any previously selected view
active_view = 0;
}
do_redraw = 1;
}
//========================================================================
2010-10-24 12:56:35 +00:00
// main
2010-09-07 15:34:51 +00:00
//========================================================================
2010-10-24 12:56:35 +00:00
int main(void)
2010-09-07 15:34:51 +00:00
{
GLFWwindow window;
2010-09-07 15:34:51 +00:00
// Initialise GLFW
if (!glfwInit(NULL))
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
fprintf(stderr, "Failed to initialize GLFW\n");
exit(EXIT_FAILURE);
2010-09-07 15:34:51 +00:00
}
glfwOpenWindowHint(GLFW_DEPTH_BITS, 16);
2010-09-07 15:34:51 +00:00
// Open OpenGL window
2010-10-24 12:56:35 +00:00
window = glfwOpenWindow(500, 500, GLFW_WINDOWED, "Split view demo", NULL);
if (!window)
2010-09-07 15:34:51 +00:00
{
2010-10-24 12:56:35 +00:00
fprintf(stderr, "Failed to open GLFW window\n");
exit(EXIT_FAILURE);
2010-09-07 15:34:51 +00:00
}
// Enable vsync
2010-10-24 12:56:35 +00:00
glfwSwapInterval(1);
2010-09-07 15:34:51 +00:00
// Enable sticky keys
glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);
2010-09-07 15:34:51 +00:00
// Enable mouse cursor (only needed for fullscreen mode)
glfwSetInputMode(window, GLFW_CURSOR_MODE, GLFW_CURSOR_NORMAL);
2010-09-07 15:34:51 +00:00
// Set callback functions
2010-10-24 16:28:55 +00:00
glfwSetWindowSizeCallback(windowSizeFun);
glfwSetWindowRefreshCallback(windowRefreshFun);
glfwSetMousePosCallback(mousePosFun);
glfwSetMouseButtonCallback(mouseButtonFun);
2010-09-07 15:34:51 +00:00
// Main loop
do
{
// Only redraw if we need to
2010-10-24 12:56:35 +00:00
if (do_redraw)
2010-09-07 15:34:51 +00:00
{
// Draw all views
drawAllViews();
// Swap buffers
glfwSwapBuffers();
do_redraw = 0;
}
// Wait for new events
glfwWaitEvents();
} // Check if the ESC key was pressed or the window was closed
2010-10-24 12:56:35 +00:00
while (glfwIsWindow(window) &&
glfwGetKey(window, GLFW_KEY_ESCAPE) != GLFW_PRESS);
2010-09-07 15:34:51 +00:00
// Close OpenGL window and terminate GLFW
glfwTerminate();
2010-10-24 12:56:35 +00:00
exit(EXIT_SUCCESS);
2010-09-07 15:34:51 +00:00
}