30 uint32_t indexCount = 0;
31 uint32_t baseVertex = 0;
32 uint32_t baseIndex = 0;
33 uint32_t materialIndex = UINT32_MAX;
37 void ProcessNodeTree(aiNode* node, uint16_t parentIndex);
38 void ConvertMaterials();
39 std::filesystem::path GetTexturePath(aiMaterial* pMaterial, aiTextureType type);
40 void InitSubmeshes(
bool hasBones);
41 void ProcessVertices();
42 void PreprocessBones();
43 void ProcessVertexBoneWeights();
44 void NormalizeBoneWeights();
45 void ProcessAnimations();
46 void AddBoneData(
unsigned int vertexId,
unsigned int boneId,
float vertexWeight);
50 void OutputVertexArray(std::ofstream& output, std::vector<uint16_t>& vertexArray);
51 void OutputVertexArray(std::ofstream& output, std::vector<float>& vertexArray);
56 std::filesystem::path path;
57 std::filesystem::path baseFolderPath;
58 std::map<std::string, glm::mat4> tempOffsetMatrices;
59 std::map<std::string, unsigned int> boneMapping;
60 const aiScene* scene =
nullptr;
61 bool hasExtraWeights =
false;
62 bool isSkeletalMesh =
false;
66 glm::mat4 offsetMatrix;
67 glm::mat4 inverseModelMatrix;
69 BoneData(uint16_t parentIndex, glm::mat4& offsetMatrix, glm::mat4& inverseMatrix) {
70 this->parentIndex = parentIndex;
71 this->offsetMatrix = offsetMatrix;
72 this->inverseModelMatrix = inverseMatrix;
77 uint32_t vertexCount = 0;
78 uint32_t indexCount = 0;
79 uint16_t boneCount = 0;
81 std::vector<float> position;
82 std::vector<float> normal;
83 std::vector<float> tangent;
84 std::vector<uint16_t> boneIds;
85 std::vector<float> boneWeights;
86 std::vector<std::vector<float>> texCoordArray;
88 std::vector<uint16_t> indices;
89 std::vector<Submesh> meshes;
90 std::vector<BoneData> bones;
91 std::vector<std::string> materialNames;
92 std::vector<std::string> boneNames;