X-Git-Url: https://git.lukelau.me/?p=opengl.git;a=blobdiff_plain;f=model.hpp;h=e74d65717973400120fd38eb4f2e4a71ba4418b3;hp=5c74cb386ef50a1bca316dc3bd286132710c939c;hb=17dcc398b9a5d1a6a287c01dff7fc7cf2b792372;hpb=be8759aec179d6d7bed58732134673870c596b4f diff --git a/model.hpp b/model.hpp index 5c74cb3..e74d657 100644 --- a/model.hpp +++ b/model.hpp @@ -1,5 +1,9 @@ +#ifndef MODEL_HPP +#define MODEL_HPP + #include #include +#include #ifdef __APPLE__ #include #else @@ -7,11 +11,26 @@ #endif #include #include -#include #include "material.hpp" #include "program.hpp" #include "skybox.hpp" +inline glm::mat4 aiMatrixToMat4(aiMatrix4x4 from) { + glm::mat4 to; + for (int i = 0; i < 4; i++) + for (int j = 0; j < 4; j++) + to[i][j] = from[j][i]; + return to; +} + +inline aiMatrix4x4 mat4ToaiMatrix(glm::mat4 from) { + aiMatrix4x4 to; + for (int i = 0; i < 4; i++) + for (int j = 0; j < 4; j++) + to[i][j] = from[j][i]; + return to; +} + class Model { struct Animation { @@ -19,7 +38,7 @@ class Model { std::vector nodeAnims; }; - typedef std::map> BoneMap; + typedef std::map> BoneMap; typedef std::map> AnimMap; typedef std::map BoneTransforms; @@ -36,17 +55,26 @@ class Model { }; public: - Model(const std::string &path, Program p); + Model(const aiScene *scene, Program p); void draw(Skybox skybox, const float tick) const; class Node { public: - Node(const aiNode &aiNode, GLuint progId, AnimMap *animMap); - void draw(const std::vector &meshes, const std::vector &materials, const Skybox s, const float tick, glm::mat4 parentModel, BoneTransforms boneTransforms) const; + Node(aiNode &aiNode, GLuint progId, AnimMap *animMap, std::set allBones, Node *parent); + + void draw(const std::vector &meshes, const std::vector &materials, const Skybox s, const float tick, const BoneTransforms &boneTransforms, glm::mat4 parentModel) const; const std::vector &getChildren() const { return children; } Node* findNode(const aiNode &aiNode); - glm::mat4 model = glm::mat4(1); - const aiNode &ai; + aiNode &ai; + + // an extra transform + glm::mat4 transform = glm::mat4(1); + + glm::mat4 totalTrans(const glm::mat4 parentTrans, const float tick) const; + + const Node *parent; + + bool operator==(const Node &rhs) const; private: const GLuint progId; @@ -54,11 +82,12 @@ class Model { const AnimMap *animMap; std::vector children; std::vector meshIndices; + const bool isBone; }; Node* getRoot() { return root; } - Node* find(const aiString name); - Node* find(const std::string &name); + Node* find(const aiString name) const; + Node* find(const std::string &name) const; private: const Program program; @@ -68,7 +97,10 @@ class Model { std::vector materials; - void loadModel(const std::string &path); + AnimMap animMap; - Assimp::Importer importer; + BoneTransforms calcBoneTransforms(const Node &n, const float tick, const std::set bones, const glm::mat4 parentTrans) const; + void loadModel(const std::string &path); }; + +#endif