-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.c
140 lines (110 loc) · 2.9 KB
/
helpers.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include "helpers.h"
#include "readppm.h"
#include "zpr.h"
#include "readjpeg.h"
#include "loadobj.h"
static double startTime = 0;
void resetElapsedTime()
{
struct timeval timeVal;
gettimeofday(&timeVal, 0);
startTime = (double) timeVal.tv_sec + (double) timeVal.tv_usec * 0.000001;
}
void initHelperLibrary()
{
resetElapsedTime();
zprInit();
}
float getElapsedTime()
{
struct timeval timeVal;
gettimeofday(&timeVal, 0);
double currentTime = (double) timeVal.tv_sec
+ (double) timeVal.tv_usec * 0.000001;
return currentTime - startTime;
}
GLuint loadTexture(char* name)
{
GLuint texNum;
int width = 0, height = 0;
char* pixelData = 0;
int nameLen = strlen(name);
printf("Loading texture %s\n", name);
if ((nameLen >= 4 && (!strcmp(name + nameLen - 4, ".jpg")
|| !strcmp(name + nameLen - 4, ".JPG")))
|| (nameLen >= 5 && (!strcmp(name + nameLen - 5, ".jpeg")
|| !strcmp(name + nameLen - 5, ".JPEG"))))
{
read_JPEG_file(name, &pixelData, &width, &height);
}
else if (nameLen >= 4 && (!strcmp(name + nameLen - 4, ".ppm")
|| !strcmp(name + nameLen - 4, ".PPM")))
{
pixelData = readppm(name, &width, &height);
}
if (!pixelData)
exit(0);
glGenTextures(1, &texNum);
glBindTexture(GL_TEXTURE_2D, texNum);
glTexImage2D(GL_TEXTURE_2D, 0, 3, width, height, 0,
GL_RGB, GL_UNSIGNED_BYTE, pixelData);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
free(pixelData);
return texNum;
}
GLdouble* getObjectMatrix()
{
return zprGetObjectMatrix();
}
GLdouble* getCameraMatrix()
{
return zprGetCameraMatrix();
}
Model* loadModel(char* name)
{
Model* model = 0;
int nameLen = strlen(name);
printf("Loading model %s\n", name);
if (nameLen >= 4 && (!strcmp(name + nameLen - 4, ".obj")
|| !strcmp(name + nameLen - 4, ".OBJ")))
{
model = loadOBJModel(name);
}
else
{
fprintf(stderr, "Unknown file extension for file %s\n", name);
fflush(stderr);
}
if (!model)
exit(0);
printf("Model has vertex colors: %s\n",
model->colorArray ? "Yes" : "No");
printf("Model has vertex normals: %s\n", model->normalArray ? "Yes" : "No");
printf("Model has texture coordinates: %s\n",
model->texCoordArray ? "Yes" : "No");
return model;
}
void freeModel(Model* model)
{
if (model)
{
if (model->vertexArray)
free(model->vertexArray);
if (model->normalArray)
free(model->normalArray);
if (model->texCoordArray)
free(model->texCoordArray);
if (model->colorArray)
free(model->colorArray);
if (model->indexArray)
free(model->indexArray);
free(model);
}
}