-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab2-4.c
123 lines (97 loc) · 3.1 KB
/
lab2-4.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include <GL/glut.h>
#include <math.h>
#include "helpers.h"
#include "cube.h"
GLuint textureId;
Model* bunny;
void init()
{
// Place one-time initialization code here
textureId = loadTexture("../models/LittleNell/Tree/tree.jpg");
bunny = loadModel("../models/LittleNell/Tree/tree.obj");
}
void display()
{
// This function is called whenever it is time to render
// a new frame; due to the idle()-function below, this
// function will get called several times per second
// Clear framebuffer & zbuffer
glClearColor(0.3, 0, 0, 1);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// Position light 0
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
GLfloat light_position[] = { 0.0, 0.0, 1.0, 0.0 };
glLightfv(GL_LIGHT0, GL_POSITION, light_position);
// Enable lighting and light 0
//glEnable(GL_LIGHTING);
//glEnable(GL_LIGHT0);
//glEnable(GL_NORMALIZE);
// Set default material properties
GLfloat mat_shininess[] = { 50.0 };
GLfloat mat_diffuseColor[] = { 1.0, 1.0, 1.0, 1.0 };
GLfloat mat_specularColor[] = { 1.0, 1.0, 1.0, 1.0 };
glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);
glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuseColor);
glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specularColor);
// Setup projection matrix
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(90, 1, 0.01, 100);
// Setup object matrix
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glLoadMatrixd(getObjectMatrix());
// Enable Z-buffering
glEnable(GL_DEPTH_TEST);
// Enable Gouraud shading
glShadeModel(GL_SMOOTH);
// Enable backface culling
glEnable(GL_CULL_FACE);
glCullFace(GL_BACK);
// Enable texturing
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, textureId);
//
// Draw cube using array-based API
//glEnableClientState(GL_COLOR_ARRAY);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glColorPointer(3, GL_FLOAT, 0, bunny->colorArray);
glVertexPointer(3, GL_FLOAT, 0, bunny->vertexArray);
glNormalPointer(GL_FLOAT, 0, bunny->normalArray);
glTexCoordPointer(2, GL_FLOAT, 0, bunny->texCoordArray);
glDrawElements(GL_TRIANGLES, bunny->numIndices, GL_UNSIGNED_INT, bunny->indexArray);
// Swap front- and backbuffers
glutSwapBuffers();
}
void idle()
{
// This function is called whenever the computer is idle
// As soon as the machine is idle, ask GLUT to trigger rendering of a new
// frame
glutPostRedisplay();
}
int main(int argc, char **argv)
{
glutInit(&argc, argv);
// Configure GLUT:
// - framebuffer with RGB + Alpha values per pixel
// - Z-buffer
// - two sets of above mentioned buffers, so that
// doublebuffering is possible
//
// Initial window size 800x800
glutInitDisplayMode(GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE);
glutInitWindowSize(800, 800);
glutCreateWindow("OpenGL test");
initHelperLibrary();
init();
// Register our display- and idle-functions with GLUT
glutDisplayFunc(display);
glutIdleFunc(idle);
// Enter GLUT's main loop; this function will never return
glutMainLoop();
return 0;
}