-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
431 lines (346 loc) · 13.1 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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
#ifdef WIN32
#include <SDL.h>
#undef main
#else
#include <SDL2/SDL.h>
#endif
#include <GL/glew.h>
#include <string_view>
#include <stdexcept>
#include <iostream>
#include <chrono>
#include <vector>
#include <map>
#include <cmath>
#include <fstream>
#include <sstream>
#define GLM_FORCE_SWIZZLE
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/vec3.hpp>
#include <glm/mat4x4.hpp>
#include <glm/ext/matrix_transform.hpp>
#include <glm/ext/matrix_clip_space.hpp>
#include <glm/ext/scalar_constants.hpp>
#include <glm/gtx/quaternion.hpp>
#include <glm/gtx/string_cast.hpp>
std::string to_string(std::string_view str)
{
return std::string(str.begin(), str.end());
}
void sdl2_fail(std::string_view message)
{
throw std::runtime_error(to_string(message) + SDL_GetError());
}
void glew_fail(std::string_view message, GLenum error)
{
throw std::runtime_error(to_string(message) + reinterpret_cast<const char *>(glewGetErrorString(error)));
}
const char vertex_shader_source[] =
R"(#version 330 core
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
layout (location = 0) in vec3 in_position;
layout (location = 1) in vec3 in_normal;
layout (location = 2) in ivec2 in_bone_id;
layout (location = 3) in vec2 in_bone_weight;
out vec3 normal;
out vec3 position;
uniform vec4 bone_rotation[64];
uniform vec3 bone_translation[64];
uniform float bone_scaling[64];
vec4 quat_mult(vec4 q1, vec4 q2)
{
return vec4(q1.x * q2.x - dot(q1.yzw, q2.yzw), q1.x * q2.yzw + q2.x * q1.yzw + cross(q1.yzw, q2.yzw));
}
vec4 quat_conj(vec4 q)
{
return vec4(q.x, -q.yzw);
}
vec3 quat_rotate(vec4 q, vec3 v)
{
vec4 tmp = quat_mult(vec4(0.0, v), quat_conj(q));
//return quat_mult(q, tmp).yzw;
return quat_mult(quat_mult(q, vec4(0.0, v)), quat_conj(q)).yzw;
return quat_mult(q, quat_mult(vec4(0.0, v), quat_conj(q))).yzw;
}
vec3 transform(int id, vec3 v, int translate)
{
if (translate == 1) return bone_translation[id] + bone_scaling[id] * quat_rotate(bone_rotation[id],v);
return bone_scaling[id] * quat_rotate(bone_rotation[id], v);
}
void main()
{
vec3 first = transform(in_bone_id.x, in_position, 1);
vec3 second = transform(in_bone_id.y, in_position, 1);
position = (model * vec4(first * in_bone_weight.x + second * in_bone_weight.y, 1.0)).xyz;
//position = (model * vec4(quat_rotate(bone_rotation[0], in_position), 1.0)).xyz;
gl_Position = projection * view * vec4(position, 1.0);
first = transform(in_bone_id.x, in_normal, 0);
second = transform(in_bone_id.y, in_normal, 0);
normal = normalize((model * vec4(first * in_bone_weight.x + second * in_bone_weight.y, 0.0)).xyz);
}
)";
const char fragment_shader_source[] =
R"(#version 330 core
uniform vec3 camera_position;
uniform vec3 ambient;
uniform vec3 light_direction;
uniform vec3 light_color;
in vec3 normal;
in vec3 position;
layout (location = 0) out vec4 out_color;
void main()
{
vec3 reflected = 2.0 * normal * dot(normal, light_direction) - light_direction;
vec3 camera_direction = normalize(camera_position - position);
vec3 albedo = vec3(1.0, 1.0, 1.0);
vec3 light = ambient + light_color * (max(0.0, dot(normal, light_direction)) + pow(max(0.0, dot(camera_direction, reflected)), 64.0));
vec3 color = albedo * light;
out_color = vec4(color, 1.0);
}
)";
GLuint create_shader(GLenum type, const char * source)
{
GLuint result = glCreateShader(type);
glShaderSource(result, 1, &source, nullptr);
glCompileShader(result);
GLint status;
glGetShaderiv(result, GL_COMPILE_STATUS, &status);
if (status != GL_TRUE)
{
GLint info_log_length;
glGetShaderiv(result, GL_INFO_LOG_LENGTH, &info_log_length);
std::string info_log(info_log_length, '\0');
glGetShaderInfoLog(result, info_log.size(), nullptr, info_log.data());
std::cout << info_log << std::endl;
system("pause");
throw std::runtime_error("Shader compilation failed: " + info_log);
}
return result;
}
GLuint create_program(GLuint vertex_shader, GLuint fragment_shader)
{
GLuint result = glCreateProgram();
glAttachShader(result, vertex_shader);
glAttachShader(result, fragment_shader);
glLinkProgram(result);
GLint status;
glGetProgramiv(result, GL_LINK_STATUS, &status);
if (status != GL_TRUE)
{
GLint info_log_length;
glGetProgramiv(result, GL_INFO_LOG_LENGTH, &info_log_length);
std::string info_log(info_log_length, '\0');
glGetProgramInfoLog(result, info_log.size(), nullptr, info_log.data());
throw std::runtime_error("Program linkage failed: " + info_log);
}
return result;
}
struct vertex
{
glm::vec3 position;
glm::vec3 normal;
std::uint8_t bone_ids[2];
std::uint8_t bone_weights[2];
};
struct bone
{
std::int32_t parent_id;
glm::vec3 offset;
glm::quat rotation;
};
struct bone_pose
{
glm::quat rotation = glm::quat(1.f, 0.f, 0.f, 0.f);
float scale = 1.f;
glm::vec3 translation = glm::vec3(0.f, 0.f, 0.f);
};
bone_pose operator * (bone_pose const & p1, bone_pose const & p2)
{
return {p1.rotation * p2.rotation, p1.scale * p2.scale, p1.scale * glm::rotate(p1.rotation, p2.translation) + p1.translation};
}
int main() try
{
if (SDL_Init(SDL_INIT_VIDEO) != 0)
sdl2_fail("SDL_Init: ");
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
SDL_Window * window = SDL_CreateWindow("Graphics course practice 10",
SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED,
800, 600,
SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_MAXIMIZED);
if (!window)
sdl2_fail("SDL_CreateWindow: ");
int width, height;
SDL_GetWindowSize(window, &width, &height);
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
if (!gl_context)
sdl2_fail("SDL_GL_CreateContext: ");
if (auto result = glewInit(); result != GLEW_NO_ERROR)
glew_fail("glewInit: ", result);
if (!GLEW_VERSION_3_3)
throw std::runtime_error("OpenGL 3.3 is not supported");
glClearColor(0.8f, 0.8f, 1.f, 0.f);
auto vertex_shader = create_shader(GL_VERTEX_SHADER, vertex_shader_source);
auto fragment_shader = create_shader(GL_FRAGMENT_SHADER, fragment_shader_source);
auto program = create_program(vertex_shader, fragment_shader);
GLuint model_location = glGetUniformLocation(program, "model");
GLuint view_location = glGetUniformLocation(program, "view");
GLuint projection_location = glGetUniformLocation(program, "projection");
GLuint camera_position_location = glGetUniformLocation(program, "camera_position");
GLuint ambient_location = glGetUniformLocation(program, "ambient");
GLuint light_direction_location = glGetUniformLocation(program, "light_direction");
GLuint light_color_location = glGetUniformLocation(program, "light_color");
GLuint bone_rotation[64];
GLuint bone_translation[64];
GLuint bone_scaling[64];
for (int i = 0; i < 64; i++) {
bone_rotation[i] = glGetUniformLocation(program, ("bone_rotation[" + std::to_string(i) + "]").data());
bone_translation[i] = glGetUniformLocation(program, ("bone_translation[" + std::to_string(i) + "]").data());
bone_scaling[i] = glGetUniformLocation(program, ("bone_scaling[" + std::to_string(i) + "]").data());
}
std::vector<vertex> vertices;
std::vector<std::uint32_t> indices;
std::vector<bone> bones;
std::vector<std::vector<bone_pose>> poses(6);
{
std::ifstream file(PRACTICE_SOURCE_DIRECTORY "/human.bin", std::ios::binary);
std::uint32_t vertex_count;
std::uint32_t index_count;
file.read((char*)(&vertex_count), sizeof(vertex_count));
file.read((char*)(&index_count), sizeof(index_count));
vertices.resize(vertex_count);
indices.resize(index_count);
file.read((char*)vertices.data(), vertices.size() * sizeof(vertices[0]));
file.read((char*)indices.data(), indices.size() * sizeof(indices[0]));
}
{
std::ifstream file(PRACTICE_SOURCE_DIRECTORY "/bones.bin", std::ios::binary);
std::uint32_t bone_count;
file.read((char*)(&bone_count), sizeof(bone_count));
bones.resize(bone_count);
file.read((char*)(bones.data()), bones.size() * sizeof(bones[0]));
}
for (std::size_t i = 0; i < 6; ++i)
{
std::ifstream file(PRACTICE_SOURCE_DIRECTORY "/pose_" + std::to_string(i) + ".bin", std::ios::binary);
poses[i].resize(bones.size());
file.read((char*)(poses[i].data()), poses[i].size() * sizeof(poses[i][0]));
}
std::cout << "Loaded " << vertices.size() << " vertices, " << indices.size() << " indices, " << bones.size() << " bones" << std::endl;
std::vector<bone_pose> bone_poses(bones.size());
GLuint vao, vbo, ebo;
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
glGenBuffers(1, &vbo);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
glBufferData(GL_ARRAY_BUFFER, vertices.size() * sizeof(vertices[0]), vertices.data(), GL_STATIC_DRAW);
glGenBuffers(1, &ebo);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices.size() * sizeof(indices[0]), indices.data(), GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(vertex), (void*)(0));
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, sizeof(vertex), (void*)(12));
glEnableVertexAttribArray(2);
glVertexAttribIPointer(2, 2, GL_UNSIGNED_BYTE, sizeof(vertex), (void*)(24));
glEnableVertexAttribArray(3);
glVertexAttribPointer(3, 2, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(vertex), (void*)(26));
static_assert(sizeof(vertex) == 28);
auto last_frame_start = std::chrono::high_resolution_clock::now();
float time = 0.f;
std::map<SDL_Keycode, bool> button_down;
float view_angle = 0.f;
float camera_distance = 3.f;
float camera_height = 1.2f;
float model_rotation = 0.f;
bool running = true;
while (running)
{
for (SDL_Event event; SDL_PollEvent(&event);) switch (event.type)
{
case SDL_QUIT:
running = false;
break;
case SDL_WINDOWEVENT: switch (event.window.event)
{
case SDL_WINDOWEVENT_RESIZED:
width = event.window.data1;
height = event.window.data2;
glViewport(0, 0, width, height);
break;
}
break;
case SDL_KEYDOWN:
button_down[event.key.keysym.sym] = true;
break;
case SDL_KEYUP:
button_down[event.key.keysym.sym] = false;
break;
}
if (!running)
break;
auto now = std::chrono::high_resolution_clock::now();
float dt = std::chrono::duration_cast<std::chrono::duration<float>>(now - last_frame_start).count();
last_frame_start = now;
time += dt;
if (button_down[SDLK_UP])
camera_distance -= 3.f * dt;
if (button_down[SDLK_DOWN])
camera_distance += 3.f * dt;
if (button_down[SDLK_LEFT])
model_rotation -= 3.f * dt;
if (button_down[SDLK_RIGHT])
model_rotation += 3.f * dt;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
float near = 0.1f;
float far = 100.f;
glm::mat4 model(1.f);
model = glm::rotate(model, model_rotation, {0.f, 1.f, 0.f});
model = glm::rotate(model, -glm::pi<float>() / 2.f, {1.f, 0.f, 0.f});
glm::mat4 view(1.f);
view = glm::translate(view, {0.f, -camera_height, -camera_distance});
view = glm::rotate(view, view_angle, {1.f, 0.f, 0.f});
glm::mat4 projection = glm::perspective(glm::pi<float>() / 2.f, (1.f * width) / height, near, far);
glm::vec3 camera_position = (glm::inverse(view) * glm::vec4(0.f, 0.f, 0.f, 1.f)).xyz();
glUseProgram(program);
for (int i = 0; i < bones.size(); i++) {
bone Bone = bones[i];
bone_pose last;
if (Bone.parent_id >= 0) last = bone_poses[Bone.parent_id];
bone_poses[i] = last * poses[1][i];
//bone_poses[i] = bone_pose();
glUniform4f(bone_rotation[i], bone_poses[i].rotation.w, bone_poses[i].rotation.x, bone_poses[i].rotation.y, bone_poses[i].rotation.z);
//glUniform4f(bone_rotation[i], 1.f, 0.f, 0.f, 0.f);
glUniform3f(bone_translation[i], bone_poses[i].translation.x, bone_poses[i].translation.y, bone_poses[i].translation.z);
glUniform1f(bone_scaling[i], bone_poses[i].scale);
}
glUniformMatrix4fv(model_location, 1, GL_FALSE, reinterpret_cast<float *>(&model));
glUniformMatrix4fv(view_location, 1, GL_FALSE, reinterpret_cast<float *>(&view));
glUniformMatrix4fv(projection_location, 1, GL_FALSE, reinterpret_cast<float *>(&projection));
glUniform3fv(camera_position_location, 1, (float*)(&camera_position));
glUniform3f(ambient_location, 0.2f, 0.2f, 0.4f);
glUniform3f(light_direction_location, 1.f / std::sqrt(3.f), 1.f / std::sqrt(3.f), 1.f / std::sqrt(3.f));
glUniform3f(light_color_location, 0.8f, 0.3f, 0.f);
glBindVertexArray(vao);
glDrawElements(GL_TRIANGLES, indices.size(), GL_UNSIGNED_INT, nullptr);
SDL_GL_SwapWindow(window);
}
SDL_GL_DeleteContext(gl_context);
SDL_DestroyWindow(window);
}
catch (std::exception const & e)
{
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}