-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.cpp
354 lines (294 loc) · 8.48 KB
/
Main.cpp
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <fstream>
#include <assert.h>
#include "Terrain.h"
#include "SkyBox.h"
#include "Lava.h"
#include "Building.h"
#include "Refinery.h"
#include "Trees.h"
/**
* Alien Plant by Ross Warren
* OpenGL Assignment 2
*/
#ifndef M_PI
#define M_PI 3.14159265f
#endif
#pragma comment(lib, "glew32.lib")
float xpos = 512.0f, ypos = 512.0f, zpos = 512.0f, xrot = 758.0f, yrot = 238.0f, angle = 0.0f;
float lastx, lasty;
// for fps
int time;
int frame = 0;
int timebase = 0;
int fps = 0;
bool wireframe = false; // show wireframe?
bool refinerydisplay = false; // display the refinery?
SkyBox skyBox;
Lava lava;
Building building;
Refinery refinery;
Trees trees;
Terrain terrain;
/** Setup the camera viewpoint */
void camera (void) {
int posX = (int)xpos;
int posZ = (int)zpos;
// stop camera from flipping
if (xrot > 90) xrot = 90;
if (xrot < -90) xrot = -90;
// stop movement outside of skybox
if (zpos > 800) zpos = 800;
if (zpos < 200) zpos = 200;
if (xpos > 800) xpos = 800;
if (xpos < 200) xpos = 200;
ypos = lava.getHeight() + 65.0f; // fix to the height of boating on lava viewpoint
// rotate to the rotation variables
glRotatef(xrot, 1.0f, 0.0f, 0.0f);
glRotatef(yrot, 0.0f, 1.0f, 0.0f);
// translate to the position variables
glTranslated(-xpos, -ypos, -zpos);
}
/** setup the fog */
void fog(void) {
GLfloat fogColor[] = {0.5f, 0.5f, 0.5f, 1};
glFogfv(GL_FOG_COLOR, fogColor);
glFogi(GL_FOG_MODE, GL_LINEAR);
glFogf(GL_FOG_START, 200.0f);
glFogf(GL_FOG_END, 850.0f);
}
/** calculate the fps */
void calcFPS() {
frame++; // increment the frame count since the last check
time = glutGet(GLUT_ELAPSED_TIME);
if (time - timebase > 200) { // check every 1/5th of a second
fps = (int)(frame * 1000 / (time-timebase)); // set the calculated FPS
timebase = time;
frame = 0;
}
}
/** draw a string to the screen */
void drawString(std::string s) {
void * font = GLUT_BITMAP_9_BY_15;
for (std::string::iterator i = s.begin(); i != s.end(); ++i) {
char c = *i;
glutBitmapCharacter(font, c);
}
}
/** draw the controls and informational text */
void drawText(void) {
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
gluOrtho2D(0.0, 400, 0.0, 500);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
std::string strings [5];
strings[0] = "Ross Warren's OpenGL Assignement";
strings[1] = "Controls:";
strings[2] = "Movement: WASD, Decrease tree complexity: Z, Increase tree complexity: X, Recalculate trees: C, Relocate trees: T, Raise lava: E, Lower lava: F";
strings[3] = "Decrease terrain complexity: N, Increase terrain complexity: M, Toggle wireframe: V";
float complexity = (float)terrain.GetComplexity();
complexity = complexity / 32.0f * 100.0f;
complexity = 1 / complexity * 625.0f;
std::stringstream ss;
ss << "Tree complexity: " << trees.GetComplexity() << ", Frames per second: " << fps << ", Terrain complexity: " << complexity << "%";
strings[4] = ss.str();
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
int height = 60;
for (int i = 0; i < 5; i++) {
glRasterPos2i(10, height -= 10);
drawString(strings[i]);
}
glPopMatrix();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
}
/** opengl display method, draws everything */
void display (void) {
glClearColor(0.0, 0.0, 0.0, 1);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
GLfloat white[4] = {1.0f, 1.0f, 1.0f, 1.0f};
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, white); // material colour
calcFPS(); // calculate the frames per second
glPushMatrix();
camera(); // change the view to that of the camera
// display everything
skyBox.Display();
building.Display();
if (refinerydisplay) refinery.Display();
terrain.Display();
trees.Display();
lava.Display();
//terrain.DrawDots();
glPopMatrix();
glDisable(GL_LIGHTING);
drawText(); // draw the help and informational text
glEnable(GL_LIGHTING);
glutSwapBuffers();
}
/** Initialise OpenGL extensions for vertex buffer objects */
void initExtensions(void){
glGenBuffersARB = (PFNGLGENBUFFERSARBPROC) wglGetProcAddress("glGenBuffersARB");
glBindBufferARB = (PFNGLBINDBUFFERARBPROC) wglGetProcAddress("glBindBufferARB");
glBufferDataARB = (PFNGLBUFFERDATAARBPROC) wglGetProcAddress("glBufferDataARB");
glDeleteBuffersARB = (PFNGLDELETEBUFFERSARBPROC) wglGetProcAddress("glDeleteBuffersARB");
}
/** Initialisation method. Sets up OpenGL and calls initialisations of all the components */
void Init(void) {
initExtensions();
GLfloat pos[3] = {1024.0f, 800.0f, 0.0f};
GLfloat ambient[3] = {0.1f, 0.1f, 0.1f};
GLfloat diffuse[3] = {0.8f, 0.8f, 0.8f};
glLightfv(GL_LIGHT0, GL_AMBIENT, ambient);
glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse);
glLightfv(GL_LIGHT0, GL_POSITION, pos);
glEnable(GL_CULL_FACE);
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);//less or equal
glEnable(GL_NORMALIZE);
glEnable(GL_BLEND); //Enable alpha blending
glEnable(GL_TEXTURE_2D);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //Set the blend function
glShadeModel(GL_SMOOTH);
printf("Loading textures, building display lists and vertex buffer objects \n");
terrain.Init();
skyBox.Init();
lava.Init();
building.Init();
refinery.Init();
trees.SetUpHeights(terrain, lava.getHeight());
trees.Init();
printf("Welcome to Ross's OpenGL Assigment \n");
}
/** mouse movement to look around */
void mouseMovement(int x, int y) {
float diffx = x-lastx;
float diffy = y-lasty;
lastx = (float)x;
lasty = (float)y;
xrot += diffy;
yrot += diffx;
}
/** toggle wireframe mode */
void switchWireframe() {
glPolygonMode(GL_FRONT_AND_BACK, wireframe ? GL_FILL : GL_LINE);
wireframe = !wireframe;
}
/** keyboard controlled */
void keyboard(unsigned char key, int x, int y) {
float xrotrad, yrotrad;
switch(key) {
// move forwards
case 'w':
yrotrad = (yrot / 180.0f * M_PI);
xrotrad = (xrot / 180.0f * M_PI);
xpos += sin(yrotrad);
zpos -= cos(yrotrad);
ypos -= sin(xrotrad);
break;
// strafe left
case 'a':
yrotrad = (yrot / 180.0f * M_PI);
xpos -= cos(yrotrad);
zpos -= sin(yrotrad);
break;
// move backwards
case 's':
yrotrad = (yrot / 180.0f * M_PI);
xrotrad = (xrot / 180.0f * M_PI);
xpos -= sin(yrotrad);
zpos += cos(yrotrad);
ypos += sin(xrotrad);
break;
// move right
case 'd':
yrotrad = (yrot / 180.0f * M_PI);
xpos += cos(yrotrad);
zpos += sin(yrotrad);
break;
// increase lava height
case 'e':
lava.increaseHeight();
break;
// decrease lava height
case 'f':
lava.decreaseHeight();
break;
// decrease tree complexity
case 'z':
printf("Decreasing tree complexity \n");
trees.DecreaseComplexity();
break;
// increase tree complexity
case 'x':
printf("Increasing tree complexity \n");
trees.IncreaseComplexity();
break;
// regenerate trees
case 'c':
printf("Regenerating trees \n");
trees.Regen();
break;
// decrease terrain complexity
case 'n':
printf("Decreasing terrain complexity \n");
terrain.DecreaseComplexity();
break;
// increase terrain complexity
case 'm':
printf("Increasing terrain complexity \n");
terrain.IncreaseComplexity();
break;
// toggle wireframe mode
case 'v':
if (!wireframe) printf("Enabling wireframe \n"); else printf("Disabling wireframe \n");
switchWireframe();
break;
// toggle displaying of refinery
case 'r':
if (!refinerydisplay) printf("Enabling refinery \n"); else printf("Disabling refinery \n");
refinerydisplay = !refinerydisplay;
break;
// set up tree heights
case 't':
printf("Moving trees \n");
trees.SetUpHeights(terrain, lava.getHeight());
break;
}
}
/** reshape called when the window is resized */
void reshape(int w, int h) {
glViewport(0, 0, (GLsizei)w, (GLsizei)h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(60, (GLfloat)w / (GLfloat)h, 1.0, 3000.0);
glMatrixMode(GL_MODELVIEW);
}
int main (int argc, char **argv) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH | GLUT_RGBA | GLUT_MULTISAMPLE);
glutInitWindowSize(800, 640);
glutInitWindowPosition(400, 100);
puts("Show the refinery? This will not run on slower computers. (Y or N).");
char answer;
std::cin >> answer;
refinerydisplay = (answer == 'y') ? true : false;
glutCreateWindow("Ross Warren's OpenGL Assignment");
Init();
glutDisplayFunc(display);
glutIdleFunc(display);
glutReshapeFunc(reshape);
glutKeyboardFunc(keyboard);
glutPassiveMotionFunc(mouseMovement);
glutMainLoop();
return 0;
}