Fix stupid typo
[opengl.git] / main.cpp
index aa78a224281b54efff84c3012daaa587b6add1fb..b7781ac2e0400a8b9d5e646c6344a8f5b0fa1989 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -20,6 +20,8 @@
 #include "program.hpp"
 #include "skybox.hpp"
 #include "image.hpp"
+#include "util.hpp"
+#include "ik.hpp"
 
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
 
@@ -40,17 +42,11 @@ float fov = glm::radians(30.f), znear = 0.01f, zfar = 10000.f;
 float yaw = 1.57, pitch = 0;
 
 struct Light {
-       glm::vec3 pos;
+       glm::mat4 trans;
        glm::vec3 color;
 };
 
-std::vector<Light> lights = {
-       { glm::vec3(5, 2, -5), glm::vec3(1) },
-       { glm::vec3(0, 2, -5), glm::vec3(1) },
-       { glm::vec3(-5, 2, -5), glm::vec3(1) },
-};
-
-int activeLight = 0;
+std::vector<Light> lights;
 
 bool discoLights = false;
 
@@ -96,8 +92,7 @@ void drawLight(Light &light) {
        glUseProgram(plainProg->progId);
        glBindVertexArray(lightVao);
        setProjectionAndViewUniforms(plainProg->progId);
-       glm::mat4 model = glm::translate(glm::mat4(1.f), light.pos);
-       model = glm::scale(model, glm::vec3(0.2));
+       glm::mat4 model = glm::scale(light.trans, glm::vec3(0.2));
        GLuint modelLoc = glGetUniformLocation(plainProg->progId, "model");
        glUniformMatrix4fv(modelLoc, 1, GL_FALSE, glm::value_ptr(model));
 
@@ -107,6 +102,33 @@ void drawLight(Light &light) {
        glDrawArrays(GL_TRIANGLES, 0, 36);
 }
 
+int findNodeTrans(const struct aiNode *n, const struct aiString name, glm::mat4 *dest) {
+       if (strcmp(n->mName.data, name.data) == 0) {
+               *dest = aiMatrixToMat4(n->mTransformation);
+               return 0;
+       }
+       for (int i = 0; i < n->mNumChildren; i++) {
+               if (findNodeTrans(n->mChildren[i], name, dest) == 0) {
+                       glm::mat4 t = aiMatrixToMat4(n->mTransformation);
+                       *dest = t * *dest;
+                       return 0;
+               }
+       }
+       return 1;
+}
+
+glm::mat4 worldSpaceToModelSpace(aiNode *node, glm::mat4 m) {
+       aiNode *parent = node;
+       glm::mat4 res = m;
+       std::vector<glm::mat4> trans;
+       while (parent != nullptr) {
+               /* res = res * glm::inverse(aiMatrixToMat4(parent->mTransformation)); */
+               trans.push_back(glm::inverse(aiMatrixToMat4(parent->mTransformation)));
+               parent = parent->mParent;
+       }
+       while (!trans.empty()) { res = trans.back() * res; trans.pop_back(); }
+       return res;
+}
 
 void display() {
        glClearColor(0.5, 0.5, 0.5, 1);
@@ -115,46 +137,62 @@ void display() {
 
        float d = (float)glutGet(GLUT_ELAPSED_TIME) * 0.001f;
 
+       glUseProgram(getUtilProg()->progId);
+       setProjectionAndViewUniforms(getUtilProg()->progId);
+
        glUseProgram(pbrProg->progId);
        setProjectionAndViewUniforms(pbrProg->progId);
 
-       glm::vec3 lightPositions[6], lightColors[6];
-       for (int i = 0; i < 3; i++) {
-               lightPositions[i] = lights[i].pos;
+       size_t numLights = lights.size() + (discoLights ? 3 : 0);
+       glm::vec3 lightPositions[numLights], lightColors[numLights];
+       for (int i = 0; i < lights.size(); i++) {
+               lightPositions[i] = glm::vec3(lights[i].trans[3]);
                lightColors[i] = lights[i].color;
        }
 
-       for (int i = 3; i < 6; i++) {
        if (discoLights) {
+               for (int i = numLights - 3; i < numLights; i++) {
                        auto m = glm::translate(glm::mat4(1.f), glm::vec3(-2.5, 0, 0));
                        m = glm::rotate(m, glm::radians(d * 100 + i * 30), glm::vec3(1, 0, 0));
                        m = glm::rotate(m, glm::radians(d * 100 + i * 30), glm::vec3(0, 1, 0));
                        m = glm::rotate(m, glm::radians(d * 100 + i * 30), glm::vec3(0, 0, 1));
                        lightPositions[i] = glm::vec3(m * glm::vec4(5, 0, 0, 1));
                        lightColors[i] = glm::vec3(0.2);
-                       if (i == 3) lightColors[i].x = sin(d);
-                       if (i == 4) lightColors[i].y = cos(d * 3);
-                       if (i == 5) lightColors[i].z = cos(d);
-               } else {
-                       lightPositions[i] = glm::vec3(0);
-                       lightColors[i] = glm::vec3(0);
+                       if (i % 3 == 0) lightColors[i].x = sin(d);
+                       if (i % 3 == 1) lightColors[i].y = cos(d * 3);
+                       if (i % 3 == 2) lightColors[i].z = cos(d);
                }
        }
 
-       glUniform3fv(glGetUniformLocation(pbrProg->progId, "lightPositions"), 6, glm::value_ptr(lightPositions[0]));
-       glUniform3fv(glGetUniformLocation(pbrProg->progId, "lightColors"), 6, glm::value_ptr(lightColors[0]));
+       glUniform1ui(glGetUniformLocation(pbrProg->progId, "numLights"), numLights);
+       glUniform3fv(glGetUniformLocation(pbrProg->progId, "lightPositions"), numLights, glm::value_ptr(lightPositions[0]));
+       glUniform3fv(glGetUniformLocation(pbrProg->progId, "lightColors"), numLights, glm::value_ptr(lightColors[0]));
+
+#ifdef COWEDBOY_IK
+       { 
+               glm::vec3 targetPos(sin(d) * 2 + 3, -2, 1);
+               Light targetLight = { glm::translate(glm::mat4(1), targetPos), {0.5, 1, 1}  };
+               drawLight(targetLight);
+               inverseKinematics(*sceneModel->find("Shoulder.L"), *sceneModel->find("Finger.L"), targetPos);
+
+               targetPos = { sin(d * 2) * 2 - 5, 2.5, 0 };
+               targetLight = { glm::translate(glm::mat4(1), targetPos), {1, 1, 0.5}  };
+               drawLight(targetLight);
+               inverseKinematics(*sceneModel->find("Shoulder.R"), *sceneModel->find("Finger.R"), targetPos);
+       }
+#endif
 
-       /* pbr->getRoot()->model = glm::rotate(glm::mat4(1.f), glm::radians(d * 10), glm::vec3(0, 1, 0)); */
        sceneModel->draw(skyboxes[activeSkybox], d * 1000);
 
        for (Light &light: lights) drawLight(light);
 
-       if (discoLights) {
-               for (int i = 3; i < 6; i++) {
-                       Light l { lightPositions[i], lightColors[i] };
-                       drawLight(l);
-               }
-       }
+       // TODO: restore
+       /* if (discoLights) { */
+       /*      for (int i = numLights - 3; i < numLights; i++) { */
+       /*              Light l = { lightPositions[i], lightColors[i] }; */
+       /*              drawLight(l); */
+       /*      } */
+       /* } */
 
        skyboxes[activeSkybox].draw(projMat(), viewMat());
 
@@ -177,27 +215,16 @@ void setupLightBuffers(GLuint progId) {
        glVertexAttribPointer(posLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
 }
 
-int findNodeTrans(struct aiNode *n, const struct aiString name, glm::mat4 *dest) {
-       if (strcmp(n->mName.data, name.data) == 0) {
-               *dest = aiMatrixToMat4(n->mTransformation);
-               return 0;
-       }
-       for (int i = 0; i < n->mNumChildren; i++) {
-               if (findNodeTrans(n->mChildren[i], name, dest) == 0) {
-                       glm::mat4 t = aiMatrixToMat4(n->mTransformation);
-                       *dest = t * *dest;
-                       return 0;
-               }
-       }
-       return 1;
-}
 
 void init() {
+       initUtilProg();
+
        plainProg = new Program("plainvertex.glsl", "plainfrag.glsl");
        glUseProgram(plainProg->progId);
        setupLightBuffers(plainProg->progId);
        plainProg->validate();
 
+       skyboxes.push_back(Skybox(Image("skyboxes/loft/Newport_Loft_Ref.hdr")));
        skyboxes.push_back(Skybox(Image("skyboxes/wooden_lounge_8k.hdr")));
        skyboxes.push_back(Skybox(Image("skyboxes/machine_shop_02_8k.hdr")));
        skyboxes.push_back(Skybox(Image("skyboxes/pink_sunrise_8k.hdr")));
@@ -205,7 +232,7 @@ void init() {
        pbrProg = new Program("pbrvert.glsl", "pbrfrag.glsl");
        glUseProgram(pbrProg->progId);
 
-       const std::string scenePath = "models/ik.glb";
+       const std::string scenePath = "models/mipmapping.glb";
        const aiScene *scene = importer.ReadFile(scenePath, aiProcess_Triangulate | aiProcess_CalcTangentSpace | aiProcess_GenNormals | aiProcess_FlipUVs);
        if (!scene) {
                std::cerr << importer.GetErrorString() << std::endl;
@@ -213,7 +240,7 @@ void init() {
        }
 
        if (scene->mNumCameras > 0) {
-               struct aiCamera *cam = scene->mCameras[0];
+               aiCamera *cam = scene->mCameras[0];
                glm::mat4 camTrans;
                if (findNodeTrans(scene->mRootNode, cam->mName, &camTrans) != 0)
                        abort(); // there must be a node with the same name as camera
@@ -231,6 +258,14 @@ void init() {
                zfar = cam->mClipPlaneFar;
        }
 
+       for (int i = 0; i < scene->mNumLights; i++) {
+               aiLight *light = scene->mLights[i];
+               glm::mat4 trans; findNodeTrans(scene->mRootNode, light->mName, &trans);
+               glm::vec3 col = { light->mColorAmbient.r, light->mColorAmbient.g, light->mColorAmbient.b };
+               Light l = { trans, col };
+               lights.push_back(l);
+       }
+
        sceneModel = new Model(scene, *pbrProg);
 
        glEnable(GL_DEPTH_TEST); 
@@ -247,8 +282,6 @@ void keyboard(unsigned char key, int x, int y) {
        keyStates[key] = true;
        if (key == 'z')
                activeSkybox = (activeSkybox + 1) % skyboxes.size();
-       if (key == 'x')
-               activeLight = (activeLight + 1) % lights.size();
        if (key == 'c')
                discoLights = !discoLights;
 }
@@ -257,8 +290,14 @@ void keyboardUp(unsigned char key, int x, int y) {
        keyStates[key] = false;
 }
 
+#define ENABLE_MOVEMENT
+
 void timer(int _) {
+#ifdef ENABLE_MOVEMENT
        float xSpeed = 0.f, ySpeed = 0.f, zSpeed = 0.f;
+
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wchar-subscripts"
        if (keyStates['w'])
                zSpeed = 0.1f;
        if (keyStates['s'])
@@ -271,17 +310,12 @@ void timer(int _) {
                ySpeed = 0.1f;
        if (keyStates['e'])
                ySpeed = -0.1f;
-
-       if (keyStates['j']) lights[activeLight].pos.z += 0.1f;
-       if (keyStates['k']) lights[activeLight].pos.z -= 0.1f;
-       if (keyStates['h']) lights[activeLight].pos.x -= 0.1f;
-       if (keyStates['l']) lights[activeLight].pos.x += 0.1f;
-       if (keyStates['m']) lights[activeLight].pos.y -= 0.1f;
-       if (keyStates['n']) lights[activeLight].pos.y += 0.1f;
+#pragma clang diagnostic pop
 
        camPos.x += xSpeed * sin(yaw) + zSpeed * cos(yaw);
        camPos.y += ySpeed;
        camPos.z += zSpeed * sin(yaw) - xSpeed * cos(yaw);
+#endif
        glutPostRedisplay();
        glutTimerFunc(16, timer, 0);
 }
@@ -290,6 +324,7 @@ int prevMouseX, prevMouseY;
 bool firstMouse = true;
 
 void motion(int x, int y) {
+#ifdef ENABLE_MOVEMENT
        if (firstMouse) {
                prevMouseX = x;
                prevMouseY = y;
@@ -315,6 +350,7 @@ void motion(int x, int y) {
        } else {
                camUp = glm::vec3(0, 1, 0);
        }
+#endif
 }
 
 void mouse(int button, int state, int x, int y) {