Skip to content

pontazaricardo/OpenGL_Shadings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenGL_Shadings

This project shows how to perform the three classical shadings: Polygon shading, Gouraud shading and Phong shading over 3D models using OpenGL.

demo

Installation

There are two main steps to run the code of this project:

  1. Copy the additional OpenGL libraries (added to the project) in their respective places as listed below.
  2. Open the project in Visual Studio.

Libraries

You need to include the OpenGL libraries in the following locations:

  1. C:\Program Files\Microsoft Visual Studio 10.0\VC\dll:
    1. glu32.dll
    2. glut32.dll
    3. opengl32.dll
  2. C:\Program Files\Microsoft Visual Studio 10.0\VC\include\GL:
    1. GL.H
    2. GLAux.h
    3. glew.h
    4. GLU.H
    5. glui.h
    6. glut.
    7. glxew.h
    8. wglew.h
  3. C:\Program Files\Microsoft Visual Studio 10.0\VC\lib:
    1. glew32.lib
    2. glew32d.lib
    3. glew32s.lib
    4. glfw3.lib
    5. glfw3dll.lib
    6. GLU32.LIB
    7. glui32.lib
    8. glut32.lib
  4. C:\Windows\System32:
    1. glu32.dll
    2. glut32.dll

The list above shows how to create a local installation of OpenGl. If you want to use OpenGL just for this project, include the glu32.dll and glut32.dll in the folder of the generated executable.

lib01

Keyboard controls

When running the actual control, a set of keyboard controls can be used:

  1. 'm': Change model from the list of models loaded by default.
  2. 's': Change the shading model applied in the selected 3D model.
  3. 'a': Activates the rotation movement of the model.
  4. '0': Camera zoom in.
  5. '9': Camera zoom out.

Code

There are different parts of the code that are worth to mention.

Keyboard options

The function below

void keyboard(unsigned char key,int x,int y)

includes all the controls that are available from the keyboard.

Main

The Main code is composed as

int main(int argc,char *argv[])
{
    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DEPTH|GLUT_DOUBLE|GLUT_RGBA);
    glutInitWindowPosition(60,50);
    glutInitWindowSize(900,700);
    glutCreateWindow("Shading examples");

    glutDisplayFunc(display);
    glutIdleFunc(idle);
    glutReshapeFunc(reshape);
    glutKeyboardFunc(keyboard);
    glutMotionFunc(motion);
    glutMouseFunc(mouse);
    
    myInit();
    glutMainLoop();
        
    return 0;
}

where the default OpenGL functions are included prior to the myInit() function. If you want to add custom code, please do so in the myInit() or after it. The glut functions are standard implementations of OpenGl.

Visualization

When running the program, the defaul 3D models are loaded. About the visualization:

  1. To change the displayed model, press 'm'.
  2. To start and stop the rotation movement, press 'a'.

demo2

3D models

In the /main/MultiShader/models folder, there are 15 tri models, but by default only 4 are loaded in the code. If you want to add the extra ones, you need to first (in the main.cpp file) add extra variables

TRIModel csieModel,ballModel,f18Model,csieB1;

then load the models from the files

void myInit()
{
	ballModel.loadFromFile("models/balls.tri");
	csieModel.loadFromFile("models/csie.tri");
	f18Model.loadFromFile("models/Car_road.tri");
	csieB1.loadFromFile("models/Easter.tri");

	changeModel(currentModel);

	...

}

and finally add them in the switch function

void changeModel(int m)
{
	switch(m)
	{
		case 2:
			TRIobj=&csieModel;
			break;
		case 1:
			TRIobj=&ballModel;
			break;
		case 3:
			TRIobj=&f18Model;
			break;    
		case 4:
			TRIobj=&csieB1;
		}    
	currentModel=m;
}

Demo

A demo of the project can be seen below.

demo02

demo03

About

This project shows how to perform the classical Polygon shading, Gouraud shading and Phong shading over 3D models using OpenGL.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages