Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ModelImporter.hpp
1#pragma once
2
3#include <filesystem>
4#include <string>
5#include <vector>
6#include <map>
7
8#include <assimp/scene.h>
9#include <glm/glm.hpp>
10
11#include <Common/ResourcePipeline/Uuid.hpp>
12#include <Common/Editor/Importer.hpp>
13
14namespace Grindstone::Editor::Importers {
15 const uint16_t NUM_BONES_PER_VERTEX = 4;
16
17 class ModelImporter : public Importer {
18 public:
19 void Import(Grindstone::Editor::AssetRegistry& assetRegistry, Grindstone::Assets::AssetManager& assetManager, const std::filesystem::path& path) override;
20 private:
21 struct Prefab {
22
23 };
24
25 struct ScenePrefab {
26
27 };
28
29 struct Submesh {
30 uint32_t indexCount = 0;
31 uint32_t baseVertex = 0;
32 uint32_t baseIndex = 0;
33 uint32_t materialIndex = UINT32_MAX;
34 };
35
36 private:
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);
47
48 void OutputPrefabs();
49 void OutputMeshes();
50 void OutputVertexArray(std::ofstream& output, std::vector<uint16_t>& vertexArray);
51 void OutputVertexArray(std::ofstream& output, std::vector<float>& vertexArray);
52
53 // Members
54 Grindstone::Assets::AssetManager* assetManager = nullptr;
55 Grindstone::Editor::AssetRegistry* assetRegistry = nullptr;
56 std::filesystem::path path;
57 std::filesystem::path baseFolderPath;
58 std::map<std::string, glm::mat4> tempOffsetMatrices; // Save string->offset matrix so we can use it when constructing the bone data
59 std::map<std::string, unsigned int> boneMapping;
60 const aiScene* scene = nullptr;
61 bool hasExtraWeights = false;
62 bool isSkeletalMesh = false;
63
64 struct BoneData {
65 uint16_t parentIndex;
66 glm::mat4 offsetMatrix;
67 glm::mat4 inverseModelMatrix;
68
69 BoneData(uint16_t parentIndex, glm::mat4& offsetMatrix, glm::mat4& inverseMatrix) {
70 this->parentIndex = parentIndex;
71 this->offsetMatrix = offsetMatrix;
72 this->inverseModelMatrix = inverseMatrix;
73 }
74 };
75
76 struct OutputData {
77 uint32_t vertexCount = 0;
78 uint32_t indexCount = 0;
79 uint16_t boneCount = 0;
80 struct VertexArray {
81 std::vector<float> position;
82 std::vector<float> normal;
83 std::vector<float> tangent;
84 std::vector<uint16_t> boneIds; // For animation
85 std::vector<float> boneWeights; // For animation
86 std::vector<std::vector<float>> texCoordArray;
87 } vertexArray;
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;
93 } outputData;
94 };
95
96 void ImportModel(Grindstone::Editor::AssetRegistry& assetRegistry, Grindstone::Assets::AssetManager& assetManager, const std::filesystem::path& path);
97}
Definition AssetManager.hpp:15
Definition AssetRegistry.hpp:14
Definition Importer.hpp:12
Definition ModelImporter.hpp:17