Fix metal roughness texture on streaked metal material
[opengl.git] / model.hpp
index 0339538429cc94ae87292ff3f53e56cd460777a6..5c74cb386ef50a1bca316dc3bd286132710c939c 100644 (file)
--- a/model.hpp
+++ b/model.hpp
@@ -1,4 +1,5 @@
 #include <vector>
+#include <map>
 #ifdef __APPLE__
 #include <GL/glew.h>
 #else
@@ -6,27 +7,68 @@
 #endif
 #include <glm/glm.hpp>
 #include <assimp/scene.h>
+#include <assimp/Importer.hpp>
+#include "material.hpp"
+#include "program.hpp"
+#include "skybox.hpp"
 
 class Model {
-       public:
-               Model(const std::string &path, GLuint progId): progId(progId) {
-                       loadModel(path);
-               }
-               void draw();
-       private:
-               const GLuint progId;
+
+       struct Animation {
+               double duration;
+               std::vector<const aiNodeAnim*> nodeAnims;
+       };
+
+       typedef std::map<std::string, std::pair<unsigned int, glm::mat4>> BoneMap;
+       typedef std::map<std::string, std::vector<const Animation>> AnimMap;
+       typedef std::map<std::string, glm::mat4> BoneTransforms;
+
+       struct VertBones {
+               unsigned int ids[4] = {0, 0, 0 ,0};
+               float weights[4] = {1, 0, 0, 0};
+       };
 
        struct Mesh {
                Mesh(const aiMesh *aiMesh, GLuint progId);
+               GLuint progId, vao, numIndices;
+               unsigned int materialIndex;
+               BoneMap boneMap;
+       };
        
-                       GLuint vao, vertexVbo, normalVbo, indicesVbo;
+       public:
+               Model(const std::string &path, Program p);
+               void draw(Skybox skybox, const float tick) const;
 
-                       std::vector<glm::vec3> vertices;
-                       std::vector<glm::vec3> normals;
-                       std::vector<glm::vec2> texCoords;
-                       std::vector<GLuint> indices;
+               class Node {
+                       public:
+                               Node(const aiNode &aiNode, GLuint progId, AnimMap *animMap);
+                               void draw(const std::vector<Mesh> &meshes, const std::vector<Material> &materials, const Skybox s, const float tick, glm::mat4 parentModel, BoneTransforms boneTransforms) const;
+                               const std::vector<Node*> &getChildren() const { return children; }
+                               Node* findNode(const aiNode &aiNode);
+                               glm::mat4 model = glm::mat4(1);
+                               const aiNode &ai;
+
+                       private:
+                               const GLuint progId;
+
+                               const AnimMap *animMap;
+                               std::vector<Node*> children;
+                               std::vector<unsigned int> meshIndices;
                };
                
+               Node* getRoot() { return root; }
+               Node* find(const aiString name);
+               Node* find(const std::string &name);
+       
+       private:
+               const Program program;
+               
                std::vector<Mesh> meshes;
+               Node *root;
+
+               std::vector<Material> materials;
+
                void loadModel(const std::string &path);
+
+               Assimp::Importer importer;
 };