-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab2-6.c
180 lines (148 loc) · 5.21 KB
/
lab2-6.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#include <GL/glut.h>
#include <math.h>
#include "helpers.h"
#include "cube.h"
GLuint textureId;
Model* windmill[4];
int MILL_BLADE = 0;
int MILL_BALCONY = 1;
int MILL_ROOF = 2;
int MILL_WALLS = 3;
void init()
{
// Place one-time initialization code here
//textureId = loadTexture("../models/LittleNell/Tree/tree.jpg");
windmill[MILL_BLADE] = loadModel("../models/windmill/blade.obj");
windmill[MILL_BALCONY] = loadModel("../models/windmill/windmill-balcony.obj");
windmill[MILL_ROOF] = loadModel("../models/windmill/windmill-roof.obj");
windmill[MILL_WALLS] = loadModel("../models/windmill/windmill-walls.obj");
//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(getCameraMatrix());
// 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
int to_draw;
float spin_speed = 90;
for (to_draw = 1; to_draw < 4; to_draw++) {
glColor3f(0.8, 0+to_draw*0.2, 0);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, windmill[to_draw]->vertexArray);
glNormalPointer(GL_FLOAT, 0, windmill[to_draw]->normalArray);
glDrawElements(GL_TRIANGLES, windmill[to_draw]->numIndices, GL_UNSIGNED_INT, windmill[to_draw]->indexArray);
}
glTranslatef(4.6, 9.15, 0);
glRotatef(getElapsedTime()*spin_speed, 1, 0, 0);
glPushMatrix();
glColor3f(0.8, 0, 0.4);
glRotatef(0, 1, 0, 0);
//glRotatef(0, 1, 0, to_draw * 90);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, windmill[0]->vertexArray);
glNormalPointer(GL_FLOAT, 0, windmill[0]->normalArray);
glDrawElements(GL_TRIANGLES, windmill[0]->numIndices, GL_UNSIGNED_INT, windmill[0]->indexArray);
glPopMatrix();
glPushMatrix();
glColor3f(0.8, 0, 0.4);
glRotatef(90, 1, 0, 0);
//glRotatef(0, 1, 0, to_draw * 90);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, windmill[0]->vertexArray);
glNormalPointer(GL_FLOAT, 0, windmill[0]->normalArray);
glDrawElements(GL_TRIANGLES, windmill[0]->numIndices, GL_UNSIGNED_INT, windmill[0]->indexArray);
glPopMatrix();
glPushMatrix();
glColor3f(0.8, 0, 0.4);
glRotatef(180, 1, 0, 0);
//glRotatef(0, 1, 0, to_draw * 90);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, windmill[0]->vertexArray);
glNormalPointer(GL_FLOAT, 0, windmill[0]->normalArray);
glDrawElements(GL_TRIANGLES, windmill[0]->numIndices, GL_UNSIGNED_INT, windmill[0]->indexArray);
glPopMatrix();
glPushMatrix();
glColor3f(0.8, 0, 0.4);
glRotatef(270, 1, 0, 0);
//glRotatef(0, 1, 0, to_draw * 90);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, windmill[0]->vertexArray);
glNormalPointer(GL_FLOAT, 0, windmill[0]->normalArray);
glDrawElements(GL_TRIANGLES, windmill[0]->numIndices, GL_UNSIGNED_INT, windmill[0]->indexArray);
glPopMatrix();
// 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;
}